/* =================================================================
   Page Specific Stylesheet for about.php
   ================================================================= */

/* --- Page Header (features.css와 동일한 스타일 재사용) --- */
.page-header {
    padding: 80px 0;
    background-image: var(--primary-gradient);
    text-align: center;
    color: #fff;
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}
.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* --- Mission Section --- */
.mission-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.mission-image {
    flex: 1;
}
.mission-image img {
    border-radius: var(--border-radius);
}
.mission-text {
    flex: 1.2; /* 텍스트 영역을 조금 더 넓게 */
}
.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Team Section --- */
.alt-bg {
    background-color: var(--surface-color);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}
.team-member-card {
    padding: 2rem;
}
.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.team-name {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}
.team-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}
.team-bio {
    font-size: 0.9rem;
}

/* --- Simple CTA Section --- */
.cta-section-simple {
    background-color: var(--background-color);
}
.cta-section-simple h2 {
    margin-bottom: 1rem;
}
.cta-section-simple p {
    margin-bottom: 2rem;
}


/* --- Responsive --- */
@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}