.elementor-1759 .elementor-element.elementor-element-8d105cb{--display:flex;--min-height:800px;--justify-content:center;}.elementor-1759 .elementor-element.elementor-element-8d105cb:not(.elementor-motion-effects-element-type-background), .elementor-1759 .elementor-element.elementor-element-8d105cb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F8F9FA;}.elementor-1759 .elementor-element.elementor-element-8d105cb.e-con{--align-self:center;}.elementor-1759 .elementor-element.elementor-element-59395ab{--spacer-size:100px;}.elementor-1759 .elementor-element.elementor-element-068dcb6{--spacer-size:100px;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-1759 .elementor-element.elementor-element-8d105cb{--min-height:328px;}}@media(min-width:768px){.elementor-1759 .elementor-element.elementor-element-8d105cb{--content-width:1200px;}}@media(max-width:767px){.elementor-1759 .elementor-element.elementor-element-8d105cb{--content-width:500px;--min-height:278px;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}}/* Start custom CSS */<style>
    /* 섹션 스타일 및 브랜드 컬러 정합성 */
    .medical-intro-section { 
        width: 100%; 
        padding: 60px 20px; 
        font-family: 'Pretendard', sans-serif; 
        background-color: transparent !important; 
        text-align: center !important; 
    }
    
    /* H2 메인 타이틀 */
    .medical-intro-section h2 { 
        color: #25A039 !important; 
        font-size: 32px !important; 
        font-weight: 700 !important; 
        line-height: 1.4 !important; 
        margin-bottom: 15px !important; 
        text-align: center !important; 
    }

    /* H3 서브 타이틀 및 블루 색상 적용 */
    .medical-intro-section h3 { 
        color: #3976EA !important; 
        font-size: 28px !important; 
        font-weight: 700 !important; 
        line-height: 1.4 !important; 
        margin-bottom: 20px !important; 
        text-align: center !important; 
    }

    /* 특정 강조 텍스트 색상 지정 */
    .medical-intro-section h3 .highlight-blue {
        color: #3976EA !important;
    }
    
    /* 본문 부제: 전역 스타일의 좌측 정렬 간섭을 막기 위해 center 및 block 강제 지정 */
    .medical-intro-desc { 
        color: #6C6C6C !important; 
        font-size: 18px !important; 
        line-height: 1.6 !important; 
        max-width: 800px !important; 
        margin: 0 auto !important; 
        display: block !important; 
        text-align: center !important; /* 좌측 쏠림 방지 핵심 */
    }

    /* 페이드 업 인터랙션 효과 */
    .fx-fade-up { 
        opacity: 0 !important; 
        transform: translateY(30px) !important; 
        transition: opacity 0.8s ease-out, transform 0.8s ease-out !important; 
    }
    .fx-fade-up.is-visible { 
        opacity: 1 !important; 
        transform: translateY(0) !important; 
    }

    /* 태블릿(1024px 이하) */
    @media screen and (max-width: 1024px) {
        .medical-intro-desc { display: block !important; }
    }

    /* 모바일(768px 이하) */
    @media screen and (max-width: 768px) {
        .medical-intro-section h2 { font-size: 24px !important; }
        .medical-intro-section h3 { font-size: 20px !important; }
        .medical-intro-desc { display: none !important; }
    }
</style>

<section class="medical-intro-section fx-fade-up">
    <h2>의료진 소개</h2>
    <h3><b>단 한 분의 시니어 임플란트 치료를 위한 <span class="highlight-blue">15인의 의료진</span></b></h3>
    
    <p class="medical-intro-desc">
        젊어지는치과 임플란트는 완성도를 높이기 위해<br>
        치주과, 보철과, 구강외과, 보존과 등 각 분야별 담당 원장님의 협진을 통해 진행됩니다.
    </p>
</section>

<script>
    document.addEventListener("DOMContentLoaded", function() {
        const observer = new IntersectionObserver((entries, observer) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.classList.add('is-visible');
                    observer.unobserve(entry.target);
                }
            });
        }, { threshold: 0.1 });

        document.querySelectorAll('.fx-fade-up').forEach((el) => {
            observer.observe(el);
        });
    });
</script>/* End custom CSS */