/* ===== ABOUT.HTML - PAGE SPECIFIC STYLES ===== */

/* Mission List */
.mission-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.mission-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.5rem;
}

.mission-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

/* Team Cards */
.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f1f5f9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a4b84;
    margin-bottom: 1rem;
}

.team-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0;
}

.team-card {
    text-align: center;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 991px) {
    .team-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 1.25rem;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    .team-role {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .mission-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .mission-icon {
        margin: 0 auto;
    }
    
    .mission-item p {
        font-size: 0.95rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-avatar {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .team-name {
        font-size: 1.05rem;
    }
    
    .team-role {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .team-description {
        font-size: 0.85rem;
    }
    
    /* Stack team cards */
    .team-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .team-avatar {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }
    
    .team-card {
        padding: 1.25rem;
    }
    
    .team-name {
        font-size: 1rem;
    }
    
    .team-role {
        font-size: 0.8rem;
    }
    
    .team-description {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .mission-icon {
        width: 24px;
        height: 24px;
        font-size: 1.25rem;
    }
}
