@charset "UTF-8";
/* scope_pub_css.py 생성물. 직접 고치지 않는다.
   원본은 퍼블 전달본의 common.css 다. 그것을 고치고 스크립트를 다시 돌린다 */
/* ============================================================
   common.css — 시안D 공통 원자 컴포넌트
   ------------------------------------------------------------
   이 파일에 들어갈 것:
     · 레이아웃 유틸 (.container, .section, .section-head)
     · 재사용 타이포 (.eyebrow, .section-title, .txt-grad)
     · 원자 컴포넌트 (.icon-box, .swiper-nav / .swiper-arrow)
     · 접근성 유틸 (:focus-visible, .skip-to-content)
   ============================================================ */

/* ---- Layout utility ---- */
.ext-body .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}
@media (max-width: 768px) {
    .ext-body .container {
        padding: 0 20px;
    }
}
@media (max-width: 480px) {
    .ext-body .container {
        padding: 0 16px;
    }
}

/* ---- Section ---- */
.ext-body .section {
    padding: 72px 0;
    position: relative;
    background: #fff;
}
.ext-body .section--tint {
    background: var(--bg-soft);
}

.ext-body .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 28px;
}
.ext-body .section-head__left {
    max-width: 80%;
    width: 100%;
}

/* Centered variant — 히어로·인트로처럼 가운데 정렬이 필요한 섹션 헤드 */
.ext-body .section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 0;
}
.ext-body .section-head--center .section-title {
    max-width: 100%;
}
.ext-body .section-head--center .section-desc {
    margin-inline: auto;
}

/* ---- Typography helpers ---- */
.ext-body .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
/* 지시 도트 (LIVE / 섹션 진입 인디케이터) — .eyebrow 안에서 텍스트 앞 삽입 */
.ext-body .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kor-red);
    position: relative;
    flex-shrink: 0;
}
.ext-body .live-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--kor-red);
    opacity: 0.5;
    animation: pulseDot 1.6s ease-out infinite;
}
.ext-body .live-dot--cyan {
    background: var(--cyan-500);
}
.ext-body .live-dot--cyan::after {
    border-color: var(--cyan-500);
}
.ext-body .live-dot--purple {
    background: var(--purple-500);
}
.ext-body .live-dot--purple::after {
    border-color: var(--purple-500);
}
@keyframes pulseDot {
    0% {
        transform: scale(0.6);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}
.ext-body .section-title {
    font-size: clamp(28px, 3.6vw, 38px);
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.ext-body .section-desc {
    color: var(--ink-500);
    font-size: 15px;
    line-height: 1.7;
    max-width: 720px;
}

/* 텍스트 그라디언트 */
.ext-body .txt-grad {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---- Icon box (연계 플랫폼 카드용) ---- */
.ext-body .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad-soft);
    border: 1px solid var(--purple-100);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-600);
    flex-shrink: 0;
    transition: var(--tr-base);
}
.ext-body .icon-box i {
    font-size: 20px;
}
.ext-body .icon-box--lg {
    width: 52px;
    height: 52px;
}
.ext-body .icon-box--lg i {
    font-size: 24px;
}

/* ---- Swiper nav (파트너 마퀴 컨트롤) ---- */
.ext-body .swiper-nav {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.ext-body .swiper-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-700);
    transition: var(--tr-base);
    cursor: pointer;
}
.ext-body .swiper-arrow:hover {
    background: var(--purple-600);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-pop);
}
.ext-body .swiper-arrow i {
    font-size: 16px;
}
.ext-body .swiper-arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* ---- Button atom ---- */
.ext-body .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--r-pill);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: var(--ink-900);
    cursor: pointer;
    transition: var(--tr-base);
}
.ext-body .btn i {
    font-size: 18px;
}
.ext-body .btn--primary {
    background: var(--grad-main);
    color: #fff;
    box-shadow: 0 12px 28px -10px rgba(82, 11, 255, 0.5);
}
.ext-body .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-pop);
}
.ext-body .btn--ghost {
    background: #fff;
    color: var(--ink-700);
    border-color: var(--line-strong);
}
.ext-body .btn--ghost:hover {
    border-color: var(--purple-500);
    color: var(--purple-600);
}

/* ---- A11y ---- */
.ext-body :focus {
    outline: 2px solid transparent;
}
.ext-body :focus-visible {
    outline: 2px solid var(--purple-500);
    outline-offset: 3px;
    border-radius: 4px;
}
.ext-body :focus:not(:focus-visible) {
    outline: none;
}
.ext-body .skip-to-content {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 14px 22px;
    background: var(--purple-600);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0 0 8px 0;
}
.ext-body .skip-to-content:focus, .ext-body .skip-to-content:focus-visible {
    left: 0;
}
.ext-body .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   Responsive — 공통 컴포넌트
   ============================================================ */
@media (max-width: 1440px) {
    .ext-body .container {
        padding: 0 32px;
    }
}
@media (max-width: 1024px) {
    .ext-body .container {
        padding: 0 28px;
    }
    .ext-body .section {
        padding: 56px 0;
    }
}
@media (max-width: 768px) {
    .ext-body .container {
        padding: 0 20px;
    }
    .ext-body .section {
        padding: 44px 0;
    }
    .ext-body .section-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .ext-body .section-head__left {
        max-width: 100%;
    }
}
@media (max-width: 360px) {
    .ext-body .container {
        padding: 0 16px;
    }
}