.title_div {
    margin-top: 50px !important;
}
/* ── tab-as ──────────────────────────────────── */
.tab-as {
    padding: 0 0 60px;
    background: #F5F5F5;
}

/* 제목 */
.at-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #01cb5c;
    margin-bottom: 30px;
}

/* 메인 이미지 */
.at-main-img {
    width: 100%;
}
.at-main-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 설명 텍스트 */
.at-desc {
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.8;
}
.at-desc p {
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}
.at-desc p:last-child {
    margin-top: 16px;
    font-size: 15px;
    color: #555;
}
.at-highlight {
    display: inline-block;
    background: #b5ff6e;
    font-weight: 700;
    font-size: 17px !important;
    color: #222 !important;
    padding: 2px 6px;
    border-radius: 3px;
}

/* ── 슬라이더 ─────────────────────────────────── */
.at-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.at-swiper {
    overflow: hidden;
    width: 70%;
}

.at-slide {
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
}
.at-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.at-slide:hover img {
    transform: scale(1.04);
}
.swiper-button-prev {
    left: 70px;
}
.swiper-button-next {
    right: 70px;
}
.swiper-button-prev, .swiper-button-next {
    position: relative;
    background: #ddd;
    border-radius: 50%;
    margin-top: 0;
}

/* ── 모달 ─────────────────────────────────────── */
.at-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
}
.at-modal.active {
    display: flex;
}

.at-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.at-modal-body {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.at-modal-body img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.at-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.at-modal-close:hover {
    color: #ccc;
}

.at-modal-caption {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

/* ── tab-as-bottom (CTA 버튼) ─────────────────── */
.tab-as-bottom {
    text-align: center;
    padding-top: 60px;
}
.at-cta-btn {
    display: inline-block;
    cursor: pointer;
}
.at-cta-btn img {
    height: 80px;
    width: auto;
    display: block;
}

/* ── 반응형 ──────────────────────────────────── */
@media (max-width: 768px) {
    .at-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .at-desc p {
        font-size: 13px;
    }
    .at-highlight {
        font-size: 14px !important;
    }
    .at-desc p:last-child {
        font-size: 13px;
    }
    .at-slider-wrap {
        padding: 0 36px;
    }
    .at-cta-btn img {
        height: 50px;
    }
    .at-swiper {
        width: 100%;
    }
    .swiper-button-prev {
        left: -20px;
    }
    .swiper-button-next {
        right: -20px;
    }
    .swiper-button-prev svg, .swiper-button-next svg {
        width: 30px;
        height: 30px;
    }
}
