/* ==========================================
   컨설턴트 소개 페이지 전용 스타일
   ========================================== */

/* 페이지 타이틀 */
.page-title {
    padding: 60px 0;
    background: var(--light-gray);
    text-align: center;
}

.page-title h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

/* 컨설턴트 섹션 */
.consultant-section {
    padding: 80px 0;
    background: var(--white);
}

/* 인트로 섹션 */
.intro-section {
    text-align: center;
    margin-bottom: 80px;
}

.intro-section h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
}

.intro-section h2 b {
    font-weight: 700;
}

/* 컨설턴트 래퍼 */
.consultants-wrapper {
    margin-bottom: 80px;
}

/* 컨설턴트 이미지 그리드 */
.consultant-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.consultant-image-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultant-image-box {
    width: 100%;
    aspect-ratio: 3/4;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.consultant-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 소셜 아이콘 */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* 컨설턴트 상세 그리드 */
.consultant-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.consultant-detail-item {
    background: var(--light-gray);
    padding: 30px 20px;
    border-radius: 8px;
}

.consultant-detail-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.consultant-detail-item p:last-child {
    margin-bottom: 0;
}

.consultant-detail-item b {
    font-weight: 700;
    color: var(--text-dark);
}

/* CTA 섹션 */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta.primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-cta.primary:hover {
    background: #c11a1f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
}

.btn-cta.secondary {
    background: var(--white);
    color: var(--primary-red);
}

.btn-cta.secondary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* 반응형 */
@media (max-width: 1024px) {
    .consultant-images-grid,
    .consultant-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-section h2 {
        font-size: 22px;
    }
    
    .consultant-images-grid,
    .consultant-details-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .page-title {
        padding: 40px 0;
    }
    
    .page-title h1 {
        font-size: 24px;
    }
    
    .consultant-section {
        padding: 60px 0;
    }
    
    .intro-section {
        margin-bottom: 60px;
    }
    
    .intro-section h2 {
        font-size: 20px;
    }
    
    .consultants-wrapper {
        margin-bottom: 60px;
    }
    
    .consultant-detail-item {
        padding: 25px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}
