/* ── DESIGN TOKENS -- single source of truth ── */
:root {
  --green:       #3A7A52; --green-dark: #2A5A3C; --green-light: #D6E8DC;
  --terra:       #A83D2A; --terra-dark: #7A2B1C; --terra-light: #EDD9D4;
  --off-white:   #E8E0D0; --cream: #EBE4D8;
  --warm-black:  #1A1612; --warm-mid: #5C4F44;
  --rule:        rgba(168,61,42,0.22);
  --fs-serif:    'DM Serif Display', Georgia, serif;
  --fs-sans:     'Jost', system-ui, sans-serif;
  --font-scale:  1;
}

/* Hot Supper — hover cards (served raw, no Astro scoping) */

/* Style tags — reusable: Jost 700, 8px, ls 0.1em, lowercase, forest green */
.feat-style-tags,
.tag-label {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: #3A7A52;
}

.feat-style-tags {
  margin-top: -8px;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feat-tag {
  position: relative;
  cursor: default;
}

.feat-tag-popup {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  background: #C5BEB1;
  border: 1px solid rgba(168,61,42,0.15);
  border-radius: 3px;
  padding: 8px 24px;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  column-gap: 16px;
}

.feat-tag:hover .feat-tag-popup {
  display: block;
}

.feat-tag-link {
  display: block;
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #5C4F44;
  text-decoration: none;
  padding: 2px 0;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.feat-tag-link:hover {
  color: #A83D2A;
  text-decoration: underline;
}


.feat-tag::after {
  content: " • ";
  font-size: 1.4rem;
  color: #3A7A52;
  letter-spacing: 0;
  vertical-align: middle;
  line-height: 1;
}
.feat-tag:last-child::after {
  content: "";
}

/* All links underlined by default */
a { text-decoration: underline; text-underline-offset: 2px; }

/* Exceptions — nav, buttons, logos */
nav a, .font-btn, .logotype a, .newsletter-cta, .wdib-img, .nav-logo { text-decoration: none; }

/* Force underline on trivia body links */
.feat-trivia-body a { text-decoration: underline !important; text-underline-offset: 2px; }
.feat-trivia-body a:hover { color: #2A5A3C; }

/* Movie poster — floated right like newspaper insert */
.feat-film-img {
  float: right;
  width: 140px;
  height: auto;
  max-width: 140px;
  border-radius: 2px;
  margin: 0 0 8px 12px;
  display: block;
  box-shadow: 0 1px 4px rgba(58,50,38,0.15);
}
