.hero-title {
    font-size: clamp(2.5rem, 7.5vw, 9rem); 
    align-items: baseline !important; 
}

.word-map {
    padding-right: 0.2em; 
    padding-left: 0.05em;
    padding-top: 0.15em;
    margin-right: -0.12em; 
}

.word-inner.tm {
    position: relative;
    top: -0.01em; 
}

/* --- PAGE LAYOUT --- */
.executives-container {
    padding: 160px 8% 100px;
    max-width: 1600px;
    margin: 0 auto;
}

.maroon-text {
    color: var(--accent-maroon);
}

/* TOP MANAGEMENT (Centered Flexbox) */
.top-management {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 2rem;
}

/* PROFILE CARDS */
.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 240px; 
    z-index: 1;
}

.img-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.profile-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.profile-card h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.profile-card .role {
    font-size: 0.85rem;
    font-weight: 600;
}

.profile-card .dept {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.2rem;
}

/* EXECUTIVES SECTION (Centered) */
.executives-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 0rem;
    z-index: 1;
}

.section-title h2 {
    font-family: "Agdasima", sans-serif;
    font-size: 4rem;
    line-height: 0.9;
    text-transform: uppercase;
    z-index: 1;
}

/* NEW: Hero Subtext Styles matching the Activities Page */
.hero-subtext {
    text-align: center;
    margin-top: -2.5rem; 
    opacity: 0;
    font-weight: 500;
    margin-bottom: 4rem;
    transform: translateY(20px);
}

/* Horizontal Centered Tabs */
.year-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    z-index: 1;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.6rem 1.5rem;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: #666;
}

.tab-btn:hover {
    background: rgba(0,0,0,0.03);
    color: var(--dark);
}

.tab-btn.active {
    background: var(--dark);
    color: var(--light);
    border-color: var(--dark);
}

/* PANEL GRID (4 Cards Per Row) */
.panel-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 1rem;
    max-width: 1600px; 
    width: 100%;
}

/* --- TEXT MASKING --- */
.word-map {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.word-inner {
    display: inline-block;
    transform: translateY(120%); 
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-title {
    display: flex;
    justify-content: center;
    gap: 0 0.5rem;
    flex-wrap: wrap;
}

/* --- INITIAL STATES FOR GSAP --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.profile-card {
    opacity: 0;
    transform: translateY(30px);
}

.blue-text {
    color: var(--accent-maroon); 
}

.panel-grid {
    transition: opacity 0.5s ease;
}

/* ==========================================================================
   RESPONSIVE DESIGN 
   ========================================================================== */
@media (max-width: 1000px) {
    .executives-container { padding: 100px 1.5rem 2rem 1.5rem; }
    .top-management { gap: 2rem; }
    .panel-grid { gap: 2rem; }
}

@media (max-width: 768px) {
    main {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    .executives-container {
        padding-top: 90px;
    }
    .hero-title {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .section-title h2 {
        font-size: 3rem;
    }
    .year-tabs {
        margin-bottom: 2.5rem;
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    main {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    .section-title h2 {
        font-size: 2.5rem;
    }
    .tab-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
    .top-management {
        margin-bottom: 4rem;
    }
    .profile-card {
        width: 100%;
        max-width: 220px;
    }
    .img-wrapper {
        width: 160px;
        height: 160px;
    }
}