/* 페이지 타이틀 섹션 */
.page-title {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26,58,109,0.8), rgba(42,82,152,0.8));
}

.page-title .container {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-title p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* 공통 컨테이너 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 전문가 프로필 섹션 */
.experts-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.expert-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.expert-card:hover {
    transform: translateY(-10px);
}

.expert-image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.expert-card:hover .expert-image img {
    transform: scale(1.02);
}

.expert-info {
    padding: 30px;
}

.expert-info h3 {
    font-size: 1.6rem;
    color: #1a3a6d;
    margin-bottom: 10px;
}

.position {
    font-size: 1.1rem;
    color: #2a5298;
    margin-bottom: 20px;
    font-weight: 500;
}

.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-list li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 15px;
    word-break: keep-all;
    word-wrap: break-word;
}

.career-list li:last-child {
    border-bottom: none;
}

.career-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2a5298;
}

/* 애니메이션 클래스 */
.expert-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .page-title {
        padding: 80px 0;
    }

    .page-title h1 {
        font-size: 2.2rem;
    }

    .page-title p {
        font-size: 1.2rem;
    }

    .experts-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .expert-info h3 {
        font-size: 1.4rem;
    }

    .position {
        font-size: 1rem;
    }

    .expert-image {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .expert-image {
        height: 280px;
    }

    .expert-info {
        padding: 20px;
    }

    .expert-info h3 {
        font-size: 1.3rem;
    }

    .career-list li {
        font-size: 0.95rem;
    }
} 
