/* ============================================================
   FINISIT — Journal & Post Styles
   Extends the base design system for blog/article pages.
   ============================================================ */

/* ============================================================
   POST PAGE — magazine-style header, contained image, sticky aside
   ============================================================ */

/* Breadcrumb strip — a thin line above the article header. Mono-cap
 * type, no decoration. Grounds the page without the visual weight of a
 * full-bleed hero. */
.post-crumb {
  border-bottom: 1px solid var(--border-soft);
  padding: var(--sp-4, 1.25rem) 0;
  margin-bottom: var(--sp-6, 2rem);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.post-crumb .container { display: flex; align-items: center; gap: 8px; }
.post-crumb a { color: var(--ivory-muted); text-decoration: none; transition: color 0.12s; }
.post-crumb a:hover { color: var(--gold); }
.post-crumb .sep { color: var(--ivory-dim); }
.post-crumb #breadcrumb-title {
  color: var(--gold);
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* Article header — title block ABOVE the image so the headline is never
 * cropped. Centred on a comfortable reading width. */
.post-head {
  margin-bottom: var(--sp-6, 2rem);
}
.post-head__cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold, rgba(212,184,135,0.30));
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 18px;
}
.post-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--ivory);
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-4, 1.25rem);
  max-width: 24ch;
}
.post-head__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.post-head__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-void);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.post-head__byline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.post-head__author {
  color: var(--ivory);
  font-weight: 500;
  font-size: 13.5px;
}
.post-head__line {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ivory-muted);
}
.post-head__line .dotsep { margin: 0 6px; color: var(--ivory-dim); }

/* Hero figure — contained, native 16:9. Never crops, never overlaps text. */
.post-figure {
  margin: 0 0 var(--sp-7, 2.5rem);
}
.post-figure picture,
.post-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-md, 12px);
  border: 1px solid var(--border-soft);
  background: var(--ink-graphite, #1F2530);
}
/* Fallback bar when no image is set */
.post-cover-bar {
  height: 6px;
  margin: 0 auto var(--sp-7, 2.5rem);
  max-width: 880px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}

@media (max-width: 720px) {
  .post-crumb { padding: 14px 0; margin-bottom: var(--sp-5, 1.5rem); font-size: 10px; }
  .post-crumb #breadcrumb-title { max-width: 160px; }
  .post-head__title { max-width: 100%; }
  .post-figure picture,
  .post-figure img { border-radius: var(--r-sm, 6px); }
}

/* ===== Single-column body: maximise reading width ===== */
.post-body {
  max-width: 760px;
  margin: 0 auto var(--sp-9, 4rem);
  padding: 0 var(--gutter, 1.5rem);
}

/* Compact "All articles" pill above the content (replaces the aside). */
.post-back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--ivory-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  width: fit-content;
  margin-bottom: var(--sp-5, 1.5rem);
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}
.post-back-top:hover { color: var(--gold); border-color: var(--gold); background: rgba(212, 184, 135, 0.06); }

/* Inline collapsible TOC — tucked above the content as a small <details>
 * widget. The previous sticky-sidebar TOC was high-effort but rarely
 * used on a one-screen-wide reading page. */
.post-toc-inline {
  margin: 0 0 var(--sp-6, 2rem);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}
.post-toc-inline > summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-toc-inline > summary::-webkit-details-marker { display: none; }
.post-toc-inline > summary::before {
  content: '▸';
  font-size: 10px;
  color: var(--gold);
  transition: transform 0.15s;
}
.post-toc-inline[open] > summary::before { transform: rotate(90deg); }
.post-toc__list {
  list-style: none;
  margin: 12px 0 0; padding: 0;
  counter-reset: toc;
}
.post-toc__item {
  position: relative;
  padding: 5px 0 5px 26px;
  counter-increment: toc;
}
.post-toc__item::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--ivory-dim);
  letter-spacing: 0.04em;
}
.post-toc__item.post-toc__sub { padding-left: 42px; counter-increment: none; }
.post-toc__item.post-toc__sub::before { content: '•'; left: 26px; top: 5px; font-size: 11px; color: var(--ivory-dim); }
.post-toc__list a {
  color: var(--ivory-muted);
  text-decoration: none;
  font-size: 12.5px;
  line-height: 1.45;
  display: block;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: -6px;
  transition: color 0.12s, background 0.12s;
}
.post-toc__list a:hover { color: var(--ivory); }
.post-toc__list a.is-current {
  color: var(--gold);
  background: rgba(212, 184, 135, 0.08);
}

/* Below-article action area — share + helpful + readnext + subscribe */
.post-actions {
  margin-top: var(--sp-7, 2.5rem);
  padding-top: var(--sp-6, 2rem);
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6, 2rem);
}

/* Share at bottom — horizontal pill row, larger touch targets */
.post-share--bottom {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
}
.post-share--bottom .post-share__lead {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ivory);
}
.post-share--bottom .post-share__btns {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.post-share--bottom .post-share__btn {
  padding: 9px 18px;
}

/* Legacy .post-share / .post-share__btn styles still drive both the
 * (now-bottom) share box and any sidebar share that could come back. */
.post-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--ivory-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.12s;
}
.post-share__btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,184,135,0.05);
}

.post-main-col { min-width: 0; }

/* ---- Post Content ---- */
.post-content {
  color: var(--ivory-soft, #E8E1D3);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: var(--sp-6, 2rem);
}
/* Lede paragraph — slightly larger than body, no drop-cap (kept restrained
 * so the title is the single focal point). */
.post-content > p:first-child {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ivory);
  margin-bottom: 1.5em;
  font-weight: 400;
}

.post-content p {
  margin-bottom: 1.4em;
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl, 1.75rem);
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: var(--tracking-tight, -0.02em);
  margin: 2.5em 0 0.75em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--border-gold, rgba(212,184,135,0.25));
  position: relative;
}

.post-content h2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg, 1.375rem);
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: var(--tracking-tight, -0.02em);
  margin: 2em 0 0.6em;
}

.post-content h4 {
  font-family: var(--font-mono);
  font-size: var(--text-sm, 0.875rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1.75em 0 0.5em;
}

.post-content strong {
  color: var(--ivory);
  font-weight: 600;
}

.post-content em {
  color: var(--ivory-soft);
  font-style: italic;
}

/* Blockquote */
.post-content blockquote {
  margin: 2em 0;
  padding: 1.25em 1.5em;
  border-left: 3px solid var(--gold);
  background: rgba(212, 184, 135, 0.04);
  border-radius: 0 var(--r-sm, 4px) var(--r-sm, 4px) 0;
  font-style: italic;
  color: var(--ivory-soft);
}

.post-content blockquote p {
  margin-bottom: 0;
}

/* Code */
.post-content code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: rgba(11, 13, 18, 0.8);
  border: 1px solid var(--border-soft, rgba(245,239,228,0.08));
  border-radius: 3px;
  padding: 0.15em 0.45em;
  color: var(--gold-light, #E8D4A8);
}

.post-content pre {
  background: var(--ink-midnight, #11141B);
  border: 1px solid var(--border-soft, rgba(245,239,228,0.08));
  border-radius: var(--r-sm, 4px);
  padding: 1.25em 1.5em;
  overflow-x: auto;
  margin: 1.75em 0;
}

.post-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: var(--text-sm, 0.875rem);
  line-height: 1.65;
  color: var(--ivory-soft);
}

/* Lists */
.post-content ul,
.post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

.post-content li {
  margin-bottom: 0.5em;
}

.post-content ul li::marker {
  color: var(--gold);
}

.post-content ol li::marker {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.9em;
}

/* Tables */
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: var(--text-sm, 0.875rem);
}

.post-content th {
  font-family: var(--font-mono);
  font-size: var(--text-xs, 0.75rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold, rgba(212,184,135,0.25));
  padding: 0.75em 1em;
  text-align: left;
}

.post-content td {
  padding: 0.65em 1em;
  border-bottom: 1px solid var(--border-soft, rgba(245,239,228,0.06));
  color: var(--ivory-soft);
}

.post-content tr:last-child td {
  border-bottom: none;
}

/* ---- Journal List Page Improvements ---- */

/* Card links — make entire card clickable */
.article-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card-link:hover .article-card {
  transform: translateY(-2px);
}

/* Loading skeleton for dynamic grid */
.journal-skeleton {
  display: grid;
  gap: 1.5rem;
}

.skeleton-card {
  background: var(--ink-charcoal, #171B24);
  border-radius: var(--r-md, 8px);
  height: 280px;
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

@keyframes skeletonPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.3; }
}

/* Empty / error state */
.journal-empty {
  text-align: center;
  padding: var(--sp-12, 5rem) var(--sp-4, 1.5rem);
  color: var(--ivory-dim);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
}

/* ---- Post page breadcrumb override ---- */
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ivory-dim);
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-6, 2rem);
}

.post-breadcrumb a {
  color: var(--ivory-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.post-breadcrumb a:hover {
  color: var(--gold);
}

.post-breadcrumb .sep {
  color: var(--ivory-dim);
  opacity: 0.5;
}

/* Bottom "back to articles" link inside the main column */
.post-back-bottom {
  display: inline-flex;
  align-items: center;
  margin-top: var(--sp-5, 1.5rem);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ivory-muted);
  text-decoration: none;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  transition: all 0.12s;
}
.post-back-bottom:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ---- Reading progress bar ---- */
.post-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: transparent;
  z-index: 1000; pointer-events: none;
}
.post-progress__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #C9A961, #E8D4A8);
  transition: width 0.05s linear;
}

/* ---- Helpful vote ---- */
.post-helpful {
  margin: var(--sp-6, 2rem) 0 var(--sp-5, 1.5rem);
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-soft);
  border-radius: 12px; text-align: center;
}
.post-helpful__q {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ivory-dim); margin: 0 0 1rem;
}
.post-helpful__btns { display: flex; justify-content: center; gap: 12px; }
.post-helpful__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; background: transparent;
  border: 1px solid var(--border-soft); border-radius: 999px;
  color: var(--ivory); cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 500;
  transition: all 0.15s;
}
.post-helpful__btn:hover { border-color: var(--gold); background: rgba(212,184,135,0.06); color: var(--gold); }
.post-helpful__btn.is-selected { border-color: var(--gold); background: rgba(212,184,135,0.12); color: var(--gold); }
.post-helpful__btn[disabled] { cursor: default; opacity: 0.5; }
.post-helpful__btn[disabled]:hover { background: transparent; border-color: var(--border-soft); color: var(--ivory); }
.post-helpful__btn.is-selected[disabled] { opacity: 1; }
.post-helpful__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; }
.post-helpful__thanks { margin: 1rem 0 0; font-family: var(--font-mono); font-size: 11.5px; color: var(--gold); letter-spacing: 0.04em; }

/* ---- Subscribe inline CTA ---- */
.post-subscribe {
  margin: var(--sp-5, 1.5rem) 0 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(212,184,135,0.06), rgba(212,184,135,0.015));
  border: 1px solid rgba(212,184,135,0.20);
  border-radius: 12px; position: relative;
}
.post-subscribe strong { display: block; color: var(--ivory); font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.post-subscribe span { display: block; color: var(--ivory-muted); font-size: 12.5px; line-height: 1.5; }
.post-subscribe__row { display: flex; gap: 8px; margin-top: 12px; }
.post-subscribe__row input[type="email"] {
  flex: 1; padding: 10px 14px;
  background: var(--ink-deep, #0E1014);
  border: 1px solid var(--border-soft); border-radius: 8px;
  color: var(--ivory); font-family: inherit; font-size: 13px;
}
.post-subscribe__row input[type="email"]:focus { outline: none; border-color: var(--gold); }
.post-subscribe__row button {
  padding: 10px 20px; background: var(--gold); color: var(--ink-void);
  border: 0; border-radius: 8px;
  font-family: inherit; font-weight: 600; font-size: 13px;
  cursor: pointer; transition: opacity 0.1s;
}
.post-subscribe__row button:hover { opacity: 0.92; }
.post-subscribe__msg {
  display: block; margin-top: 8px;
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--ivory-dim); min-height: 1em;
}
.post-subscribe__msg.is-success { color: #4DC97A; }
.post-subscribe__msg.is-error   { color: #E05555; }

/* ---- Read next ---- */
.post-readnext {
  margin: var(--sp-5, 1.5rem) 0 0;
  padding: var(--sp-5, 1.5rem) 0 0;
  border-top: 1px solid var(--border-soft);
}
.post-readnext__h {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ivory-dim); margin: 0 0 1rem;
}
.post-readnext__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.post-readnext__list a {
  display: block; padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-soft);
  color: var(--ivory); text-decoration: none;
  transition: all 0.12s;
}
.post-readnext__list a:hover { border-color: var(--gold); background: rgba(212,184,135,0.06); }
.post-readnext__list strong {
  display: block; color: var(--ivory);
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 15px; font-weight: 500;
}
.post-readnext__list small {
  display: block; margin-top: 2px;
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ivory-dim); letter-spacing: 0.04em;
}

/* ---- Responsive ---- */
@media (max-width: 680px) {
  .post-header {
    padding: var(--sp-6, 2rem) var(--sp-3, 1rem) var(--sp-4, 1.5rem);
  }

  .post-content {
    padding: 0 var(--sp-3, 1rem) var(--sp-8, 3rem);
    font-size: var(--text-base, 1rem);
  }

  .post-content h2 {
    font-size: var(--text-lg, 1.375rem);
  }

  .post-meta {
    flex-direction: column;
    gap: var(--sp-2, 0.75rem);
  }

  .post-subscribe__row { flex-direction: column; }
}

/* ── Tradetongkam hub: Desk & Calendar 2-col (added in 3-pillar Wave 56) ──
 * Live Desk + Economic Calendar share a row below the article grid so the
 * page reads articles-first and the live-data widgets don't push the
 * editorial content below the fold.
 *
 * Desktop ≥ 980px: 5/7 split (X feed compact left, calendar wider right).
 * Tablet  < 980px: stacks vertically, calendar first because table needs
 *                  the full width to be useful.
 */
.desk-calendar-grid {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  gap: var(--sp-5);
  align-items: start;
}
.desk-calendar-col { min-width: 0; }
.desk-calendar-inner {
  height: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
}
.desk-calendar-col--left .desk-calendar-inner { padding: var(--sp-5); }

/* The merged calendar block keeps its own cal-* class scaffolding; we just
 * trim its outer padding inside the column wrapper so it doesn't double-pad. */
.desk-calendar-col--right .cal-hero,
.desk-calendar-col--right .cal-body-section {
  padding-top: 0;
  padding-bottom: 0;
}
.desk-calendar-col--right .cal-hero { padding-left: var(--sp-5); padding-right: var(--sp-5); padding-top: var(--sp-5); }
.desk-calendar-col--right .cal-controls { padding: var(--sp-3) var(--sp-5); }
.desk-calendar-col--right .cal-body-section { padding: 0 var(--sp-5) var(--sp-5); }
.desk-calendar-col--right .container { padding: 0; max-width: none; }
.desk-calendar-col--right .cal-hero__inner { flex-direction: column; align-items: stretch; gap: var(--sp-2); }
.desk-calendar-col--right .cal-hero h1 { font-size: clamp(20px, 3vw, 28px); margin: 0; }

@media (max-width: 980px) {
  .desk-calendar-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  /* On mobile the X feed is what people skim — keep it on top */
}

/* ── Tradetongkam — Today's Market Desk card (Wave 58) ────────────────── */
.todays-desk-card {
  background: linear-gradient(180deg, rgba(212,184,135,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(212,184,135,0.18);
  border-radius: 16px;
  padding: var(--sp-5);
  max-width: 1080px;
  margin: 0 auto;
}
.todays-desk-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-soft);
}
.todays-desk-card__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  white-space: nowrap;
}
.todays-desk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
}
.todays-desk-cell {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: var(--sp-4);
}
.todays-desk-cell__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.todays-desk-cell__value {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ivory);
}
.todays-desk-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ivory-dim);
}
.todays-desk-card__cta {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
}
.vol-pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 6px;
}
.vol-pill--low { background: rgba(74,222,128,0.15); color: #4ADE80; }
.vol-pill--med { background: rgba(251,191,36,0.15); color: #FBBF24; }
.vol-pill--high { background: rgba(248,113,113,0.15); color: #F87171; }
@media (max-width: 700px) {
  .todays-desk-card__head,
  .todays-desk-card__foot { flex-direction: column; align-items: flex-start; }
}
