/* 통계 배너 — HTML 텍스트 워터마크(섹션에서 overflow로 클리핑) */
.sd-stats-watermark {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.sd-stats-watermark__group {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1.2vw, 12px);
}
.sd-stats-watermark__group--tl {
    position: absolute;
    /* 위로 더 올림(음수 top + vw 상한으로 큰 화면에서도 과하지 않게) */
    top: calc(-0.16em - min(2.2vw, 40px));
    /* 왼쪽 위 START DRIVE — 배경 텍스트를 섹션 왼쪽으로 더 당김 */
    left: calc(-0.08em - min(2.5vw, 48px));
}
.sd-stats-watermark__group--br {
    position: absolute;
    right: calc(-0.08em - min(2.5vw, 48px));
    bottom: calc(-0.14em - min(2.2vw, 40px));
    align-items: flex-end;
    text-align: right;
}
/* 네이비 배경 위 희미한 워터마크(참고: 흰색 ~8% 불투명도, 모서리에서 클리핑) */
.watermark-text {
    display: block;
    font-family: 'Gmarket Sans TTF', sans-serif;
    font-weight: 700;
    font-size: clamp(3.25rem, 14vw, 130px);
    line-height: 0.88;
    letter-spacing: -0.02em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.08);
}
@media (max-width: 767.98px) {
    .sd-stats-watermark .watermark-text {
        font-size: 80px;
    }
}
.sd-stat-card-border {
    position: relative;
    border: 1px solid transparent;
}
/* SVG는 stroke #242424 — 네이비 카드 위에서 흰색으로 */
.sd-stat-card__ico {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
    .sd-stat-card__ico {
        width: 28px;
        height: 28px;
    }
}
.sd-stat-card-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(83.26deg, rgba(255, 255, 255, 0.2) 3.31%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* 통계 영역 제목 — 모바일 24px / 데스크톱은 md 구간 */
.sd-stats-heading {
    width: 100%;
    max-width: 288px;
    text-align: center;
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.375;
    color: #fff;
}
@media (min-width: 768px) {
    .sd-stats-heading {
        max-width: none;
        width: 1400px;
        height: 36px;
        font-size: 36px;
        line-height: 1;
    }
}
.sd-stats-heading__line--mobile {
    display: block;
}
@media (min-width: 768px) {
    .sd-stats-heading__line--mobile {
        display: none;
    }
}
.sd-stats-heading__line--desktop {
    display: none;
}
@media (min-width: 768px) {
    .sd-stats-heading__line--desktop {
        display: block;
    }
}

/* 통계 카드 그리드 + 카드 본문(기존 Tailwind 유틸 → 유지보수용 클래스) */
.sd-stats-grid {
    display: flex;
    width: 100%;
    max-width: 288px;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 768px) {
    .sd-stats-grid {
        height: 152px;
        max-width: none;
        flex-direction: row;
        align-items: stretch;
        gap: 1.5rem;
    }
}
/* 모바일: 위 사연 카드·캐러셀과 동일 수평 인셋(우측 퀵메뉴 보정) */
@media (max-width: 767px) {
    .start-drive-section .sd-stats-mo-align {
        padding-left: max(28px, env(safe-area-inset-left, 0px)) !important;
        padding-right: max(12px, env(safe-area-inset-right, 0px)) !important;
    }
}

/* WebGL 굴절 레이어: 활성화(sd-stats-glass-ready) 전까지 숨김 — JS 전 플래시 방지 */
.sd-stats-section .sd-stats-inner .sd-stats-gl-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    display: none;
}
.sd-stats-section.sd-stats-glass-ready .sd-stats-inner .sd-stats-gl-canvas {
    display: block;
}
.sd-stats-section.sd-stats-glass-ready .sd-stat-card {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.sd-stat-card {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    height: 104px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    box-shadow: 0 0 30px rgba(0, 51, 160, 0.5);
    backdrop-filter: blur(2px);
}
@media (min-width: 768px) {
    .sd-stat-card {
        height: 152px;
        min-height: 0;
        flex: 1 1 0;
        backdrop-filter: none;
        padding: 2.5rem 1.5rem;
    }
}

/* 모바일: 라벨(총 사용 인원 등) 14px — 데스크톱은 md에서 키움 */
.sd-stat-card__row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
}
@media (min-width: 768px) {
    .sd-stat-card__row {
        font-size: 1.125rem;
    }
}

.sd-stat-card__label {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
}
@media (min-width: 768px) {
    .sd-stat-card__label {
        font-size: inherit;
    }
}

/* 모바일: 수치 24px */
.sd-stat-card__value {
    width: 100%;
    margin: 0;
    text-align: center;
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
@media (min-width: 768px) {
    .sd-stat-card__value {
        font-size: 32px;
    }
}

/* ========== 홈 START DRIVE — sec03 (Figma) ========== */
.start-drive-section {
    position: relative;
    /* 홈에서 위 섹션과 간격 살짝 축소 */
    padding: 64px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 14.69%, #f3f7ff 29.39%, #ffffff 64.69%);
    text-align: center;
    overflow: hidden;
}

/* 인트로: START DRIVE 타이틀 + Frame 816822 */
.sd-intro {
    position: relative;
    margin-bottom: clamp(20px, 4vw, 40px);
    z-index: 1;
}
.bg-title {
    width: min(1141px, 100%);
    max-width: 100%;
    height: auto;
    min-height: clamp(72px, 18vw, 150px);
    margin: 0 auto;
    left: auto;
    font-family: 'GmarketSans', 'Gmarket Sans TTF', 'Pretendard', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(56px, 14vw, 150px);
    line-height: 100%;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #cbe1ff 0%, #f3f7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: absolute;
    top: clamp(-5px, -0.9vw, -2px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    text-align: center;
}
@media (max-width: 767.98px) {
    .start-drive-section .bg-title {
        font-size: 40px;
        min-height: 0;
        top: 0;
    }
}
.sd-intro-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 598px;
    margin: 0 auto;
    /* 큰 타이틀과 '후원 캠페인…' 헤드라인이 세로로 겹치도록 여백 축소 */
    padding-top: clamp(32px, 9vw, 72px);
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .sd-intro-stack {
        /* PC: 헤드라인·CTA를 살짝 아래로 — 통계 워터마크가 덜 가려지도록 상단 여유 */
        padding-top: clamp(44px, 9vw, 84px);
    }
}
.sd-intro-hero {
    display: flex;
    flex-direction: column;
    /* stack 이 align-items:center 일 때 이 블록이 내용폭으로 줄면 제목 text-align:center 가 시각적으로 어긋남 → 전폭 사용 */
    align-items: stretch;
    align-self: stretch;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
}
@media (max-width: 767px) {
    .sd-intro-hero {
        padding-left: max(28px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
    }
}
.sd-intro-hero__title {
    position: relative;
    z-index: 1;
    margin: 0;
    margin-top: clamp(2px, -4vw, -10px);
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 4.2vw, 36px);
    line-height: 1.2;
    text-align: center;
    color: #242424;
    white-space: normal;
    word-break: keep-all;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .sd-intro-hero__title {
        white-space: nowrap;
    }
    /*
     * 제목(한 줄, nowrap) 폭에 맞춰 설명문 폭을 동기화.
     * grid-template-columns: min-content → 컬럼 폭 = 자식들 min-content 최대값.
     *   - 제목: nowrap이라 min-content = 한 줄 전체 폭
     *   - 설명문: 가장 긴 단어(훨씬 작음)
     * 결과적으로 컬럼 폭 = 제목 한 줄 폭, 설명문은 그 안에서 자연 줄바꿈.
     * 기존 translateX(제목 전용 광학 보정)는 컨테이너로 올려 둘 다 함께 이동.
     */
    .sd-intro-hero {
        display: grid;
        grid-template-columns: min-content;
        justify-content: center;
        transform: clamp(-10px, -1.5vw, -30px);
    }
}
.sd-intro-hero__desc {
    margin: 0;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #242424;
}

/* 콘텐츠 랩(슬라이더·통계·티커) — 인트로/버튼과 분리된 "본문" 높이·여백은 여기서 잡음 */
.sd-main-container {
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: visible;
}

/* 캐러셀: 풀블리드(100vw). 모바일은 피그마처럼 좌우 20px 인셋 → 카드·그림자가 화면 끝에 붙지 않음 */
.start-drive-section .sd-stories-slider-wrap {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* 푸터 margin-top 음수는 캐러셀(z-index) 아래로 깔려 안 보일 수 있음 → 아래로 당겨 간격만 줄임 */
    margin-bottom: -48px;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
}
@media (min-width: 768px) {
    .start-drive-section .sd-stories-slider-wrap {
        /* PC: 네이비 통계 블록과의 겹침 완화 → 모서리 워터마크가 조금 더 드러남 */
        margin-bottom: -32px;
    }
}
@media (max-width: 767px) {
    .start-drive-section .sd-stories-slider-wrap {
        padding-top: 0;
        /* 좌우 20px 대칭이면 우측 퀵메뉴 때문에 카드가 왼쪽으로 치우쳐 보임 → 좌측 인셋을 조금 넓혀 시각적 중앙에 가깝게 */
        padding-left: max(28px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
    }
    .sd-main-container {
        padding-top: 0;
        padding-bottom: min(4vw, 24px);
    }
}

/* Slick: 배경 — sec03 패널 톤 */
.start-drive-section .sd-stories-slider .slick-list,
.start-drive-section .sd-stories-slider .slick-track {
    background: transparent;
}
.start-drive-section .sd-stories-slider .slick-slide {
    background: transparent;
}
.start-drive-section .sd-stories-slider .slick-slide {
    padding-left: 4px !important;
    padding-right: 4px !important;
}
.start-drive-section .sd-stories-slider.sd-stories-slider--varw .slick-slide {
    padding-left: 1px !important;
    padding-right: 1px !important;
}
.start-drive-section .sd-stories-slider {
    position: relative;
    margin-bottom: 0;
    padding: 8px 0 0;
    box-sizing: border-box;
}
/* Slick은 track에 float 레이아웃 사용 — display:flex 넣으면 슬라이드/화살표가 동작하지 않음 */
.start-drive-section .sd-stories-slider .slick-list {
    overflow: hidden;
    box-sizing: border-box;
    /* 가운데 scale(1.03)·그림자가 위아래로 밀 때 잘리지 않게 — JS(sdSyncSlickListHeight) 패딩과 함께 사용 */
    margin-top: 0;
    margin-bottom: 0;
}
.start-drive-section .sd-stories-slider .slick-slide > div {
    height: 100%;
}
/*
 * variableWidth: 슬라이드 1칸 폭을 카드에 맞춤.
 * (예전: 칸은 화면만 한데 카드만 280px 가운데 → peek 구간이 전부 빈 여백이라 양옆 카드가 "안 보임")
 */
.start-drive-section .sd-stories-slider.sd-stories-slider--varw.slick-initialized .slick-slide {
    width: min(1100px, calc(100vw - 8px));
    box-sizing: border-box;
}
@media (max-width: 767px) {
    /* 래퍼 패딩(20px×2)만 쓰고 슬라이드 안쪽 패딩은 제거 → 피그마 20px 인셋과 동일하게 */
    .start-drive-section .sd-stories-slider .slick-slide {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .start-drive-section .sd-stories-slider.sd-stories-slider--varw .slick-slide {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    /* 모바일: START DRIVE 카드는 상품 캐러셀(264px)과 구분 — 슬라이드 가로 320px + 칸 간격(오른쪽 피크) */
    .start-drive-section .sd-stories-slider.sd-stories-slider--varw.slick-initialized .slick-slide {
        width: 320px !important;
        max-width: 320px;
        margin-right: 16px;
        box-sizing: border-box;
    }
    .start-drive-section .sd-stories-slider.sd-stories-slider--varw.slick-initialized .slick-slide:last-child {
        margin-right: 0;
    }
}
.start-drive-section .sd-stories-slider.sd-stories-slider--varw .slick-slide .sd-story-slide {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}
/* 가운데 메인 카드가 양옆 사이드 위로 보이도록 */
.start-drive-section .sd-stories-slider.sd-slick--center .slick-slide {
    position: relative;
    z-index: 1;
}
.start-drive-section .sd-stories-slider.sd-slick--center .slick-slide.slick-center,
.start-drive-section .sd-stories-slider.sd-slick--center .slick-slide.sd-visual-center {
    z-index: 3;
}
.start-drive-section .sd-stories-slider .slick-prev,
.start-drive-section .sd-stories-slider .slick-next {
    z-index: 10;
    width: 42px;
    height: 42px;
    pointer-events: auto;
}
.start-drive-section .sd-stories-slider .slick-prev { left: 4px; }
.start-drive-section .sd-stories-slider .slick-next { right: 4px; }
@media (max-width: 640px) {
    .start-drive-section .sd-stories-slider .slick-prev { left: 0; }
    .start-drive-section .sd-stories-slider .slick-next { right: 0; }
}

/* 슬라이드: 상단 2열 + 하단 영상 (레퍼런스 UI) */
.sd-story-slide {
    position: relative;
    display: block;
    background: transparent;
    border: none;
    /* .sd-story-layout 과 동일(8px) — box-shadow가 둥근 테두리를 따름 */
    border-radius: 8px;
    overflow: visible;
    box-shadow: none;
    transform: none;
    opacity: 1;
    transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}
.start-drive-section .sd-stories-slider .slick-slide .sd-story-slide {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}
/* Group 815551 — Rectangle 2028 */
.sd-story-layout {
    box-sizing: border-box;
    text-align: left;
    background: #ffffff;
    border: 1px solid rgba(168, 168, 168, 0.2);
    border-radius: 8px;
    padding: clamp(14px, 1.75vw, 20px);
    box-shadow: none;
}
.sd-story-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.4vw, 24px);
    align-items: stretch;
    min-height: 0;
}
@media (max-width: 900px) {
    .sd-story-top {
        grid-template-columns: 1fr;
    }
}
/* 왼쪽: 이미지 카드 + 텍스트 (Figma img 664×370) */
/* flex: 그리드 행 높이(응원 카드)에 맞춰 늘어날 때 오버레이가 카드 전체를 덮도록 */
.sd-story-intro-card {
    position: relative;
    box-sizing: border-box;
    border-radius: 16px;
    overflow: hidden;
    min-height: min(280px, 40vw);
    border: 1px solid rgba(168, 168, 168, 0.5);
    isolation: isolate;
    display: flex;
    flex-direction: column;
}
.sd-intro-card__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    /* scale(1.02) 제거: 모서리에서 원본만 비치는 느낌 방지 */
    z-index: 0;
}
.sd-intro-card__overlay {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: min(280px, 40vw);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: clamp(16px, 2.5vw, 32px) clamp(16px, 2.2vw, 28px) clamp(16px, 2.5vw, 30px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.78) 45%, rgba(255, 255, 255, 0.82) 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: inherit;
}
.sd-intro-card__row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(24px, 8vw, 80px);
    max-width: 100%;
    flex: 1 1 auto;
    min-height: 0;
}
.sd-intro-card__body {
    flex: 1;
    min-width: 0;
    max-width: 402px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.sd-intro-card__title {
    margin: 0 0 12px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #242424;
}
@media (max-width: 767px) {
    .start-drive-section .sd-intro-card__title {
        font-size: 18px;
    }
    .start-drive-section .sd-support-card__title {
        font-size: 18px;
    }
    .start-drive-section .sd-intro-card__desc {
        font-size: 12px;
    }
    .start-drive-section .sd-intro-card__cheer-link,
    .start-drive-section .sd-intro-card__cheer-link.sd-home-story-link {
        font-size: 14px !important;
    }
    .start-drive-section .sd-support-card__msg-link {
        font-size: 14px;
    }
    .start-drive-section .sd-chat-bubble {
        font-size: 12px;
        max-width: 75%;
    }
}
.sd-intro-card__desc {
    margin: 0;
    min-height: 0;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(36, 36, 36, 0.8);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    word-break: break-word;
    white-space: pre-line;
}
.sd-intro-card__cheer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 24px 0 0;
    padding: 2px 0;
    border: none;
    border-bottom: 1px solid #242424;
    border-radius: 0;
    background: none;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #242424;
    cursor: pointer;
    text-decoration: none;
}
.sd-intro-card__cheer-link:hover:not(:disabled) {
    color: #242424;
    opacity: 0.85;
}
.sd-intro-card__cheer-link.is-done,
.sd-intro-card__cheer-link:disabled {
    border-bottom-color: transparent;
    opacity: 0.65;
    cursor: default;
}
.sd-intro-card__cheer-badge {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin: 0;
    margin-top: auto;
    margin-left: auto;
    margin-right: 0;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(255, 255, 255, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.08);
    align-self: flex-end;
    overflow: hidden;
    isolation: isolate;
    transition:
        border-color 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}
.sd-intro-card__cheer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40%;
    width: 35%;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 2;
    animation: sdCheerBadgeShine 4.8s ease-in-out infinite;
}
@keyframes sdCheerBadgeShine {
    0%, 60%, 100% {
        left: -40%;
        opacity: 0;
    }
    62% {
        opacity: 1;
    }
    90% {
        left: 140%;
        opacity: 1;
    }
    95% {
        opacity: 0;
    }
}
.sd-intro-card__cheer-badge:not(:has([data-sd-cheering="1"])) {
    cursor: pointer;
}
.sd-intro-card__cheer-badge:hover:not(:has([data-sd-cheering="1"])) {
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3),
        0 4px 14px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}
.sd-intro-card__cheer-badge:active:not(:has([data-sd-cheering="1"])) {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (prefers-reduced-motion: reduce) {
    .sd-intro-card__cheer-badge:hover:not(:has([data-sd-cheering="1"])),
    .sd-intro-card__cheer-badge:active:not(:has([data-sd-cheering="1"])) {
        transform: none;
    }
    .sd-intro-card__cheer-badge::before {
        animation: none;
        opacity: 0;
    }
}
.sd-intro-card__heart {
    font-size: clamp(12px, 2.6vw, 21px);
    line-height: 1;
    color: #e53935;
    display: inline-block;
    transform-origin: center;
    animation: sdHeartBeat 1.15s ease-in-out infinite;
}
@keyframes sdHeartBeat {
    0%,
    100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.12);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.08);
    }
    56% {
        transform: scale(1);
    }
}
@keyframes sdHeartClickPop {
    0% {
        transform: scale(1);
    }
    28% {
        transform: scale(1.28);
    }
    48% {
        transform: scale(0.94);
    }
    72% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}
@media (prefers-reduced-motion: reduce) {
    .sd-intro-card__heart {
        animation: none;
    }
}
.sd-intro-card__heart--btn {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    margin: 0;
    padding: 4px 0;
    background: none;
    border: none;
    border-radius: 10px;
    color: #e53935;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}
.sd-intro-card__heart--btn:hover {
    filter: brightness(1.08);
}
.sd-intro-card__heart--btn:active:not(.sd-heart--pulse) {
    transform: scale(0.96);
}
.sd-intro-card__heart--btn.sd-heart--pulse {
    animation: sdHeartClickPop 0.58s cubic-bezier(0.34, 1.45, 0.48, 1) both;
}
@media (prefers-reduced-motion: reduce) {
    .sd-intro-card__heart--btn.sd-heart--pulse {
        animation: none;
    }
}
.sd-intro-card__heart--btn:focus-visible {
    outline: 2px solid rgba(217, 60, 60, 0.45);
    outline-offset: 2px;
}
.sd-intro-card__heart--btn[data-sd-cheering="1"] {
    opacity: 0.75;
    pointer-events: none;
}
/* 응원 성공: 하트가 위로 샤라락 떠오름 (body 고정) */
.sd-floating-heart {
    position: fixed;
    z-index: 10052;
    pointer-events: none;
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #e53935;
    opacity: 0;
    animation: sdFloatingHeart 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    filter: drop-shadow(0 2px 6px rgba(211, 60, 60, 0.35));
}
.sd-floating-heart i {
    display: block;
}
@keyframes sdFloatingHeart {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0.75);
    }
    18% {
        opacity: 1;
        transform: translate(calc(var(--sd-drift, 0px) * 0.25), -18px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--sd-drift, 0px), -110px) scale(1.12);
    }
}
@media (prefers-reduced-motion: reduce) {
    .sd-floating-heart {
        animation: none !important;
        visibility: hidden;
    }
}
.sd-intro-card__cheer-badge .sd-home-cheer-cnt {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: clamp(21px, 3.85vw, 29px);
    line-height: 1;
    color: #242424;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    display: inline-block;
    transform-origin: center bottom;
    white-space: nowrap;
}
.sd-home-cheer-cnt.sd-cheer-cnt--rolling {
    position: relative;
    overflow: hidden;
    height: 1em;
    line-height: 1;
    vertical-align: top;
}
.sd-home-cheer-cnt .sd-cheer-cnt__track {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    will-change: transform;
    animation: sdCheerCountRoll 0.4s cubic-bezier(0.2, 0.85, 0.25, 1) both;
}
.sd-home-cheer-cnt .sd-cheer-cnt__num {
    display: block;
    height: 1em;
    line-height: 1;
    white-space: nowrap;
}
@keyframes sdCheerCountRoll {
    0% {
        transform: translateY(0);
        opacity: 0.98;
    }
    100% {
        transform: translateY(-1em);
        opacity: 1;
    }
}
@media (prefers-reduced-motion: reduce) {
    .sd-home-cheer-cnt.sd-cheer-cnt--rolling .sd-cheer-cnt__track {
        animation: none;
    }
}
@media (max-width: 520px) {
    .sd-intro-card__row {
        flex-direction: column;
    }
}
/* 오른쪽: Frame 816823 — 사이드바를 위에, 채팅을 아래로 세로 배치 */
/* gap 없음: 제목 margin-bottom(12px)만으로 intro 카드와 동일한 간격 */
.sd-story-support-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: clamp(16px, 2.5vw, 32px) clamp(16px, 2.2vw, 28px) clamp(16px, 2.5vw, 30px);
    min-height: min(280px, 40vw);
    background: linear-gradient(113.22deg, rgba(240, 243, 252, 0.2) 0.6%, rgba(240, 243, 252, 0.2) 97.02%), #ffffff;
    border: 1px solid rgba(168, 168, 168, 0.5);
    border-radius: 16px;
    overflow: hidden;
}
/* 사이드바: 카드 상단 가로 전폭, 제목과 메세지 링크를 한 줄에 나란히 */
.sd-support-card__sidebar {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sd-support-card__title {
    margin: 0 0 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #242424;
}
.sd-link-icon {
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.sd-support-card__msg-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 15px;
    padding: 2px 0;
    border-bottom: 1px solid #242424;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #242424;
    text-decoration: none;
}
.sd-support-card__msg-link:hover {
    opacity: 0.8;
}
.sd-support-card__chat-outer {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    position: relative;
    height: min(180px, 26vw);
    max-height: min(180px, 26vw);
}
.sd-support-card__chat-hint {
    position: absolute;
    top: 2px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    box-sizing: border-box;
    margin: 0;
    padding: 10px 22px 14px;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    line-height: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    -webkit-tap-highlight-color: transparent;
}
.sd-support-card__chat-hint:hover .sd-support-card__chat-hint-shape {
    border-bottom-color: rgba(36, 36, 36, 0.72);
}
.sd-support-card__chat-hint:focus-visible {
    outline: 2px solid rgba(0, 51, 160, 0.55);
    outline-offset: 2px;
}
.sd-support-card__chat-hint-shape {
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 11px solid rgba(36, 36, 36, 0.48);
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.85));
}
.sd-support-card__chat-outer--hint .sd-support-card__chat-hint {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.sd-support-card__chat-outer--hint .sd-support-card__chat-hint-shape {
    animation: sdChatScrollHintBlink 1.15s ease-in-out infinite;
}
@keyframes sdChatScrollHintBlink {
    0%,
    100% {
        opacity: 0.35;
        transform: translateY(2px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .sd-support-card__chat-outer--hint .sd-support-card__chat-hint-shape {
        animation: none;
        opacity: 0.85;
    }
}
.sd-support-card__chat {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    max-height: none;
    background: #f1f5f9;
    border: 1px solid rgba(168, 168, 168, 0.2);
    border-radius: 8px;
    padding: 26px 20px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sd-support-card__chat::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
.sd-chat-bubble {
    box-sizing: border-box;
    max-width: 80%;
    width: fit-content;
    padding: 16px 22px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: #242424;
    box-shadow: none;
}
.sd-chat-bubble--left {
    align-self: flex-start;
    border-radius: 0 20px 20px 20px;
}
.sd-chat-bubble--right {
    align-self: flex-end;
    border-radius: 20px 0 20px 20px;
}
.sd-chat-bubble--bd-white {
    background: #ffffff;
    border: 1px solid rgba(168, 168, 168, 0.2);
}
.sd-chat-bubble--bd-sky {
    background: #cae3fe;
    border: none;
}
.sd-chat-bubble__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* 세로 스택 정리: 채팅 영역만 전폭, 제목·링크는 상단 한 줄에 나란히 */
.sd-support-card__chat-outer {
    width: 100%;
}
/* 동영상 — Rectangle 2022 (가로 100% 유지, 세로만 상한 — aspect-ratio+max-height는 가로까지 줄일 수 있음) */
.sd-story-video-block {
    margin-top: clamp(14px, 2.2vw, 20px);
    container-type: inline-size;
    width: 100%;
}
.sd-video-stage {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid rgba(168, 168, 168, 0.5);
    aspect-ratio: 16 / 9;
    max-height: 420px;
}
/* cqw 지원: 높이만 min(16:9, 상한)으로 잡아 가로 100% 유지 (aspect-ratio+max-height 조합의 폭 축소 방지) */
@supports (width: 1cqw) {
    .sd-video-stage {
        aspect-ratio: unset;
        height: min(420px, calc(100cqw * 9 / 16));
    }
}
.sd-video-stage .sd-video-iframe,
.sd-video-stage .sd-video-fallback-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.sd-video-stage .sd-video-fallback-img {
    object-fit: cover;
}
.sd-video-external-link {
    position: absolute;
    left: 50%;
    bottom: clamp(12px, 3vw, 24px);
    transform: translateX(-50%);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: rgba(15, 23, 42, 0.85);
    text-decoration: none;
    z-index: 1;
}
.sd-video-external-link:hover {
    color: #fff;
    background: rgba(15, 23, 42, 0.95);
}
/* pagination — 이전·도트·다음 한 덩어리를 가운데 정렬 (버튼은 도트보다 위 레이어로 클릭 유지) */
/* 다음 형제(sd-stats-section)가 풀블리드·relative라 겹쳐 클릭을 가로채는 경우 방지 */
.sd-stories-nav-footer {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px clamp(24px, 5vw, 60px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: clamp(36px, 6vw, 56px);
    pointer-events: auto;
    isolation: isolate;
}
.sd-nav-story--prev,
.sd-nav-story--next {
    position: relative;
    z-index: 30;
}
.sd-nav-dots {
    position: relative;
    z-index: 0;
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(320px, 70vw);
}
.sd-nav-story {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #242424;
    cursor: pointer;
    transition: opacity 0.15s;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.sd-nav-story:hover {
    opacity: 0.75;
}
.sd-nav-story__icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(168, 168, 168, 0.5);
    font-size: 14px;
    color: #242424;
}
.sd-nav-dots {
    min-width: 96px;
    display: flex;
    justify-content: center;
}
.sd-nav-dots .slick-dots {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.sd-nav-dots .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}
.sd-nav-dots .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 999px;
    border: none;
    background: rgba(168, 168, 168, 0.5);
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
    transition: width 0.2s, background 0.2s;
}
.sd-nav-dots .slick-dots li.slick-active button {
    width: 16px;
    height: 8px;
    border-radius: 999px;
    background: #0033a0;
}
/* 모바일(슬릭 breakpoint 768 미만): 캐러셀 아래 도트(....) 비표시 — JS에서도 dots: false */
@media (max-width: 768px) {
    .start-drive-section .sd-nav-dots,
    .start-drive-section .sd-nav-dots .slick-dots,
    .start-drive-section .sd-stories-nav-footer .slick-dots {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }
    .start-drive-section .sd-stories-nav-footer {
        justify-content: space-between;
        gap: 12px;
        padding-left: max(28px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
        box-sizing: border-box;
    }
}
/*
 * centerMode + variableWidth: JS로 sd-ring-1(바로 옆), sd-ring-2(한 칸 더 바깥) 부여.
 * 레퍼런스처럼 가운데 최대 → 옆 → 더 바깥으로 갈수록 작고 흐림.
 * (캐스케이드: 기본 ‘바깥’ → ring-2 → ring-1 → 가운데)
 */
/* 무한 루프 시 Slick이 클론+원본에 동시에 .slick-center를 줄 수 있음 → JS로 .sd-visual-center만 신뢰 */
.start-drive-section .sd-stories-slider.sd-stories-slider--varw.sd-slick--center .slick-slide:not(.sd-visual-center) .sd-story-slide {
    transform-origin: center center;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.58;
    transform: scale(0.72);
    filter: brightness(0.9) saturate(0.85);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
    pointer-events: none;
    cursor: default;
}
.start-drive-section .sd-stories-slider.sd-stories-slider--varw.sd-slick--center .slick-slide.sd-ring-2 .sd-story-slide {
    opacity: 0.66;
    transform: scale(0.78);
    filter: brightness(0.93) saturate(0.88);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}
.start-drive-section .sd-stories-slider.sd-stories-slider--varw.sd-slick--center .slick-slide.sd-ring-1 .sd-story-slide {
    opacity: 0.9;
    transform: scale(0.9);
    filter: brightness(0.94) saturate(0.92);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}
.start-drive-section .sd-stories-slider.sd-stories-slider--varw.sd-slick--center .slick-slide.sd-visual-center .sd-story-slide {
    opacity: 1;
    transform: scale(1.03);
    filter: none;
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
    cursor: auto;
}
/* variableWidth 없는 경우(예: 예전 마크업) 대비 */
.start-drive-section .sd-stories-slider.sd-slick--center:not(.sd-stories-slider--varw) .slick-slide.sd-is-adjacent .sd-story-slide {
    opacity: 0.52;
    transform: scale(0.76);
    transform-origin: center center;
    filter: saturate(0.82) brightness(0.92);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
}
.start-drive-section .sd-stories-slider.sd-slick--center:not(.sd-stories-slider--varw) .slick-slide:not(.slick-center) .sd-story-slide {
    pointer-events: none;
    cursor: default;
}
.start-drive-section .sd-stories-slider.sd-slick--center:not(.sd-stories-slider--varw) .slick-center .sd-story-slide {
    transform: scale(1);
    opacity: 1;
    filter: none;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.18);
    pointer-events: auto;
    cursor: auto;
}

/* 슬라이드 넘길 때 살짝 tilt (--varw 멀티 캐러셀은 흔들림 방지로 미사용) */
.start-drive-section .sd-stories-slider:not(.sd-stories-slider--varw) .slick-center .sd-story-slide.sd-slide-tilt {
    animation: sd-card-tilt-center 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.start-drive-section .sd-stories-slider:not(.sd-slick--center) .slick-current .sd-story-slide.sd-slide-tilt,
.start-drive-section .sd-stories-slider .slick-current:not(.slick-center) .sd-story-slide.sd-slide-tilt {
    animation: sd-card-tilt-flat 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes sd-card-tilt-center {
    0% { transform: scale(1.03) rotate(-5deg); }
    55% { transform: scale(1.06) rotate(4deg); }
    100% { transform: scale(1.03) rotate(0deg); }
}
@keyframes sd-card-tilt-flat {
    0% { transform: rotate(-4deg); }
    55% { transform: rotate(3deg); }
    100% { transform: rotate(0deg); }
}

/* 사연 상세 링크: Figma 텍스트 버튼 + 하단 보더 유지 */
.sd-intro-card__cheer-link.sd-home-story-link {
    font-family: 'Pretendard', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #242424 !important;
    background: none !important;
    border: none !important;
    border-bottom: 1px solid #242424 !important;
    border-radius: 0 !important;
    padding: 2px 0 !important;
    text-decoration: none !important;
}
.sd-intro-card__cheer-link.sd-home-story-link:hover:not(.is-done) {
    opacity: 0.85;
}
.sd-intro-card__cheer-link.sd-home-story-link.is-done {
    border-bottom-color: transparent !important;
    opacity: 0.65;
    cursor: pointer;
}

/* 통계 — 참고 레이아웃: 상단 파스텔 블루｜흰 도로 띠+차｜하단 회색 (플랫, 그림자 없음) */
.sd-road-stats {
    margin-top: 36px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    background: #e5e7eb;
}

.sd-road-top {
    background-color: #9ec1e2;
    padding: 22px 16px 26px;
}

.sd-road-top__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 8px;
    max-width: 720px;
    margin: 0 auto;
}

.stat-unit {
    flex: 1 1 160px;
    min-width: 0;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.stat-unit .label {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.02em;
}
.stat-unit .val {
    margin: 0;
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.stat-unit .hint {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    max-width: 19rem;
}

.sd-road-flow {
    flex: 0 0 auto;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    color: #dbeafe;
    padding: 0 4px;
    user-select: none;
}

/* 흰색 도로 띠 + 그 위 차 */
.sd-road-band {
    position: relative;
    min-height: 26px;
    background: #fff;
    margin: 0;
}
.sd-road-band__cars {
    position: absolute;
    left: 8px;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}
.sd-road-car-svg {
    flex-shrink: 0;
    display: block;
    height: 20px;
    width: auto;
    color: #4b5563;
}

.sd-road-bottom {
    padding: 16px 14px 18px;
    background-color: #e8ecf0;
    border-radius: 0 0 15px 15px;
}
.sd-marquee {
    width: 100%;
    overflow: hidden;
    padding: 0 16px;
    /* 양끝 하드 클립 완화 — 잘린 카드가 덜 거슬리게 */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.sd-marquee-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    /* 두 세트(.sd-marquee-group)가 동일 너비 → -50%로 무한 루프 */
    animation: sd-marquee-loop var(--sd-marquee-duration, 26s) linear infinite;
}
/* 두 그룹 너비를 동일하게 맞추고, 그룹 끝 padding으로 세트 간 간격 → translateX(-50%)만으로 이음새 없음 */
.sd-marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
    padding-right: 12px;
    box-sizing: content-box;
}
/* 티커 본문 14px (모바일·데스크톱 동일) */
.sd-marquee-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 8px;
    background: #f1f5f9;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.8);
}
.sd-marquee:hover .sd-marquee-track {
    animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
    .sd-marquee .sd-marquee-track {
        animation: none !important;
    }
}
@keyframes sd-marquee-loop {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* Frame 816821 — btn 150×48, gap 16px */
.sd-actions {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    gap: 16px;
}
.btn-sub {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    gap: 4px;
    min-width: 150px;
    height: 48px;
    border-radius: 4px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-sub-apply {
    color: #ffffff;
    border: none;
    background: radial-gradient(20.5% 82% at 51.5% 0%, rgba(9, 113, 206, 0.5) 0%, rgba(9, 113, 206, 0) 100%), #0033a0;
}
.btn-sub-apply:hover {
    color: #fff;
    background: radial-gradient(20.5% 82% at 51.5% 0%, rgba(9, 113, 206, 0.65) 0%, rgba(9, 113, 206, 0) 100%), #002880;
}
.btn-sub-campaign {
    color: #242424;
    background: #ffffff;
    border: 1px solid #a8a8a8;
}
.btn-sub-campaign:hover {
    color: #242424;
    background: #fafafa;
    border-color: #8f8f8f;
}

@media (max-width: 767px) {
    .start-drive-section .sd-actions .btn-sub-apply,
    .start-drive-section .sd-actions .btn-sub-campaign {
        font-size: 14px;
    }
    /* 모바일: 인트로 CTA 버튼 폭 Figma 129px (사연 신청 / 캠페인) */
    .start-drive-section .sd-actions .btn-sub-apply,
    .start-drive-section .sd-actions .btn-sub-campaign {
        min-width: 129px;
        width: 129px;
        max-width: 129px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 560px) {
    .sd-road-top__row { flex-direction: column; }
    .sd-road-flow {
        transform: rotate(90deg);
        padding: 4px 0;
    }
    .sd-road-car-svg { height: 17px; width: auto; }
}
