/* ===================================================================== AffPapa News — shared article-page stylesheet Token source: vars.css (load BEFORE this file). Bootstrap 5.3 utilities are used in markup for generic flex/visibility;
 everything themed lives here. One DOM per page — responsive via media queries only. ===================================================================== */
 :root {
    /* Supplementary tokens not present in vars.css */
     --news-header-h: 64px;
     --news-subnav-h: 48px;
     --news-sticky-offset: calc(var(--news-header-h) + var(--news-subnav-h) + 24px);
     --news-surface: #FFFFFF;
     --news-surface-2: #F8FAFC;
     --news-surface-3: #F1F5F9;
     --news-border: var(--elev-border-outer, #E8E8EA);
     --news-border-strong: #A8AFBA;
     --news-divider: var(--elev-divider, #F0F0F2);
     --news-text: var(--ap-slate-900, #0F172A);
     --news-text-body: var(--ap-slate-700, #334155);
     --news-text-muted: var(--ap-slate-500, #64748B);
     --news-text-faint: #94A3B8;
     --news-slate-600: #475569;
     --news-red-ink: #C22B30;
     --news-success: #16A34A;
     --news-radius-xs: 4px;
     --news-radius-sm: 6px;
     --news-radius-md: 8px;
     --news-radius-lg: 12px;
     --news-radius-xl: 16px;
     --news-radius-pill: 999px;
     --news-shadow-card: var(--elev-s1);

    --featured_title: clamp(22px, 2vw, 26px);
    --sec_title: clamp(18px, 1.8vw, 22px);
    --lead_story: clamp(18px, 1.6vw, 22px);
    --sidebar_sec_title:  clamp(18px, 1.4vw, 18px);
    --teaser_title: 16px;
    --cta_link: clamp(12px, 1.2vw, 14px);

}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
}

 body #kaya-page-content-wrapper, .nojq {
       font-family: 'Inter', sans-serif !important;
    }


.after_news_banner{
    min-height: 119px;
    height: 119px;
}


time{
    font-family: 'Inter', sans-serif !important;
}
a{
    text-decoration: none !important;
}

 html {
     scroll-behavior: smooth;
}
 body.news_page {
     margin: 0;
     background: var(--page-bg, #FCFCFD);
     font-family: var(--ap-font-sans, 'Inter', sans-serif);
     color: var(--news-text);
     -webkit-font-smoothing: antialiased;
}
p{
    padding-bottom: 0px !important;
}


.page_masthead {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--news-text);
    gap: 24px;
    margin-top: 25px;
}
.page_masthead_title { margin: 0; font-size: 32px; font-weight: 700; letter-spacing: -0.02em; line-height: var(--type-title-lh-tight, 1.08); color: var(--news-text); }
.masthead_dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); margin-left: 8px; }
.page_masthead_date { font-size: 14px; font-weight: 500; color: var(--news-text-muted); white-space: nowrap; }



 .news_page a {
     color: inherit;
     text-decoration: none;
     transition: var(--transition-color);
}

 .news_page a:hover {
     color: var(--brand);
}
 .news_page ::selection {
     background: #FFE1E2;
}
/* mob / desktop visibility helpers (project convention — single DOM, no duplicated text) */
 .mob {
     display: none !important;
}
 @media (max-width: 991.98px) {
     .mob {
         display: block !important;
    }
     .desktop {
         display: none !important;
    }
}
/* ---- Shell ---- */
.content_shell {
    max-width: var(--ap-content-max, 1344px);
    margin: 0 auto;
    padding-left: 26px;
    padding-right: 26px;
}
/* ---- Site header ---- */
 .site_header {
     position: sticky;
     top: 0;
     z-index: 50;
     background: var(--news-surface);
     border-bottom: 1px solid var(--news-divider);
}
 .site_header_inner {
     height: var(--news-header-h);
     gap: 32px;
}
 .site_header .brand img {
     height: 26px;
     width: auto;
     display: block;
}
 .header_right {
     gap: 24px;
}
 .main_nav {
     gap: 28px;
}
 .main_nav a {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     font-size: 15px;
     font-weight: 500;
     color: var(--news-text);
}
 .main_nav a:hover {
     color: var(--brand);
}
 .main_nav a i {
     font-size: 9px;
     color: var(--news-text-faint);
}
 .header_divider {
     width: 1px;
     height: 28px;
     background: var(--news-border);
}
 .header_cta {
     gap: 12px;
}
 .btn_outline, .btn_brand {
     display: inline-flex;
     align-items: center;
     height: 42px;
     padding: 0 22px;
     font-size: 15px;
     font-weight: 500;
     border-radius: var(--news-radius-md);
}
 .btn_outline {
     background: var(--news-surface);
     border: 1px solid var(--news-border);
     color: var(--news-text);
}
 .btn_outline:hover {
     border-color: var(--news-border-strong);
     color: var(--news-text);
}
 .btn_brand {
     background: var(--brand);
     color: #fff;
}
 .btn_brand:hover {
     background: var(--brand-hover);
     color: #fff;
}
 .nav_toggle {
     background: none;
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-md);
     width: 42px;
     height: 42px;
     color: var(--news-text);
}
/* ---- News sub-nav ---- */



 .news_subnav {
     position: sticky;
     top: var(--news-header-h) ;
     z-index: 40;
     background: #fff;
     border-bottom: 1px solid var(--news-border);
}

.logged-in.admin-bar  .news_subnav {
     position: sticky;
     top: calc(var(--news-header-h) + 20px);
}

 .news_subnav_inner {
     gap: 28px;
     height: var(--news-subnav-h);
     overflow-x: auto;
     scrollbar-width: none;
}
 .news_subnav_inner::-webkit-scrollbar {
     display: none;
}
 .subnav_pill {
     display: inline-flex;
     align-items: center;
     flex-shrink: 0;
     height: 100%;
     font-size: var(--cta_link);
     font-weight: 500;
     color: var(--news-text-muted) !important;
}
 .subnav_pill:hover {
     color: var(--news-text) !important;
}
 .subnav_pill.is-active {
     color: var(--news-text) !important;
     font-weight: 700;
    border-bottom: 1px solid var(--brand);
}
 .subnav_pill.is-active:hover {
     color: var(--news-text);
}
/* ---- Page layout ---- */
 .news_main {
     padding-top: 40px;
     padding-bottom: 64px;
}
 .article_layout {
     display: grid;
     grid-template-columns: 210px minmax(0, 1fr) 300px;
     align-items: start;
}
 .article_layout--spotlight {
     padding-top: 72px;
}
 .article_rail {
     display: flex;
     flex-direction: column;
}
 .rail_left {
     position: sticky;
     top: var(--news-sticky-offset);
     padding-right: 32px;
     border-right: 1px solid var(--news-divider);
     gap: 24px;
}
 .rail_right {
     position: sticky;
     top: var(--news-sticky-offset);
     padding-left: 32px;
     border-left: 1px solid var(--news-divider);
     gap: 20px;
}
/* ---- Left rail: share ---- */
 .share_row {
     gap: 10px;
}
 .share_btn {
     width: 40px;
     height: 40px;
     border: 1px solid var(--news-border);
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: var(--news-text-muted);
     font-size: 14px;
}
 .share_btn:hover {
     border-color: var(--news-border-strong);
     color: var(--brand);
}
/* ---- Left rail: In this Article (reading progress) ---- */
 .rail_toc_title {
     font-size: 16px;
     font-weight: 700;
     margin-bottom: 8px;
}
 .toc_progressbar {
     gap: 8px;
     margin-bottom: 14px;
}
 .toc_progress_track {
     flex: 1;
     height: 3px;
     border-radius: 2px;
     background: var(--news-surface-3);
     position: relative;
     overflow: hidden;
}
 .toc_progress_fill {
     position: absolute;
     left: 0;
     top: 0;
     height: 100%;
     width: 0;
     background: var(--brand);
}
 .toc_progress_label {
     font-size: 12px;
     font-weight: 600;
     color: var(--news-text-muted);
     white-space: nowrap;
}
 .toc_links {
     gap: 12px;
}
 .toc_link {
     gap: 12px;
     align-items: stretch;
}
 .toc_rail {
     width: 3px;
     border-radius: 2px;
     background: var(--news-surface-3);
     position: relative;
     overflow: hidden;
     flex-shrink: 0;
     align-self: stretch;
}
 .toc_fill {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 0;
     background: var(--brand);
}
 .toc_text {
     font-size: 14px;
     line-height: 1.4;
     font-weight: 400;
     color: var(--news-text-body);
}
 .toc_link:hover .toc_text {
     color: var(--brand);
}
 .toc_link.is-reading .toc_text {
     font-weight: 600;
     color: var(--news-red-ink);
}
 .toc_link.is-done .toc_text {
     color: var(--news-text);
}
/* ---- Left rail: Best Affiliate Programs ---- */
 .rail_programs_title {
     font-size: 15px;
     font-weight: 700;
     margin-bottom: 10px;
     white-space: nowrap;
}
 .program_row {
     gap: 8px;
     padding: 9px 0;
     border-top: 1px solid var(--news-divider);
}
 .program_rank {
     width: 16px;
     font-size: 12px;
     font-weight: 700;
     color: var(--news-text-faint);
     flex-shrink: 0;
}
 .program_info {
     min-width: 0;
}
 .program_name {
     font-size: 12px;
     font-weight: 700;
     line-height: 1.3;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
}
 .program_site {
     font-size: 12px;
     line-height: 1.4;
}
 .program_site a {
     color: var(--news-red-ink);
     font-weight: 600;
}
 .program_site a:hover {
     color: var(--brand);
}
 .program_products {
     font-size: 12px;
     line-height: 1.4;
     color: var(--news-text-muted);
}
 .program_cta {
     width: 26px;
     height: 26px;
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-xs);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: var(--news-text-muted);
     font-size: 10px;
     flex-shrink: 0;
}
 .program_cta:hover {
     border-color: var(--brand);
     color: var(--brand);
}
 .rail_link_more {
     margin-top: 8px;
     font-size: 12px;
}
/* ---- Article body ---- */
 .article_body {
     padding: 0 44px;
     max-width: 732px;
     gap: 24px;
}
 .article_head {
     gap: 14px;
}
 .article_kicker {
     gap: 10px;
}
 .cat_badge {
     background: var(--brand);
     color: #fff;
     font-size: var(--cta_link);
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     padding: 4px 10px;
     border-radius: var(--news-radius-xs);
}
 .kicker_label {
     font-size: 12px;
     font-weight: 600;
     color: var(--news-red-ink);
}
 .kicker_label--caps {
     letter-spacing: 0.08em;
     text-transform: uppercase;
}
 .article_title {
     margin: 0;
     font-size: 42px;
     line-height: var(--type-title-lh-tight, 1.08);
     letter-spacing: -0.02em;
     font-weight: 700;
     text-wrap: pretty;
}
 .article_standfirst {
     margin: 0;
     font-size: 20px;
     line-height: 1.35;
     font-weight: 600;
     color: var(--news-slate-600);
     text-wrap: pretty;
}
 .byline_bar {
     gap: 16px;
     border-top: 1px solid var(--news-divider);
     border-bottom: 1px solid var(--news-divider);
     padding: 14px 0;
}
 .byline_name {
     font-size: 14px;
     font-weight: 700;
}
 .byline_name a {
     color: var(--news-red-ink);
}
 .byline_name a:hover {
     color: var(--brand);
}
 .byline_date {
     font-size: 12px;
     color: var(--news-text-faint);
     margin-top: 2px;
}
 .read_time {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 12px;
     font-weight: 600;
     color: var(--news-text-muted);
     flex-shrink: 0;
}
 .read_time i {
     font-size: 12px;
}
 .correction_note {
     margin: 0;
     font-size: 12px;
     line-height: 1.6;
     font-style: italic;
     color: var(--news-text-muted);
     border-left: 3px solid var(--news-border-strong);
     padding-left: 14px;
}
 .correction_note strong {
     font-style: normal;
}
 .takeaways {
     background: var(--news-surface-2);
     border-radius: var(--news-radius-md);
     padding: 20px 24px;
}
 .takeaways_title {
     font-size: var(--type-h5, 0.875rem);
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--news-text-muted);
     margin-bottom: 10px;
}
 .takeaways ul {
     margin: 0;
     padding-left: 18px;
     display: flex;
     flex-direction: column;
     gap: 8px;
     font-size: 15px;
     line-height: 1.5;
     color: var(--news-text-body);
}
 .article_figure {
     margin: 0;
}
 .article_figure > img {
     width: 100%;
     border-radius: var(--news-radius-md);
     display: block;
}
 .article_figure figcaption {
     font-size: 12px;
     color: var(--news-text-faint);
     margin-top: 8px;
}
 .article_p {
     margin: 0;
     font-size: 17px;
     line-height: 1.75;
     color: var(--news-text-body);
}
 .article_h2 {
     margin: 12px 0 0;
     font-size: 24px;
     font-weight: 700;
     letter-spacing: -0.01em;
     scroll-margin-top: 160px;
}
 #author {
     scroll-margin-top: 160px;
}
 .pull_quote {
     margin: 8px 0;
     background: var(--news-surface-3);
     border-left: 4px solid var(--ap-slate-900);
     border-radius: var(--news-radius-sm);
     padding: 28px 32px;
}
 .pull_quote p {
     margin: 0;
     font-size: 23px;
     line-height: 1.5;
     font-style: italic;
     color: var(--news-text-body);
}
 .pull_quote cite {
     display: block;
     margin-top: 14px;
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--news-text-muted);
     font-style: normal;
}
 .promo_slot {
     border-radius: var(--news-radius-md);
     text-align: center;
     align-items: center;
     gap: 6px;
}
 .promo_slot--leaderboard {
     padding: 44px 24px;
}

 .promo_kicker {
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--news-text-faint);
}
 .promo_size {
     font-size: 20px;
     font-weight: 700;
     color: var(--news-slate-600);
}
 .promo_slot--tower .promo_size {
     font-size: 16px;
}
.promo_slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
    display: block;
}
 .promo_note {
     font-size: 12px;
     color: var(--news-text-faint);
}
 .promo_slot--tower .promo_note {
     font-size: 12px;
}
 .assist_note {
     margin: 8px 0 0;
     font-size: 14px;
     font-style: italic;
     color: var(--news-text-muted);
}
 .article_tags {
     gap: 8px;
}
 .tag_pill {
     font-size: 12px;
     font-weight: 600;
     color: var(--news-text-body);
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-pill);
     padding: 6px 14px;
}
 .tag_pill:hover {
     border-color: var(--news-border-strong);
     color: var(--brand);
}
 .author_card {
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-lg);
     padding: 24px;
     gap: 18px;
     align-items: flex-start;
}
 .author_card > img {
     width: 64px;
     height: 64px;
     border-radius: 50%;
     object-fit: cover;
     object-position: top;
     flex-shrink: 0;
}
 .author_name {
     font-size: 16px;
     font-weight: 700;
}
 .author_role {
     font-size: 12px;
     font-weight: 600;
     color: var(--news-red-ink);
     margin: 2px 0 8px;
}
 .author_bio {
     margin: 0;
     font-size: 14px;
     line-height: 1.6;
     color: var(--news-text-muted);
}
 .fineprint {
     margin: 0;
     font-size: 12px;
     line-height: 1.6;
     color: var(--news-text-faint);
}
 .fineprint a {
     color: var(--news-text-muted);
     text-decoration: underline;
}
 .fineprint a:hover {
     color: var(--brand);
}
 .read_next {
     gap: 24px;
     border-top: 2px solid var(--ap-slate-900);
     padding-top: 20px;
     margin-top: 8px;
}
 .read_next_text {
     gap: 8px;
}
 .read_next_kicker {
     font-size: var(--type-h5, 0.875rem);
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--brand);
}
 .read_next_title {
     font-size: 22px;
     font-weight: 700;
     line-height: 1.3;
     letter-spacing: -0.01em;
     color: var(--news-text);
     text-wrap: pretty;
}
 .read_next > img {
     width: 180px;
     aspect-ratio: 16/10;
     object-fit: cover;
     border-radius: var(--news-radius-md);
     flex-shrink: 0;
}
 .read_next:hover {
     color: inherit;
}
 .read_next:hover .read_next_title {
     color: var(--brand);
}
/* ---- Right rail ---- */
 .rail_heading {
     font-size: var(--type-h5, 0.875rem);
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--brand);
}
 .top_news_list a {
     padding: 16px 0;
     border-bottom: 1px solid var(--news-divider);
     font-size: 15px;
     font-weight: 700;
     line-height: 1.35;
}
 .top_news_list a:first-child {
     padding-top: 0;
}
 .top_news_list a:last-child {
     border-bottom: 0;
}
/* ---- 3D bar chart (Bitcoin article) ---- */
 .chart3d {
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-md);
     padding: 20px 24px 16px;
     background: var(--news-surface);
}
 .chart3d_head {
     margin-bottom: 10px;
}
 .chart3d_title {
     font-size: 14px;
     font-weight: 700;
}
 .chart3d_unit, .data_card_unit {
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--news-text-faint);
}
 .chart3d_bars {
     gap: 0;
     height: 220px;
     padding: 40px 10px 0;
     border-bottom: 2px solid var(--ap-slate-900);
}
 .chart3d_col {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: flex-end;
     height: 100%;
}
 .bar3d {
     position: relative;
     width: 44px;
     background: var(--ap-slate-300);
}
 .bar3d::before {
     content: '';
     position: absolute;
     left: 0;
     top: -12px;
     width: 100%;
     height: 12px;
     background: #E2E8F0;
     transform: skewX(-45deg);
     transform-origin: 0 100%;
}
 .bar3d::after {
     content: '';
     position: absolute;
     right: -12px;
     top: 0;
     width: 12px;
     height: 100%;
     background: #9AA6B5;
     transform: skewY(-45deg);
     transform-origin: 0 0;
}
 .bar3d_label {
     position: absolute;
     top: -36px;
     left: 50%;
     transform: translateX(-50%);
     font-size: 12px;
     font-weight: 700;
     color: var(--news-text-muted);
     white-space: nowrap;
}
 .bar3d--brand {
     background: linear-gradient(180deg, var(--brand), var(--brand-hover));
}
 .bar3d--brand::before {
     background: #FF8A8E;
}
 .bar3d--brand::after {
     background: #C0211F;
}
 .bar3d--brand .bar3d_label {
     color: var(--news-red-ink);
}
 .chart3d_months {
     padding: 8px 10px 0;
}
 .chart3d_months span {
     flex: 1;
     text-align: center;
     font-size: 12px;
     font-weight: 500;
     color: var(--news-text-muted);
}
 .chart3d_months .is-current {
     font-weight: 700;
     color: var(--news-text);
}
 .chart3d figcaption {
     margin-top: 12px;
     font-size: 12px;
}
/* ---- Data table (Bitcoin article) ---- */
 .data_card {
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-md);
     overflow: hidden;
     background: var(--news-surface);
}
 .data_card_head {
     padding: 14px 18px;
     border-bottom: 1px solid var(--news-divider);
}
 .data_card_title {
     font-size: 14px;
     font-weight: 700;
}
 .data_table {
     font-size: 14px;
     color: var(--news-text-body);
     --bs-table-bg: transparent;
}
 .data_table th {
     padding: 10px 18px;
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--news-text-faint);
     border: 0;
}
 .data_table td {
     padding: 12px 18px;
     font-weight: 600;
     border-top: 1px solid var(--news-divider);
     border-bottom: 0;
}
 .data_table .dt_num {
     text-align: right;
}
 .data_table .dt_up {
     color: var(--news-success);
}
 .data_table .dt_muted {
     color: var(--news-text-muted);
     font-weight: 400;
}
 .data_card figcaption {
     padding: 10px 18px;
     font-size: 12px;
     border-top: 1px solid var(--news-divider);
}
/* ---- Spotlight hero ---- */
 .spotlight_hero {
     position: relative;
     margin-bottom: 28px;
}
 .spotlight_hero_img {
     width: 100%;
     height: 680px;
     object-fit: cover;
     display: block;
}
 .spotlight_credit {
     position: absolute;
     right: 24px;
     bottom: 18px;
     font-size: 12px;
     color: rgba(255,255,255,0.85);
}
 .spotlight_panelwrap {
     position: absolute;
     left: 0;
     right: 0;
     bottom: -48px;
     z-index: 5;
}
 .spotlight_panel {
     margin-left: 210px;
     margin-right: 310px;
     background: rgba(15,23,42,0.92);
     backdrop-filter: blur(14px) saturate(1.2);
     -webkit-backdrop-filter: blur(14px) saturate(1.2);
     border: 1px solid rgba(255,255,255,0.14);
     border-radius: var(--news-radius-xl);
     box-shadow: 0 8px 30px rgba(0,0,0,0.35);
     padding: 26px 44px 30px;
     gap: 12px;
}
 @supports not (backdrop-filter: blur(14px)) {
     .spotlight_panel {
         background: rgba(15,23,42,0.97);
    }
}
 .spotlight_title {
     color: #fff;
     font-size: 38px;
}
 .spotlight_standfirst {
     color: rgba(255,255,255,0.85);
     font-weight: 500;
     font-size: 18px;
}
/* ---- Exclusive hero (split: text left, image right) ---- */
 .exclusive_hero {
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
     gap: 56px;
     align-items: center;
     margin-bottom: 52px;
}
 .exclusive_hero_text {
     gap: 18px;
}
 .exclusive_title {
     font-size: 46px;
     line-height: 1.08;
}
 .exclusive_rule {
     display: block;
     width: 48px;
     height: 3px;
     border-radius: 2px;
     background: var(--brand);
     margin-bottom: -8px;
}
 .exclusive_standfirst {
     font-size: 19px;
     font-weight: 500;
     line-height: 1.55;
}
 .exclusive_byline {
     border-bottom: 0;
     padding-bottom: 0;
     margin-top: 6px;
}
 .exclusive_hero_img {
     width: 100%;
     aspect-ratio: 1600 / 1000;
     object-fit: cover;
     border-radius: var(--news-radius-xl);
     display: block;
     box-shadow: var(--news-shadow-card);
}
 .exclusive_credit {
     margin-top: 8px;
     font-size: 12px;
     color: var(--news-text-faint);
}
/* ---- Other News ---- */
 .other_news {
     margin-top: 56px;
}
 .other_news_heading {
     margin: 0 0 20px;
     font-size: 22px;
     font-weight: 700;
     letter-spacing: -0.01em;
}
 .other_news_card {
     background: var(--news-surface);
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-lg);
     box-shadow: var(--news-shadow-card);
}
 .news_row {
     display: grid;
     grid-template-columns: minmax(0, 1fr) 200px;
     gap: 28px;
     align-items: center;
     padding: 22px 28px;
     border-bottom: 1px solid var(--news-divider);
}
 .news_row:hover {
     color: inherit;
}
 .news_row:hover .news_row_title {
     color: var(--brand);
}
 .news_row_text {
     gap: 8px;
}
 .news_row_meta {
     gap: 8px;
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
}
 .news_row_cat {
     color: var(--brand);
}
 .news_row_dot {
     color: var(--ap-slate-300);
}
 .news_row_time {
     color: var(--news-text-faint);
}
 .news_row_title {
     font-size: 18px;
     font-weight: 700;
     line-height: 1.3;
     letter-spacing: -0.01em;
     color: var(--news-text);
     text-wrap: pretty;
}
 .news_row > img {
     width: 100%;
     aspect-ratio: 16/10;
     object-fit: cover;
     border-radius: var(--news-radius-md);
}
 .other_news_footer {
     padding: 14px;
}
 .link_red {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-weight: 600;
     color: var(--brand);
     font-size: var(--cta_link);
}
 .link_red:hover {
     color: var(--brand-hover);
}
/* ===================================================================== Responsive — same DOM, no duplicated content ===================================================================== */
/* Tablet: drop the left rail column;
 share row goes horizontal above the article;
 rail widgets (TOC / programs) hide to keep reading uncluttered */
 @media (max-width: 1199.98px) {
     .article_layout {
         grid-template-columns: minmax(0, 1fr) 280px;
         row-gap: 32px;
    }
     .rail_left {
         position: static;
         grid-column: 1 / -1;
         border-right: 0;
         padding-right: 0;
         flex-direction: row;
         align-items: center;
    }
     .rail_toc, .rail_programs {
         display: none;
    }
     .article_body {
         padding: 0;
    }
     .article_layout--spotlight {
         padding-top: 56px;
    }
     .spotlight_hero_img {
         height: 480px;
    }
     .spotlight_panel {
         margin-left: 0;
         margin-right: 0;
         padding: 24px 28px;
    }
     .exclusive_hero {
         grid-template-columns: 1fr;
         gap: 24px;
    }
     .exclusive_hero_media {
         order: -1;
    }
}
/* Mobile: single column;
 right rail follows the article */
 @media (max-width: 991.98px) {
     :root {
         --news-header-h: 56px;
    }
     .article_layout {
         grid-template-columns: 1fr;
    }
     .rail_right {
         position: static;
         border-left: 0;
         padding-left: 0;
    }
     .article_body {
         max-width: none;
    }
     .btn_outline {
         display: none;
    }
}
 @media (max-width: 767.98px) {
     .news_main {
         padding-top: 24px;
         padding-bottom: 48px;
    }
     .article_title {
         font-size: var(--type-h1, 2rem);
    }
     .spotlight_title {
         font-size: var(--type-h2, 1.625rem);
    }
     .exclusive_title {
         font-size: var(--type-h1, 2rem);
    }
     .article_standfirst {
         font-size: 17px;
    }
     .article_p {
         font-size: 16px;
         line-height: 1.7;
    }
     .article_h2 {
         font-size: 20px;
    }
     .pull_quote {
         padding: 20px;
    }
     .pull_quote p {
         font-size: 19px;
    }
     .byline_bar {
         flex-wrap: wrap;
    }
     .spotlight_hero {
         margin-bottom: 0;
    }
     .spotlight_hero_img {
         height: 380px;
    }
     .spotlight_panelwrap {
         position: static;
         margin-top: -64px;
    }
     .article_layout--spotlight {
         padding-top: 24px;
    }
     .exclusive_hero {
         gap: 18px;
         margin-bottom: 32px;
    }
     .promo_slot--tower {
         padding: 60px 20px;
    }
     .read_next {
         flex-direction: column;
         align-items: flex-start;
    }
     .read_next > img {
         width: 100%;
    }
     .news_row {
         grid-template-columns: 1fr;
         gap: 12px;
         padding: 18px 20px;
    }
     .news_row > img {
         order: -1;
    }
     .news_row_title {
         font-size: 16px;
    }
     .other_news {
         margin-top: 40px;
    }
}
/* ---- Mobile "In this article" bar (JS-built;
 see js/news.js) ---- */
 .mtoc {
     display: none;
}
 @media (max-width: 991.98px) {
     .mtoc {
         display: none;
         position: sticky;
         top: var(--news-header-h);
         z-index: 45;
         background: var(--page-bg, #FCFCFD);
         border-bottom: 1px solid var(--news-border);
    }
     .mtoc.is-visible {
         display: block;
    }
     .mtoc_bar {
         display: flex;
         align-items: center;
         justify-content: space-between;
         gap: 12px;
         width: 100%;
         min-height: 48px;
         padding: 13px var(--ap-content-inset-left, 20px);
         background: none;
         border: 0;
         text-align: left;
         font-family: var(--ap-font-sans);
         font-size: 15px;
         font-weight: 600;
         line-height: 1.3;
         color: var(--news-text);
         cursor: pointer;
    }
     .mtoc_bar i {
         font-size: 12px;
         color: var(--news-text-muted);
         flex-shrink: 0;
    }
     .mtoc_panel {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         z-index: 46;
         background: var(--page-bg, #FCFCFD);
         border-bottom: 1px solid var(--news-border);
         box-shadow: 0 20px 28px rgba(15, 23, 42, 0.10);
         padding: 2px var(--ap-content-inset-left, 20px) 10px;
    }
     .mtoc.is-open .mtoc_panel {
         display: block;
    }
     .mtoc_item {
         display: block;
         padding: 14px 0;
         border-bottom: 1px solid var(--news-divider);
         font-size: 15px;
         line-height: 1.4;
         font-weight: 400;
         color: var(--news-text-muted);
    }
     .mtoc_item:last-child {
         border-bottom: 0;
    }
     .mtoc_item.is-current {
         font-weight: 700;
         color: var(--news-text);
    }
    /* the desktop rail TOC is hidden on mobile already;
     the bar replaces it */
}
/* ===================================================================== News home page ===================================================================== */
 .img_preload {
     position: absolute;
     width: 1px;
     height: 1px;
     overflow: hidden;
     opacity: 0;
     pointer-events: none;
}
 .band_top {
     padding: 3px 0 64px;
}
 .home_stack {
     gap: 32px;
}
 .home_banner {
     display: block;
     border-radius: var(--news-radius-lg);
     overflow: hidden;
}
 .home_banner img, .ad_banner img {
     width: 100%;
     display: block;
}
 .ad_banner {
     display: block;
     border-radius: var(--news-radius-md);
     overflow: hidden;
     border: 1px solid var(--news-border);
     margin-top: 32px;
}
 .home_grid {
     display: grid;
     grid-template-columns: minmax(0, 1fr) 380px;
     gap: 32px;
     align-items: start;
}
 .home_left {
     gap: 44px;
}
 .home_side {
     gap: 24px;
}
 .featured_card {
     display: grid;
     grid-template-columns: minmax(0, 58%) minmax(0, 1fr);
     background: var(--news-surface);
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-xl);
     box-shadow: var(--news-shadow-card);
     overflow: hidden;
     transition: border-color .15s, box-shadow .15s;
}
 .featured_card:hover {
     border-color: var(--news-border-strong);
}
 .featured_img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
}
 .featured_body {
     padding: 24px 24px;
     gap: 12px;
}
 .featured_kicker {
     gap: 12px;
}
 .featured_title {
     margin: 0;
     font-size: var(--featured_title);
     line-height: 1.15;
     letter-spacing: -0.02em;
     font-weight: 700;
     text-wrap: pretty;
}
.featured_title a{
    color: #000 !important;
}
.featured_title a:hover{
    color: var(--brand) !important;
}

 .featured_standfirst {
     margin: 0;
     font-size: var(--cta_link);
     line-height: 1.5;
     color: var(--news-text-body);
     display: -webkit-box;
     padding: 0px;
}
 .featured_foot {
     gap: 16px;
}
 .featured_author {
     gap: 12px;
}
 .featured_author > img {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     object-fit: cover;
     object-position: top;
}
 .featured_author_name {
     font-size: 12px;
     font-weight: 600;
}
 .featured_author_date {
     font-size: 12px;
     color: var(--news-text-faint);
}

.featured_view{
    font-size: var(--cta_link);
}


 .teaser_grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 24px;
}
 .teaser_card {
     background: var(--news-surface);
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-lg);
     box-shadow: var(--news-shadow-card);
     padding: 24px;
     gap: 10px;
     transition: border-color .15s;
}



 .teaser_card:hover {
     border-color: var(--news-border-strong);
}
 .teaser_eyebrow {
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--brand);
}
 .teaser_eyebrow.is-green {
     color: var(--news-success);
}
 
 .teaser_card .teaser_title{
    font-size: var(--teaser_title);
     margin: 0;
     line-height: normal;
     font-weight: 600 !important;

}

 .teaser_card p {
     margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: var(--news-text-body);
}
 .home_sec {
     gap: 20px;
}
 .sec_row {
     gap: 16px;
}
 .sec_bar {
     border-left: 3px solid var(--brand);
     padding-left: 14px;
}
 .sec_bar h2 {
     margin: 0;
     font-size: var(--sec_title);
     font-weight: 700;
}
 .lead_grid {
     display: grid;
     grid-template-columns: 320px minmax(0, 1fr);
     gap: 16px 28px;
     align-items: start;
}
 .lead_img_link {
     grid-row: span 2;
     display: block;
}
 .lead_img {
     width: 100%;
     aspect-ratio: 16/10;
     object-fit: cover;
     border-radius: var(--news-radius-md);
     display: block;
}
 .lead_title_link {
     display: block;
     color: var(--news-text);
}
 .lead_title {
     margin: 0;
     font-size: var(--sec_title);
     line-height: 1.35;
     letter-spacing: -0.01em;
     font-weight: 700;
     text-wrap: pretty;
}
 .lead_title_link:hover .lead_title {
     color: var(--brand);
}
 .lead_sub {
}
 .lead_sub a {
     display: block;
     padding: 12px 0;
     border-bottom: 1px solid var(--news-divider);
     color: var(--news-text);
}
 .lead_sub a.is-last {
     border-bottom: 0;
}
 .lead_sub a:hover {
     color: var(--brand);
}
 .lead_sub a span {
     font-size: 16px;
     font-weight: 600;
     line-height: 1.35;
}
 .latest_card {
     background: var(--news-surface);
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-lg);
     box-shadow: var(--news-shadow-card);
     padding: 24px 24px 8px;
}

.latest__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gmt_info {
    font-size: 12px;
    color: var(--news-text-faint);
    font-weight: 600;
}

 .latest_title {
     margin: 0 0 6px;
     font-size: var(--sidebar_sec_title);
     font-weight: 700;
}
 .latest_row {
     gap: 10px;
     padding: 16px 0;
     border-bottom: 1px solid var(--news-divider);
}
 .latest_row.is-last {
     border-bottom: 0;
}
 .latest_row:hover {
     color: inherit;
}
 .latest_dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--brand);
     margin-top: 6px;
     flex-shrink: 0;
}
 .latest_text {
     font-size: var(--cta_link);
     line-height: 1.35;
     font-weight: 400;
     color: var(--news-text);
}
 .latest_time {
     font-weight: 700;
     white-space: nowrap;
}
 .latest_sep {
     color: var(--ap-slate-300, #CBD5E1);
     margin: 0 8px;
}
 .latest_more {
     display: block;
     text-align: center;
     padding: 14px 0 14px;
     border-top: 1px solid var(--news-divider);
     font-size: 14px;
     font-weight: 600;
     color: var(--news-text);
}
 .latest_more:hover {
     color: var(--brand);
}
 
.events_card {
     background: var(--news-surface);
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-lg);
     box-shadow: var(--news-shadow-card);
     padding: 24px 24px 0;
     display: flex;
     flex-direction: column;
}
 .ev_feat {
     display: flex;
     flex-direction: column;
     gap: 10px;
     padding: 16px 0;
     border-bottom: 1px solid var(--news-divider);
     color: inherit;
}
 .ev_feat img {
     width: 100%;
     aspect-ratio: 410 / 194;
     object-fit: cover;
     border-radius: var(--news-radius-sm);
     display: block;
}
 .ev_text {
     display: flex;
     flex-direction: column;
     gap: 3px;
     min-width: 0;
}
 .ev_feat .ev_text {
     gap: 5px;
}
 .ev_brand {
     font-size: 10px;
     font-weight: 600;
     letter-spacing: .06em;
     text-transform: uppercase;
     color: var(--brand);
}
 .ev_feat_name {
     font-size: 16px;
     font-weight: 700;
     line-height: 1.3;
     letter-spacing: -.01em;
     color: var(--news-text);
}
 .ev_name {
     font-size: 14px;
     font-weight: 700;
     line-height: 1.3;
     letter-spacing: -.01em;
     color: var(--news-text);
     text-wrap: pretty;
}
 .ev_meta {
     font-size: 12px;
     color: var(--news-text-muted);
}
 .ev_feat .ev_meta {
     font-size: 14px;
}
 .ev_meta b {
     font-weight: 600;
     color: var(--news-text);
}
 .ev_sep {
     color: var(--ap-slate-300, #CBD5E1);
     margin: 0 6px;
}
 .ev_list {
     overflow: hidden;
}
 .ev_row {
     display: flex;
     gap: 12px;
     padding: 14px 0;
     border-bottom: 1px solid var(--news-divider);
     color: inherit;
}
 .ev_row.is-last {
     border-bottom: none;
}
 .ev_thumb {
     width: 104px;
     aspect-ratio: 410 / 194;
     object-fit: cover;
     border-radius: var(--news-radius-sm);
     display: block;
     flex-shrink: 0;
     min-height: 58px;
}
 .ev_date_tile {
     width: 104px;
     aspect-ratio: 410 / 194;
     flex-shrink: 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 1px;
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-sm);
     background: var(--news-surface-2);
}
 .ev_mon {
     font-size: 10px;
     font-weight: 600;
     letter-spacing: .06em;
     text-transform: uppercase;
     color: var(--news-text-muted);
}
 .ev_day {
     font-size: 19px;
     font-weight: 700;
     line-height: 1;
     color: var(--news-text);
}
 .ev_more {
     display: block;
     text-align: center;
     padding: 14px 0 16px;
     font-size: 14px;
     font-weight: 600;
     color: var(--news-text);
     flex-shrink: 0;
}
 .ev_more:hover {
     color: var(--brand);
}












 [data-market-data] {
     display: none;
}
 .nl_card {
     background: var(--news-surface);
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-lg);
     box-shadow: var(--news-shadow-card);
     padding: 24px;
     gap: 14px;
}
 .nl_card h3 {
     margin: 0;
     font-size: 18px;
     font-weight: 700;
     letter-spacing: -0.01em;
}
 .nl_card p {
     margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: var(--news-text-body);
}
 .nl_input {
     height: 44px;
     padding: 0 14px;
     border: 1px solid var(--news-border);
     border-radius: var(--news-radius-sm);
     font-family: inherit;
     font-size: 14px;
     color: var(--news-text);
     background: var(--news-surface);
     outline: none;
     width: 100%;
}
 .nl_input:focus {
     border-color: var(--news-border-strong);
}
 .nl_btn {
     height: 44px;
     border: none;
     border-radius: var(--news-radius-md);
     background: var(--brand);
     color: #fff;
     font-family: inherit;
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
}
 .nl_btn:hover {
     background: var(--brand-hover);
}
 .band {
     background: var(--news-surface-2);
     border-top: 1px solid var(--news-divider);
     border-bottom: 1px solid var(--news-divider);
     padding: 64px 0;
}
 .band--plain {
     background: none;
     border: none;
}
 .band--last {
     padding-bottom: 96px;
     border-bottom: 0;
}
 .grid4 {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
}
 .g4_card {
     gap: 12px;
     color: var(--news-text);
}
 .g4_card:hover {
     color: inherit;
}
 .g4_card:hover h3 {
     color: var(--brand);
}
 .g4_card img {
     width: 100%;
     aspect-ratio: 16/10;
     object-fit: cover;
     border-radius: var(--news-radius-md);
     display: block;
}
 .g4_card h3 {
     margin: 0;
     font-size: 16px;
     line-height: 1.35;
     font-weight: 600;
     text-wrap: pretty;
}
 .reports_grid {
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
     gap: 48px;
     align-items: start;
}
 .report_feat {
     gap: 18px;
     color: var(--news-text);
}
 .report_feat:hover {
     color: inherit;
}
 .report_feat:hover h3 {
     color: var(--brand);
}
 .report_feat > img {
     width: 100%;
     border-radius: var(--news-radius-lg);
     display: block;
}
 .report_feat_text {
     gap: 10px;
}
 .report_feat h3 {
     margin: 0;
     font-size: 22px;
     line-height: 1.35;
     letter-spacing: -0.01em;
     font-weight: 700;
     text-wrap: pretty;
}
 .report_feat p {
     margin: 0;
     font-size: 16px;
     line-height: 1.6;
     color: var(--news-text-body);
}
 .mini_byline {
     font-size: 12px;
     color: var(--news-text-muted);
}
 .mini_byline b {
     font-weight: 600;
     color: var(--news-text);
}
 .dot_sep {
     color: var(--ap-slate-300, #CBD5E1);
     margin: 0 8px;
}
 .report_row {
     gap: 8px;
     padding: 26px 0;
     border-bottom: 1px solid var(--news-divider);
     color: var(--news-text);
}
 .report_row:first-child {
     padding-top: 4px;
}
 .report_row.is-last {
     border-bottom: 0;
     padding-bottom: 0;
}
 .report_row:hover {
     color: inherit;
}
 .report_row:hover .report_row_title {
     color: var(--brand);
}
 .report_row_title {
     font-size: 16px;
     font-weight: 600;
     line-height: 1.35;
}
 .report_row_preview {
     font-size: 14px;
     line-height: 1.5;
     color: var(--news-text-body);
}
/* ===================================================================== Category pages (Top/Affiliate/Industry/Operator News) ===================================================================== */
 .cat_head {
     margin-bottom: 24px;
}
 .cat_head h1 {
     margin: 0;
     font-size: clamp(26px, 3vw, 32px);
     font-weight: 700;
}
 .cat_head p {
     margin: 8px 0 0;
     font-size: 16px;
     line-height: 1.5;
     color: var(--news-text-body);
     white-space: nowrap;
}
 .cat_grid {
     display: grid;
     grid-template-columns: minmax(0, 1fr) 300px;
     gap: 32px;
     align-items: start;
}
 .cat_side {
     position: sticky;
     top: var(--news-sticky-offset);
     gap: 24px;
}
 .cat_rule {
     gap: 10px;
}
 .cat_rule_bar {
     width: 56px;
     height: 3px;
     border-radius: 2px;
     background: var(--brand);
}
 .cat_rule_diamond {
     width: 6px;
     height: 6px;
     border-radius: 1px;
     background: var(--brand);
     transform: rotate(45deg);
     flex-shrink: 0;
}
 .cat_rule_line {
     flex: 1;
     height: 1px;
     background: var(--news-border);
}
 .cat_feat {
     display: grid;
     grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
     gap: 28px;
     padding: 24px 0;
     border-bottom: 1px solid var(--news-divider);
     color: var(--news-text);
}
 .cat_feat:hover {
     color: inherit;
}
 .cat_feat:hover h2 {
     color: var(--brand);
}
 .cat_feat > img {
     width: 100%;
     aspect-ratio: 16/10;
     object-fit: cover;
     border-radius: var(--news-radius-md);
     display: block;
}
 .cat_feat_text {
     gap: 14px;
}
 .cat_feat h2 {
     margin: 0;
     font-size: clamp(22px, 2vw, 26px);
     line-height: 1.15;
     letter-spacing: -0.02em;
     font-weight: 700;
     text-wrap: pretty;
}
 .cat_feat p {
     margin: 0;
     font-size: 16px;
     line-height: 1.6;
     color: var(--news-text-body);
}
 .cat_feat_date {
     margin-top: auto;
     font-size: 12px;
    color: var(--news-text-faint);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}
 .cat_meta {
     gap: 10px;
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
}
 .cat_meta_cat {
     color: var(--brand);
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
}
 .cat_meta_dot {
     width: 4px;
     height: 4px;
     border-radius: 50%;
     background: var(--ap-slate-300, #CBD5E1);
}
 .cat_meta_date {
     font-size: 12px;
     color: var(--news-text-faint);
     font-weight: 400;
     letter-spacing: 0;
     text-transform: none;
}
 .cat_row {
     display: grid;
     grid-template-columns: minmax(0, 1fr) 200px;
     gap: 28px;
     align-items: center;
     padding: 18px 0;
     border-bottom: 1px solid var(--news-divider);
     color: var(--news-text);
}
 .cat_row:hover {
     color: inherit;
}
 .cat_row:hover .cat_row_title {
     color: var(--brand);
}
 .cat_row_text {
     gap: 10px;
}
 .cat_row_title {
     font-size: 18px;
     font-weight: 600;
     line-height: 1.35;
     letter-spacing: -0.01em;
     text-wrap: pretty;
}
 .cat_row > img {
     width: 100%;
     aspect-ratio: 16/10;
     object-fit: cover;
     border-radius: var(--news-radius-md);
}
/* --------------------------------------------------------------------- 8. PAGINATION --------------------------------------------------------------------- */
.pagination {
    display: flex;
    justify-content: center;
    padding: 0px;
    margin: 0 auto;
    border: 1px solid var(--elev-border-outer);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--elev-s3);
    width: fit-content;
    margin-top: 30px;
}
 .pagination a,
 .pagination span {
     min-width: 40px;
     height: 40px;
     padding: 0 10px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-left: 1px solid var(--elev-border-outer);
     font-size: 14px;
     font-weight: 600;
     color: #56606E;
     background: #fff;
     cursor: pointer;
     border-radius: 0;
}
 .pagination a:first-child,
 .pagination span:first-child {
     border-left: none;
}
 .pagination .is-active {
     background: #F1F1F3;
     color: var(--ap-slate-900);
     font-weight: 800;
     cursor: default;
}
 .pagination .pg_gap {
     color: #A6ADB8;
     cursor: default;
}
 .pagination a:hover {
     color: var(--ap-slate-900);
}
 @media (max-width: 1199.98px) {
     .home_grid, .cat_grid {
         grid-template-columns: 1fr;
    }
     .home_side, .cat_side {
         position: static;
    }
     .grid4 {
         grid-template-columns: 1fr 1fr;
    }
     .reports_grid {
         grid-template-columns: 1fr;
    }
}
 @media (max-width: 767.98px) {
     .featured_card {
         grid-template-columns: 1fr;
    }
     .teaser_grid, .grid4 {
         grid-template-columns: 1fr;
    }
     .lead_grid {
         grid-template-columns: 1fr;
    }
     .lead_img_link {
         grid-row: auto;
    }
     .cat_head h1 {
         font-size: 26px;
    }
     .cat_head p {
         white-space: normal;
         font-size: 14px;
    }
     .cat_feat {
         grid-template-columns: 1fr;
         gap: 14px;
         padding: 20px 0;
    }
     .cat_feat h2 {
         font-size: 23px;
         line-height: 1.2;
    }
     .cat_feat p {
         font-size: 14px;
    }
     .cat_feat_text {
         gap: 10px;
    }
     .cat_row {
         grid-template-columns: minmax(0, 1fr) 104px;
         gap: 16px;
         padding: 20px 0;
         align-items: center;
    }
     .cat_row > img {
         border-radius: var(--news-radius-sm);
    }
     .cat_row_text {
         gap: 8px;
    }
     .cat_row_title {
         font-size: 16px;
         line-height: 1.3;
    }
     .cat_dek {
         display: none;
    }
     .cat_meta_cat {
         font-size: 12px;
    }
   
     .promo_slot--tower {
         display: none;
    }
     .cat_side {
         gap: 16px;
    }
     .band_top, .band {
         padding-top: 40px;
         padding-bottom: 40px;
    }
    .band_top{
        padding-top: 0px;
    }


}
 .cat_dek {
     font-size: 14px;
     line-height: 1.5;
     color: var(--news-text-body);
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
}
/* ---- MORE label (Affiliate/Operator sub-headlines) ---- */
 .more_row {
     gap: 8px;
     padding-bottom: 10px;
     border-bottom: 1px solid var(--news-divider);
}
 .more_dash {
     width: 14px;
     height: 2px;
     background: var(--brand);
     border-radius: 1px;
}
 .more_text {
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--news-text);
}
/* ---- Mobile LATEST ticker (shown under sub-nav on phones) ---- */
 .news_ticker {
     display: none;
     align-items: stretch;
     background: var(--news-surface);
     border-bottom: 1px solid var(--news-border);
     overflow: hidden;
     font-family: 'Inter', sans-serif;
}
 .ticker_label {
     display: inline-flex;
     align-items: center;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.08em;
     color: var(--brand);
     padding: 0 12px;
     height: 38px;
     flex-shrink: 0;
     border-right: 1px solid var(--news-divider);
      font-family: 'Inter', sans-serif;
}
 .ticker_clip {
     flex: 1;
     overflow: hidden;
     display: flex;
     align-items: center;
}
 .ticker_track {
     display: flex;
     align-items: center;
     gap: 36px;
     width: max-content;
     padding-left: 14px;
     animation: newsticker 36s linear infinite;
      font-family: 'Inter', sans-serif;
}
 .ticker_item {
     font-size: 12px;
     font-weight: 600;
     color: var(--news-text);
     white-space: nowrap;
      font-family: 'Inter', sans-serif;
}
 .ticker_item b {
     color: var(--brand);
     font-weight: 600;
      font-family: 'Inter', sans-serif;
}
 @keyframes newsticker {
     from {
         transform: translateX(0);
    }
     to {
         transform: translateX(-50%);
    }
}
 @media (prefers-reduced-motion: reduce) {
     .ticker_track {
         animation: none;
    }
}
 @media (max-width: 991.98px) {
     .news_ticker {
         display: flex;
    }
     .nl_card {
         display: none !important;
    }
}
/* ---- Exclusive split hero (title left, image right) ---- */
 .xhero {
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
     gap: 56px;
     align-items: center;
     margin-bottom: 52px;
}
 .xhero_text {
     gap: 18px;
}
 .xhero_title {
     margin: 0;
     font-size: 46px;
     line-height: var(--type-title-lh-tight, 1.08);
     letter-spacing: -0.02em;
     font-weight: 700;
     text-wrap: pretty;
}
 .xhero .byline_bar {
     border-bottom: 0;
     padding-bottom: 0;
     margin-top: 6px;
}
 .xhero_media img {
     width: 100%;
     aspect-ratio: 1600/1000;
     object-fit: cover;
     border-radius: var(--news-radius-xl);
     display: block;
     box-shadow: var(--news-shadow-card);
}
 .xhero_credit {
     margin-top: 8px;
     font-size: 12px;
     color: var(--news-text-faint);
}
 .x_rule {
     width: 48px;
     height: 3px;
     border-radius: 2px;
     background: var(--brand);
}
 @media (max-width: 1199.98px) {
     .xhero {
         grid-template-columns: 1fr;
         gap: 24px;
         margin-bottom: 36px;
    }
     .xhero_media {
         order: -1;
    }
}
 @media (max-width: 767.98px) {
     .xhero_title {
         font-size: 30px;
    }
     .xhero {
         margin-bottom: 28px;
    }

    .grid4.on_mob_slider {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        margin: 0 -20px;
        padding: 0 20px 6px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .on_mob_slider .g4_card {
        gap: 12px;
        color: var(--news-text);
        scroll-snap-align: center;
        flex-shrink: 0;
        width: 230px;
    }

    .latest_card{
        display: none;
    }

    .news_subnav{
        background: #fff !important;
    }

    
}
 


@media(max-width: 600px){
    .teaser_eyebrow, .more_text,  .ev_name, .featured_author_name, .ev_meta, .ev_day, .link_red {
        font-size: 12px;
    }

    .featured_standfirst, .featured_view, .lead_sub a span,  .g4_card h3{
        font-size: 14px;
    }

    .report_feat h3{
        font-size: 16px;
    }
    .report_feat p, .mini_byline {
        font-size: 12px;
    }

    .report_row_title{
        font-size: 14px;
    }


    /* cats */

    .cat_head h1, .cat_feat h2  {
        font-size: 22px;
    }
    .cat_meta_cat, .cat_feat_date {
        font-size: 12px;
    }
    .cat_row_title{
        font-size: 16px;
    }

    main {
        overflow-x: hidden;
    }

    .page_masthead_title { font-size: 26px; }
    .page_masthead_date { font-size: 12px; }

}