.title_div {
    display: none !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;
    }
}

/* =========================================================
   as_team.php 에서 분리한 페이지/고객센터 공통 스타일
   ========================================================= */
.sub-tab-top.top_a {
        background: #37758a;
    }
    .sub-tab-top {
        width: 100%;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 50px;
        margin: 50px 0;
        margin-bottom: 25px;
    }
    .sub-tab-top h1 {
        font-size: 24px;
        font-weight: bold;
        color: #fff;
        margin-bottom: 5px;
    }
    .sub-tab-top p {
        font-size: 18px;
        color: #fff;
        font-weight: 400;
        margin-bottom: 10px;
    }
    .sub-tab-top span {
        font-size: 11px;
        color: #fff;
        font-weight: 400;
    }
    .sub-tab-icon img {
        width: 142px;
        height: 150px;
    }
    .sub-tab-txt a {
        color: #fff;
    }


/* 고객센터 공통 스타일은 theme/basic/css/customer_service_tabs.css 에서 관리합니다. */

.inner {
    top: 10vh;
}

/* =========================================================
   찾아가는 A/S팀 상단 카드 - 모바일 전용 보정
   PC 디자인은 유지하고, 모바일에서 텍스트/아이콘 비율만 압축합니다.
   ========================================================= */
@media (max-width: 768px) {
    .sub-tab-top {
        width: calc(100% - 24px);
        min-height: 164px;
        margin: 24px 12px 22px;
        padding: 18px 18px;
        box-sizing: border-box;
        border-radius: 8px;
        align-items: center;
        gap: 12px;
        overflow: hidden;
    }

    .sub-tab-top.top_a {
        background: #37758a;
    }

    .sub-tab-txt {
        position: relative;
        z-index: 2;
        flex: 1 1 auto;
        min-width: 0;
    }

    .sub-tab-top h1 {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 1.2;
        letter-spacing: -0.03em;
        white-space: nowrap;
    }

    .sub-tab-top p {
        margin: 0 0 10px;
        max-width: 205px;
        font-size: 13px;
        line-height: 1.4;
        letter-spacing: -0.025em;
        word-break: keep-all;
    }

    .sub-tab-txt > span {
        display: block;
        max-width: 210px;
        font-size: 8.5px;
        line-height: 1.65;
        letter-spacing: -0.025em;
        word-break: keep-all;
    }

    .sub-tab-txt > span a,
    .sub-tab-txt > span a span {
        display: inline;
        font-size: inherit;
        line-height: inherit;
    }

    .sub-tab-icon {
        display: flex;
        flex: 0 0 96px;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }

    .sub-tab-icon img {
        width: 96px;
        height: auto;
        max-height: 118px;
        object-fit: contain;
        opacity: .55;
    }
}
