/* BASIC css start */
 
.offline-container {
    margin: 0 auto;
    padding: 85px 0 0;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: left;
    color: #000000;
    font-family: 'Inter', sans-serif;
}

.store-card {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    align-items: center;
}
.store-card:last-child,.store-card:has(+ .displaynone)  {margin-bottom: 0;}
.store-image {
    position: relative;
    flex: 1.4898;
    border-radius: 15px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-info {
    flex: 1;
}

.store-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 35px 0;
}

.store-info dl {
    margin: 0;
}

.store-info dl div {
    /* display: grid; */
    /* grid-template-columns: 80px 1fr; */
    /* gap: 10px; */
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.store-info dt {
    font-weight: 500;
    color: #000000;
    font-size: 14px;
    margin-bottom: 5px;
}

.store-info dd {
    margin: 0;
    color: #828282;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.store-info dd strong {
    font-weight: 500;
    color: #000;
}

.map-btn {
    background-color: var(--maincolor);
    color: #fff;
    margin-top: 25px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    width: 81px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.store-image .swiper-pagination {
    display: flex;
    justify-content: space-between;
    /* 핵심 속성: 점들 사이의 간격을 균등하게 만듭니다. */
    width: calc(100% - 40px) !important;
    box-sizing: border-box;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto !important;
    left: 0;
    right: 0;
        bottom: 8px !important;
}

.store-image .swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    /* space-between으로 간격을 제어하므로 기존 마진은 필요 없습니다. */
    width: 100%;
    border-radius: 0;
    background: #000;
    opacity: 0.2;
    height: 5px;
}

.store-image .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--maincolor);
    opacity: 1;
}


/* 모바일 & 태블릿 스타일 - 1024px 이하 */
@media (max-width: 1024px) {
    .container {
        padding: 20px;
    }

    .offline-container {
        padding: 40px 0 0;
    }

    .section-title {}

    .store-card {
        flex-direction: column;
        /* 아이템을 수직으로 쌓음 */
        gap: 0;
        /* PC에서 설정한 gap 초기화 */
        /* background-color: #fff; */
        padding: 0;
        margin: 0;
    }

    .store-image img {}

    .store-info h3 {}

    .map-btn {

        font-size: 14px;
    }

    .store-image {
        width: 100%;
        margin-bottom: 35px;
    }

    .store-info {
        width: 100%;
        margin-bottom: 105px;
    }
.store-card:last-child .store-info,
.store-card:has(+ .displaynone) .store-info{margin-bottom: 0;}

    .store-info dt {
        margin-bottom: 5px;
    }

    .store-image .swiper-pagination {
        bottom: 20px !important;
    }

}  

/* BASIC css end */

