/* 전문가 페이지 공통 */
.expert-page {
    padding-top: 20px;
}

.expert-container {
    margin-top: 16px;
}

/* 상단 슬라이스 영역 – 높이만 살짝 조정 */
.expert-hero-slider .hero-wrapper {
    height: 320px;
}

@media (max-width: 768px) {
    .expert-hero-slider .hero-wrapper {
        height: 220px;
    }
}

/* 전문가 프로필 카드 */
.expert-profile {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 18px;
}

.expert-profile-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.expert-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e53935, #ff7043);
}

.expert-basic {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.expert-name {
    font-size: 20px;
    font-weight: 700;
}

.expert-tagline {
    font-size: 14px;
    color: #e53935;
}

.expert-tags .tag {
    display: inline-block;
    margin-top: 4px;
    margin-right: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px;
    background-color: #f3f4f6;
    color: #555;
}

/* 오른쪽 정보 영역 */
.expert-profile-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expert-stats {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    font-size: 13px;
}

.expert-stats li {
    background-color: #f9fafb;
    border-radius: 6px;
    padding: 8px 10px;
}

.stat-label {
    display: block;
    color: #888;
    margin-bottom: 2px;
}

.stat-value {
    font-weight: 600;
    color: #333;
}

.expert-summary {
    font-size: 14px;
    color: #444;
}

.expert-actions {
    display: flex;
    gap: 8px;
}

/* 상세 소개 섹션 */
.expert-intro {
    margin-bottom: 24px;
}

.expert-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.expert-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.4fr;
    gap: 20px;
    margin-bottom: 18px;
}

.expert-intro-block h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.expert-intro-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

.expert-intro-block p + p {
    margin-top: 8px;
}

.expert-bullet-list {
    list-style: disc;
    padding-left: 18px;
    font-size: 14px;
    color: #444;
}

.expert-bullet-list li + li {
    margin-top: 4px;
}

/* 경력 */
.expert-career {
    border-top: 1px solid #f3f3f3;
    padding-top: 12px;
}

.expert-career h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.expert-career ul {
    list-style: disc;
    padding-left: 18px;
    font-size: 13px;
    color: #555;
}

.expert-career li + li {
    margin-top: 3px;
}

/* 반응형 */
@media (max-width: 960px) {
    .expert-profile {
        grid-template-columns: 1fr;
    }

    .expert-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .expert-profile-left {
        align-items: flex-start;
    }

    .expert-name {
        font-size: 18px;
    }

    .expert-intro-grid {
        grid-template-columns: 1fr;
    }

    .expert-actions {
        flex-direction: column;
    }

    .expert-stats {
        grid-template-columns: 1fr;
    }
}
