/* =========================================================
   home.css — front page
   The "today's edition" lede block + the desks list.
   ========================================================= */

.today {
  margin: 36px 0 36px;
  text-align: center;
}
.today .lede-banner {
  font-family: 'Bevan', serif;
  font-size: 44px;
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin: 6px 0 10px;
  color: var(--ink-primary);
  font-weight: 400;
  border: none;
  padding: 0;
}
.today .lede-banner::before { content: none; }
.today .lede-meta {
  font-family: 'Old Standard TT', serif;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-faded);
  font-weight: 700;
  margin: 0 0 18px;
}
.today .lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink-faded);
  text-align: center;
  margin: 0 auto 28px;
  max-width: 620px;
  hyphens: none;
}
.today .lede em { font-weight: 700; }

.today .topic-list {
  list-style: none;
  padding: 0;
  margin: 14px auto 28px;
  max-width: 520px;
  text-align: left;
}
.today .topic-list li {
  font-family: 'Old Standard TT', serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-primary);
  padding: 6px 0 6px 28px;
  position: relative;
  border-bottom: 1px dotted var(--rule-faint);
}
.today .topic-list li::before {
  content: "\261E\FE0E";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 14px;
  color: var(--ink-faint);
  font-family: 'Old Standard TT', 'Segoe UI Symbol', 'Apple Symbols', serif;
  font-style: normal;
}
.today .topic-list li:last-child { border-bottom: none; }

.today .cta {
  text-align: center;
  margin: 26px 0 0;
}
.today .cta a {
  font-family: 'Bevan', serif;
  font-size: 14px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-primary);
  text-decoration: none;
  padding: 8px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: inline-block;
  min-width: 320px;
}
.today .cta a:hover { color: var(--accent-red); border-color: var(--accent-red); }

/* The Desks */
.desk {
  margin: 0 0 36px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--rule-faint);
}
.desk:last-of-type { border-bottom: none; padding-bottom: 0; }

.desk-strap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  font-family: 'Old Standard TT', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 6px;
}
.desk-strap .meta { color: var(--ink-faded); }

.desk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 14px;
}
.desk h3 {
  font-family: 'Bevan', serif;
  font-size: 36px;
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink-primary);
  font-weight: 400;
  text-align: left;
  flex-shrink: 0;
}
.desk .desk-motto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-faint);
  margin: 0;
  line-height: 1.4;
  text-align: right;
  max-width: 360px;
}
.desk .desk-summary {
  font-family: 'Old Standard TT', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-primary);
  margin: 0 0 14px;
  text-align: justify;
  hyphens: auto;
}
.desk .desk-links {
  font-family: 'Old Standard TT', serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faded);
  margin: 0;
}
.desk .desk-links a {
  color: var(--ink-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-faint);
  padding-bottom: 2px;
}
.desk .desk-links a:hover { color: var(--accent-red); border-bottom-color: var(--accent-red); }
.desk .desk-links .sep { padding: 0 0.6em; color: var(--rule-faint); border-bottom: none; }

/* forthcoming desk — faded */
.desk.forthcoming { opacity: 0.78; }
.desk.forthcoming h3 { color: var(--ink-faded); }
.desk.forthcoming .desk-motto { color: var(--ink-faint); font-weight: 400; }
.desk.forthcoming .desk-summary { color: var(--ink-faint); }
.desk.forthcoming .forthcoming-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px solid var(--rule-faint);
  padding: 2px 7px;
  display: inline-block;
}

@media (max-width: 700px) {
  .today .lede-banner { font-size: 30px; }
  .today .lede { font-size: 18px; }
  .today .cta a { font-size: 12px; min-width: 0; width: 100%; box-sizing: border-box; text-align: center; }

  .desk h3 { font-size: 26px; }
  .desk-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .desk .desk-motto { text-align: left; max-width: none; }
  .desk-strap { flex-direction: column; align-items: flex-start; gap: 2px; font-size: 10px; }
}
