/* index-inline.css — 메인 페이지(_INDEX_) 전용 인라인 스타일 추출본
   원본: theme/webdot/index.php 본문 <style> 2블록 (process-card / hero-slider)
   2026-06-02 W3C 구조 정리(P2): <body> style → <head> add_stylesheet 이동
   - arrow-brown.svg: PHP echo → CSS 상대경로(../img/)로 변환
   - letter-spacing: 2% → 0.02em (유효 단위로 수정) */

/* ===== process-card-with-arrow ===== */
                .process-card-with-arrow {
                    position: relative;
                }

                .process-card-with-arrow::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: -2rem;
                    transform: translateY(-50%);
                    width: 40px;
                    height: 40px;
                    background-image: url('../img/arrow-brown.svg');
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }

                @media (max-width: 768px) {
                    .process-card-with-arrow::before {
                        top: auto;
                        left: 50%;
                        bottom: auto;
                        top: -2rem;
                        transform: translateX(-50%) rotate(90deg);
                    }
                }

/* ===== Hero Slider ===== */
    /* Hero Slider Styles */
    .hero-slider-section {
        width: 100%;
        height: 70vh;
        max-height: 850px;
        min-height: 600px;
        position: relative;
    }

    .heroSwiper {
        width: 100%;
        height: 100%;
    }

    .hero-slide {
        width: 100%;
        height: 70vh;
        max-height: 850px;
        min-height: 600px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        display: flex;
        align-items: center;
    }

    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: white;
    }

    .hero-subtitle {
        font-size: 25px;
        font-weight: 500;
        letter-spacing: 0.02em;
        margin-bottom: 24px;
        letter-spacing: 0.5px;
        /* opacity: 0.9; */
    }

    .hero-title {
        font-size: 50px;
        font-weight: 700;
        line-height: 140%;
        margin: 0;
        letter-spacing: -1.5px;
    }

    /* Hero Controls Box */
    .hero-controls-box {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        width: 100%;
    }

    .hero-controls-desktop {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .hero-controls-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Mobile Dots Navigation */
    .hero-dots-nav {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .hero-dot {
        width: 40px;
        height: 6px;
        background: rgba(255, 255, 255, 0.3);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s ease;
        border-radius: 0;
    }

    .hero-dot.active {
        background: white;
    }

    /* Progress Bar */
    .hero-progress-bar {
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.3);
        overflow: hidden;
        position: relative;
    }

    .hero-progress-fill {
        height: 100%;
        background: white;
        width: 0%;
        transition: none;
        /* border-radius: 3px; */
    }

    .hero-progress-fill.active {
        animation: progressBar 5000ms linear forwards;
    }

    @keyframes progressBar {
        from {
            width: 0%;
        }

        to {
            width: 100%;
        }
    }

    /* Controls Content */
    .hero-controls-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .hero-pagination {
        display: flex;
        align-items: center;
        gap: 12px;
        color: white;
        font-size: 20px;
        font-weight: 600;
    }

    .hero-pagination .current-slide {
        font-size: 20px;
    }

    .hero-pagination .divider {
        display: block;
        width: 1px;
        height: 12px;
        background: white;
    }

    .hero-pagination .total-slides {
        opacity: 0.56;
        font-size: 20px;
    }

    .hero-nav {
        display: flex;
        gap: 12px;
    }

    .hero-prev,
    .hero-next {
        background: transparent;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        width: 24px;
    }

    .hero-prev:hover,
    .hero-next:hover {
        opacity: 0.7;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {

        .hero-controls-desktop {
            display: none;
        }

        .hero-slider-section {
            height: 70vh;
            min-height: 500px;
        }

        .hero-slide {
            height: 70vh;
            min-height: 500px;
        }

        .hero-content {
            padding-left: 20px;
            padding-right: 20px;
        }

        .hero-subtitle {
            font-size: 14px;
            margin-bottom: 12px;
        }

        .hero-title {
            font-size: 32px;
            line-height: 1.4;
        }

        .hero-controls-box {
            bottom: 20px;
            gap: 12px;
        }

        .hero-progress-bar {
            width: 150px;
        }

        .hero-controls-content {
            gap: 12px;
        }

        .hero-pagination {
            font-size: 16px;
        }

        .hero-pagination .current-slide {
            font-size: 20px;
        }

        .hero-prev svg,
        .hero-next svg {
            width: 30px;
            height: 30px;
        }
    }
