@charset "utf-8";

/* ============================================================
   palsy 페이지 — Tailwind 보조 스타일
   ============================================================ */

.ctt_admin {
    display: none;
}

/* 섹션 1 — xl 이상 이미지·텍스트 박스 겹침 (flow series 동일) */
@media (min-width: 1280px) {
    .sh-palsy-intro__visual {
        position: relative;
        min-height: 500px;
    }

    .sh-palsy-intro__photo {
        position: absolute;
        left: 0;
        top: 50px;
        z-index: 10;
        width: 30%;
        max-width: 400px;
    }

    .sh-palsy-intro__box {
        position: relative;
        z-index: 20;
        margin-left: 36%;
        min-height: 500px;
        padding-left: clamp(100px, 10vw, 160px);
        padding-right: 40px;
    }
}

@media (min-width: 1536px) {
    .sh-palsy-intro__photo {
        left: 0;
        width: 40.83%;
        max-width: 588px;
    }

    .sh-palsy-intro__box {
        margin-left: 28.2%;
        padding-left: min(220px, 18%);
    }
}

/* 섹션 3 — 영상 */
.sh-palsy-diagnosis__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 섹션 4 — 배경 이미지 + 흰색 90% 오버레이 */
.sh-palsy-network__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    opacity: 0.9;
}

/* 섹션 6 — 후기 마퀴 */
.sh-palsy-review-track {
    display: flex;
    width: max-content;
    animation: sh-palsy-review-marquee 55s linear infinite;
}

.sh-palsy-review-marquee:hover .sh-palsy-review-track {
    animation-play-state: paused;
}

@keyframes sh-palsy-review-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* 섹션 7 — FAQ */
.sh-palsy-faq .sh-faq-item__question > span.text-primary {
    color: #a16f9b;
}

.sh-palsy-faq .sh-faq-item:not(.is-open) .sh-faq-item__question-body {
    color: #212121;
}

.sh-palsy-faq .sh-faq-item.is-open .sh-faq-item__question-body {
    color: #a16f9b;
}
