.executive {
    --primary-brand: #2c3e50; /* Deep navy for professional executive feel */
    --accent-brand: #3498db;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --card-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.exec-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Nunito', sans-serif;
}

/* Professional Heading */
.exec-header {
    text-align: center;
    margin-bottom: 60px;
}

    .exec-header h2 {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--primary-brand);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

.exec-underline {
    width: 60px;
    height: 4px;
    background: var(--accent-brand);
    margin: 0 auto 25px;
    border-radius: 10px;
}

.exec-lead {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* The Grid */
.exec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
}

/* Executive Card Design */
.exec-card {
    background: #fff;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

    .exec-card:hover {
        transform: scale(1.03);
        box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    }

.exec-img-container {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f9f9f9;
}

.exec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exec-card:hover .exec-img {
    transform: scale(1.1);
}

.exec-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exec-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-brand);
    margin-bottom: 8px;
}

.exec-role {
    font-size: 0.95rem;
    color: var(--accent-brand);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Tablet/Mobile logic */
@media (max-width: 768px) {
    .exec-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

