/* 메디트랜스 컬러팔레트 */
:root {
  --pr: #40798C;
  --prver2: #70a9a1;
  --pr2: #1F363D;
  --pr3: #40798c;
  --wt: #fff;
  --black_12: #121212;
  --yellow: #FFAB1E;
  --gray_77: #777777;
  --gray_a0: #a0a0a0;
  --gray_cf: #cfcfcf;
  --gray_e: #eee;
  --red: #FF4141;
  --no-side-content-width: 990px;
  --no-side-content-pad: 30px 20px 50px;
}

/* 메인 배경 설정 */
body {
    background-color: #fff;
}

#wrap {
    background-color: #fff;
}

.main_sec {
    background-color: #fff;
}

/* 서비스 소개 페이지에서 사이드 메뉴 항상 표시 (전문가 네트워크는 nav/side 규칙으로 비표시) */
.service-page:not(.experts-network-page) .side-fixed {
    display: block !important;
}

.service-page.experts-network-page .side-fixed {
    display: none !important;
}

/* about 페이지에서 사이드바 배경색 설정 */
.about-page .side-fixed {
    background: #fff !important;
}

.about-page .side-fixed form {
    background: #fff !important;
}

.about-page .side-fixed .qa-area {
    background: #fff !important;
}

/* 모바일에서 사이드바 숨기기 - about.css 내부 미디어 쿼리에서 처리 */

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #40798C 0%, #1F363D 100%);
    color: #fff;
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Tab Container */
.tab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 좌측 패널 없는 페이지: main_sec(990px) 안에서 탭·히어로 폭 통일 */
#wrap.no-side-panel-layout .tab-container,
#wrap.no-side-panel-layout .hero-section,
.experts-network-page .tab-container,
.experts-network-page .hero-section {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--gray_e);
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: 2px solid var(--gray_e);
    color: var(--gray_77);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

a.tab-btn {
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
}

.tab-btn:hover {
    border-color: var(--pr);
    color: var(--pr);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--pr);
    border-color: var(--pr);
    color: var(--wt);
    box-shadow: 0 4px 12px rgba(64, 121, 140, 0.3);
}

/* Tab Content */
.tab-content {
    min-height: 500px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Overview Section */
.overview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--pr2);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 121, 140, 0.15);
    border-color: var(--pr);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--pr) 0%, var(--prver2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wt);
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--pr2);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--gray_77);
    line-height: 1.6;
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray_e);
    border-radius: 12px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--pr);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--gray_77);
    margin-top: 0.5rem;
}

/* Section Descriptions */
.section-description {
    font-size: 1.1rem;
    color: var(--gray_77);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--pr);
    box-shadow: 0 4px 12px rgba(64, 121, 140, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pr) 0%, var(--prver2) 100%);
    color: var(--wt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.step-content h3 {
    color: var(--pr2);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--gray_77);
    line-height: 1.6;
}

/* Medical Services */
.medical-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.medical-card {
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.medical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 121, 140, 0.15);
    border-color: var(--pr);
}

.medical-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.medical-icon svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
    color: var(--pr);
    flex-shrink: 0;
}

.medical-card h3 {
    color: var(--pr2);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.medical-card p {
    color: var(--gray_77);
    line-height: 1.6;
}

/* Network Section */
.network-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.network-stat {
    text-align: center;
    padding: 2rem;
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    min-width: 150px;
}

.network-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pr);
    display: block;
    line-height: 1;
}

.network-stat .stat-label {
    color: var(--gray_77);
    margin-top: 0.5rem;
    font-size: 1rem;
}

.language-list {
    text-align: center;
    margin-top: 3rem;
}

.language-list h3 {
    color: var(--pr2);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.language-description {
    text-align: center;
    color: var(--gray_77);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.languages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.language-group {
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 200px;
}

.language-group:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(64, 121, 140, 0.1);
    border-color: var(--pr);
}

.language-group h4 {
    color: var(--pr2);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray_e);
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
}

.language-tag {
    background: var(--pr);
    color: var(--wt);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

.language-tag:hover {
    background: var(--prver2);
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--pr2) 0%, var(--pr) 100%);
    color: var(--wt);
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--wt);
    color: var(--pr);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--wt);
}

.cta-button:hover {
    background: transparent;
    color: var(--wt);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray_e);
}

.testimonials-section h3 {
    text-align: center;
    color: var(--pr2);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.testimonial-card {
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 121, 140, 0.15);
    border-color: var(--pr);
}

.testimonial-card h4 {
    color: var(--pr2);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonial-card p {
    color: var(--gray_77);
    font-style: italic;
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray_e);
    text-align: center;
}

.partners-section h3 {
    color: var(--pr2);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.partners-text {
    color: var(--gray_77);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.partners-logos img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partners-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Swiper Styles for Tabs */
.tab-panel .swiper-container {
    margin: 2rem 0;
}

.tab-panel .swiper-slide {
    height: auto;
}

.tab-panel .slide-content {
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-panel .slide-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 121, 140, 0.15);
    border-color: var(--pr);
}

.tab-panel .slide-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.tab-panel .slide-content h5 {
    color: var(--pr2);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.tab-panel .slide-content p {
    color: var(--gray_77);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tab-panel .more-link {
    color: var(--pr);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.tab-panel .more-link:hover {
    text-decoration: underline;
}

/* Swiper Navigation */
.tab-panel .swiper-button-next,
.tab-panel .swiper-button-prev {
    color: var(--pr) !important;
    width: 40px;
    height: 40px;
    background: var(--wt);
    border: 2px solid var(--pr);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-panel .swiper-button-next:hover,
.tab-panel .swiper-button-prev:hover {
    background: var(--pr);
    color: var(--wt) !important;
}

.tab-panel .swiper-button-prev {
    left: 10px;
}

.tab-panel .swiper-button-next {
    right: 10px;
}

/* Vision & Mission Styles */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.vision-card, .mission-card {
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 121, 140, 0.15);
    border-color: var(--pr);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--pr) 0%, var(--prver2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wt);
}

.vision-card h3, .mission-card h3 {
    color: var(--pr2);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vision-card p, .mission-card p {
    color: var(--gray_77);
    line-height: 1.6;
    font-size: 1.1rem;
}

.values-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray_e);
}

.values-section h3 {
    text-align: center;
    color: var(--pr2);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(64, 121, 140, 0.1);
    border-color: var(--pr);
}

.value-item h4 {
    color: var(--pr2);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: var(--gray_77);
    line-height: 1.6;
}

/* Vision SEO FAQ: 화면에서는 숨김 처리 */
.seo-hidden-faq {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

/* CEO Section */
.ceo-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.ceo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-align: center;
}

.ceo-logo {
    text-align: center;
}

.ceo-logo img {
    width: 173px;
    max-width: 100%;
    height: auto;
    margin: 0;
    vertical-align: middle;
}

.ceo-message h3 {
    color: var(--pr2);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.ceo-message p {
    color: var(--gray_77);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.ceo-signature {
    margin-top: 3rem;
    text-align: right;
    padding-top: 2rem;
    border-top: 1px solid var(--gray_e);
}

.ceo-signature p {
    color: var(--pr2);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Organization Chart */
.org-chart {
    margin: 3rem 0;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.org-level-1, .org-level-2, .org-level-3 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 2rem;
}

.org-level-1 {
    margin-bottom: 3rem;
}

.org-level-2 {
    margin-bottom: 2rem;
    flex-wrap: wrap;            /* 여러 줄 배치 허용 */
}

.org-box {
    background: var(--wt);
    border: 2px solid var(--gray_e);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.org-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(64, 121, 140, 0.15);
    border-color: var(--pr);
}

.ceo-box {
    background: linear-gradient(135deg, var(--pr) 0%, var(--prver2) 100%);
    color: var(--wt);
    border-color: var(--pr);
}

.ceo-box h4, .ceo-box p {
    color: var(--wt);
}

.org-box h4 {
    color: var(--pr2);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.org-box p {
    color: var(--gray_77);
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 3rem 0;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--pr);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--pr);
    border-radius: 50%;
    border: 3px solid var(--wt);
    box-shadow: 0 0 0 2px var(--pr);
}

.timeline-year {
    position: absolute;
    left: -4rem;
    top: 0;
    background: var(--pr);
    color: var(--wt);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
}

.timeline-content {
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(64, 121, 140, 0.15);
    border-color: var(--pr);
}

.timeline-content h4 {
    color: var(--pr2);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--gray_77);
    line-height: 1.6;
}

/* Awards */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.award-item {
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 121, 140, 0.15);
    border-color: var(--pr);
}

.award-year {
    background: linear-gradient(135deg, var(--pr) 0%, var(--prver2) 100%);
    color: var(--wt);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.award-content h4 {
    color: var(--pr2);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.award-content p {
    color: var(--gray_77);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* 모바일에서 사이드바 숨기기 */
    .service-page .side-fixed,
    #wrap .side-fixed {
        display: none !important;
    }
    
    .tab-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 0 1rem 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .medical-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experts-network-page .experts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .medical-card {
        padding: 1.5rem;
    }

    .experts-network-page .expert-card {
        padding: 1.5rem;
    }
    
    .medical-card h3 {
        font-size: 1.3rem;
    }

    .experts-network-page .expert-role {
        font-size: 1.3rem;
    }
    
    .network-stats {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .network-stat {
        min-width: auto;
        padding: 1.5rem;
    }
    
    .network-stat .stat-number {
        font-size: 2rem;
    }
    
    .languages {
        justify-content: center;
    }
    
    .cta-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .overview-section h2,
    .vision-section h2,
    .ceo-section h2,
    .organization-section h2,
    .history-section h2,
    .awards-section h2,
    .localization-section h2,
    .interpreting-section h2,
    .medical-section h2,
    .network-section h2,
    .cases-section h2,
    .press-section h2,
    .experts-field-section h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    /* Vision page mobile styles */
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .ceo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ceo-logo img {
        width: 115px;
    }
    
    .ceo-image {
        order: -1;
    }
    
    .org-level-1, .org-level-2, .org-level-3 {
        flex-direction: column;
        align-items: center;
    }
    
    .org-box {
        min-width: 250px;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-year {
        position: static;
        margin-bottom: 1rem;
        display: inline-block;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline::before {
        display: none;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-item {
        flex-direction: column;
        text-align: center;
    }
    
    .award-year {
        margin-bottom: 1rem;
    }
    
    /* Language groups mobile */
    .languages {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 1rem;
        max-width: 100%;
    }
    
    .language-group {
        padding: 2rem;
        min-height: auto;
    }
    
    .language-tags {
        gap: 0.8rem;
        justify-content: center;
    }
    
    .language-tag {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 480px) {
    /* 모바일에서 사이드바 숨기기 */
    .service-page .side-fixed,
    #wrap .side-fixed {
        display: none !important;
    }
    
    .tab-container {
        padding: 0 0.75rem;
    }
    
    .hero-section {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        padding: 0 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 0.75rem;
    }
    
    .tab-navigation {
        padding: 0 0.75rem 1rem;
        gap: 0.4rem;
    }
    
    .tab-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-card,
    .medical-card,
    .experts-network-page .expert-card {
        padding: 1.25rem;
    }
    
    .service-card h3,
    .medical-card h3,
    .experts-network-page .expert-role {
        font-size: 1.25rem;
    }
    
    .service-icon,
    .medical-icon img,
    .medical-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .stats-section {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .step-item {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .network-stats {
        gap: 0.75rem;
    }
    
    .network-stat {
        padding: 1.25rem;
    }
    
    .network-stat .stat-number {
        font-size: 1.75rem;
    }
    
    .cta-section {
        padding: 1.5rem 0.75rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        padding: 0 0.75rem;
    }
    
    .overview-section h2,
    .vision-section h2,
    .ceo-section h2,
    .organization-section h2,
    .history-section h2,
    .awards-section h2,
    .localization-section h2,
    .interpreting-section h2,
    .medical-section h2,
    .network-section h2,
    .cases-section h2,
    .press-section h2,
    .experts-field-section h2 {
        font-size: 1.75rem;
        padding: 0 0.75rem;
    }
    
    .process-steps {
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .testimonials-section {
        padding: 0 0.75rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .partners-logos {
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .partners-logos img {
        height: 40px;
    }
    
    .tab-panel .slide-content {
        padding: 1.25rem;
    }
    
    .tab-panel .slide-img {
        height: 150px;
    }
    
    .tab-panel .slide-content h5 {
        font-size: 1.1rem;
    }
    
    .tab-panel .slide-content p {
        font-size: 0.9rem;
    }
    
    .tab-panel .swiper-button-next,
    .tab-panel .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
}

/* 회사 개요 스타일 */
.company-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--wt);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.company-logos {
    text-align: center;
}

.company-logos img {
    height: 80px;
    width: auto;
    margin: 0 1rem;
    vertical-align: middle;
}

.company-description h2 {
    color: var(--pr);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray_6);
    margin-bottom: 1.5rem;
}

.ceo-signature {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gray_e);
}

.ceo-signature p {
    font-size: 1.2rem;
    color: var(--pr);
    font-weight: 600;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--wt);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--pr);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray_6);
    font-weight: 600;
}

/* 서비스 소개 스타일 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--wt);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--pr);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--wt);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--pr);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--gray_6);
    line-height: 1.6;
    font-size: 1rem;
}

/* 전문가 네트워크 스타일 */
.network-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray_6);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expert-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.expert-stat {
    text-align: center;
    padding: 2rem;
    background: var(--wt);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-section {
    text-align: center;
    margin-top: 3rem;
}

/* 성공 사례 스타일 */
.cases-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray_6);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--wt);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.testimonial-card h4 {
    color: var(--pr);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonial-card hr {
    border: none;
    height: 2px;
    background: var(--pr);
    margin: 1rem 0;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card p {
    color: var(--gray_6);
    font-style: italic;
    line-height: 1.6;
}

.partners-content {
    text-align: center;
    margin-top: 3rem;
}

.partners-text {
    font-size: 1.3rem;
    color: var(--pr);
    margin-bottom: 2rem;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partners-logos img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners-logos img:hover {
    opacity: 1;
}

/* 언론 동향 스타일 */
.press-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray_6);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* about.php 메인 섹션 스타일 */
.about-main-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-links-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 4rem;
}

.links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.link-card {
    background: var(--wt);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--pr);
}

.link-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--pr) 0%, var(--prver2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--wt);
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.1);
}

.link-card h2 {
    color: var(--pr);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.link-card p {
    color: var(--gray_6);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.link-card .base_btn {
    background: var(--pr);
    color: var(--wt);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-card .base_btn:hover {
    background: var(--pr2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 121, 140, 0.3);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .company-intro {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-stats {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        gap: 1rem;
    }
    
    .partners-logos img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .company-description h2 {
        font-size: 2rem;
    }
    
    .links-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .link-card {
        padding: 2rem;
    }
    
    .link-card h2 {
        font-size: 1.5rem;
    }
    
    .link-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* ========== 좌측 로그인 패널 없는 공개 페이지 — 통일 콘텐츠 열(너비·위치) ========== */
/* 컨테이너: 사이트 공통 1480px 안에서 main_sec 가로 중앙 정렬 */
#wrap.no-side-panel-layout .container,
#wrap .container:not(:has(> .side-fixed)),
.experts-network-page .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-width: 0;
    box-sizing: border-box;
}

#wrap.no-side-panel-layout .container > .main_sec,
#wrap .container:not(:has(> .side-fixed)) > .main_sec,
.experts-network-page .container > .main_sec {
    min-width: 0;
    width: 100%;
    max-width: var(--no-side-content-width);
    flex: 0 1 var(--no-side-content-width);
    margin-left: 0;
    margin-right: 0;
    padding: var(--no-side-content-pad);
    box-sizing: border-box;
    border-left: none;
}

/* 태블릿: 841~1200px — 데스크톱과 동일 990px 열, 컨테이너 안에서 중앙 */
@media (min-width: 841px) and (max-width: 1200px) {
    #wrap.no-side-panel-layout .container > .main_sec,
    #wrap .container:not(:has(> .side-fixed)) > .main_sec,
    .experts-network-page .container > .main_sec {
        max-width: var(--no-side-content-width);
        flex: 0 1 auto;
    }
}

/* 모바일: respond.css 840px(햄버거·드로어)와 동일 — 전폭·좌우 패딩만 유지 */
@media (max-width: 840px) {
    #wrap.no-side-panel-layout,
    .experts-network-page {
        overflow-x: hidden;
        max-width: 100%;
    }
    #wrap.no-side-panel-layout .container,
    #wrap .container:not(:has(> .side-fixed)),
    .experts-network-page .container {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 0 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    #wrap.no-side-panel-layout .container > .main_sec,
    #wrap .container:not(:has(> .side-fixed)) > .main_sec,
    .experts-network-page .container > .main_sec {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 auto !important;
        padding: 28px 0 44px !important;
        margin: 0 !important;
        box-sizing: border-box;
        border-left: none !important;
    }
    #wrap.no-side-panel-layout .tab-container,
    .experts-network-page .tab-container {
        padding-left: 0;
        padding-right: 0;
    }
    #wrap.no-side-panel-layout .hero-section,
    .experts-network-page .hero-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    #wrap.no-side-panel-layout .container,
    #wrap .container:not(:has(> .side-fixed)),
    .experts-network-page .container {
        padding: 0 0.75rem;
    }
    #wrap.no-side-panel-layout .container > .main_sec,
    #wrap .container:not(:has(> .side-fixed)) > .main_sec,
    .experts-network-page .container > .main_sec {
        padding: 24px 0 40px !important;
    }
}

/* ========== Experts network (/experts/) — about 히어로·CTA·카드와 동일 토큰 ========== */
.experts-network-page {
    overflow-x: hidden;
    max-width: 100%;
}
/* .container 정렬·너비는 위 no-side-panel 공통 규칙 사용 */
.experts-network-page section.main_sec,
.experts-network-page .experts-page .hero-section,
.experts-network-page .experts-page .cta-section,
.experts-network-page .experts-page section.experts-recent-section {
    min-height: 0 !important;
    height: auto !important;
}
.experts-network-page .experts-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
}
.experts-network-page .experts-page .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}
.experts-network-page .experts-page .hero-section .hero-subtitle {
    max-width: 40rem;
}
.experts-network-page .experts-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
    max-width: 920px;
    margin: 0.75rem auto 0.35rem;
    padding: 0;
}
.experts-network-page .experts-hero-stats > div {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 0.55rem 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.experts-network-page .experts-page .hero-section .cta-button {
    margin-top: 0.5rem;
}
.experts-field-section {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.experts-field-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--pr2);
    margin-bottom: 3rem;
    font-weight: 700;
}
/* about .medical-services / .services-grid 과 동일: 카드 최소 폭 300px·자동 열 수 */
/* min(100%,300px): 좁은 main_sec에서 그리드 폭 초과·카드 겹침 방지 */
.experts-network-page .experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
/* about .medical-card 계열과 동일한 밀도·그림자 */
.experts-network-page .expert-card {
    background: var(--wt);
    border: 1px solid var(--gray_e);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 15px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow-wrap: anywhere;
    word-break: keep-all;
}
.experts-network-page .expert-card:hover {
    position: relative;
    z-index: 1;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 121, 140, 0.15);
    border-color: var(--pr);
}
.experts-network-page .expert-id {
    font-size: 14px;
    color: var(--pr);
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray_e);
}
.experts-network-page .expert-role {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--pr2);
    margin-bottom: 0.65rem;
    line-height: 1.35;
}
.experts-network-page ul.expert-info {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    /* flex 금지: row + space-between 유사 레이아웃이 라벨·본문 사이에 큰 공백을 만듦 */
    display: block;
}
.experts-network-page ul.expert-info > li.expert-info-section {
    /* 타 스타일시트의 ul li { display:flex; justify-content:space-between } 대비 */
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e8eef3;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #334155;
}
.experts-network-page ul.expert-info > li.expert-info-section:first-child {
    padding-top: 0;
}
.experts-network-page ul.expert-info > li.expert-info-section > strong {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: -0.02em;
    line-height: 1.45;
    margin: 0 0 0.45rem 0;
    display: block;
    min-width: 0;
    max-width: 100%;
}
.experts-network-page ul.expert-info-lines {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.experts-network-page ul.expert-info-lines > li {
    position: relative;
    margin: 0;
    padding: 0 0 0 0.85rem;
    border: none;
    line-height: 1.6;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.experts-network-page ul.expert-info-lines > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #94a3b8;
}
/* 전문 분야 등 한 줄 본문(목록 불릿 없음) */
.experts-network-page .expert-info-inline {
    display: block;
    width: 100%;
    min-width: 0;
    line-height: 1.6;
    color: inherit;
    font-size: inherit;
}
.experts-network-page ul.expert-info > li.expert-info-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
/* 프로젝트 경험 행만 숫자·강조 */
.experts-network-page li.expert-info-section--metric {
    font-weight: 500;
    color: #1e293b;
}
.experts-network-page li.expert-info-section--metric > strong {
    color: #1d4e5f;
}
.experts-network-page li.expert-info-section--metric ul.expert-info-lines > li {
    font-weight: 500;
}
.experts-network-page .cta-section.experts-cta-bottom {
    margin-top: 2rem;
    margin-bottom: 0;
}
.experts-network-page .experts-msg {
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    color: #475569;
}
.experts-network-page .experts-msg--error {
    background: #fef2f2;
    color: #991b1b;
}
.experts-network-page .experts-table-wrap {
    overflow-x: auto;
    margin-top: 0;
    margin-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid #e8eef3;
}
.experts-network-page .experts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.experts-network-page .experts-table th,
.experts-network-page .experts-table td {
    border: 1px solid #e8eef3;
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
}
.experts-network-page .experts-table th {
    background: #f4f7f9;
    color: #1F363D;
    font-weight: 700;
    font-size: 0.85rem;
}
.experts-network-page .experts-table tbody tr:nth-child(even) {
    background: #fafbfc;
}
.experts-network-page .experts-cell-career {
    white-space: normal;
    line-height: 1.55;
    word-break: keep-all;
    overflow-wrap: anywhere;
}
.experts-network-page .experts-recent-section {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--gray_e);
}
.experts-network-page .experts-recent-title {
    margin: 0 0 14px 0;
    font-size: 1.15rem;
    color: var(--pr2);
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
}
.experts-network-page .experts-recent-cat {
    margin: 16px 0 0.5rem 0;
    font-size: 0.95rem;
    color: var(--pr2);
    font-weight: 700;
}
.experts-network-page .experts-recent-cat:first-of-type {
    margin-top: 0;
}
.experts-network-page .experts-table th.experts-col-date {
    white-space: nowrap;
    width: 7.5rem;
}

@media (max-width: 1200px) {
    .experts-network-page .experts-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .experts-network-page .side-fixed {
        display: none !important;
    }
    .experts-network-page .experts-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .experts-network-page .experts-hero-stats {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}