  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #b22020;
    --green-mid: #c42525;
    --green-light: #d42e2e;
    --gold: #c8a84b;
    --gold-light: #e8c870;
    --cream: #faf7f2;
    --cream-dark: #f0ebe0;
    --text-dark: #1a1a18;
    --text-mid: #3a3a36;
    --text-muted: #6b6b64;
    --border: rgba(120,20,20,0.12);
    --white: #ffffff;
  }

  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
  }

  /* ── HEADER ── */
  header {
    background: var(--white);
    border-bottom: 2px solid var(--green);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(100,20,20,0.1);
  }
  .header-top {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0.75rem 2rem 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
  .header-left {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 1.5rem;
  }
  .edition-tabs {
    display: flex;
    gap: 0;
  }
  .edition-tab {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 1.1rem;
    border: 1.5px solid var(--border);
    border-right: none;
    transition: all 0.15s;
    white-space: nowrap;
    background: var(--white);
  }
  .edition-tab:first-child { border-radius: 2px 0 0 2px; }
  .edition-tab:last-child { border-right: 1.5px solid var(--border); border-radius: 0 2px 2px 0; }
  .edition-tab:hover { background: var(--cream-dark); color: var(--green); border-color: var(--green); }
  .edition-tab.active {
    background: var(--green);
    color: white;
    border-color: var(--green);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }
  .header-right-date {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .header-divider { width: 1px; height: 14px; background: var(--border); }
  .header-actions { display: flex; gap: 0.75rem; align-items: center; }
  .btn-subscribe {
    background: var(--gold);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
  }
  .btn-subscribe:hover { background: var(--gold-light); }
  .btn-pdf {
    border: 1.5px solid var(--green);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
  }
  .btn-pdf:hover { background: var(--green); color: white; }
  .header-nav {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }
  nav { display: flex; align-items: center; gap: 0; }
  nav a {
    display: block;
    padding: 0 1.1rem;
    height: 44px;
    line-height: 44px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
  }
  nav a:hover { color: var(--green); border-bottom-color: var(--gold); }

  /* ── DATE BAR ── */
  .datebar {
    background: var(--cream-dark);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 0.4rem;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .datebar strong { color: var(--green); }

  /* ── HERO / LEAD STORY ── */
  .hero {
    max-width: 1320px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
  }
  .hero-main {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
  }
  .hero-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    position: relative;
  }
  .hero-image-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(160deg, #6a1208 0%, #9a2010 50%, #6a1208 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(200,168,75,0.3);
  }
  .hero-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
  }
  .hero-body { padding: 1.5rem; }
  .hero-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--green);
    margin-bottom: 0.75rem;
  }
  .hero-title a { color: inherit; text-decoration: none; }
  .hero-title a:hover { color: var(--green-light); }
  .hero-excerpt { color: var(--text-mid); font-size: 15px; line-height: 1.65; margin-bottom: 1rem; }
  .hero-meta { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }

  /* ── RIGHT SIDEBAR STACK ── */
  .hero-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

  .news-feed {
    background: var(--white);
    border: 1px solid var(--border);
  }
  .feed-header {
    background: var(--green);
    color: white;
    padding: 0.65rem 1rem;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .feed-header a { color: var(--gold-light); font-weight: 400; text-decoration: none; font-size: 9px; }
  .feed-item {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
  }
  .feed-item:last-child { border-bottom: none; }
  .feed-item-num {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--cream-dark);
    line-height: 1;
    min-width: 20px;
    text-align: center;
    margin-top: 2px;
  }
  .feed-item-body {}
  .feed-item-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 0.2rem;
  }
  .feed-item-title:hover { color: var(--green-light); }
  .feed-item-date { font-size: 10px; color: var(--text-muted); letter-spacing: 0.04em; }

  /* ── QUICK PDF CARD ── */
  .pdf-card {
    background: var(--green);
    color: white;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .pdf-card-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .pdf-card-date {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
  }
  .pdf-card-headline {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 0.75rem;
  }
  .pdf-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .pdf-link {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--gold);
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    transition: background 0.15s;
  }
  .pdf-link:hover { background: var(--gold-light); }
  .pdf-link.secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
  }
  .pdf-link.secondary:hover { border-color: white; color: white; }

  /* ── MAIN CONTENT AREA ── */
  .main-wrap {
    max-width: 1320px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
  }

  /* ── SECTION HEADERS ── */
  .section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--green);
  }
  .section-head h2 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
  }
  .section-head a {
    margin-left: auto;
    font-size: 10px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.06em;
  }
  .section-head a:hover { color: var(--green); }

  /* ── ARTICLE GRID ── */
  .article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .article-card {
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
  }
  .article-card-img {
    height: 160px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200,168,75,0.4);
    font-size: 36px;
    flex-shrink: 0;
  }
  .article-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
  .article-card-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }
  .article-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    flex: 1;
  }
  .article-card-title:hover { color: var(--green-light); }
  .article-card-date { font-size: 10px; color: var(--text-muted); }

  /* ── RISING STAR ── */
  .rising-star {
    background: var(--white);
    border: 1px solid var(--border);
    margin-bottom: 2.5rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
  }
  .rising-star-img {
    background: linear-gradient(160deg, var(--green) 0%, var(--green-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200,168,75,0.3);
    font-size: 60px;
    min-height: 240px;
  }
  .rising-star-body { padding: 1.5rem; }
  .rs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold);
    color: var(--green);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    margin-bottom: 0.75rem;
  }
  .rs-star { font-size: 12px; }
  .rs-horse-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.25rem;
  }
  .rs-sire { font-size: 13px; color: var(--text-muted); margin-bottom: 0.85rem; font-style: italic; }
  .rs-excerpt { font-size: 14px; line-height: 1.65; color: var(--text-mid); }
  .rs-read-more {
    display: inline-block;
    margin-top: 1rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 1px;
  }

  /* ── STATS SIDEBAR ── */
  .stats-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

  .stats-block {
    background: var(--white);
    border: 1px solid var(--border);
  }
  .stats-block-header {
    background: var(--green);
    color: white;
    padding: 0.65rem 1rem;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .stats-block-header a { color: var(--gold-light); font-weight: 400; font-size: 9px; text-decoration: none; }

  .stats-row {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
  }
  .stats-row:last-child { border-bottom: none; }
  .stats-rank {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
  }
  .stats-name { font-weight: 500; color: var(--text-dark); }
  .stats-name a { color: inherit; text-decoration: none; }
  .stats-name a:hover { color: var(--green-light); }
  .stats-val { font-size: 11px; color: var(--text-muted); text-align: right; white-space: nowrap; }

  /* ── STAKES SCHEDULE ── */
  .stake-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
  }
  .stake-row:last-child { border-bottom: none; }
  .stake-date { color: var(--text-muted); font-size: 10px; }
  .stake-name { font-weight: 500; }
  .stake-grade {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: var(--cream-dark);
    color: var(--green);
    padding: 0.15rem 0.35rem;
    border-radius: 2px;
  }
  .stake-grade.g1 { background: var(--gold); color: var(--green); }

  /* ── TRENDING LIST ── */
  .trending-item {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--border);
  }
  .trending-item:last-child { border-bottom: none; }
  .trending-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 14px;
  }
  .trending-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
  }
  .trending-title:hover { color: var(--green-light); }

  /* ── LEADERS TABS ── */
  .leaders-tabs { display: flex; border-bottom: 2px solid var(--green); margin-bottom: 0; }
  .leaders-tab {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.55rem 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s;
  }
  .leaders-tab.active { color: var(--green); border-bottom-color: var(--gold); }

  .leaders-pane { display: none; }
  .leaders-pane.active { display: block; }

  /* ── SUBSCRIBE BANNER ── */
  .subscribe-banner {
    background: var(--green);
    margin: 0 0 2.5rem;
    padding: 2rem;
    text-align: center;
    color: white;
  }
  .subscribe-banner p { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
  .subscribe-banner h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 1rem; }
  .subscribe-banner a {
    display: inline-block;
    background: var(--gold);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    transition: background 0.15s;
  }
  .subscribe-banner a:hover { background: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    background: var(--green);
    color: rgba(255,255,255,0.65);
    padding: 3rem 2rem 1.5rem;
  }
  .footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-logo-tdn {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .footer-tagline { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; margin-bottom: 1rem; }
  .footer-address { font-size: 12px; line-height: 1.8; }
  .footer-col h4 {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.4rem; }
  .footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 12px; }
  .footer-col a:hover { color: white; }
  .footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
  }

  /* ── FEATURED VIDEO ── */
  .video-section {
    margin-bottom: 2.5rem;
  }
  .video-block {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .video-embed-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #2a0a08;
  }
  .video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  .video-info { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); display: flex; align-items: baseline; gap: 1rem; }
  .video-info-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .video-info-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
  }
  .video-info-date { font-size: 11px; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; margin-left: auto; }
  .video-playlist { display: flex; flex-direction: column; }
  .video-playlist-header {
    background: var(--green);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .video-playlist-header a { color: var(--gold-light); font-weight: 400; text-decoration: none; font-size: 9px; }
  .video-thumbs-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--border);
  }
  .video-thumb-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.12s;
  }
  .video-thumb-item:last-child { border-right: none; }
  .video-thumb-item:hover { background: var(--cream); }
  .video-thumb-item.playing { background: var(--cream-dark); border-top: 2px solid var(--gold); }
  .video-thumb-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: rgba(200,168,75,0.5);
    position: relative;
    flex-shrink: 0;
  }
  .video-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.12s;
  }
  .video-thumb-item:hover .video-play-icon { opacity: 1; }
  .video-thumb-item.playing .video-play-icon { opacity: 1; background: rgba(200,168,75,0.25); color: var(--gold); }
  .video-thumb-body { padding: 0.5rem 0.6rem; }
  .video-thumb-title {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .video-thumb-date { font-size: 10px; color: var(--text-muted); }

  /* ── YOUTUBE SHORTS ── */
  .shorts-section {
    max-width: 1320px;
    margin: 0 auto 2.5rem;
    padding: 0 2rem;
  }
  .shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .short-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.15s;
  }
  .short-card:hover { border-color: var(--gold); }
  .short-thumb {
    position: relative;
    padding-bottom: 177.78%;
    background: linear-gradient(160deg, #2a0a08 0%, var(--green) 100%);
    overflow: hidden;
  }
  .short-thumb-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: rgba(200,168,75,0.3);
  }
  .short-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 0.75rem;
    opacity: 0;
    transition: opacity 0.15s;
  }
  .short-card:hover .short-overlay { opacity: 1; }
  .short-play-btn {
    width: 36px;
    height: 36px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    margin-bottom: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .short-duration {
    font-size: 10px;
    font-weight: 700;
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 0.15rem 0.4rem;
    border-radius: 2px;
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
  }
  .shorts-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #ff0000;
    color: white;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    border-radius: 2px;
  }
  .short-body { padding: 0.75rem; flex: 1; }
  .short-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .short-title:hover { color: var(--green-light); }
  .short-meta { font-size: 10px; color: var(--text-muted); }

  /* ── PODCAST ── */
  .podcast-block {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
  }
  .podcast-cover {
    background: linear-gradient(160deg, var(--green) 0%, var(--green-mid) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    color: var(--gold);
    font-size: 48px;
  }
  .podcast-cover-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-align: center;
    line-height: 1.4;
  }
  .podcast-cover-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.3;
  }
  .podcast-episodes { display: flex; flex-direction: column; }
  .podcast-episode {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.12s;
  }
  .podcast-episode:last-child { border-bottom: none; }
  .podcast-episode:hover { background: var(--cream); }
  .podcast-play {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    padding-left: 2px;
    transition: background 0.12s;
  }
  .podcast-episode:hover .podcast-play { background: var(--green-light); }
  .podcast-ep-body { flex: 1; min-width: 0; }
  .podcast-ep-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.15rem;
  }
  .podcast-ep-meta { font-size: 10px; color: var(--text-muted); }
  .podcast-ep-duration {
    font-size: 10px;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .podcast-footer {
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column: 1 / -1;
  }
  .podcast-footer a {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    text-decoration: none;
  }
  .podcast-footer a:hover { color: var(--green-light); }
  .podcast-platforms { display: flex; gap: 0.75rem; }
  .podcast-platforms a { font-size: 10px; color: var(--text-muted); text-decoration: none; }
  .podcast-platforms a:hover { color: var(--green); }

  /* ── SPONSORED VIDEOS ── */
  .sponsored-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .sponsored-item {
    background: var(--white);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background 0.12s;
  }
  .sponsored-item:hover { background: var(--cream); }
  .sponsored-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2a0a08 0%, var(--green-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(200,168,75,0.4);
  }
  .sponsored-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.12s;
    pointer-events: none;
  }
  .sponsored-play-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding-left: 3px;
  }
  .sponsored-item:hover .sponsored-play-overlay { opacity: 1; }
  .sponsored-badge {
    position: absolute;
    bottom: 0.4rem;
    left: 0.4rem;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--green);
    padding: 0.15rem 0.4rem;
  }
  .sponsored-body { padding: 0.6rem 0.75rem; }
  .sponsored-title {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .sponsored-sponsor { font-size: 10px; color: var(--text-muted); }

  .article-card-img {
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  .article-card:hover .article-card-img img { transform: scale(1.03); }
  .rising-star-img {
    overflow: hidden;
    min-height: 240px;
  }
  .rising-star-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .podcast-featured-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
  }
  .podcast-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .sponsored-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .sponsored-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .short-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .video-thumb-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ── AD ZONES ── */
  .ad-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .ad-label {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
    align-self: flex-end;
    padding-right: 2px;
  }
  .ad-slot {
    background: var(--cream-dark);
    border: 1px dashed rgba(26,58,42,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  .ad-slot-size {
    font-size: 10px;
    color: rgba(107,107,100,0.55);
  }
  /* Leaderboard 728×90 */
  .ad-leaderboard {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
  }
  .ad-leaderboard .ad-slot {
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 0 auto;
  }
  /* Medium Rectangle 300×250 in sidebar */
  .ad-mrec .ad-slot {
    width: 300px;
    height: 250px;
    max-width: 100%;
  }
  /* Between-section banner (970×90 / flexible) */
  .ad-banner-full {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
  }
  .ad-banner-full .ad-slot {
    width: 100%;
    height: 90px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
    .main-wrap { grid-template-columns: 1fr; }
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .rising-star { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .video-thumbs-row { grid-template-columns: repeat(3, 1fr); }
    .shorts-grid { grid-template-columns: repeat(2, 1fr); }
    .podcast-block { grid-template-columns: 160px 1fr; }
  }
  @media (max-width: 680px) {
    .edition-tabs { display: none; }
    nav { display: none; }
    .article-grid { grid-template-columns: 1fr; }
    .hero-sidebar { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .header-right-date { display: none; }
    .header-divider { display: none; }
    .video-thumbs-row { grid-template-columns: repeat(2, 1fr); }
    .shorts-grid { grid-template-columns: repeat(2, 1fr); }
    .podcast-block { grid-template-columns: 1fr; }
    .podcast-cover { flex-direction: row; padding: 1rem; gap: 1rem; }
    .sponsored-grid { grid-template-columns: 1fr; }
  }
