/* ==========================================================================
   Page-Specific Styles: KB17 Curatorial Website
   Scope: body.page-kb17-curatorial-website
   Identity: "The Archive Portal" - Gold/Teal split
   ========================================================================== */

body.page-kb17-curatorial-website {
    --page-accent: #0088cb;
    /* KBT Blue */
    --page-teal: #0f2035;
    /* Deep Teal */
    --page-bg-light: #FAF9F6;
    --page-bg-card: #ffffff;
    --page-border: rgba(0, 136, 203, 0.15);
}

/* 1. Page Banner (Hero Area) */
body.page-kb17-curatorial-website .kb17cw-hero-section {
    position: relative;
    overflow: hidden;
}

body.page-kb17-curatorial-website .kb17cw-hero-banner {
    background-image: url('../../img/bg/kb19-page-banner-2.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body.page-kb17-curatorial-website .kb17cw-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(38, 24, 4, 0.85) 0%, rgba(0, 136, 203, 0.6) 100%);
    z-index: 1;
}

body.page-kb17-curatorial-website .kb17cw-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body.page-kb17-curatorial-website .kb17cw-hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 1px;
}

body.page-kb17-curatorial-website .kb17cw-breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

body.page-kb17-curatorial-website .kb17cw-breadcrumbs li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.page-kb17-curatorial-website .kb17cw-breadcrumbs li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

body.page-kb17-curatorial-website .kb17cw-breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

body.page-kb17-curatorial-website .kb17cw-breadcrumbs a:hover {
    color: var(--page-accent);
}

/* 2. Main Wrapper spacing */
body.page-kb17-curatorial-website .kb17cw-main-wrapper {
    background-color: #FAF9F6;
    padding: 100px 0;
}

/* Intro Header */
body.page-kb17-curatorial-website .kb17cw-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

body.page-kb17-curatorial-website .kb17cw-section-heading {
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

body.page-kb17-curatorial-website .kb17cw-section-lead {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

/* Portal Cards */
body.page-kb17-curatorial-website .kb17cw-portal-card {
    background-color: var(--page-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    /* Portal card lift on hover */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

body.page-kb17-curatorial-website .kb17cw-portal-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

body.page-kb17-curatorial-website .kb17cw-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
    font-size: 28px;
}

body.page-kb17-curatorial-website .bg-gradient-yellow {
    background: linear-gradient(135deg, #0a1628 0%, #001a33 100%);
}

body.page-kb17-curatorial-website .bg-gradient-teal {
    background: linear-gradient(135deg, #0a1628 0%, #001a33 100%);
}

body.page-kb17-curatorial-website .kb17cw-portal-title {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

body.page-kb17-curatorial-website .kb17cw-portal-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 30px;
    min-height: 100px;
}

/* Portal Card action links */
body.page-kb17-curatorial-website .kb17cw-portal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

body.page-kb17-curatorial-website .btn-primary-gradient {
    background-color: var(--page-accent);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 136, 203, 0.2);
}

body.page-kb17-curatorial-website .btn-primary-gradient:hover {
    background-color: #0a1628;
    color: #ffffff;
    transform: translateY(-2px);
}

body.page-kb17-curatorial-website .btn-secondary-gradient {
    background-color: var(--page-teal);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 136, 203, 0.2);
}

body.page-kb17-curatorial-website .btn-secondary-gradient:hover {
    background-color: #0a1628;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    body.page-kb17-curatorial-website .kb17cw-hero-banner {
        min-height: 260px;
    }

    body.page-kb17-curatorial-website .kb17cw-portal-card {
        padding: 30px 20px;
    }
}