/* ==========================================================================
   Page-Specific Styles: KB22 Curatorial Team
   Scope: body.page-kb22-curatorial-team
   Identity: "Curatorial Collective" - Light Mode Custom Palette
   ========================================================================== */

body.page-kb22-curatorial-team {
    --theme-color: #0088cb;
    --title-color: #231f20;
    --body-color: #7B7E86;
    --smoke-color: #FAF9F6;
    --smoke-color2: #F5F7FA;
    --smoke-color3: #F5F5F6;
    --smoke-color4: #F5F7FA;
    --smoke-color5: #F0F2F4;
    --black-color: #1F2528;
    --gray-color: #303030;
    --white-color: #ffffff;
    --light-color: #DDDDDC;

    background-color: var(--smoke-color);
    color: var(--body-color);
}

/* 1. Hero Area */
body.page-kb22-curatorial-team .kb22-curatorial-hero {
    background: linear-gradient(rgba(31, 37, 40, 0.75), rgba(31, 37, 40, 0.85)), url('../../../assets/img/gallery/kb19-page-banner-2.jpg') no-repeat center center / cover;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--theme-color);
    position: relative;
    overflow: hidden;
}

body.page-kb22-curatorial-team .kb22-curatorial-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 136, 203, 0.15) 0%, transparent 80%);
    z-index: 1;
}

body.page-kb22-curatorial-team .kb22-curatorial-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 850;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

body.page-kb22-curatorial-team .kb22-curatorial-hero-subtitle {
    font-size: 1.3rem;
    color: var(--theme-color);
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

body.page-kb22-curatorial-team .kb22-curatorial-breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

body.page-kb22-curatorial-team .kb22-curatorial-breadcrumbs li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.page-kb22-curatorial-team .kb22-curatorial-breadcrumbs li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.4);
}

body.page-kb22-curatorial-team .kb22-curatorial-breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

body.page-kb22-curatorial-team .kb22-curatorial-breadcrumbs a:hover {
    color: var(--theme-color);
}

/* 2. Main Content Wrapper */
body.page-kb22-curatorial-team .kb22-curatorial-team-wrap {
    background-color: var(--smoke-color);
    padding: 80px 0 100px;
}

/* Card Styling */
body.page-kb22-curatorial-team .kb22-curatorial-carousel .team-member {
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--light-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

body.page-kb22-curatorial-team .kb22-curatorial-carousel .team-member:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

body.page-kb22-curatorial-team .kb22-curatorial-carousel .team-member img {
    border-radius: 50%;
    border: 4px solid var(--theme-color);
    max-width: 170px;
    transition: all 0.4s ease;
}

body.page-kb22-curatorial-team .kb22-curatorial-carousel .team-member:hover img {
    border-color: var(--title-color);
    transform: scale(1.03);
}

body.page-kb22-curatorial-team .team-name {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--title-color);
    margin-bottom: 5px;
}

body.page-kb22-curatorial-team .team-role {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

body.page-kb22-curatorial-team .team-bio {
    color: var(--body-color);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 12px;
}