/* Download Content Section - Hyphen Design Style */
.download_content {
    width: 100%;
    padding: 100px 0;
    background: #f8f8f8;
    position: relative;
}

.download_content .common-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.download_slides {
    position: relative;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.download_box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.download_box .common-box {
    text-align: left;
}

.download_box .common-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    letter-spacing: -0.02em;
}

.download_box .common-title span {
    color: #0066cc;
    font-weight: 800;
}

.download_box .btn-group {
    margin-top: 40px;
}

.download_box .bt-base {
    display: inline-block;
    padding: 18px 40px;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-bottom: 2px solid #1a1a1a;
}

.download_box .bt-base:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download_box figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download_box figure img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Swiper Navigation */
.bt-swiper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 0;
    color: #666;
}

.bt-swiper::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.bt-swiper._prev {
    left: -26px;
}

.bt-swiper._prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.bt-swiper._next {
    right: -26px;
}

.bt-swiper._next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.bt-swiper:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    margin-top: 40px;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    background: #0066cc;
    width: 0%;
    transition: width 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .download_box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .download_box .common-title {
        font-size: 36px;
    }

    .bt-swiper._prev {
        left: 10px;
    }

    .bt-swiper._next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .download_content {
        padding: 60px 0;
    }

    .download_content .common-inner {
        padding: 0 24px;
    }

    .download_box {
        padding: 30px 24px;
    }

    .download_box .common-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .download_box .bt-base {
        padding: 14px 28px;
        font-size: 14px;
    }

    .bt-swiper {
        width: 40px;
        height: 40px;
    }

    .bt-swiper._prev {
        left: 5px;
    }

    .bt-swiper._next {
        right: 5px;
    }
}

/* Utility */
.img_resize {
    max-width: 100%;
    height: auto;
}