/* --- LAYOUT CONTAINER --- */
.container {
    max-width: 1280px;
    margin: var(--space-12) auto var(--space-20) auto;
    padding: 0 var(--space-10);
    display: flex;
    gap: var(--space-12);
    align-items: flex-start;
}

/* --- MAIN CONTENT (LEFT COLUMN) --- */

.article-feature-image {
    width: 100%;
    margin-bottom: var(--space-8);
    overflow: hidden;
    border-radius: 20px;
    line-height: 0;
}

.article-feature-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
}

.main-content {
    flex: 1;
    min-width: 0;
    background-color: var(--color-white);
    padding: var(--space-0) var(--space-12);
    border-radius: 20px;

}

.lead-paragraph {
    color: var(--grey-950);
    font-family: var(--font-family-primary);
    font-size: var(--text-body-lg);
    font-weight: var(--font-regular);
    line-height: var(--leading-body-lg);
    margin-bottom: var(--space-10);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--grey-300);
}

.article-section {
    margin-bottom: var(--space-12);
    scroll-margin-top: var(--space-8);
}

.article-section:last-child {
    margin-bottom: 0;
}

.article-section h2 {
    font-family: var(--font-family-primary);
    font-weight: var(--font-semibold);
    font-size: var(--text-h4);
    line-height: var(--leading-h4);
    color: var(--grey-950);
    margin-bottom: var(--space-5);
}

.article-section p {
    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);
    color: var(--grey-900);
    margin-bottom: var(--space-5);
}

.bullet-list {
    list-style-type: disc;
    padding-left: var(--space-6);
    margin-bottom: var(--space-5);
}

.bullet-list li {
    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);
    color: var(--grey-900);
    margin-bottom: var(--space-2);
}

/* Brand Callout Quotes (Matching Screenshots) */
blockquote {
    border-left: 3px solid var(--color-sand);
    padding: var(--space-2) 0 var(--space-2) var(--space-5);
    margin: var(--space-10) 0 var(--space-4) 0;
    background-color: transparent;
    font-style: italic;
}

blockquote p {
    color: var(--pink-500) !important;
    font-family: var(--font-family-primary);
    font-size: var(--text-h5);
    font-weight: var(--font-semibold);
    line-height: var(--leading-h4);
    margin-bottom: 0 !important;
}

/* --- STICKY SIDEBAR (RIGHT COLUMN) --- */
.sidebar {
    width: 300px;
    position: sticky;
    top: var(--space-8);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-card {
    background-color: var(--color-ivory);
    padding: var(--space-6);
    border-radius: var(--space-4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--grey-300);
}

.sidebar-card h3 {
    font-family: var(--font-family-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--font-bold);
    line-height: var(--leading-body-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey-700);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--grey-300);
}

/* Speakers Grid */
.speakers-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.speaker-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.speaker-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-sand);
    flex-shrink: 0;
}

.speaker-info h4 {
    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-bold);
    line-height: var(--leading-body-sm);
    color: var(--color-deep-petrol);
}

.speaker-info p {
    font-family: var(--font-family-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--font-regular);
    line-height: var(--leading-body-sm);
    color: var(--grey-700);
}

/* Navigation Index */
.nav-card ul {
    list-style: none;
}

.nav-card li {
    margin-bottom: var(--space-3);
}

.nav-card li:last-child {
    margin-bottom: 0;
}

.nav-card a {
    color: var(--grey-950);
    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-medium);
    line-height: var(--leading-body);
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    padding: var(--space-1) 0;
}

.nav-card a:hover {
    color: var(--pink-500);
    transform: translateX(3px);
}

.article-end {
    max-width: 900px;
    margin: var(--space-16) auto;
    padding: var(--space-8) 0;
    border-top: 1px solid var(--grey-300);
}

.article-end__text {
    margin: 0;
    font-family: var(--font-family-primary);
    font-size: var(--text-body-lg);
    font-weight: var(--font-regular);
    line-height: var(--leading-body-lg);
}

.article-end__link {
    color: var(--pink-500);
    font-family: var(--font-family-primary);
    font-size: var(--text-body-lg);
    font-weight: var(--font-regular);
    line-height: var(--leading-body-lg);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ========================================
   RESPONSIVE — INTERVIEW PAGE
======================================== */

@media (max-width: 1100px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 var(--space-8);
        gap: var(--space-8);
    }

    .main-content {
        padding: var(--space-10);
    }

    .sidebar {
        width: 280px;
    }

    .article-feature-image {
        height: 400px;
    }

    .article-feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
    .container {
        width: 100%;
        max-width: 100%;
        margin-top: var(--space-10);
        margin-bottom: var(--space-16);
        padding: 0 var(--space-6);

        flex-direction: column;
        align-items: stretch;
        gap: var(--space-8);
    }

    .main-content {
        width: 100%;
        max-width: 100%;
        flex: none;
        padding: var(--space-8);
        border-radius: 16px;
    }

    .sidebar {
        width: 100%;
        max-width: 100%;
        position: static;
        flex-shrink: 1;

        display: flex;
        flex-direction: row;
        gap: var(--space-5);
    }

    .sidebar-card {
        flex: 1;
        min-width: 0;
    }

    .article-feature-image {
        width: 100%;
        height: 500px;
        border-radius: 16px;
    }

    .article-feature-image img {
        width: 100%;
        height: 100%;
        display: block;

        object-fit: cover;
        object-position: top center;
    }

    .lead-paragraph {
        font-size: var(--text-body);
        line-height: var(--leading-body);
    }

    .article-section h2 {
        font-size: var(--text-h4);
        line-height: var(--leading-h4);
    }
}


/* ========================================
   MOBILE — SIDEBAR HIDDEN
======================================== */

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        margin-top: var(--space-8);
        margin-bottom: var(--space-12);
        padding: 0 var(--space-5);

        display: block;
    }

    .main-content {
        width: 100%;
        max-width: 100%;
        padding: var(--space-6);
        border-radius: 16px;
    }

    /* Hide sidebar completely on mobile */
    .sidebar {
        display: none !important;
    }

    .article-feature-image {
        width: 100%;
        height: 400px;
        margin-bottom: var(--space-6);
        border-radius: 16px;
    }

    .article-feature-image img {
        width: 100%;
        height: 100%;
        display: block;

        object-fit: cover;
        object-position: top center;
    }

    .lead-paragraph {
        margin-bottom: var(--space-8);
        padding-bottom: var(--space-5);
        font-size: var(--text-body);
        line-height: var(--leading-body);
    }

    .article-section {
        margin-bottom: var(--space-10);
        scroll-margin-top: var(--space-5);
    }

    .article-section h2 {
        margin-bottom: var(--space-4);
        font-size: var(--text-h5);
        line-height: var(--leading-h5);
    }

    .article-section p,
    .bullet-list li {
        font-size: var(--text-body);
        line-height: var(--leading-body);
    }

    .bullet-list {
        padding-left: var(--space-6);
    }

    blockquote {
        margin: var(--space-8) 0 var(--space-4);
        padding: var(--space-2) 0 var(--space-2) var(--space-4);
    }

    blockquote p {
        font-size: var(--text-body-lg);
        line-height: var(--leading-body-lg);
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {
    .container {
        width: 100%;
        max-width: 100%;
        margin-top: var(--space-6);
        margin-bottom: var(--space-10);
        padding: 0 var(--space-4);
    }

    .main-content {
        width: 100%;
        max-width: 100%;
        padding: var(--space-5);
        border-radius: 14px;
    }

    .sidebar {
        display: none !important;
    }

    .article-feature-image {
        width: 100%;
        height: 240px;
        margin-bottom: var(--space-5);
        border-radius: 14px;
    }

    .article-feature-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: top center;
    }

    .lead-paragraph {
        margin-bottom: var(--space-6);
        padding-bottom: var(--space-4);

        font-size: var(--text-body-sm);
        line-height: var(--leading-body-sm);
    }

    .article-section {
        margin-bottom: var(--space-8);
    }

    .article-section h2 {
        margin-bottom: var(--space-3);

        font-size: var(--text-body-lg);
        line-height: var(--leading-body-lg);
    }

    .article-section p,
    .bullet-list li {
        font-size: var(--text-body-sm);
        line-height: var(--leading-body-sm);
    }

    .bullet-list {
        padding-left: var(--space-5);
    }

    blockquote {
        margin: var(--space-6) 0 var(--space-4);
        padding-left: var(--space-4);
    }

    blockquote p {
        font-size: var(--text-body);
        line-height: var(--leading-body);
    }
}
