/* Panelist Archive Styles */

.hero {
    background-color: #CAB49F;
    display: flex;
    gap: 0px;
    padding: 0;
    max-height: 100%;
}

.hero-left {
    width: 51.56vw;
    padding: 70px 30px;
    padding-right: 0px;
}

.hero-text {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: -0.28px;
    font-weight: 300;
    color: #121212;
    max-width: 82.95%;
}

.hero-right {
    width: 48.43vw;
    object-fit: cover;
}

.menu-link, .logo {
    color: #121212 !important;
}

/* Archive Section */
.archive-section {
    padding: 70px 50px;
    background-color: #FAFAFA;
    color: #000;
    padding-bottom: 3px;
    padding-top: 0px;
}

/* Desktop Grid Layout (Default) */
.archive-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 96.52vw;
    gap: 120px;
    margin-bottom: 33px;
    padding-bottom: 66px;
    border-bottom: 0.5px solid #121212;
}

.archive-row:last-child {
    border-bottom: none;
    padding-bottom: 33px;
    margin-bottom: 0px;
}

.year-column {
    display: flex;
    flex-direction: column;
}

.year-label {
    font-size: 50px;
    font-weight: 400;
    line-height: 59px;
    color: #121212;
    letter-spacing: -0.32px;
    margin-bottom: 20px;
}

.artist-name {
    font-size: 28px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: -0.28px;
    color: #121212;
    margin-bottom: 0px;
}

/* Helpers for visibility */
.mobile-only-names-grid {
    display: none;
}

.desktop-only-col {
    display: flex;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    font-size: 24px;
    color: #666;
}

/* Mobile & Tablet Responsive Overrides (Forcing Mobile Layout) */
@media (max-width: 1024px) {
    .archive-section {
        padding: 0 !important;
    }

    .archive-row {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 20px 12.5px !important;
        border-bottom: 0.5px solid #121212 !important;
    }

    .archive-row:last-child {
        border-bottom: none !important;
    }

    /* Force desktop columns to hide */
    .year-column.name-col.desktop-only,
    .year-column.year-label-col {
        display: none !important;
    }

    /* Force mobile year row to show */
    .mobile-only-year-row.mobile-only {
        display: block !important;
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    /* Force mobile name grid to show */
    .mobile-only-names-grid.mobile-only {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .year-label {
        font-family: "MNKY Banana Grotesk", sans-serif;
        font-weight: 500;
        font-size: 29.5px !important;
        line-height: 16.8px !important;
        letter-spacing: -0.01em;
        margin-bottom: 0 !important;
    }

    .artist-name {
        font-family: "MNKY Banana Grotesk", sans-serif;
        font-weight: 500;
        font-size: 16px !important;
        line-height: 18.5px !important;
        letter-spacing: -0.01em;
        margin-bottom: 0 !important;
    }

    /* Section 2: Blog Section Styling */
    .blog-section {
        padding: 20px 12.5px !important;
        border-top: 0.5px solid #121212;
        border-bottom: 0.5px solid #121212;
        background-color: #FAFAFA;
    }

    .blog-container {
        display: block !important;
        padding: 0 !important;
    }

    .blog-image-wrapper {
        width: 100% !important;
        margin-bottom: 28px !important;
    }

    .blog-image {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
    }

    .blog-image-caption {
        font-family: "MNKY Banana Grotesk", sans-serif;
        font-weight: 500;
        font-size: 12px !important;
        color: #b8b8b8;
        margin-top: 2px !important;
    }

    .blog-content-wrapper {
        width: 100% !important;
        padding: 0 !important;
        max-width: unset !important;
    }

    .blog-title {
        font-family: "MNKY Banana Grotesk", sans-serif;
        font-weight: 500;
        font-size: 30px !important;
        line-height: 16.8px !important;
        margin-bottom: 15px !important;
        color: #121212;
    }

    .blog-description {
        font-family: "MNKY Banana Grotesk", sans-serif;
        font-weight: 400;
        font-size: 12.5px !important;
        line-height: 16.8px !important;
        color: #121212;
    }

    section#archive {
        margin-top: 19px;
    }

    /* Specific Tablet Override: Double the font sizes, line heights, and padding */
    @media (min-width: 768px) {
        .archive-row {
            padding: 40px 25px !important;
        }

        .mobile-only-year-row.mobile-only {
            margin-bottom: 30px !important;
        }

        .mobile-only-names-grid.mobile-only {
            gap: 20px !important;
        }

        .year-label {
            font-size: 59px !important;
            line-height: 33.6px !important;
        }

        .artist-name {
            font-size: 25px !important;
            line-height: 37px !important;
        }

        .blog-section {
            padding: 40px 25px !important;
        }

        .blog-image-wrapper {
            margin-bottom: 56px !important;
        }

        .blog-title {
            font-size: 60px !important;
            line-height: 33.6px !important;
            margin-bottom: 30px !important;
        }

        .blog-description {
            font-size: 25px !important;
            line-height: 33.6px !important;
        }

        .blog-image-caption {
            font-size: 24px;
        }
    }
}
