/* =========================================================
   HotVWs.com Magazine — Storefront-matched styling
   Palette: dark #222 / red #fa1818 / off-white #f5f5f5 / white
   Fonts:   Oswald (headlines, ALL CAPS, letter-spaced)
            Muli   (body)
   ========================================================= */

:root {
  --hv-dark:   #222;
  --hv-darker: #1a1a1a;
  --hv-red:    #fa1818;
  --hv-grey:   #f5f5f5;
  --hv-border: #e6e6e6;
  --hv-text:   #2b2b2b;
  --hv-muted:  #777;
}

/* ---------- base ---------- */
body {
  font-family: 'Muli', 'Segoe UI', system-ui, sans-serif;
  background: #fff;
  color: var(--hv-text);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-4 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hv-darker);
}

a { color: var(--hv-darker); }
a:hover { color: var(--hv-red); }

/* ---------- top bar (dark header) ---------- */
.hv-topbar {
  background: var(--hv-dark);
  color: #fff;
  padding: 18px 0 12px;
  border-bottom: 3px solid var(--hv-red);
}
.hv-topbar .hv-logo {
  display: block;
  margin: 0 auto 10px;
  max-height: 70px;
  width: auto;
}
.hv-topbar .hv-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: block;
}

.hv-topbar .hv-logo-text span { color: var(--hv-red); }

/* ---------- horizontal nav ---------- */
.hv-nav {
  background: var(--hv-dark);
  border-top: 1px solid #333;
}
.hv-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.hv-nav .nav-list li a {
  display: block;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .15s, background .15s;
}
.hv-nav .nav-list li a:hover,
.hv-nav .nav-list li a.active {
  color: var(--hv-red);
  background: #1a1a1a;
}

/* mobile toggle */
.hv-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  padding: 8px 14px;
  margin: 8px auto;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hv-nav-toggle { display: block; }
  .hv-nav .nav-list { display: none; flex-direction: column; }
  .hv-nav .nav-list.is-open { display: flex; }
  .hv-nav .nav-list li a { text-align: center; padding: 12px; border-top: 1px solid #333; }
}

/* ---------- section bands ---------- */
.hv-band-grey { background: var(--hv-grey); padding: 50px 0; }
.hv-band-white { background: #fff; padding: 50px 0; }
.hv-band-dark { background: var(--hv-dark); color: #fff; padding: 40px 0; }

.hv-section-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 14px;
}
.hv-section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--hv-red);
  margin: 14px auto 0;
}

/* ---------- hero card (16:9) ---------- */
.hv-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  background: #000;
}
.hv-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.hv-hero:hover .hv-hero-img { transform: scale(1.02); }
.hv-hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  padding: 60px 40px 30px;
  color: #fff;
}
.hv-hero-overlay .hv-cat-tag {
  display: inline-block;
  background: var(--hv-red);
  color: #fff;
  padding: 4px 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hv-hero-overlay h1 {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.hv-hero-overlay .hv-subhead {
  color: #ddd;
  font-family: 'Muli', sans-serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.1rem;
}

/* ---------- 3-col blog grid ---------- */
.hv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 992px) { .hv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hv-grid { grid-template-columns: 1fr; gap: 24px; } }

.hv-story-card {
  background: #fff;
  border: 1px solid var(--hv-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.hv-story-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}
.hv-story-card a { text-decoration: none; color: inherit; }

.hv-story-card .hv-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.hv-story-card .hv-card-body { padding: 22px 22px 26px; }
.hv-story-card .hv-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hv-red);
  margin-bottom: 10px;
}
.hv-story-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}
.hv-story-card .hv-excerpt {
  color: var(--hv-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  text-transform: none;
  font-family: 'Muli', sans-serif;
  margin: 0;
}
.hv-story-card .hv-meta {
  font-size: 0.75rem;
  color: #999;
  margin-top: 12px;
  font-family: 'Muli', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- sponsor logo carousel ---------- */
.hv-sponsors {
  background: #fff;
  border-top: 1px solid var(--hv-border);
  border-bottom: 1px solid var(--hv-border);
  padding: 30px 0;
}
.hv-sponsor-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.hv-sponsor-track img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter .2s, opacity .2s;
}
.hv-sponsor-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- footer (4-col) ---------- */
.hv-footer {
  background: var(--hv-dark);
  color: #bdbdbd;
  padding: 50px 0 0;
  margin-top: 60px;
  border-top: 3px solid var(--hv-red);
}

.hv-footer .hv-foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .hv-footer .hv-foot-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .hv-footer .hv-foot-grid { grid-template-columns: 1fr; }
}
.hv-footer h5 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.hv-footer p, .hv-footer li { font-size: 0.9rem; line-height: 1.7; }
.hv-footer a { color: #bdbdbd; text-decoration: none; }
.hv-footer a:hover { color: var(--hv-red); }
.hv-footer ul { list-style: none; padding: 0; margin: 0; }
.hv-footer .hv-social a {
  display: inline-block;
  width: 36px; height: 36px; line-height: 36px;
  text-align: center;
  background: #333;
  margin-right: 6px;
  border-radius: 50%;
  font-size: 14px;
}
.hv-footer .hv-social a:hover { background: var(--hv-red); color: #fff; }
.hv-footer .hv-newsletter input {
  width: 100%;
  padding: 10px 12px;
  background: #1a1a1a;
  border: 1px solid #444;
  color: #fff;
  font-family: 'Muli', sans-serif;
  margin-bottom: 8px;
}

.hv-footer .hv-newsletter button {
  background: var(--hv-red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
}
.hv-footer .hv-newsletter button:hover { background: #c41212; }
.hv-footer-bottom {
  background: #1a1a1a;
  color: #888;
  text-align: center;
  padding: 18px 0;
  margin-top: 40px;
  font-size: 0.85rem;
}

/* ---------- single story page ---------- */
.story-body {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 740px;
  margin: 0 auto;
  font-family: 'Muli', sans-serif;
}
.story-body p { margin-bottom: 1.3rem; text-transform: none; }
.story-body h2, .story-body h3 { margin-top: 2rem; margin-bottom: 1rem; }
.subhead {
  color: #555;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Muli', sans-serif;
}

/* ---------- responsive hero text ---------- */
@media (max-width: 768px) {
  .hv-hero-overlay { padding: 30px 20px 18px; }
  .hv-hero-overlay h1 { font-size: 1.6rem; }
  .hv-hero-overlay .hv-subhead { font-size: 0.95rem; }
}


/* =========================================================
   M2 â€” Issue page, layouts, paywall, embeds
   ========================================================= */

/* ---------- issue masthead ---------- */
.hv-issue-masthead { padding: 50px 0; }
.hv-issue-masthead-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}
.hv-issue-cover img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  border: 1px solid #000;
}
.hv-issue-eyebrow {
  font-family: 'Oswald', sans-serif;
  color: var(--hv-red);
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.hv-issue-title {
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.hv-issue-pub {
  color: #ccc;
  font-family: 'Muli', sans-serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 6px;
}
.hv-issue-toc-count {
  color: #888;
  font-family: 'Muli', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin: 0 0 22px;
}
.hv-issue-buy {
  display: inline-block;
  background: var(--hv-red);
  color: #fff;
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
}
.hv-issue-buy:hover { background: #c41212; color: #fff; }

@media (max-width: 768px) {
  .hv-issue-masthead-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hv-issue-cover { max-width: 220px; margin: 0 auto; }
  .hv-issue-title { font-size: 2.2rem; }
}

/* ---------- accordion ---------- */
.hv-accordion { max-width: 920px; margin: 0 auto; }
.hv-acc-colgroup {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1rem;
  color: var(--hv-red);
  margin: 28px 0 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--hv-red);
}
.hv-acc-item {
  border: 1px solid var(--hv-border);
  border-bottom: none;
  background: #fff;
}
.hv-acc-item:last-child { border-bottom: 1px solid var(--hv-border); }

.hv-acc-head {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}
.hv-acc-head:hover { background: var(--hv-grey); }
.hv-acc-item.is-open .hv-acc-head { background: var(--hv-grey); }

.hv-acc-thumb {
  width: 100px;
  height: 64px;
  object-fit: cover;
  display: block;
  background: #ddd;
}
.hv-acc-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hv-acc-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hv-red);
}
.hv-acc-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--hv-darker);
  line-height: 1.2;
}
.hv-acc-sub {
  font-family: 'Muli', sans-serif;
  font-size: 0.88rem;
  color: var(--hv-muted);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
}
.hv-acc-lock {
  background: var(--hv-darker);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 4px 9px;
  text-transform: uppercase;
}
.hv-acc-chev {
  width: 12px; height: 12px;
  border-right: 2px solid var(--hv-darker);
  border-bottom: 2px solid var(--hv-darker);
  transform: rotate(45deg);
  transition: transform .2s;
  margin-right: 4px;
}
.hv-acc-item.is-open .hv-acc-chev {
  transform: rotate(-135deg);
}

.hv-acc-panel {
  padding: 4px 22px 22px 136px; /* aligns with text column past thumbnail */
  border-top: 1px solid var(--hv-border);
  background: #fff;
}
.hv-acc-excerpt {
  font-family: 'Muli', sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
  text-transform: none;
  letter-spacing: 0;
  margin: 12px 0 14px;
}
.hv-acc-actions { margin-top: 6px; }
.hv-acc-readmore {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hv-red);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 2px solid var(--hv-red);
  padding-bottom: 2px;
}

@media (max-width: 600px) {
  .hv-acc-head { grid-template-columns: 70px 1fr auto; gap: 12px; padding: 10px 12px; }
  .hv-acc-thumb { width: 70px; height: 46px; }
  .hv-acc-title { font-size: 0.95rem; }
  .hv-acc-sub { font-size: 0.8rem; }
  .hv-acc-chev { display: none; }
  .hv-acc-panel { padding: 12px 14px 16px; }
}

/* ---------- feature layout ---------- */
.hv-feature-hero {
  margin: 0 0 30px;
}
.hv-feature-hero img {
  display: block;
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
.hv-feature-cap {
  font-family: 'Muli', sans-serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--hv-muted);
  text-transform: none;
  letter-spacing: 0;
  margin: 8px 0 0;
}
.hv-feature-head {
  max-width: 820px;
  text-align: center;
  margin: 0 auto 24px;
}
.hv-feature-cat { margin-bottom: 14px; }
.hv-feature-title {
  font-size: 2.6rem;
  line-height: 1.05;
  margin: 0 0 14px;
}
.hv-feature-subhead {
  font-family: 'Muli', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 16px;
}
.hv-feature-meta {
  font-family: 'Muli', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #999;
  font-size: 0.8rem;
}
.hv-feature-body { padding: 10px 0 40px; }
.hv-feature-gallery { max-width: 920px; margin: 30px auto 50px; }
.hv-feature-figcap {
  font-family: 'Muli', sans-serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--hv-muted);
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 0;
}

@media (max-width: 768px) {
  .hv-feature-title { font-size: 1.8rem; }
  .hv-feature-subhead { font-size: 1rem; }
}

/* ---------- column layout ---------- */
.hv-layout-column .hv-column-head {
  max-width: 640px;
  margin: 30px auto 18px;
  text-align: left;
  border-left: 4px solid var(--hv-red);
  padding-left: 18px;
}
.hv-column-kicker {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--hv-red);
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.hv-column-title {
  font-size: 1.9rem;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}
.hv-column-subhead {
  font-family: 'Muli', sans-serif;
  font-style: italic;
  font-size: 1rem;
  color: #555;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 8px;
}
.hv-column-meta {
  font-family: 'Muli', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  font-size: 0.75rem;
}
.hv-column-hero {
  max-width: 640px;
  margin: 16px auto 24px;
}
.hv-column-hero img {
  display: block;
  width: 100%;
  height: auto;
}
.hv-column-hero figcaption {
  font-family: 'Muli', sans-serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--hv-muted);
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 0;
}
.hv-column-body {
  max-width: 640px;
  margin: 0 auto;
  font-family: 'Muli', sans-serif;
  font-size: 1rem;       /* denser than feature's 1.1rem */
  line-height: 1.65;     /* tighter than feature's 1.75 */
  text-transform: none;
  letter-spacing: 0;
}
.hv-column-body p { margin-bottom: 1.1rem; }
.hv-column-body h2, .hv-column-body h3 { margin-top: 1.6rem; }
.hv-column-gallery {
  max-width: 640px;
  margin: 30px auto 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hv-column-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.hv-column-gallery figcaption {
  font-family: 'Muli', sans-serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--hv-muted);
  padding: 6px 0;
}

/* ---------- media embeds ---------- */
.hv-embed {
  max-width: 740px;
  margin: 24px auto;
}
.hv-embed-yt {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.hv-embed-yt iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.hv-embed-vertical {
  max-width: 405px;        /* 9:16 at 720h */
  aspect-ratio: 9 / 16;
  position: relative;
  background: #000;
}
.hv-embed-vertical iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.hv-embed-ig, .hv-embed-tt { background: transparent; }

/* ---------- paywall ---------- */
.hv-paywall-blur { position: relative; }
.hv-paywall-blur-inner {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  max-height: 1200px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}
.hv-paywall-modal {
  position: fixed; inset: 0;
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.hv-paywall-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,20,20,0.78);
  backdrop-filter: blur(2px);
}
.hv-paywall-card {
  position: relative;
  background: #fff;
  max-width: 540px;
  width: 100%;
  padding: 36px 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-top: 4px solid var(--hv-red);
}
.hv-paywall-close {
  position: absolute;
  top: 8px; right: 12px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
.hv-paywall-close:hover { color: var(--hv-red); }
.hv-paywall-kicker {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--hv-red);
  margin-bottom: 8px;
}
.hv-paywall-card h2 {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
}
.hv-paywall-tag {
  font-family: 'Muli', sans-serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: #555;
  margin: 0 0 18px;
}
.hv-paywall-tiers {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.hv-paywall-tiers li {
  border: 1px solid var(--hv-border);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  align-items: center;
}
.hv-paywall-tiers li.hv-paywall-premium {
  border-color: var(--hv-red);
  background: #fff8f8;
}
.hv-paywall-tiers strong {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hv-darker);
}
.hv-paywall-tiers span {
  grid-column: 1 / 2;
  font-family: 'Muli', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  color: #555;
  font-size: 0.92rem;
}
.hv-paywall-cta {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  display: inline-block;
  background: var(--hv-darker);
  color: #fff;
  padding: 10px 16px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.82rem;
  white-space: nowrap;
}
.hv-paywall-cta:hover { background: #000; color: #fff; }
.hv-paywall-cta-red { background: var(--hv-red); }
.hv-paywall-cta-red:hover { background: #c41212; color: #fff; }
.hv-paywall-foot {
  font-family: 'Muli', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  color: #777;
  margin: 14px 0 0;
}
.hv-paywall-foot a { color: var(--hv-red); }


/* === M3 home page === */
.hv-home-subhead {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 18px;
  color: var(--hv-darker);
  margin: 50px 0 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--hv-border);
}
.hv-grid-cols { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .hv-grid-cols { grid-template-columns: 1fr; } }

.hv-grid-archive { grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 992px) { .hv-grid-archive { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hv-grid-archive { grid-template-columns: 1fr; } }
.hv-grid-archive .hv-story-card h3 { font-size: 16px; }

.hv-news-list { list-style: none; margin: 0; padding: 0; }
.hv-news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hv-border);
  font-family: 'Muli', sans-serif;
  font-size: 15px;
}
.hv-news-item:last-child { border-bottom: none; }
.hv-news-date {
  color: var(--hv-muted);
  font-size: 13px;
  min-width: 110px;
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hv-news-link { color: var(--hv-darker); text-decoration: none; }
.hv-news-link:hover { color: var(--hv-red); }
.hv-news-more { margin-top: 18px; font-family: 'Oswald', sans-serif; letter-spacing: 0.12em; text-transform: uppercase; font-size: 13px; }
.hv-news-more a { color: var(--hv-red); text-decoration: none; }

/* Issue masthead — make cover clickable smoothly */
.hv-issue-cover a { display: block; }
.hv-issue-cover img { transition: transform .25s ease; }
.hv-issue-cover a:hover img { transform: scale(1.02); }
