/* aboutus.css */

.about-content p {
    text-align: left;
    margin-bottom: 1.5em; /* 문단 간격 추가 */
}

.about-content p:last-child {
    margin-bottom: 0;
}

.email-center {
    text-align: center;
    margin-top: 2em; /* 위쪽 여백 추가 */
}

.page-headline {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-action-color, #011135);
    margin-bottom: 25px;
}

.team-container {
    display: grid;
    grid-template-columns: 1fr; /* 모바일에서는 1열로 고정 */
    gap: 20px;
}

/* ProfileCard 웹 컴포넌트 내부 스타일 */
profile-card .profile-card-wrapper {
    background-color: #f8faff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-color, #e0e6f1);
    display: flex;
    flex-direction: column; /* 기본적으로 수직 정렬 */
    align-items: center;
    text-align: center;
}

profile-card .profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

profile-card .profile-info {
    flex-grow: 1;
}

profile-card .profile-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-action-color, #011135);
    margin: 0 0 5px 0;
}

profile-card .profile-role {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color-sub, #8e9aaf);
    margin: 0 0 15px 0;
}

profile-card .profile-bio {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* 데스크탑 뷰에서는 2열로 변경 (선택 사항) */
@media (min-width: 480px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
