.stadium_container .stadium_wrapper {padding-top:2.4rem;}
.history_tab_cont {padding-bottom:6rem;}
@media screen and (max-width:1023px) { /* Mobile, Tablet */
    .history_tab_cont {padding-bottom:3.4rem;}
}


.history_tab_cont .jq_tab {display:flex;gap:1rem;justify-content: center;margin-bottom:4.6rem;align-items: center;flex-wrap: wrap;}
.history_tab_cont .jq_tab li {}
.history_tab_cont .jq_tab li > a {display:block;width:12rem;height:4rem;background:var(--btncolor-2);border-radius:5rem;color:var(--font-white);text-align: center;font-size:1.3rem;line-height:4rem;white-space: nowrap;}
.history_tab_cont .jq_tab li > a:hover{color:var(--main-blue-1);}
.history_tab_cont .jq_tab li.selected > a {background:var(--main-blue-1);font-weight:700;}
.history_tab_cont .jq_tab li.selected > a:hover {color:var(--font-white);}
@media screen and (max-width:1023px) { /* Mobile, Tablet */
    .stadium_container .stadium_wrapper {padding-top:0;}
    .history_tab_cont .jq_tab {flex-wrap:unset;overflow:auto;justify-content: flex-start;margin-bottom:3.6rem;}
    .history_tab_cont .jq_tab::-webkit-scrollbar {display:none;}
    .history_tab_cont .jq_tab li > a {height:7rem;font-size:2.8rem;line-height:7rem;width: auto;padding: 0 4rem;}
    .history_tab_cont .jq_tab li.selected > a {font-weight:400;}
}


.history_tab_cont .tab_cont {}
.history_tab_cont .tab_cont .cont_tab {display:flex;align-items: flex-start;gap:3.4rem;}
.history_tab_cont .tab_cont .cont_tab ul {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:3rem;
    min-width:1200px; /* PC 최소 너비 (380px * 3 + gap) */
}
.history_tab_cont .tab_cont .cont_tab ul > li {}
.history_tab_cont .tab_cont .cont_tab ul > li .img_area {
    position:relative;
    margin-bottom:1rem;
    width:100%;
    padding-bottom:75%; /* 4:3 비율 (3/4 = 0.75) - 구형 브라우저 지원 */
    aspect-ratio: 4 / 3; /* 최신 브라우저 */
    overflow:hidden;
    background:#f5f5f5;
}
.history_tab_cont .tab_cont .cont_tab ul > li .img_area img {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.history_tab_cont .tab_cont .cont_tab ul > li .img_area .sub_info {position:absolute;bottom:0;left:0;width:100%;height:3.6rem;background:rgba(0,0,0,.4);text-align: right;padding:.3rem 1.2rem;display:none;}
.history_tab_cont .tab_cont .cont_tab ul > li .img_area:hover .sub_info {display:block;}
.history_tab_cont .tab_cont .cont_tab ul > li .img_area .sub_info > span {font-size:1.3rem;line-height:2.2rem;color:var(--font-white);}
.history_tab_cont .tab_cont .cont_tab ul > li p.title {font-weight:700;font-size:1.5rem;line-height:2rem;}
.history_tab_cont .tab_cont .cont_tab ul > li p.spot {font-size:1.3rem;line-height:2rem;color:var(--medium-grey);}
@media screen and (max-width:1023px) { /* Mobile, Tablet */
    .history_tab_cont .tab_cont {padding-left: 0;}
    .history_tab_cont .tab_cont .cont_tab {display:block;}
    .history_tab_cont .tab_cont .cont_tab h4 {font-size:3.8rem;line-height:5rem;margin-bottom:3.5rem;}
    .history_tab_cont .tab_cont .cont_tab ul {
        grid-template-columns: repeat(2, 1fr);
        gap:3rem 2rem;
        min-width:unset; /* 모바일에서는 최소 너비 제거 */
    }
    .history_tab_cont .tab_cont .cont_tab ul > li {}
    .history_tab_cont .tab_cont .cont_tab ul > li .img_area {
        margin-bottom:1.2rem;
        min-width:unset; /* 모바일에서는 최소 너비 제거 */
        padding-bottom:75%; /* 4:3 비율 유지 */
        aspect-ratio: 4 / 3;
    }
    .history_tab_cont .tab_cont .cont_tab ul > li .img_area .sub_info {height:5.2rem;padding:.5rem 1.2rem;display:none;}
    .history_tab_cont .tab_cont .cont_tab ul > li .img_area .sub_info > span {font-size:2.4rem;line-height:4rem;}
    .history_tab_cont .tab_cont .cont_tab ul > li p.title {font-size:3rem;line-height:4rem;}
    .history_tab_cont .tab_cont .cont_tab ul > li p.spot {font-size:2.8rem;line-height:4rem;}
}


/* 스테디움 상세 */
.stadium_detail_container {}
.stadium_detail_container .stadium_wrapper {}
.stadium_detail_container .img_area {background:var(--background-grey);padding:3rem 0;}
.stadium_detail_container .img_area .img_wrapper {max-width:76rem;margin:0 auto;}

/* 스테디움 상세 - stadiumSwiper */
.stadium_detail_container .img_area .swiper {width: 100%;height: 300px;margin-left: auto;margin-right: auto;}
.stadium_detail_container .img_area .stadiumSwiper {height: 20%;box-sizing: border-box;padding: 1rem 0 1.5rem;}
.stadium_detail_container .img_area .stadiumSwiper .swiper-slide {width: auto;height: 100%;position:relative;background:#929497;flex-shrink: 0;min-height: 1px;aspect-ratio: 184 / 138;display:flex;align-items:center;justify-content:center;}
.stadium_detail_container .img_area .stadiumSwiper .swiper-slide img {width:100%;height:100%;object-fit:contain;display:block;}
.stadium_detail_container .img_area .stadiumSwiper .swiper-slide::after {background:rgba(0,0,0,.4);display:block;content:'';position:absolute;top:0;left:0;width:100%;height:100%;}
.stadium_detail_container .img_area .stadiumSwiper .swiper-slide-thumb-active::after {display:none;}
.stadium_detail_container .img_area .stadiumSwiper .swiper-slide.no-image {background:#929497;aspect-ratio: 184 / 138;}
.stadium_detail_container .img_area .stadiumSwiper .swiper-slide.no-image::after {display:none;}
.stadium_detail_container .img_area .stadiumSwiper .swiper-scrollbar {opacity:1 !important;background:rgba(224, 230, 237, 1);height:.6rem;width:100%;left:0;bottom:0;}
.stadium_detail_container .img_area .stadiumSwiper .swiper-scrollbar-drag {background:rgba(196, 207, 221, 1);}

.stadium_detail_container .img_area .stadiumSwiper2 {height: 80%;width: 100%;}
.stadium_detail_container .img_area .stadiumSwiper2 .swiper-slide {position:relative;background:#929497;min-height: 1px;aspect-ratio: 184 / 138;display:flex;align-items:center;justify-content:center;}
.stadium_detail_container .img_area .stadiumSwiper2 .swiper-slide img {width:100%;height:100%;object-fit:contain;display:block;}
.stadium_detail_container .img_area .stadiumSwiper2 .swiper-slide.no-image {background:#929497;aspect-ratio: 184 / 138;}
.stadium_detail_container .img_area .stadiumSwiper2.swiper-horizontal .swiper-navigation .swiper-button-next {right:1rem !important;}
.stadium_detail_container .img_area .stadiumSwiper2.swiper-horizontal .swiper-navigation .swiper-button-prev {left:1rem !important;}
.stadium_detail_container .img_area .stadiumSwiper2 .swiper-pagination {display:none;}
@media screen and (max-width:1023px) { /* Mobile, Tablet */
    .stadium_detail_container .img_area {padding:var(--side-padding);}
    .stadium_detail_container .img_area .stadiumSwiper {display:none;}

    .stadium_detail_container .img_area .stadiumSwiper2.swiper-horizontal .swiper-navigation .swiper-button-next {width:7rem;height:7rem;}
    .stadium_detail_container .img_area .stadiumSwiper2.swiper-horizontal .swiper-navigation .swiper-button-prev {width:7rem;height:7rem;}
    .swiper-navigation .swiper-button-next svg, .swiper-navigation .swiper-button-prev svg {height:2.4rem;width:auto;}

    .stadium_detail_container .img_area .stadiumSwiper2 .swiper-pagination {display:block;}
    .stadium_detail_container .img_area .stadiumSwiper2 .swiper-pagination-bullet {width:1.6rem;height:1.6rem;margin:0 .6rem;opacity:.4;}
    .stadium_detail_container .img_area .stadiumSwiper2 .swiper-pagination-bullet-active {background:#111;opacity:1;width:5rem;border-radius:1rem;}
}


/* 스테디움 상세 - 인포 영역 */
.stadium_detail_container .info_area {max-width:76rem;margin:0 auto;padding:3rem 0;}
.stadium_detail_container .info_area p {font-size:1.5rem;line-height:2.2rem;}
.stadium_detail_container .info_area > div {display:flex;margin-bottom:1.2rem;align-items: center;}
.stadium_detail_container .info_area > div .title {font-weight:700;width:12.7rem;}
.stadium_detail_container .info_area > div .content {display:flex;align-items: center;gap:2.2rem;}
.stadium_detail_container .info_area > div .content > div {border-right:.1rem solid #ddd;min-width:8rem;}
.stadium_detail_container .info_area > div .content > div:last-child {border:0;}
.stadium_detail_container .info_area > div .content > div p {color:#444;}
.stadium_detail_container .info_area > div .content .sub_title {font-weight:700;color:var(--font-black);}
@media screen and (max-width:1023px) { /* Mobile, Tablet */
    .stadium_detail_container .info_area {padding:4rem var(--side-padding);}
    .stadium_detail_container .info_area p {font-size:3rem;line-height:4rem;}
    .stadium_detail_container .info_area > div {margin-bottom:3rem;}
    .stadium_detail_container .info_area > div .title {min-width:13.5rem;}
    .stadium_detail_container .info_area > div .content {flex-wrap:wrap;gap:3rem;}
    .stadium_detail_container .info_area > div .content > div {border-width:.2rem;min-width: 14rem;}
    /* .stadium_detail_container .info_area > div .content > div:nth-child(3) {border:0;} */
    .stadium_detail_container .info_area > div .content .sub_title {font-weight:500;margin-bottom:.6rem;}
}

/* 주소 복사 버튼 */
.stadium_detail_container .info_area .copy_area {position:relative;}
.btn_copy {background:#ECF3FF;border-radius:3rem;font-size:1.2rem;width:6.6rem;line-height:2.6rem;text-align: center;color:#444;margin-left:1rem;transition: all 0.2s;cursor:pointer;}
#tostMessage {opacity: 0;position: absolute;top:0;right:-14.4rem;padding: 0 1rem;background:var(--white);border-radius: 3rem;color: #444;box-shadow: 0px 0px 4px 0px #0601FF33;transition: all 0.5s;font-size:1.2rem;line-height:2.6rem;width:13.4rem;text-align: center;}
#tostMessage.active {opacity: 100%;}
@media screen and (max-width:1023px) { /* Mobile, Tablet */
    .stadium_detail_container .info_area > div.address {position:relative;}
    .stadium_detail_container .info_area .copy_area {position:unset;}
    .btn_copy {font-size:2.5rem;width: auto;line-height: 5.2rem;height: 5.2rem;padding: 0 2.6rem;}
    #tostMessage {top:50%;left:50%;right:unset;transform:translate(-50%, -50%);height:6rem;font-size:2.8rem;width:32.8rem;line-height:6rem;}
    #tostMessage.active {top:50%;left:50%;transform:translate(-50%, -50%);}
}

/* 구장 정보 테이블 스타일 */
.stadium_detail_container .info_area > div .groundinfo-content {
    display: block;
    width: 100%;
    flex: none;
    align-items: unset;
    gap: 0;
}
.stadium_detail_container .info_area > div .groundinfo-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    border: 2px solid #000;
}
.stadium_detail_container .info_area > div .groundinfo-content table td,
.stadium_detail_container .info_area > div .groundinfo-content table th {
    border: 1px solid #000;
    padding: 0.5rem;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    vertical-align: middle;
}
.stadium_detail_container .info_area > div .groundinfo-content table td p,
.stadium_detail_container .info_area > div .groundinfo-content table th p {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}
.stadium_detail_container .info_area > div .groundinfo-content table td p strong,
.stadium_detail_container .info_area > div .groundinfo-content table th p strong {
    font-weight: 700;
}
.stadium_detail_container .info_area > div .groundinfo-content table tbody tr {
    background: transparent;
}
@media screen and (max-width:1023px) { /* Mobile, Tablet */
    .stadium_detail_container .info_area > div .groundinfo-content {
        margin-top: 2rem;
    }
    .stadium_detail_container .info_area > div .groundinfo-content table {
        margin-top: 2rem;
    }
    .stadium_detail_container .info_area > div .groundinfo-content table td,
    .stadium_detail_container .info_area > div .groundinfo-content table th {
        padding: 1rem;
        font-size: 2.8rem;
        line-height: 1.5;
    }
}