/* === Mom's Daily — warm editorial / Sunday paper aesthetic === */

:root {
  --cream: #FAF6EE;
  --cream-light: #FFFCF6;
  --paper: #F4EEE0;
  --paper-warm: #F0E5C9;
  --ink: #1F1A14;
  --ink-soft: #4A3F30;
  --muted: #8A7E6C;
  --rule: #D8CFB8;
  --rule-soft: #E5DCC4;
  --wine: #8C2A2C;
  --wine-deep: #6B1F22;
  --sage: #6B7558;
  --gold: #B8893A;

  --shadow-sm: 0 1px 2px rgba(31, 26, 20, 0.05);
  --shadow-md: 0 4px 18px rgba(31, 26, 20, 0.07);
  --shadow-lg: 0 10px 32px rgba(31, 26, 20, 0.10);

  --display: "Fraunces", "Times New Roman", Georgia, serif;
  --body: "Newsreader", Georgia, "Times New Roman", serif;
  --tap: 56px;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(184, 137, 58, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(140, 42, 44, 0.04) 0%, transparent 45%);
  background-attachment: fixed;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

button { font-family: inherit; }
a { color: inherit; }

/* === Passcode Gate === */
.gate {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  z-index: 100;
  padding: 24px;
  transition: opacity 0.3s ease;
}
.gate[hidden] { display: none; }
.gate-inner { text-align: center; max-width: 360px; width: 100%; }
.gate-mark {
  font-family: var(--display); font-style: italic;
  font-size: 18px; letter-spacing: 0.2em;
  color: var(--wine);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.gate-title {
  font-family: var(--display); font-size: 38px;
  font-weight: 400; letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 1.1;
}
.gate-sub {
  color: var(--muted); margin-top: 10px;
  font-size: 16px; font-style: italic;
  font-family: var(--body);
}
.gate-dots {
  display: flex; gap: 18px; justify-content: center;
  margin: 36px 0 28px;
}
.gate-dots span {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid var(--rule);
  transition: all 0.2s ease;
}
.gate-dots span.filled {
  background: var(--wine); border-color: var(--wine);
  transform: scale(1.15);
}
.keypad {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 8px;
}
.keypad button {
  height: 68px;
  font-family: var(--display);
  font-size: 28px; font-weight: 400;
  font-variation-settings: "opsz" 144;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}
.keypad button:active {
  background: var(--paper);
  transform: scale(0.95);
}
.keypad button.alt {
  font-family: var(--body);
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}
.gate-error {
  margin-top: 18px; min-height: 22px;
  color: var(--wine); font-size: 15px;
  font-style: italic; font-family: var(--body);
}

/* === Welcome Banner === */
.welcome {
  text-align: center;
  padding: 14px 20px;
  background: var(--wine);
  color: var(--cream);
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.welcome strong {
  font-style: normal;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

/* === Masthead === */
.masthead {
  text-align: center;
  padding: 36px 20px 28px;
  max-width: 720px;
  margin: 0 auto;
}
.masthead-rule {
  height: 1px;
  background: var(--ink);
  margin: 0 auto 10px;
  max-width: 100%;
}
.masthead-rule:last-child {
  margin: 14px auto 0;
  height: 2px;
}
.masthead-eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.masthead-title {
  font-family: var(--display);
  font-size: clamp(44px, 12vw, 60px);
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 4px 0 6px;
  color: var(--ink);
}
.masthead-date {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 500;
}

/* === Tabs === */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px 20px;
  max-width: 720px;
  margin: 0 auto;
}
.tab {
  flex: 0 0 auto;
  height: 48px;
  padding: 0 28px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.tab.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.tab:active { transform: scale(0.97); }

/* === Feed === */
.view { padding: 0 16px 60px; max-width: 720px; margin: 0 auto; }
.feed { display: flex; flex-direction: column; gap: 22px; }

/* === Card === */
.card {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule-soft);
  position: relative;
  overflow: hidden;
  animation: rise 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.card:nth-child(1) { animation-delay: 0.04s; }
.card:nth-child(2) { animation-delay: 0.10s; }
.card:nth-child(3) { animation-delay: 0.16s; }
.card:nth-child(4) { animation-delay: 0.22s; }
.card:nth-child(5) { animation-delay: 0.28s; }
.card:nth-child(6) { animation-delay: 0.34s; }
.card:nth-child(7) { animation-delay: 0.40s; }
.card:nth-child(8) { animation-delay: 0.46s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-label {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.card-headline {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 10px;
  color: var(--ink);
}
.card-headline a { color: inherit; text-decoration: none; }
.card-body { font-size: 17px; line-height: 1.55; color: var(--ink-soft); }
.card-image {
  width: calc(100% + 48px);
  margin: 18px -24px;
  height: 220px;
  object-fit: cover;
  display: block;
}
.card-meta {
  font-family: var(--display);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* === List Cards (universal row: [thumb?] [text] [X?] [heart?]) === */
.card-list { display: flex; flex-direction: column; }
.card-list-item {
  padding: 14px 0;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-list-item:first-child { border-top: none; padding-top: 6px; }
.card-list-item:last-child  { padding-bottom: 4px; }
.card-list-item-text { flex: 1 1 0%; min-width: 0; }
.card-list-item a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  letter-spacing: -0.005em;
}
.card-list-item .meta {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
  font-style: italic;
}
.card-list-item .meta em {
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 500;
}
.row-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* On very narrow screens (≤320px) let the X+heart wrap to a second line
   so the title isn't squeezed to nothing. The buttons stay together. */
@media (max-width: 360px) {
  .card-list-item { flex-wrap: wrap; }
  .card-list-item-text { flex-basis: 100%; }
  .row-actions { margin-left: auto; margin-top: 4px; }
  .list-thumb { flex-basis: 48px; width: 48px; height: 48px; }
  .card-list-item.has-thumb .card-list-item-text { flex-basis: calc(100% - 60px); }
}

/* === Heart button (whole-card, large) === */
.heart {
  width: var(--tap);
  height: var(--tap);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}
.heart svg {
  width: 26px;
  height: 26px;
  color: var(--wine);
  fill: none;
  display: block;
  transition: fill 0.18s ease, color 0.18s ease;
}
.heart.is-on {
  background: var(--wine);
  border-color: var(--wine);
}
.heart.is-on svg {
  color: var(--cream);
  fill: var(--cream);
}
.heart:active { transform: scale(0.92); }

/* === Small circular buttons (heart.small + dismiss) — identical chrome === */
.heart.small,
.dismiss {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}
.heart.small svg,
.dismiss svg {
  width: 20px;
  height: 20px;
  display: block;
}
.heart.small svg {
  color: var(--wine);
  fill: none;
  transition: fill 0.18s ease, color 0.18s ease;
}
.heart.small.is-on {
  background: var(--wine);
  border-color: var(--wine);
}
.heart.small.is-on svg {
  color: var(--cream);
  fill: var(--cream);
}
.dismiss svg {
  fill: none;
  stroke: var(--muted);
  stroke-width: 2.4;
  stroke-linecap: round;
  transition: stroke 0.18s ease;
}
.dismiss:hover {
  background: var(--paper);
  border-color: var(--ink-soft);
}
.dismiss:hover svg { stroke: var(--ink); }
.heart.small:active,
.dismiss:active { transform: scale(0.92); }

.card-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
}

/* === Weather Card === */
.weather-card {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--paper-warm) 100%);
}
.weather-temp {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.weather-temp sup {
  font-size: 26px;
  vertical-align: top;
  margin-left: 2px;
  color: var(--muted);
  font-weight: 400;
}
.weather-temp-alt {
  margin-top: -6px;
  font-family: var(--body);
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.weather-meta .alt {
  color: var(--muted);
  font-weight: 400;
}
.weather-desc {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  margin-top: 4px;
  color: var(--ink-soft);
}
.weather-meta {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--muted);
}
.weather-meta strong {
  color: var(--ink);
  font-weight: 500;
}
.arthritis-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(140, 42, 44, 0.06);
  border-left: 3px solid var(--wine);
  border-radius: 6px;
  font-family: var(--body);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* === Joke Card === */
.joke-card {
  background: linear-gradient(135deg, var(--cream-light) 0%, #F0E8D0 100%);
}
.joke-setup {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.joke-punch {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-top: 14px;
  color: var(--wine);
  line-height: 1.35;
}
.share-hint {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

/* === Loading & Empty === */
.loading, .empty {
  text-align: center;
  padding: 60px 20px;
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.ellipsis::after {
  content: "";
  animation: dots 1.4s steps(4, end) infinite;
}
@keyframes dots {
  0%, 20% { content: ""; }
  40% { content: "."; }
  60% { content: ".."; }
  80%, 100% { content: "..."; }
}

/* === Footer === */
.footer {
  text-align: center;
  padding: 30px 20px 50px;
  font-family: var(--display);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 144;
}
.footer-rule {
  height: 1px;
  background: var(--rule);
  max-width: 120px;
  margin: 0 auto 18px;
}
.footer-since {
  font-family: var(--body);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  opacity: 0.85;
}

/* === Heart pulse animation === */
@keyframes heart-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  70% { transform: scale(0.92); }
  100% { transform: scale(1); }
}
.heart.pulsing { animation: heart-pulse 0.4s ease-out; }

/* === Responsive bumps for larger screens === */
@media (min-width: 600px) {
  body { font-size: 19px; }
  .card { padding: 32px 30px 26px; }
  .card-image { width: calc(100% + 60px); margin: 22px -30px; height: 280px; }
  .card-headline { font-size: 28px; }
  .card-list-item a { font-size: 19px; }
}

/* === List item thumbnails (real or placeholder) === */
.list-thumb {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--paper);
  display: block;
}
.list-thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
}
.list-thumb.placeholder svg {
  width: 28px; height: 28px;
  fill: var(--rule);
  opacity: 0.85;
}
.list-thumb.failed {
  visibility: hidden;
}
@media (min-width: 600px) {
  .list-thumb { flex-basis: 64px; width: 64px; height: 64px; }
  .list-thumb.placeholder svg { width: 30px; height: 30px; }
}

/* === Weather refresh button === */
.weather-card .card-label {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.weather-refresh {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  background: transparent;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink-soft);
  transition: transform .25s ease, background .2s ease;
  padding: 0;
}
.weather-refresh:hover { background: var(--cream-light); }
.weather-refresh svg { width: 18px; height: 18px; fill: currentColor; }
.weather-refresh.spinning svg { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === Horoscope lucky number === */
.horoscope-lucky {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--paper-warm);
  border-radius: 10px;
  font-family: var(--display);
}
.lucky-label {
  font-size: 14px; font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.lucky-num {
  font-size: 30px; font-weight: 500; line-height: 1;
  color: var(--wine);
  font-variation-settings: "opsz" 144;
}

/* === Card-level controls (Show N hidden) === */
.card-controls {
  display: flex;
  margin-top: 14px;
}
.card-controls button {
  flex: 1 1 auto;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--cream-light);
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
}
.card-controls button:hover { background: var(--paper); }

/* === Embedded video (YouTube etc.) === */
.card-video {
  position: relative;
  width: calc(100% + 50px);
  margin: 18px -25px;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.card-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
@media (min-width: 600px) {
  .card-video { width: calc(100% + 60px); margin: 22px -30px; border-radius: 4px; }
}

/* === Keith video title (readable body font, not display) === */
.keith-video-title {
  margin-top: 14px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}
.keith-video-title a {
  color: inherit;
  text-decoration: none;
}

/* === Windsor Then (photo essay) === */
.windsor-then-card { background: var(--cream-light); }
.windsor-then-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 6px;
  color: var(--ink);
}
.windsor-then-desc {
  margin-top: 10px;
  font-family: var(--body);
  line-height: 1.55;
  color: var(--ink-soft);
}
.windsor-then-era {
  margin-top: 8px !important;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px !important;
  color: var(--muted);
}
.photo-essay {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.photo-essay-item { display: flex; flex-direction: column; }
.photo-essay-item.is-first {
  border-top: 1px solid var(--rule-soft);
  padding-top: 22px;
}
.photo-essay-image {
  width: calc(100% + 50px);
  margin: 0 -25px;
  display: block;
  background: var(--paper);
  height: auto;
  box-shadow: var(--shadow-md);
}
.photo-essay-caption {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  margin-top: 14px;
  padding: 0 2px;
}
.photo-essay-credit {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  padding: 0 2px;
}
@media (min-width: 600px) {
  .photo-essay-image {
    width: calc(100% + 60px);
    margin: 0 -30px;
  }
}

/* === Today's Notion === */
.notion-card { background: var(--cream-light); }
.notion-card .card-label {
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: none;
}
.notion-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
  margin: 12px 0 16px;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.005em;
  border-left: 3px solid var(--wine);
  padding-left: 18px;
}
.notion-by {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.notion-idea-eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--wine);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}
.notion-idea-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-top: 6px;
  color: var(--ink);
}
.notion-idea-body {
  margin-top: 10px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* === Lottery (Winning Numbers) === */
.lottery-card { background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%); }
.lotto-game {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
}
.lotto-game:first-of-type { border-top: none; padding-top: 4px; }
.lotto-game-header {
  display: flex; flex-direction: column;
  margin-bottom: 10px;
}
.lotto-game-date { margin-top: 2px; }
.lotto-game-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.lotto-game-date {
  font-family: var(--body);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}
.lotto-balls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lotto-ball {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 1.5px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.lotto-ball.is-bonus {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--cream);
  margin-left: 6px;
}
.lotto-jackpot {
  margin-top: 10px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}
.lotto-source {
  margin-top: 14px !important;
  font-size: 12px !important;
  text-align: right;
  color: var(--muted);
}

/* === Horoscope card === */
.horoscope-card { background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%); }
.horoscope-sign {
  display: flex; align-items: baseline; gap: 12px;
  margin-top: 4px; flex-wrap: wrap;
}
.horoscope-symbol { font-size: 44px; line-height: 1; color: var(--wine); }
.horoscope-name {
  font-family: var(--display); font-size: 30px; font-weight: 500;
  color: var(--ink);
}
.horoscope-elem {
  font-size: 14px; color: var(--muted);
  font-style: italic; letter-spacing: 0.05em;
}
.horoscope-traits {
  margin-top: 6px; color: var(--ink-soft);
  font-style: italic; font-size: 16px;
}
.horoscope-today {
  margin-top: 16px; font-size: 17px; line-height: 1.65;
  color: var(--ink); padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
}
.horoscope-chinese {
  margin-top: 18px; padding: 12px 14px;
  background: var(--paper); border-radius: 12px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.55;
}
.horoscope-symbol-small { font-size: 18px; margin-right: 6px; }
