/* Design system per guiding doc Section 7 — warm, dark "record sleeve"
   feel. Covers the login screen, the signed-in app shell, Our Circle, and
   Profile. Mobile-first throughout — single-column layouts that just have
   room to breathe on wider viewports, no separate desktop layout. */

:root {
  --bg: #171512;
  --surface: #211e1a;
  --surface-raised: #2a2620;
  --paper: #ede7d8;
  --gold: #c9a227;
  --rust: #9c3b2e;
  --moss: #4b5d45;
  --muted: #9a9285;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--paper);
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

#app {
  min-height: 100%;
}

.login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--surface-raised);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-title {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin: 0;
  text-align: center;
}

.login-copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--paper);
  text-align: center;
}

.login-copy--muted {
  color: var(--muted);
  font-size: 0.85rem;
}

.login-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--surface-raised);
  background: var(--bg);
  color: var(--paper);
  font-family: inherit;
  font-size: 1rem;
}

.login-input:focus {
  outline: none;
  border-color: var(--gold);
}

.login-input:disabled {
  opacity: 0.6;
}

.login-button {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  background: var(--gold);
  color: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.login-button:disabled {
  opacity: 0.6;
  cursor: default;
}

.login-error {
  margin: 0;
  color: var(--rust);
  font-size: 0.85rem;
  text-align: center;
}

/* ---------------------------------------------------------------------
   App shell (signed-in)
   --------------------------------------------------------------------- */

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--surface-raised);
  background: var(--surface);
}

.app-header-title {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.app-header-signout {
  background: none;
  border: 1px solid var(--surface-raised);
  border-radius: 8px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 8px 12px;
  cursor: pointer;
}

.app-tab-groups {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 16px 0;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.app-tab-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-tab-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.app-tabs {
  display: flex;
  gap: 4px;
}

.app-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 4px;
  cursor: pointer;
}

.app-tab--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.app-tab-unread-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  margin-left: 4px;
  vertical-align: super;
}

.app-main {
  flex: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

.view-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
}

.view-title {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--paper);
  margin: 0;
}

.view-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 20px;
}

.invite-button {
  background: none;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 14px;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
}

.invite-panel {
  background: var(--surface);
  border: 1px solid var(--surface-raised);
  border-radius: 12px;
  padding: 18px 16px;
  margin: 0 0 20px;
}

.invite-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.invite-panel-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---------------------------------------------------------------------
   Liner Notes
   --------------------------------------------------------------------- */

.liner-notes-view {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.composer-type-toggle {
  display: flex;
  gap: 8px;
}

.composer-type-button {
  background: none;
  border: 1px solid var(--surface-raised);
  border-radius: 8px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  cursor: pointer;
}

.composer-type-button--active {
  border-color: var(--gold);
  color: var(--gold);
}

.composer-mentions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mention-typeahead {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mention-no-match {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.mention-selected {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--surface-raised);
  border-radius: 8px;
  padding: 8px 10px;
}

.mention-selected-thumb {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.mention-selected-thumb--blank {
  background: var(--surface-raised);
}

.mention-selected-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.mention-selected-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.mention-selected-name {
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mention-selected-clear {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.post-mentions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

/* ---------------------------------------------------------------------
   Avatar
   --------------------------------------------------------------------- */

.avatar {
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar--ring {
  box-shadow: 0 0 0 3px var(--gold);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-initials {
  color: var(--muted);
  font-weight: 700;
}

/* ---------------------------------------------------------------------
   Our Circle
   --------------------------------------------------------------------- */

.circle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}

.circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--surface-raised);
  border-radius: 12px;
  padding: 18px 12px;
  font-family: inherit;
  color: var(--paper);
}

button.circle-card {
  cursor: pointer;
}

.circle-card--you {
  border-color: var(--gold);
}

.circle-card-name {
  font-size: 0.9rem;
  font-weight: 700;
}

.circle-card-you-tag {
  color: var(--gold);
  font-weight: 400;
}

.circle-card-role {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.circle-card-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

.circle-card-remove-button {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.75rem;
  padding: 0;
  margin-top: 2px;
  cursor: pointer;
}

.circle-card-remove-button:disabled {
  opacity: 0.6;
  cursor: default;
}

.circle-card-remove-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.circle-card-remove-text {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.circle-card-remove-error {
  margin: 0;
  font-size: 0.7rem;
  color: var(--rust);
}

.circle-card-remove-actions {
  display: flex;
  gap: 8px;
}

.circle-card-remove-confirm-button {
  background: none;
  border: 1px solid var(--rust);
  border-radius: 6px;
  color: var(--rust);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  cursor: pointer;
}

.circle-card-remove-confirm-button:disabled {
  opacity: 0.6;
  cursor: default;
}

.circle-card-remove-cancel-button {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.75rem;
  padding: 4px 6px;
  cursor: pointer;
}

.circle-card-remove-cancel-button:disabled {
  opacity: 0.6;
  cursor: default;
}

.circle-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.circle-empty-state p {
  margin: 0;
}

/* ---------------------------------------------------------------------
   GBC — group chat. Bubble list + always-visible compose bar, unlike
   every other view's toggled Add panel — a chat's whole point is quick
   continuous back-and-forth, so an always-ready input is the right
   interaction here, not an occasional structured post.
   --------------------------------------------------------------------- */

.gbc-view {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gbc-message-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gbc-message {
  align-self: flex-start;
  max-width: 80%;
  background: var(--surface);
  border: 1px solid var(--surface-raised);
  border-radius: 12px;
  padding: 8px 12px;
}

.gbc-message--own {
  align-self: flex-end;
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
}

.gbc-message-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}

.gbc-message-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.gbc-message-time {
  font-size: 0.68rem;
  color: var(--muted);
}

.gbc-message-body {
  margin: 0;
  font-size: 0.9rem;
  color: var(--paper);
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
}

.gbc-compose {
  display: flex;
  gap: 8px;
}

.gbc-compose .login-input {
  width: auto;
  flex: 1;
}

.gbc-send-button {
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}

.gbc-send-button:disabled {
  opacity: 0.6;
  cursor: default;
}

.gbc-attach-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--surface-raised);
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}

.gbc-attach-preview {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gbc-attach-preview img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--surface-raised);
}

.gbc-attach-remove {
  background: none;
  border: 1px solid var(--surface-raised);
  border-radius: 8px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.8rem;
  padding: 6px 10px;
  cursor: pointer;
}

.gbc-message-image-button {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin: 4px 0;
  cursor: pointer;
}

.gbc-message-image {
  max-width: 100%;
  max-height: 260px;
  border-radius: 8px;
  display: block;
}

.gbc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}

.gbc-gallery-thumb {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--surface-raised);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
}

.gbc-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gbc-lightbox-panel {
  background: var(--surface);
  border: 1px solid var(--surface-raised);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}

.gbc-lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
}

.gbc-lightbox-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---------------------------------------------------------------------
   Shelf
   --------------------------------------------------------------------- */

.shelf-search-results {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 260px;
  overflow-y: auto;
}

.shelf-search-result {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid var(--surface-raised);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
}

.shelf-search-result--active {
  border-color: var(--gold);
  background: var(--surface-raised);
}

.shelf-search-result-thumb {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.shelf-search-result-thumb--blank {
  background: var(--surface-raised);
}

.shelf-search-result-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.shelf-search-result-title {
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shelf-search-result-year {
  font-size: 0.75rem;
  color: var(--muted);
}

.shelf-cover-preview {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

/* ---------------------------------------------------------------------
   The Back Bar
   --------------------------------------------------------------------- */

.back-bar-filters {
  display: flex;
  gap: 10px;
  margin: 0 0 20px;
}

.back-bar-filters input {
  flex: 1;
  min-width: 0;
}

.back-bar-filters select {
  flex-shrink: 0;
  width: auto;
}

/* ---------------------------------------------------------------------
   Record detail

   Mono values below use a system monospace stack, not 'JetBrains Mono'
   (the design system's stated mono per Section 7) — that font isn't
   actually loaded via index.html's Google Fonts link (only Bebas Neue
   and Space Grotesk are), so naming it would silently fall back to the
   browser default instead. Loading it is a separate, later decision.
   --------------------------------------------------------------------- */

.record-detail-view {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.record-detail-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.record-detail-cover {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.record-detail-cover--blank {
  background: var(--surface-raised);
}

.record-detail-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.record-detail-facts {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.record-detail-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.record-detail-heading {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin: 0;
}

.tracklist {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tracklist-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--surface-raised);
  font-size: 0.85rem;
}

.tracklist-position {
  color: var(--muted);
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.tracklist-title {
  flex: 1;
  min-width: 0;
}

.tracklist-duration {
  color: var(--muted);
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.record-detail-avg {
  margin: 0;
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
  font-size: 0.8rem;
  color: var(--gold);
}

.notes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note-entry {
  background: var(--surface);
  border: 1px solid var(--surface-raised);
  border-radius: 10px;
  padding: 12px 14px;
  /* flex column + gap so a bottle tasting's multiple stacked paragraphs
     (Nose/Palate/Finish/Notes) get breathing room between them — a
     no-op for Shelf's Circle Notes, which only ever renders one. */
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.note-entry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.note-entry-author {
  font-size: 0.85rem;
  font-weight: 700;
}

.note-entry-rating {
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
  font-size: 0.75rem;
  color: var(--gold);
}

.note-entry-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.note-entry-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.note-entry-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--paper);
  line-height: 1.5;
}

/* ---------------------------------------------------------------------
   Liner Notes — reactions + comments
   --------------------------------------------------------------------- */

.post-reactions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.post-reaction-button {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid var(--surface-raised);
  border-radius: 999px;
  padding: 4px 8px;
  cursor: pointer;
}

.post-reaction-button--active {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.15);
}

.post-reaction-emoji {
  font-size: 0.9rem;
  line-height: 1;
}

.post-reaction-count {
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
  font-size: 0.7rem;
  color: var(--muted);
}

.post-comments-toggle {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.75rem;
  padding: 4px 0;
  cursor: pointer;
}

.post-comments-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--surface-raised);
}

.post-comments-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-comment {
  background: var(--bg);
  border-radius: 8px;
  padding: 8px 10px;
}

.post-comment-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.post-comment-text {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--paper);
  line-height: 1.4;
}

.post-comment-form {
  display: flex;
  gap: 8px;
}

.post-comment-form .login-input {
  width: auto;
  flex: 1;
}

.post-comment-submit {
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}

.post-comment-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

/* ---------------------------------------------------------------------
   Photo cropper — the app's first true modal (full-screen overlay
   rather than an inline panel), deliberate for this one interaction:
   dragging inside a small crop frame genuinely benefits from more room
   than a phone screen's normal content column leaves once a panel is
   inline in the page flow.
   --------------------------------------------------------------------- */

.cropper-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.cropper-panel {
  background: var(--surface);
  border: 1px solid var(--surface-raised);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}

.cropper-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--surface-raised);
  touch-action: none;
}

.cropper-frame--circle {
  border-radius: 50%;
}

.cropper-image {
  position: absolute;
  max-width: none;
  user-select: none;
  /* Belt-and-suspenders alongside the img's draggable={false} prop
     (confirmed live via DevTools as the actual fix — a real Preact/htm
     bug had that prop landing as the *string* "false", which JS's
     truthy-string coercion turns into draggable=true on the DOM node).
     WebKit has historically been inconsistent about honoring the
     draggable IDL property alone. */
  -webkit-user-drag: none;
}

.cropper-zoom-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cropper-zoom-row input[type='range'] {
  width: 100%;
}

/* ---------------------------------------------------------------------
   Profile
   --------------------------------------------------------------------- */

.profile-view {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 420px;
  margin: 0 auto;
}

.back-button {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0;
  cursor: pointer;
}

.profile-photo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.photo-upload-label {
  position: relative;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.photo-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  cursor: pointer;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.profile-about-input {
  resize: vertical;
  font-family: inherit;
}
