/* Alumni Executive Member – Frontend Styles */

#atl-executive-app {
    font-family: sans-serif;
    max-width: 860px;
    margin: 0 auto;
}

.atl-executive-controls {
    text-align: center;
    margin-bottom: 20px;
    font-size: 11pt;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.atl-executive-controls label {
    font-weight: 600;
    color: #334155;
}

.atl-executive-controls select {
    padding: 6px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #fff;
    font-size: 11pt;
    min-width: 180px;
    margin-left: 6px;
}

/* Member content two-column layout */
#atl-executive-member-content {
    display: none;
    max-width: 800px;
    margin: 40px auto;
    gap: 40px;
    flex-wrap: wrap;
}

/* ---- Vertical Timeline ---- */
#atl-executive-timeline {
    flex: 1;
    min-width: 260px;
}

.atl-v-timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
}

.atl-v-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #2B7CE9;
}

.atl-v-timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.atl-v-timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #2B7CE9;
}

.atl-v-timeline-date {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.atl-v-timeline-content h4 {
    margin: 0;
    color: #333;
    font-size: 0.95em;
}

/* ---- Profile Card ---- */
#atl-executive-profile {
    flex: 1;
    min-width: 260px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.atl-profile-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.atl-profile-card img {
    width: 150px;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.atl-profile-card h3 {
    margin: 0 0 15px 0;
    color: #2B7CE9;
    text-align: center;
    font-size: 1.05em;
}

.atl-profile-card p {
    margin: 8px 0;
    font-size: 0.9em;
    color: #555;
    line-height: 1.4;
}

.atl-profile-card hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}

.atl-profile-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.atl-profile-links a {
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 600px) {
    #atl-executive-member-content {
        flex-direction: column-reverse;
    }
}
