/* =========================================================
   Gablatron — Static Prototype Styles
   Brand palette: cream + peach + amber + tangerine + forest + midnight
   ========================================================= */

:root {
  /* Brand palette (raw) */
  --brand-cream: #fcf7ee;
  --brand-peach: #ffe5b4;
  --brand-amber: #fba91f; /* Amber/500 */
  --brand-tangerine: #ea6113; /* Border/Focus */
  --color-amber-50: #fffcf5; /* Amber/50 — e.g. DANAS pill text */
  --brand-forest: #104e43;
  --brand-midnight: #041512;

  /* Surfaces */
  --color-bg-page: var(--brand-cream);
  --color-bg-card: #ffffff;
  --color-surface-soft: #ffefd0;
  --color-surface-hover: #f5eedc;

  /* Text — design system */
  --color-text-primary: #072721; /* Text/Primary */
  --color-text: var(--color-text-primary);
  --color-text-secondary: #104e43; /* Text/Secondary (e.g. town names in result groups) */
  --color-text-tertiary: #687371; /* Text/Tertiary */
  --color-text-placeholder: #8e9694; /* Text/Placeholder */
  --color-text-heading-count: #364153; /* e.g. “3 restorana” next to town in results */
  --color-text-muted: var(--color-text-placeholder);
  --color-surface-midnight-100: #e8eaea; /* Midnight/100 */
  --color-midnight-200: #d2d5d4; /* Midnight/200 — borders (e.g. Pokaži na karti) */

  /* Accent — interactive text, links, focus, decorative icons */
  --color-accent: #c84a0c; /* Amber/800 — applied accent for CTAs, links, selected items */
  --color-accent-hover: #a83d0a;
  --color-on-accent: var(--brand-cream);

  /* Primary — deep brand colour for CTAs, prices, town headings */
  --color-primary: var(--brand-forest);
  --color-primary-hover: #0b3d34;
  --color-on-primary: var(--brand-cream);

  /* Highlight — day pill selected / weekly “today” row */
  --color-highlight: var(--brand-amber);
  --color-highlight-hover: #e89a12;
  --color-on-highlight: var(--color-text-primary); /* Text/Primary on Amber */

  /* Borders */
  --color-border: #efe3cd;
  --color-border-strong: #dbc9a6;

  /* Shadows tinted with midnight */
  --shadow-sm: 0 1px 3px rgba(4, 21, 18, 0.06);
  --shadow-md: 0 4px 16px rgba(4, 21, 18, 0.09);
  --shadow-lg: 0 8px 32px rgba(4, 21, 18, 0.11);
  --shadow-xl: 0 24px 80px rgba(4, 21, 18, 0.1);

  /* Chevron icons — town picker + restaurant day accordions (keep in sync) */
  --icon-chevron-size: 1.3rem;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 400;
  background-color: var(--color-bg-page);
  color: var(--color-text);
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* --- Page container — centred column, no visual frame --- */
.page-shell {
  max-width: 390px;
  margin: 0 auto;
  padding: 20px 20px 32px;
}

@media (min-width: 768px) {
  .page-shell {
    max-width: 640px;
    padding: 24px 28px 40px;
  }
}

/* Large: ~488px card × 2 + 12px gap + horizontal padding (design). */
@media (min-width: 1024px) {
  .page-shell {
    max-width: 1036px;
    padding: 32px 24px 48px;
  }
}

/* Restaurant detail: keep the column from stretching past tablet width on big screens. */
@media (min-width: 768px) {
  .page-shell.page-shell--restaurant {
    max-width: 768px;
  }
}

/* --- Top Title — full-width bar with bottom border --- */
.top-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 20px;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .top-title {
    padding: 0 28px;
  }
}

@media (min-width: 1024px) {
  .top-title {
    padding: 0 24px;
  }
}

.top-title__brand {
  margin: 0;
  line-height: 0;
}

.top-title__link {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  outline-offset: 3px;
}

.top-title__link:hover .top-title__logo {
  opacity: 0.92;
}

.top-title__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(100%, 280px);
}

/* --- Filter Row --- */
.filter-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  position: relative;
}

/* Town control + menu: own positioning context so the panel sits under the
   button, not below the day pill bar (fix mobile column layout). */
.filter-town {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .filter-town {
    width: 220px;
  }
}

@media (min-width: 768px) {
  .filter-row {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

.filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--color-bg-card);
  border-radius: 16px;
  padding: 0 16px;
  min-height: 52px;
  outline: 1px solid var(--color-border);
  transition: background 0.15s;
  text-align: left;
  width: 100%;
}

@media (min-width: 768px) {
  .filter-btn {
    width: 220px;
    flex-shrink: 0;
  }
}

.filter-btn:hover {
  background: var(--color-surface-hover);
}

.filter-btn__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.filter-btn__label {
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-btn__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  flex-shrink: 0;
  margin-left: 4px;
  line-height: 0;
}

.filter-btn__chevron-svg {
  display: block;
  width: var(--icon-chevron-size);
  height: var(--icon-chevron-size);
}

/* --- Day pill bar: 6 column strip; full width on narrow; content-sized in filter row (≥768) --- */
.day-pill-bar {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 6px 6px;
  min-height: 52px;
  width: 100%;
  min-width: 0;
  background: var(--color-bg-card);
  border-radius: 16px;
  outline: 1px solid var(--color-border);
  overflow: hidden;
}

/* In row with town, card is content-sized (≈360px strip + 12px padding); does not eat remaining width. */
@media (min-width: 768px) {
  .day-pill-bar {
    flex: 0 0 auto;
    width: min(100%, 372px);
    align-items: center;
  }

  .day-pill-bar__inner {
    grid-auto-rows: 36px;
  }

  .day-pill {
    align-self: center;
  }
}

.day-pill-bar__inner {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  justify-items: stretch;
  gap: 5px;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .day-pill-bar__inner {
    gap: 6px;
  }
}

.day-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 36px; /* spec; container stays 52px min — only buttons sized here */
  min-height: 36px;
  max-height: 36px;
  margin: 0;
  padding: 0 2px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border-radius: 12px;
  background: transparent;
  color: var(--color-text-tertiary);
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

@media (min-width: 400px) {
  .day-pill {
    padding: 0 3px;
  }
}

@media (min-width: 480px) {
  .day-pill {
    padding: 0 4px;
    font-size: 0.8125rem;
  }
}

/* Mid+ horizontal padding in each cell */
@media (min-width: 640px) {
  .day-pill {
    padding: 0 5px;
  }
}

.day-pill:hover:not(.is-active):not(.is-disabled) {
  background: var(--color-surface-hover);
}

.day-pill.is-active {
  background: var(--brand-amber);
  color: var(--color-text-primary);
}

.day-pill.is-disabled {
  background: var(--color-surface-midnight-100);
  color: var(--color-text-placeholder);
  cursor: not-allowed;
  pointer-events: none;
}

/* --- Dropdown Panel --- */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  z-index: 20;
  background: var(--color-bg-card);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  outline: 1px solid var(--color-border);
  display: none;
}

.dropdown-panel.is-open {
  display: block;
}

.dropdown-panel--town {
  left: 0;
  width: 100%;
  max-width: 320px;
  min-width: 240px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.1s;
  text-align: left;
}

.dropdown-item:hover {
  background: var(--color-surface-hover);
}

.dropdown-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.dropdown-item__name {
  font-size: 0.875rem; /* 14px — same as “Svi gradovi” / button label */
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
  letter-spacing: -0.005em;
}

.dropdown-item__count {
  font-size: 0.75rem; /* 12px */
  font-weight: 400;
  color: var(--color-text-tertiary);
  line-height: 1.3;
}

.dropdown-item.is-selected .dropdown-item__name,
.dropdown-item.is-selected .dropdown-item__count {
  color: var(--color-accent); /* Amber/800 */
}

.dropdown-item__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  width: 24px;
  height: 24px;
  align-self: center;
}

.dropdown-item__check-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* --- Results area --- */
.results {
  margin-top: 24px;
}

/* --- Town section heading --- */
.town-section {
  margin-bottom: 24px;
}

.town-section + .town-section {
  margin-top: 0;
}

.town-heading {
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
  padding: 0 4px;
}

.town-heading__name {
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: -0.005em;
}

.town-heading__count {
  font-size: 1.125rem; /* 18px */
  font-weight: 400;
  color: var(--color-text-heading-count);
  margin-left: 0.5em;
}

.town-heading__count::before {
  content: "·";
  margin-right: 0.5em;
  font-weight: 400;
}

.town-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Restaurant Card --- */
.restaurant-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--color-bg-card);
  border-radius: 28px;
  text-align: left;
  outline: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.restaurant-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.restaurant-card.is-muted {
  background: var(--color-surface-hover);
}

.restaurant-card.is-muted:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
}

.card-header__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-name {
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.card-name__link {
  color: inherit;
  text-decoration: none;
  border-radius: 4px;
  outline-offset: 2px;
}

.card-name__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.restaurant-card.is-muted .card-name {
  color: var(--color-text-tertiary);
}

.card-meta {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-tertiary);
  text-decoration: none;
}

.card-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-text-muted);
}

.card-meta__text {
  flex: 1;
  min-width: 0;
}

a.card-meta:hover .card-meta__text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.card-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-on-primary);
  text-decoration: none;
  transition: background 0.15s;
}

.card-call-btn:hover {
  background: var(--color-primary-hover);
}

.card-divider {
  height: 1px;
  margin: 0;
  align-self: stretch;
  background: var(--color-border);
}

.card-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 18px;
}

.card-empty-note {
  margin: 16px 18px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1.5px dashed var(--color-border-strong);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-tertiary);
}

.restaurant-card.is-muted .card-empty-note {
  background: rgba(255, 255, 255, 0.6);
}

.card-cta {
  display: block;
  padding: 14px 16px;
  text-align: center;
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  color: var(--color-accent); /* Amber/800 #C84A0C */
  text-decoration: none;
  transition:
    color 0.15s,
    background 0.15s;
}

.card-cta:hover {
  color: var(--color-accent);
  background: var(--brand-peach);
}

/* --- Menu Row --- */
.menu-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.menu-row__name {
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.menu-row__price {
  flex-shrink: 0;
  font-size: 1rem; /* 16px */
  font-weight: 700;
  color: var(--color-text-secondary);
}

.restaurant-card.is-muted .menu-row__name,
.restaurant-card.is-muted .menu-row__price {
  color: var(--color-text-tertiary);
}

/* --- Flat card list (single-town view) --- */
.flat-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  /* Two columns: shortest-column packing is applied in main.js (see layoutResultMasonry). */
  .town-cards.masonry-active,
  .flat-cards.masonry-active {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .masonry-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .top-title__logo {
    height: 40px;
  }

  .top-title__link {
    border-radius: 10px;
  }

  .dropdown-panel {
    min-width: 200px;
  }
}

@media (min-width: 1024px) {
  .filter-btn {
    padding: 14px 16px;
  }
}

/* --- Empty State --- */
.empty-state {
  margin-top: 16px;
  background: var(--color-bg-card);
  border-radius: 24px;
  border: 1.5px dashed var(--color-border-strong);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.empty-state__message {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-tertiary);
  text-align: center;
}

.empty-state__sub {
  margin: 12px 0 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-tertiary);
  text-align: center;
}

/* --- Page Footer --- */
.page-footer {
  padding-top: 24px;
  padding-bottom: 12px;
  text-align: center;
}

.page-footer__fb-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(200, 74, 12, 0.35);
  text-underline-offset: 4px;
}

.page-footer__fb-link:hover {
  color: var(--color-accent-hover);
  text-decoration-color: var(--color-accent-hover);
}

/* =========================================================
   Restaurant Detail Page
   ========================================================= */

/* --- Back button --- */
.back-row {
  margin-top: 4px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  font-size: 1rem; /* 16px */
  font-weight: 400;
  border-radius: 12px;
  padding: 8px 16px;
  outline: 1px solid var(--color-border-strong);
  transition:
    background 0.15s,
    color 0.15s;
}

.back-btn:hover {
  background: var(--color-surface-hover);
}

.back-btn__icon {
  font-size: 1rem;
  line-height: 1;
}

/* --- Identity block (name + inline contact + actions) --- */
.identity-block {
  margin-top: 20px;
  padding: 4px 0 22px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .identity-block {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }
}

.identity-block__main {
  flex: 1;
  min-width: 0;
}

.identity-block__name {
  font-size: 2.25rem; /* 36px */
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.identity-block__meta {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: var(--color-text-tertiary);
  text-decoration: none;
  line-height: 1.4;
}

.identity-block__meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-text-muted);
}

.identity-block__meta-text {
  flex: 1;
  min-width: 0;
}

a.identity-block__meta:hover .identity-block__meta-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.identity-block__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  align-self: flex-start;
  min-width: 182px;
}

/* --- Action buttons (primary / secondary) --- */
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border-radius: 12px;
  font-size: 1rem; /* 16px */
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}

.action-btn__icon svg {
  width: 18px;
  height: 18px;
}

.action-btn__icon {
  display: inline-flex;
  align-items: center;
}

.action-btn--primary {
  font-weight: 700;
  background: var(--color-primary); /* Action/Secondary #104E43 */
  color: #fff;
  border: 1px solid transparent;
}

.action-btn--primary .action-btn__icon {
  color: #fff;
}

.action-btn--primary:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

.action-btn--secondary {
  font-weight: 400;
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  border: 1px solid var(--color-midnight-200);
  outline: none;
}

.action-btn--secondary .action-btn__icon {
  color: var(--color-text-primary);
}

.action-btn--secondary:hover {
  background: var(--color-surface-hover);
}

/* --- Weekly menu section --- */
.weekly-menu {
  margin-top: 20px;
}

.weekly-menu__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.weekly-menu__title-icon {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
}

.weekly-days {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Day accordion --- */
.weekly-day {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-surface-midnight-100);
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color 0.15s;
}

.weekly-day--today {
  border-color: var(--brand-tangerine); /* Border/Focus #EA6113 */
}

.weekly-day__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  color: var(--color-text-primary);
  transition: background 0.15s;
}

button.weekly-day__header {
  cursor: pointer;
}

button.weekly-day__header:hover {
  background: var(--color-surface-hover);
}

.weekly-day--today .weekly-day__header {
  background: var(--brand-amber); /* Amber/500 */
  color: var(--color-text-primary);
}

.weekly-day__heading {
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.005em;
  color: var(--color-text-primary);
}

.weekly-day__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--color-text-tertiary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.weekly-day--today .weekly-day__chevron {
  color: var(--color-text-primary);
}

/* Match town picker chevron (`.filter-btn__chevron-svg`) */
.weekly-day__chevron svg {
  display: block;
  width: var(--icon-chevron-size);
  height: var(--icon-chevron-size);
  flex-shrink: 0;
}

.weekly-day__header[aria-expanded="true"] .weekly-day__chevron {
  transform: rotate(180deg);
}

.weekly-day__danas-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--color-primary); /* Forest #104E43 */
  color: var(--color-amber-50);
  font-size: 0.75rem; /* 12px */
  font-weight: 700;
  border-radius: 999px;
  flex-shrink: 0;
}

.weekly-day__body {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--color-surface-midnight-100);
  background: #fff;
}

.weekly-day--today .weekly-day__body {
  border-top: 1px solid var(--color-surface-midnight-100);
}

.weekly-day__body[hidden] {
  display: none;
}

.weekly-day__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.weekly-day__empty {
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: var(--color-text-tertiary);
}

.weekly-day .menu-row__name {
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: var(--color-text-primary);
}

.weekly-day .menu-row__price {
  font-size: 1rem; /* 16px */
  font-weight: 700;
  color: var(--color-text-secondary);
}
