/* ── Content Pages — Education + Journal + Article Detail ── */
:root {
  --ct-dark-1: #0D0B08; --ct-dark-2: #211A12; --ct-dark-3: #2C2318;
  --ct-gold: #F9AF36; --ct-gold-light: #FDE8C4; --ct-gold-dim: rgba(249,175,54,0.12);
  --ct-border: #2A1F14; --ct-text: #F0E6D4; --ct-muted: #C8B8A0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--ct-dark-1); color: var(--ct-text); font-family: system-ui, -apple-system, sans-serif; }
a { color: inherit; }

/* Shared footer */
.sn-footer { background: var(--ct-dark-1); border-top: 1px solid var(--ct-border); padding: 32px 24px; text-align: center; color: var(--ct-muted); font-size: 13px; }
.sn-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 16px; }
.sn-footer-links a { color: var(--ct-muted); text-decoration: none; }
.sn-footer-links a:hover { color: var(--ct-gold); }
.sn-footer-copy { font-size: 12px; }
.hidden { display: none !important; }

/* ═══ EDUCATION HERO (original) ═══ */
.ct-hero {
  min-height: 40vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 20px 40px; text-align: center;
  background: linear-gradient(rgba(13,11,8,0.6), rgba(19,16,11,0.85)),
    url('/img/venue/barrel.jpg') center/cover no-repeat fixed;
}
.ct-hero h1 { font-family: Georgia, serif; font-size: clamp(28px, 6vw, 42px); color: var(--ct-gold-light); margin-bottom: 8px; }
.ct-hero p { font-size: 15px; color: var(--ct-muted); max-width: 500px; margin: 0 auto; }

/* ═══════════════════════════════════
   JOURNAL PAGE — PUBLICATION LAYOUT
   ═══════════════════════════════════ */

/* ── Journal Hero ── */
.jnl-hero {
  padding: 72px 20px 40px; text-align: center;
  background: linear-gradient(180deg, rgba(13,11,8,0.0) 0%, var(--ct-dark-1) 100%),
    linear-gradient(180deg, #1B1610 0%, var(--ct-dark-1) 100%);
  border-bottom: 1px solid var(--ct-border);
}
.jnl-hero-inner { max-width: 640px; margin: 0 auto; }
.jnl-hero-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ct-gold); font-weight: 600; margin-bottom: 16px;
}
.jnl-hero-title {
  font-family: Georgia, serif; font-size: clamp(28px, 6vw, 44px);
  color: var(--ct-gold-light); line-height: 1.15; margin-bottom: 16px;
}
.jnl-hero-sub {
  font-size: 16px; color: var(--ct-muted); line-height: 1.6;
  max-width: 520px; margin: 0 auto 28px;
}
.jnl-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.jnl-btn-primary {
  display: inline-flex; align-items: center; padding: 12px 28px;
  background: var(--ct-gold); color: #0D0B08; font-weight: 700;
  font-size: 14px; border-radius: 4px; text-decoration: none;
  font-family: Georgia, serif; transition: background 0.15s;
  min-height: 44px;
}
.jnl-btn-primary:hover { background: #e8a030; }
.jnl-btn-secondary {
  display: inline-flex; align-items: center; padding: 12px 28px;
  background: transparent; color: var(--ct-gold); font-weight: 600;
  font-size: 14px; border: 1px solid var(--ct-gold); border-radius: 4px;
  text-decoration: none; font-family: Georgia, serif; transition: all 0.15s;
  min-height: 44px;
}
.jnl-btn-secondary:hover { background: var(--ct-gold-dim); }

/* ── Newsletter Signup Blocks ── */
.jnl-signup {
  max-width: 900px; margin: 0 auto; padding: 24px 20px;
  border-bottom: 1px solid var(--ct-border);
}
.jnl-signup-inner { max-width: 800px; margin: 0 auto; }
.jnl-signup-label {
  font-family: Georgia, serif; font-size: 16px; color: var(--ct-gold-light);
  font-weight: 600; margin-bottom: 6px;
}
.jnl-signup-desc {
  font-size: 14px; color: var(--ct-muted); line-height: 1.5; margin-bottom: 16px;
}
.jnl-signup-form { width: 100%; }
.jnl-signup-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.jnl-input {
  flex: 1; min-width: 140px; padding: 10px 14px;
  background: var(--ct-dark-3); border: 1px solid var(--ct-border);
  border-radius: 4px; color: var(--ct-text); font-size: 14px;
  font-family: inherit; min-height: 44px;
}
.jnl-input:focus { border-color: var(--ct-gold); outline: none; }
.jnl-input::placeholder { color: #8A7A66; }
.jnl-submit-btn {
  padding: 10px 24px; background: var(--ct-gold); color: #0D0B08;
  font-weight: 700; font-size: 13px; border: none; border-radius: 4px;
  cursor: pointer; font-family: Georgia, serif; white-space: nowrap;
  transition: background 0.15s; min-height: 44px;
}
.jnl-submit-btn:hover { background: #e8a030; }
.jnl-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.jnl-signup-status { font-size: 13px; margin-top: 8px; min-height: 20px; }
.jnl-signup-success { color: #27ae60; }
.jnl-signup-error { color: #E05040; }

.jnl-signup-mid {
  margin-top: 16px; margin-bottom: 16px;
  background: var(--ct-dark-2); border: 1px solid var(--ct-border);
  border-radius: 6px; padding: 28px 24px;
  border-bottom: none;
}

/* ── Section Labels ── */
.jnl-section {
  max-width: 960px; margin: 0 auto; padding: 0 20px;
}
.jnl-section-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ct-gold); font-weight: 600; padding: 24px 0 12px;
  border-bottom: 1px solid var(--ct-border); margin-bottom: 20px;
}

/* ── Featured Dispatch ── */
#ct-featured { max-width: 900px; margin: 0 auto; padding: 0 20px; }
#ct-featured .jnl-section-label { margin-bottom: 20px; }
.ct-featured-card {
  display: block; text-decoration: none;
  background: var(--ct-dark-2); border: 1px solid var(--ct-border);
  border-left: 4px solid var(--ct-gold); border-radius: 6px;
  padding: 28px 28px 24px; transition: border-color 0.2s, box-shadow 0.2s;
}
.ct-featured-card:hover { border-color: var(--ct-gold); box-shadow: 0 4px 24px rgba(249,175,54,0.08); }
.ct-featured-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ct-gold); font-weight: 600; margin-bottom: 10px;
}
.ct-featured-distillery {
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ct-gold); font-weight: 600; margin-bottom: 6px;
}
.ct-featured-headline {
  font-family: Georgia, serif; font-size: clamp(22px, 4vw, 30px);
  color: var(--ct-gold-light); font-weight: bold; line-height: 1.25;
  margin-bottom: 14px;
}
.ct-featured-text {
  font-family: Georgia, serif;
  font-size: 16px; color: var(--ct-muted); line-height: 1.8; margin-bottom: 16px;
}
.ct-featured-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-size: 11px; color: var(--ct-muted);
  padding-top: 12px; border-top: 1px solid var(--ct-border);
}
.ct-featured-source { text-transform: uppercase; letter-spacing: 0.5px; }
.ct-featured-badge {
  font-size: 9px; text-transform: uppercase; letter-spacing: 1px;
  background: rgba(249,175,54,0.15); color: var(--ct-gold);
  padding: 2px 8px; border-radius: 3px;
}
.ct-featured-readtime { font-style: italic; }
.ct-featured-date { margin-left: auto; }

/* ═══ SKELETON LOADING ═══ */
@keyframes ct-shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
.ct-card-skeleton { pointer-events: none; }
.ct-skel-img {
  background: linear-gradient(90deg, var(--ct-dark-3) 25%, #231e16 50%, var(--ct-dark-3) 75%);
  background-size: 400px 100%;
  animation: ct-shimmer 1.4s infinite ease-in-out;
  min-height: 140px;
}
.ct-skel-line {
  height: 12px; border-radius: 4px; margin-bottom: 10px;
  background: linear-gradient(90deg, var(--ct-dark-3) 25%, #231e16 50%, var(--ct-dark-3) 75%);
  background-size: 400px 100%;
  animation: ct-shimmer 1.4s infinite ease-in-out;
}
.ct-skel-short { width: 40%; }
.ct-skel-full { width: 90%; }
.ct-skel-med { width: 65%; }

/* ═══ SEARCH ═══ */
.ct-search-bar {
  max-width: 960px; margin: 0 auto; padding: 0 20px;
}
.ct-search-wrap {
  position: relative;
}
.ct-search-icon {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  color: #C8B8A0; pointer-events: none; display: flex; align-items: center;
}
.ct-search {
  width: 100%; background: var(--ct-dark-3); border: 1px solid var(--ct-border);
  border-radius: 4px; color: var(--ct-text); padding: 10px 40px 10px 14px; font-size: 14px;
  font-family: inherit; box-sizing: border-box; min-height: 44px;
}
.ct-search:focus { border-color: var(--ct-gold); outline: none; }
.ct-search::placeholder { color: #C8B8A0; }
.ct-search-clear {
  position: absolute; right: 34px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #C8B8A0; font-size: 20px;
  cursor: pointer; padding: 4px 8px; line-height: 1; display: none;
}
.ct-search-clear:hover { color: var(--ct-text); }
.ct-search-count { max-width: 960px; margin: 4px auto; padding: 0 20px; font-size: 12px; color: var(--ct-muted); }

/* ═══ FILTERS (education page) ═══ */
.ct-filters {
  display: flex; gap: 6px; padding: 16px 20px; max-width: 800px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.ct-filter {
  background: var(--ct-dark-3); border: 1px solid var(--ct-border); border-radius: 8px;
  color: var(--ct-muted); font-size: 13px; font-weight: 500; padding: 6px 14px;
  cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.ct-filter:hover { color: var(--ct-text); border-color: var(--ct-gold); }
.ct-filter.active { background: var(--ct-gold-dim); color: var(--ct-gold); border-color: rgba(249,175,54,0.3); }

/* ═══ TOOLBAR (chips + search, same row) ═══ */
.ct-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  max-width: 960px; margin: 0 auto; padding: 24px 20px 0;
}
.ct-toolbar .ct-chips { flex: 1; min-width: 0; padding: 0; margin: 0; max-width: none; }
.ct-toolbar .ct-search-wrap { width: 200px; flex-shrink: 0; }
.ct-toolbar .ct-search { font-size: 13px; padding: 8px 36px 8px 12px; min-height: 40px; }
.ct-toolbar .ct-search-icon { right: 8px; }
.ct-toolbar .ct-search-clear { right: 28px; }

/* ═══ CATEGORY CHIPS (journal) ═══ */
.ct-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  max-width: 960px; margin: 0 auto; padding: 24px 20px 0;
}
.ct-chip {
  background: var(--ct-dark-3); border: 1px solid var(--ct-border);
  color: var(--ct-muted); padding: 10px 18px; border-radius: 4px;
  font-size: 13px; font-family: Georgia, serif; cursor: pointer;
  transition: all 0.15s; min-height: 44px; display: inline-flex; align-items: center;
}
.ct-chip:hover { color: var(--ct-text); border-color: var(--ct-gold); }
.ct-chip:focus-visible {
  outline: 2px solid var(--ct-gold); outline-offset: 2px;
}
.ct-chip.active {
  background: var(--ct-gold-dim); color: var(--ct-gold);
  border-color: rgba(249,175,54,0.3);
}

/* ═══ ARTICLE GRID ═══ */
.ct-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 960px; margin: 0 auto; padding: 0;
}
.ct-loading { grid-column: 1 / -1; text-align: center; padding: 40px; color: var(--ct-muted); font-size: 14px; }
.ct-empty { grid-column: 1 / -1; text-align: center; padding: 48px 20px; color: var(--ct-muted); }

.ct-card {
  background: var(--ct-dark-2); border: 1px solid var(--ct-border); border-radius: 4px;
  text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.15s; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ct-card:hover { border-color: var(--ct-gold); transform: translateY(-2px); }

.ct-card-img {
  height: 160px; background-size: cover; background-position: center;
  background-color: var(--ct-dark-3); border-bottom: 1px solid var(--ct-border);
}
.ct-card-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--ct-muted);
}

.ct-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.ct-card-cat {
  font-size: 10px; color: var(--ct-gold); text-transform: uppercase; letter-spacing: 1px;
  font-weight: 600; margin-bottom: 6px;
}
.ct-card-title {
  font-family: Georgia, serif; font-size: 17px; color: var(--ct-gold-light);
  margin-bottom: 8px; line-height: 1.3;
}
.ct-card-excerpt {
  font-size: 13px; color: var(--ct-muted); line-height: 1.6; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ct-card-date { font-size: 11px; color: var(--ct-muted); margin-top: 12px; }
.ct-card-readtime { font-size: 11px; color: var(--ct-muted); font-style: italic; }

/* ── Cards without images ── */
.ct-card-noimg { border-top: 3px solid var(--ct-gold); }
.ct-card-noimg .ct-card-body { padding-top: 20px; }

/* ── Dispatch cards in article grid ── */
.ct-card-dispatch { border-left: 3px solid var(--ct-gold); }
.ct-card-cat-dispatch { color: var(--ct-gold); }
.ct-card-release-badge {
  display: inline-block; font-size: 9px; text-transform: uppercase; letter-spacing: 1px;
  background: rgba(249,175,54,0.15); color: var(--ct-gold);
  padding: 2px 6px; border-radius: 3px; margin-left: 6px; vertical-align: middle;
}
.ct-card-distillery {
  display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--ct-gold); margin-bottom: 4px;
}
.ct-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 8px; gap: 8px;
}
.ct-card-source {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ct-muted);
}

/* ── Editor's Picks ── */
.jnl-picks-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.jnl-pick-card {
  display: flex; gap: 14px; text-decoration: none; padding: 16px;
  background: var(--ct-dark-2); border: 1px solid var(--ct-border);
  border-radius: 4px; transition: border-color 0.2s;
}
.jnl-pick-card:hover { border-color: var(--ct-gold); }
.jnl-pick-num {
  font-family: Georgia, serif; font-size: 32px; color: var(--ct-gold);
  opacity: 0.3; font-weight: 700; line-height: 1; flex-shrink: 0;
  width: 32px; text-align: center;
}
.jnl-pick-body { flex: 1; min-width: 0; }
.jnl-pick-cat {
  font-size: 10px; color: var(--ct-gold); text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600; margin-bottom: 4px;
}
.jnl-pick-title {
  font-family: Georgia, serif; font-size: 15px; color: var(--ct-gold-light);
  line-height: 1.3; margin-bottom: 4px;
}
.jnl-pick-meta {
  font-size: 11px; color: var(--ct-muted);
}

@media (max-width: 800px) {
  .jnl-picks-grid { grid-template-columns: 1fr; }
}

/* ── Bottom CTA ── */
.jnl-bottom-cta {
  text-align: center; padding: 56px 20px;
  background: var(--ct-dark-2); border-top: 1px solid var(--ct-border);
  margin-top: 40px;
}
.jnl-bottom-inner { max-width: 520px; margin: 0 auto; }
.jnl-bottom-line {
  font-size: 14px; color: var(--ct-muted); font-style: italic;
  margin-bottom: 12px;
}
.jnl-bottom-title {
  font-family: Georgia, serif; font-size: clamp(24px, 4vw, 32px);
  color: var(--ct-gold-light); margin-bottom: 8px;
}
.jnl-bottom-sub {
  font-size: 14px; color: var(--ct-muted); line-height: 1.5; margin-bottom: 24px;
}
.jnl-bottom-form .jnl-signup-row { justify-content: center; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 800px) {
  .ct-grid { grid-template-columns: repeat(2, 1fr); }
  .jnl-signup-row { flex-direction: column; }
  .jnl-signup-row .jnl-input { min-width: auto; }
  .ct-toolbar .ct-search-wrap { width: 100%; flex-basis: 100%; }
}
@media (max-width: 520px) {
  .ct-grid { grid-template-columns: 1fr; }
  .jnl-hero { padding: 72px 16px 40px; }
}

/* ═══ ARTICLE DETAIL ═══ */
.article-page { max-width: 720px; margin: 0 auto; padding: 0 20px; }

.article-header { padding: 80px 0 24px; }
.article-back {
  display: inline-block; font-size: 13px; color: var(--ct-gold); text-decoration: none;
  margin-bottom: 16px; transition: opacity 0.2s;
}
.article-back:hover { opacity: 0.8; }
.article-cat {
  display: inline-block; font-size: 10px; color: var(--ct-gold); text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600; margin-bottom: 8px;
}
.article-title {
  font-family: Georgia, serif; font-size: clamp(26px, 5vw, 38px);
  color: var(--ct-gold-light); line-height: 1.2; margin-bottom: 12px;
}
.article-meta {
  display: flex; gap: 16px; font-size: 13px; color: var(--ct-muted);
}

.article-hero-img {
  width: 100%; max-height: 400px; object-fit: cover; border-radius: 4px;
  margin-bottom: 32px; border: 1px solid var(--ct-border);
}

.article-body {
  font-family: Georgia, serif; font-size: 17px; color: var(--ct-text);
  line-height: 1.8;
}
.article-body h2 {
  font-size: 24px; color: var(--ct-gold-light); margin: 32px 0 12px;
}
.article-body h3 {
  font-size: 20px; color: var(--ct-gold-light); margin: 24px 0 10px;
}
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 16px 0; padding-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ct-gold-light); }
.article-body a { color: var(--ct-gold); text-decoration: underline; }
.ct-no-content {
  font-style: italic; color: var(--ct-muted); text-align: center;
  padding: 40px 0; font-family: system-ui, sans-serif; font-size: 15px;
}

/* Author box */
.article-author-box {
  display: flex; gap: 16px; align-items: center;
  margin-top: 40px; padding: 24px;
  background: var(--ct-dark-2); border: 1px solid var(--ct-border); border-radius: 4px;
}
.author-avatar {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--ct-border); flex-shrink: 0;
}
.author-info { flex: 1; }
.author-name {
  font-family: Georgia, serif; font-size: 16px; color: var(--ct-gold-light);
  font-weight: 600; margin-bottom: 4px;
}
.author-bio {
  font-size: 13px; color: var(--ct-muted); line-height: 1.6;
  font-family: system-ui, -apple-system, sans-serif;
}
@media (max-width: 600px) {
  .ct-hero { background-attachment: scroll; }
}
@media (max-width: 500px) {
  .article-author-box { flex-direction: column; text-align: center; }
}

.article-footer {
  padding: 32px 0 48px; border-top: 1px solid var(--ct-border); margin-top: 40px;
}

/* ═══ WEEKLY DISPATCHES (legacy, kept for dispatch detail) ═══ */
.wd-section {
  max-width: 800px; margin: 0 auto 32px; padding: 0 20px;
}
.wd-header { margin-bottom: 24px; }
.wd-title {
  font-family: Georgia, serif; font-size: 22px; color: var(--ct-gold-light);
  margin-bottom: 6px;
}
.wd-subtitle {
  font-size: 14px; color: var(--ct-muted); line-height: 1.5;
}
.wd-week { margin-bottom: 24px; }
.wd-week-label {
  font-size: 10px; letter-spacing: 2px; color: var(--ct-gold);
  font-weight: 600; margin-bottom: 12px; padding-bottom: 6px;
  border-bottom: 1px solid var(--ct-border);
}
.wd-week-cards { display: flex; flex-direction: column; gap: 16px; }

.wd-card {
  background: var(--ct-dark-2); border: 1px solid var(--ct-border);
  border-left: 3px solid var(--ct-gold); border-radius: 4px;
  padding: 16px 16px 14px 18px; transition: border-color 0.2s;
}
.wd-card:hover { border-color: var(--ct-gold); }

.wd-card-distillery {
  display: inline-block; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ct-gold); text-decoration: none;
  font-weight: 600; margin-bottom: 4px;
}
.wd-card-distillery:focus-visible,
.wd-card-headline:focus-visible { outline: 2px solid var(--ct-gold); outline-offset: 2px; }
.wd-card-distillery:hover { text-decoration: underline; }

.wd-badge-release {
  display: inline-block; font-size: 10px; background: rgba(249,175,54,0.15);
  color: var(--ct-gold); padding: 3px 8px; border-radius: 3px;
  letter-spacing: 0.5px; font-weight: 600; margin-left: 6px; vertical-align: middle;
}

.wd-card-headline {
  display: block; font-family: Georgia, serif; font-size: 17px;
  color: var(--ct-gold-light); font-weight: bold; text-decoration: none;
  line-height: 1.3; margin-bottom: 8px;
}
.wd-card-headline:hover { text-decoration: underline; }

.wd-card-text {
  font-size: 14px; color: var(--ct-muted); line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.wd-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--ct-muted);
}
.wd-card-source a {
  color: var(--ct-muted); text-decoration: none;
}
.wd-card-source a:hover { color: var(--ct-gold); text-decoration: underline; }
.wd-card-source a:focus-visible { outline: 2px solid var(--ct-gold); outline-offset: 2px; }
.wd-card-source a::after { content: ' \2197'; font-size: 10px; }

/* ═══ DISPATCH DETAIL PAGE ═══ */
.dispatch-detail { max-width: 720px; margin: 0 auto; padding: 80px 20px 48px; }
.dispatch-meta-top { margin-bottom: 8px; }
.dispatch-distillery-link {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ct-gold); text-decoration: none; font-weight: 600;
}
.dispatch-distillery-link:hover { text-decoration: underline; }
.dispatch-distillery-link:focus-visible,
.dispatch-source a:focus-visible,
.dispatch-more-link:focus-visible,
.article-back:focus-visible { outline: 2px solid var(--ct-gold); outline-offset: 2px; }
.dispatch-headline {
  font-family: Georgia, serif; font-size: clamp(24px, 5vw, 36px);
  color: var(--ct-gold-light); line-height: 1.2; margin-bottom: 8px;
}
.dispatch-date { font-size: 13px; color: var(--ct-muted); margin-bottom: 24px; }
.dispatch-body {
  font-family: Georgia, serif; font-size: 17px; color: var(--ct-text);
  line-height: 1.8; margin-bottom: 24px;
}
.dispatch-source {
  font-size: 12px; color: var(--ct-muted); padding: 16px 0;
  border-top: 1px solid var(--ct-border);
}
.dispatch-source a { color: var(--ct-gold); text-decoration: none; }
.dispatch-source a:hover { text-decoration: underline; }

.dispatch-release-details {
  background: var(--ct-dark-2); border: 1px solid var(--ct-border);
  border-radius: 4px; padding: 16px; margin-top: 20px;
}
.dispatch-release-details h3 {
  font-family: Georgia, serif; font-size: 16px; color: var(--ct-gold-light);
  margin-bottom: 12px;
}
.dispatch-detail-item {
  font-size: 14px; color: var(--ct-muted); margin-bottom: 6px;
}
.dispatch-detail-item span { color: var(--ct-text); font-weight: 600; }

.dispatch-more {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--ct-border);
}
.dispatch-more h3 {
  font-family: Georgia, serif; font-size: 18px; color: var(--ct-gold-light);
  margin-bottom: 12px;
}
.dispatch-more-link {
  display: block; text-decoration: none; padding: 10px 0;
  border-bottom: 1px solid var(--ct-border); transition: padding-left 0.15s;
}
.dispatch-more-link:hover { padding-left: 6px; }
.dispatch-more-headline {
  display: block; font-family: Georgia, serif; font-size: 15px;
  color: var(--ct-gold-light); margin-bottom: 2px;
}
.dispatch-more-week {
  font-size: 11px; color: var(--ct-muted);
}

@media (max-width: 600px) {
  .wd-card-meta { flex-direction: column; align-items: flex-start; gap: 4px; }
  .dispatch-detail { padding-top: 60px; }
}
