@charset "utf-8";

/* KSMS Renewal - Executives Page Premium CSS */

.ksms-exec-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 100px;
    font-family: 'Pretendard', sans-serif;
    color: #1d1d1f;
}

/* Header */
.exec-header {
    text-align: center;
    margin-bottom: 80px;
}

.exec-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
    letter-spacing: -1px;
}

.exec-subtitle {
    font-size: 16px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Common Section Styles */
.exec-section {
    margin-bottom: 100px;
}

.sec-title {
    font-size: 24px;
    font-weight: 700;
    color: #00397f; /* KSMS Blue */
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00397f;
    display: inline-block;
}



/* Advisory & Senior Leadership Grid */
.advisor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.advisor-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.advisor-card:hover {
    border-color: #00397f;
    box-shadow: 0 10px 25px rgba(0, 57, 127, 0.08);
}

.adv-role {
    font-size: 13px;
    color: #888;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.adv-name {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.adv-affil {
    font-size: 15px;
    color: #555;
}

/* Executive Lists (Academic & Media) */
.exec-group-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 60px;
    border: 1px solid #f5f5f5;
}

.group-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.group-badge {
    background: #00397f;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.group-badge.media {
    background: #e3001b; /* Media Red */
}

.group-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

/* Role Block */
.role-block {
    margin-bottom: 30px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 30px;
}

.role-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.role-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.role-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #00397f;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.role-count {
    font-size: 13px;
    color: #999;
}

/* Name Grid */
.name-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Clean Grid */
    gap: 15px;
}

.member-item {
    display: flex;
    flex-direction: column;
}

.mem-name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.mem-affil {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .ksms-exec-wrapper {
        padding: 40px 20px;
    }

    .exec-title {
        font-size: 28px;
    }

    .pres-card {
        padding: 30px 20px;
    }

    .pres-name {
        font-size: 26px;
    }

    .advisor-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    
    .exec-group-container {
        padding: 25px;
    }

    .name-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 col on mobile */
    }
}
