/*
 * Context Corner - Main Stylesheet
 * Imports all component files.
 * Updated: 2026-03-14
 */

@import 'components/_reset.css';
@import 'components/_typography.css';
@import 'components/_header.css';
@import 'components/_cards.css';
@import 'components/_article.css';
@import 'components/_forms.css';
@import 'components/_archive.css';
@import 'components/_about.css';
@import 'components/_podcast.css';
@import 'components/_author.css';
@import 'components/_members.css';
@import 'components/_footer.css';
@import 'components/_responsive.css';

/* ─── Homepage Sections ─── */

/* Breaking News Banner (optional) */
.hp-breaking {
    background: var(--cc-red);
    color: #fff;
    padding: 0.5rem 0;
    font-family: var(--cc-font-sans);
    font-size: 0.85rem;
    font-weight: 600;
}

.hp-breaking .container {
    display: flex;
    align-items: center;
}

.hp-breaking a {
    color: #fff;
    text-decoration: underline;
}

.hp-breaking a:hover {
    color: #fff;
    opacity: 0.9;
}

.hp-breaking__label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 0.75rem;
    white-space: nowrap;
    font-weight: 800;
}

/* Homepage wrapper */
.homepage {
    padding-top: 1.5rem;
}

/* Hero — 2|1+2|2 layout */
.hp-hero {
    margin-bottom: 2.5rem;
}

.hp-hero__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

/* Side columns use subgrid to share parent row heights */
.hp-hero__col {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 1.5rem;
}

/* Side cards stretch to fill their row */
.hp-hero__col .card {
    display: flex;
    flex-direction: column;
}

.hp-hero__col .card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Fixed aspect ratio for side card images — text area absorbs extra space */
.hp-hero__col .card__image {
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
}

.hp-hero__col .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text area grows to fill remaining row height */
.hp-hero__col .card__content {
    flex: 1;
}

/* Center sub-cards: fixed 3:2 image ratio to match side columns */
.hp-hero__center-sub .card {
    display: flex;
    flex-direction: column;
}

.hp-hero__center-sub .card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hp-hero__center-sub .card__image {
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
}

.hp-hero__center-sub .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-hero__center-sub .card__content {
    flex: 1;
}

/* Center column uses subgrid for both columns and rows */
.hp-hero__center {
    display: grid;
    grid-column: span 2;
    grid-row: span 2;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
    gap: 1.5rem;
}

/* Hero lead card — text overlaid on image, spans both center columns */
.hp-hero__center > .card--large {
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
    border-radius: var(--cc-radius);
}

.hp-hero__center > .card--large .card__link {
    display: block;
    position: relative;
    height: 100%;
}

.hp-hero__center > .card--large .card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.hp-hero__center > .card--large .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Dark gradient overlay on bottom half of image */
.hp-hero__center > .card--large .card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    pointer-events: none;
}

.hp-hero__center > .card--large .card__image {
    position: relative;
}

/* Overlay the content on the image */
.hp-hero__center > .card--large .card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 1;
    color: #fff;
}

.hp-hero__center > .card--large .card__label {
    color: #fff;
    background: var(--cc-red);
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 2px;
}

.hp-hero__center > .card--large .card__title {
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-top: 0.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hp-hero__center > .card--large .card__excerpt,
.hp-hero__center > .card--large .card__meta {
    display: none !important;
}

.hp-hero__center-sub {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: subgrid;
    gap: 1.5rem;
}

/* Section header with "See All" link */
.hp-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cc-text);
}

.hp-section-header h2 {
    margin: 0;
    font-family: var(--cc-font-sans);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hp-section-header__link {
    font-family: var(--cc-font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cc-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hp-section-header__link:hover {
    color: var(--cc-red-hover);
}

/* Latest News — 4-column grid */
.hp-latest {
    padding: 2rem 0;
    border-top: 1px solid var(--cc-border);
}

.hp-latest__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Beat Blocks — 2-column paired grid */
.hp-beats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--cc-border);
}

.hp-beats-grid--single {
    grid-template-columns: 1fr;
}

.hp-beat__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cc-text);
}

.hp-beat__header h3 {
    margin: 0;
    font-family: var(--cc-font-sans);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hp-beat__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-beat__list-item {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--cc-border);
}

.hp-beat__list-item a {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0.75rem;
    align-items: start;
    text-decoration: none;
    color: inherit;
}

.hp-beat__list-item a:hover .hp-beat__list-title {
    color: var(--cc-text-light);
}

.hp-beat__list-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.hp-beat__list-thumb-placeholder {
    width: 60px;
    height: 60px;
    background: var(--cc-gray);
}

.hp-beat__list-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hp-beat__list-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    transition: color 0.2s;
}

.hp-beat__list-meta {
    font-family: var(--cc-font-sans);
    font-size: 0.7rem;
    color: var(--cc-text-light);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hp-beat__more {
    display: inline-block;
    margin-top: 0.75rem;
    font-family: var(--cc-font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cc-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hp-beat__more:hover {
    color: var(--cc-red-hover);
}

/* Analysis + Opinion — 3-col featured cards */
.hp-editorial {
    padding: 2rem 0;
    border-top: 1px solid var(--cc-border);
}

.hp-editorial__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Scale down large cards when used in editorial section (not hero) */
.hp-editorial__grid .card--large .card__title {
    font-size: 1.15rem;
    line-height: 1.3;
}

.hp-editorial__grid .card--large .card__image {
    aspect-ratio: 3 / 2;
}

.hp-editorial__grid .card--large .card__excerpt {
    font-size: 0.85rem;
}

/* Podcast — 3-column episode grid */
.hp-podcast {
    padding: 2rem 0;
    border-top: 1px solid var(--cc-border);
    margin-bottom: 1rem;
}

.hp-podcast__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ==========================================================================
   Subscribe Page — Hero, Body, Benefits, Pricing Cards
   (Placed directly in main.css to bypass CDN import caching)
   ========================================================================== */

/* ── Subscribe Page Hero ─── */
.subscribe-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
    color: #fff;
    padding: 3.5rem 0 3rem;
    text-align: center;
}

.subscribe-hero__title {
    font-family: var(--cc-font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.subscribe-hero__subtitle {
    font-family: var(--cc-font-sans);
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Subscribe Page Body ─── */
.subscribe-page {
    padding: 2.5rem 0 3rem;
}

.subscribe-body {
    max-width: 680px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--cc-text);
}

.subscribe-body p {
    margin: 0 0 1rem;
}

.subscribe-body strong {
    color: var(--cc-text);
}

/* ── Benefits Box ─── */
.subscribe-benefits {
    max-width: 680px;
    margin: 0 auto 2rem;
    background: var(--cc-gray);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    border-left: 4px solid var(--cc-red);
}

.subscribe-benefits__heading {
    font-family: var(--cc-font-sans);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--cc-text);
}

.subscribe-benefits__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subscribe-benefits__list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
}

.subscribe-benefits__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    background: var(--cc-red);
    border-radius: 50%;
}

/* ── CTA Text ─── */
.subscribe-cta-text {
    text-align: center;
    font-family: var(--cc-font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cc-text);
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

/* ── Pricing Cards ─── */
.pricing {
    padding: 0 0 3rem;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.pricing__card {
    border: 2px solid var(--cc-border);
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: visible;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
}

.pricing__card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Standard / Recommended card — highlighted */
.pricing__card--standard {
    border-color: var(--cc-red);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.pricing__card--standard:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

/* Recommended badge */
.pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cc-red);
    color: #fff;
    font-family: var(--cc-font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 1;
}

/* Founders Circle — dark accent */
.pricing__card--founders {
    border-color: #1a1a2e;
}

/* ── Card Header ─── */
.pricing__header {
    padding: 2rem 1.5rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--cc-border);
}

.pricing__card--standard .pricing__header {
    padding-top: 2.5rem;
}

.pricing__name {
    font-family: var(--cc-font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 0.75rem;
}

.pricing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
}

.pricing__amount {
    font-family: var(--cc-font-serif);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--cc-text);
    line-height: 1;
}

.pricing__per {
    font-family: var(--cc-font-sans);
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.pricing__interval {
    font-family: var(--cc-font-sans);
    font-size: 0.85rem;
    color: #888;
    margin: 0.5rem 0 0;
}

.pricing__annual-link {
    color: var(--cc-red);
    text-decoration: none;
    font-weight: 600;
}

.pricing__annual-link:hover {
    text-decoration: underline;
}

/* ── Features List ─── */
.pricing__features {
    list-style: none;
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
    flex: 1;
}

.pricing__features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 0.75rem;
}

.pricing__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c1272d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ── Card Action / Button ─── */
.pricing__action {
    padding: 0.5rem 1.5rem 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pricing__btn {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-family: var(--cc-font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

/* Outline button (Free tier) */
.pricing__btn--outline {
    background: transparent;
    color: var(--cc-red);
    border-color: var(--cc-red);
}

.pricing__btn--outline:hover {
    background: var(--cc-red);
    color: #fff;
}

/* Primary button (Standard tier) */
.pricing__btn--primary {
    background: var(--cc-red);
    color: #fff;
    border-color: var(--cc-red);
}

.pricing__btn--primary:hover {
    background: var(--cc-red-hover);
    border-color: var(--cc-red-hover);
}

/* Dark button (Founders Circle) */
.pricing__btn--dark {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

.pricing__btn--dark:hover {
    background: #2a2a4e;
    border-color: #2a2a4e;
}

/* Tagline under buttons */
.pricing__tagline {
    font-family: var(--cc-font-sans);
    font-size: 0.7rem;
    color: #999;
    line-height: 1.4;
    max-width: 200px;
}

/* Hidden PMPro output */
.subscribe-levels--hidden {
    display: none !important;
}

/* ── Pricing Responsive ─── */
@media (max-width: 1024px) {
    .subscribe-hero__title {
        font-size: 1.85rem;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing__card--standard {
        order: -1;
    }
}

@media (max-width: 640px) {
    .subscribe-hero {
        padding: 2.5rem 0 2rem;
    }

    .subscribe-hero__title {
        font-size: 1.5rem;
    }

    .subscribe-hero__subtitle {
        font-size: 0.95rem;
    }

    .subscribe-benefits {
        padding: 1.25rem 1.5rem;
    }

    .pricing__grid {
        max-width: 100%;
    }

    .pricing__amount {
        font-size: 2.25rem;
    }
}

/* ── Standard Page Template ─── */
.page-standard {
    padding: 2.5rem 0 3rem;
}

.page-title {
    margin: 0 0 1.5rem;
}

.page-content {
    font-size: 1.05rem;
    line-height: 1.75;
}

.page-content p {
    margin: 0 0 1rem;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES — Must be LAST to override desktop rules above
   ========================================================================== */

/* ── Tablet (max-width: 1024px) ─── */
@media (max-width: 1024px) {

    /* Hero: break out of 4-col grid */
    .hp-hero__inner {
        display: block;
    }

    .hp-hero__col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-row: auto;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hp-hero__col .card {
        display: block;
    }

    .hp-hero__col .card__link {
        display: block;
    }

    .hp-hero__col .card__image {
        aspect-ratio: 3 / 2;
    }

    .hp-hero__col .card__content {
        flex: unset;
    }

    .hp-hero__center {
        display: block;
        grid-column: auto;
        grid-row: auto;
        margin-bottom: 1.5rem;
    }

    .hp-hero__center > .card--large .card__image {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .hp-hero__center-sub {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column: auto;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    /* Latest News */
    .hp-latest__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Beats */
    .hp-beats-grid {
        grid-template-columns: 1fr;
    }

    /* Editorial */
    .hp-editorial__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Podcast */
    .hp-podcast__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ── Mobile (max-width: 640px) ─── */
@media (max-width: 640px) {

    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.375rem; }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* ── Header ─── */
    .site-header {
        position: sticky;
        top: 0;
    }

    .site-logo img,
    .site-logo .custom-logo {
        height: 38px;
    }

    .header-top {
        padding: 0.5rem 0;
    }

    .btn--subscribe {
        font-size: 0.8rem;
        padding: 0.375rem 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-list.is-open {
        display: flex;
    }

    .nav-list li a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--cc-border);
    }

    .nav-list li a:hover,
    .nav-list li.current-menu-item a {
        border-bottom-color: var(--cc-border);
        margin-bottom: 0;
    }

    .main-nav .container {
        flex-wrap: wrap;
    }

    /* Beat nav — horizontal scroll, compact */
    .beat-nav__list {
        justify-content: flex-start;
        padding: 0 0.5rem;
    }

    .beat-nav__list li a {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    /* ── Hero — CNN-style mobile layout ─── */

    /* Full-bleed hero: remove container padding + top gap */
    .homepage {
        padding-top: 0;
    }

    .hp-hero {
        margin-bottom: 0;
    }

    .hp-hero > .container {
        padding-left: 0;
        padding-right: 0;
    }

    .hp-hero__inner {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Lead story first */
    .hp-hero__center {
        order: -1;
        grid-column: auto;
        grid-row: auto;
        margin-bottom: 0;
    }

    /* ── Lead card: full-bleed image with text overlay ─── */
    .hp-hero__center > .card--large {
        border-radius: 0;
    }

    .hp-hero__center > .card--large .card__link {
        display: block;
        position: relative;
    }

    .hp-hero__center > .card--large .card__image {
        height: auto;
        aspect-ratio: 4 / 3;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }

    .hp-hero__center > .card--large .card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
    }

    /* Taller gradient to accommodate excerpt text */
    .hp-hero__center > .card--large .card__image::after {
        height: 80%;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    }

    /* Overlay content on image */
    .hp-hero__center > .card--large .card__content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.25rem;
        z-index: 1;
        color: #fff;
    }

    .hp-hero__center > .card--large .card__label {
        color: #fff;
        background: var(--cc-red);
        padding: 0.2rem 0.6rem;
        border-radius: 3px;
        font-size: 0.7rem;
    }

    .hp-hero__center > .card--large .card__title {
        color: #fff;
        font-size: 1.35rem;
        line-height: 1.25;
        text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }

    /* Hide excerpt and meta on hero overlay */
    .hp-hero__center > .card--large .card__excerpt,
    .hp-hero__center > .card--large .card__meta {
        display: none !important;
    }

    /* ── Secondary cards: compact thumbnail + headline list ─── */
    .hp-hero__col {
        display: block;
        grid-template-columns: 1fr;
        margin-bottom: 0;
        padding: 0 1rem;
    }

    .hp-hero__col .card,
    .hp-hero__center-sub .card {
        display: block;
        margin-bottom: 0;
        border-bottom: 1px solid var(--cc-border);
    }

    .hp-hero__col .card__link,
    .hp-hero__center-sub .card__link {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.875rem;
        padding: 0.75rem 0;
    }

    /* Small square thumbnail on left */
    .hp-hero__col .card__image,
    .hp-hero__center-sub .card__image {
        display: block;
        width: 80px;
        min-width: 80px;
        aspect-ratio: 1;
        border-radius: 6px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .hp-hero__col .card__image img,
    .hp-hero__center-sub .card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Content on right */
    .hp-hero__col .card__content,
    .hp-hero__center-sub .card__content {
        flex: 1;
        padding: 0;
    }

    /* Hide labels, excerpts, meta on secondary cards */
    .hp-hero__col .card__label,
    .hp-hero__center-sub .card__label,
    .hp-hero__col .card__excerpt,
    .hp-hero__center-sub .card__excerpt,
    .hp-hero__col .card__meta,
    .hp-hero__center-sub .card__meta {
        display: none;
    }

    /* Headline styling */
    .hp-hero__col .card__title,
    .hp-hero__center-sub .card__title {
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 0;
        font-weight: 600;
    }

    .hp-hero__center-sub {
        display: block;
        grid-template-columns: 1fr;
        grid-column: auto;
        margin-top: 0;
        padding: 0 1rem;
    }

    /* ── Latest News — single column ─── */
    .hp-latest__grid {
        grid-template-columns: 1fr;
    }

    /* ── Beats — single column ─── */
    .hp-beats-grid {
        grid-template-columns: 1fr;
    }

    .hp-beat__list-item a {
        grid-template-columns: 50px 1fr;
    }

    .hp-beat__list-thumb,
    .hp-beat__list-thumb-placeholder {
        width: 50px;
        height: 50px;
    }

    /* ── Editorial — single column ─── */
    .hp-editorial__grid {
        grid-template-columns: 1fr;
    }

    /* ── Podcast — single column ─── */
    .hp-podcast__grid {
        grid-template-columns: 1fr;
    }

    /* ── Cards — mobile adjustments ─── */
    .card--large .card__title {
        font-size: 1.5rem;
    }

    .card--list-item .card__link {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .card--list-item .card__image--side {
        width: 100%;
    }

    /* ── Section headers ─── */
    .hp-section-header h2 {
        font-size: 0.8rem;
    }

    .hp-section-header__link {
        font-size: 0.75rem;
    }

    /* ── Subscribe CTA ─── */
    .subscribe-cta__inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* ── Subscribe Page ─── */
    .subscribe-hero {
        padding: 2.5rem 0 2rem;
    }

    .subscribe-hero__title {
        font-size: 1.5rem;
    }

    .subscribe-hero__subtitle {
        font-size: 0.95rem;
    }

    .subscribe-body {
        font-size: 1rem;
    }

    .subscribe-benefits {
        padding: 1.25rem 1.5rem;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .pricing__card--standard {
        order: -1;
    }

    .pricing__amount {
        font-size: 2.25rem;
    }

    /* ── Article ─── */
    .article__title {
        font-size: 1.75rem;
    }

    .article__subtitle {
        font-size: 1.05rem;
    }

    .article__body p {
        font-size: 1rem;
    }

    /* ── Author ─── */
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-bio-box__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .byline__dates {
        flex-direction: column;
        gap: 0.1rem;
    }

    .byline__reading-time::before {
        display: none;
    }

    /* ── Footer ─── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-subscribe-form {
        flex-direction: column;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    /* ── Search ─── */
    .search-form {
        flex-wrap: wrap;
    }

    .search-form__input {
        width: 100%;
    }

    /* ── Breadcrumbs ─── */
    .breadcrumbs__item--current {
        max-width: 180px;
    }
}
