/* ===================================================================================
   1. CORE VARIABLES & FONTS
=================================================================================== */
@import url("https://use.typekit.net/qoi4oqs.css");
/* DIN 2014 */

:root {
    --wsb-blue: #0073ba;
    --wsb-dark: #050a12;
    --wsb-glass: rgba(255, 255, 255, 0.03);
    --text-white: #ffffff;
    --text-muted: #a0aec0;
    --font-heading: "din-2014", sans-serif;
}

/* ===================================================================================
   2. SECTION & GLOBAL LAYOUT
=================================================================================== */
.academy-section {
    background-color: var(--wsb-dark);
    color: var(--text-white);
    font-family: var(--font-heading);
    padding: 160px 0;
    overflow-x: hidden;
}

.academy-intro p{
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}


/* ===================================================================================
   4. BOARD OF DIRECTORS (3 COLUMNS)
=================================================================================== */
/* 1. The Container Fix */
.directors-grid {
    display: grid;
    /* This creates exactly 3 equal columns */
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    /* Space between the cards */
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* 2. The Card Styling */
.director-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Stacks image on top of text */
    transition: all 0.3s ease;
}

.director-card:hover {
    transform: translateY(-10px);
    border-color: #0073ba;
}

/* 3. Image Area */
.image-area {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Forces square images */
}

.image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0073ba;
    color: white;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

/* 4. Text Area */
.info-area {
    padding: 10px;
    text-align: center;
}

.info-area h3 {
    color: #0073ba;
    /* Contrast fix */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
}

.role {
    padding-top: 0px;
    color: rgb(217, 217, 217);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 18px;
}

.credentials {
    color: aliceblue;
    /* Dimmed gray for secondary info */
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

/* 5. Responsive Fix (Tablet & Mobile) */
@media (max-width: 1024px) {
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .directors-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================================
   5. BOARD OF ADVISORS (MODERN LIST)
=================================================================================== */
.advisor-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.advisor-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    transition: all 0.3s ease;
    border-left: 0px solid var(--wsb-blue);
    border-bottom: 2px solid silver;
    height: max-content;
}

.advisor-item:hover {
    background: rgba(0, 115, 186, 0.06);
    border-left: 5px solid var(--wsb-blue);
    transform: translateX(10px);
}

.advisor-dot {
    width: 10px;
    height: 10px;
    background: var(--wsb-blue);
    border-radius: 50%;
    margin-top: 8px;
    box-shadow: 0 0 12px var(--wsb-blue);
}

.advisor-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-white);
}

.advisor-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ===================================================================================
   6. RESPONSIVE ADJUSTMENTS
=================================================================================== */
@media (max-width: 1024px) {
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advisor-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .academy-section {
        padding: 80px 0;
    }

    .directors-grid {
        grid-template-columns: 1fr;
    }

    .title-main {
        font-size: 26px;
    }
}

