/* main start */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

main#main-content {
    width: 100%;
    max-width: 100vw;
    min-width: 360px;
    overflow: hidden;
    position: relative;
}

/* main end */

/* Snap Sections */
.snap-start {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    width: 100%;
    max-width: 100vw;
}

/* Section start */

/* Main Banner Section  start*/
.banner-section {
    position: relative;
    width: 100%;
    min-width: 360px;
    height: 100dvh;
    background-color: #1a1d2e;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-bg-1 {
    z-index: 1;
    opacity: 1;
}

.banner-bg-2 {
    z-index: 0;
    opacity: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
    z-index: 2;
}

.banner-swiper-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
}

.bannerSwiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bannerSwiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bannerSwiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-navigation-wrapper {
    position: absolute;
    padding: 0 16px;
    /* bottom: 40px; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 6px;
}

.banner-navigation-wrapper .swiper-navigation-icon {
    display: none;
}

.banner-pagination {
    position: relative !important;
    display: flex;
    align-items: center;
}

.banner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
}

.banner-pagination .swiper-pagination-bullet-active {
    background: white;
    /* width: 24px; */
    border-radius: 4px;
}

.banner-button-prev,
.banner-button-next {
    width: 48px;
    height: 48px;
    background-size: 24px 24px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.banner-button-prev {
    background-image: url("/resources/main-new/icons/icon-arrow-left-white.png");
}

.banner-button-next {
    background-image: url("/resources/main-new/icons/icon-arrow-right-white.png");
}

.banner-button-prev:hover,
.banner-button-next:hover {
    opacity: 0.7;
}

.banner-button-prev.swiper-button-disabled,
.banner-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.banner-content-wrapper {
    position: relative;
    /* max-width: var(--max-width); */
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 160px 24px 260px;
    z-index: 5;
}

.banner-content {
    color: white;
}

.banner-category {
    display: inline-block;
    background-color: white;
    color: #222222;
    padding: 4px 8px;
    margin-left: 6px;
    margin-bottom: 16px;
}

.banner-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.5;
    max-width: 630px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
}

.banner-list {
    /* width: 240px;
      max-width: 100%; */
    width: auto;
    max-width: 240px;
    padding-top: 60px;
    display: flex;
    gap: 10px;
}

.banner-list ul {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-list-item {
    padding: 10px 0;
    border-bottom: 2px solid white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.banner-list-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.banner-list-item a:hover {
    opacity: 0.7;
}

.banner-list-item:first-child {
    border-top: 2px solid white;
}

/* .banner-list-item:first-child a {
      font-size: 24px;
      font-weight: 800;
  } */

.banner-list-item a {
    transition: opacity 0.3s ease;
}

.banner-list-item a span {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: font-size 1s cubic-bezier(0.4, 0, 0.2, 1),
        font-weight 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-list-item a img {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.banner-list-item.active a {
    opacity: 1;
}

.banner-list-item.active a span {
    font-size: 24px;
    font-weight: 800;
}

.banner-list-item.active a img {
    opacity: 1;
    transform: translateX(0);
}

.banner-list-item:not(.active) a {
    opacity: 0.7;
}

.banner-list-item:not(.active) a span {
    font-size: 16px;
    font-weight: 600;
}

.banner-list-item:not(.active) a img {
    opacity: 0;
    transform: translateX(-10px);
}

.banner-list-item:not(.active):hover a {
    opacity: 1;
}

.banner-list-item span {
    color: #e5e5e5;
    font-size: 16px;
    font-weight: 600;
}

.banner-vr {
    position: absolute;
    bottom: 48px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    max-width: 50%;
    z-index: 5;
}

.banner-vr-content {
    padding: 20px 48px 20px 48px;
    background: linear-gradient(to left, #111111, rgba(17, 17, 17, 0));
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

/* Main Banner Section  end*/

/* Program Section start */
.section-program {
    position: relative;
    width: 100%;
    min-width: 360px;
    background: white;
    min-height: 100dvh;
    overflow: hidden;
}

.program-bg-parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: translateY(-60%);
}

.program-bg-parallax img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.section-title {
    text-align: center;
    padding: 0 0 80px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 120px 20px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    overflow: hidden;
}

.program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.program-card>a {
    cursor: pointer;
}

.program-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.program-card-link:hover {
    text-decoration: none;
}

.program-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 283/448;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.3);
    border: 0.4px solid transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.program-card-link:hover .program-card-image,
.program-card-image:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.program-card-image--square {
    aspect-ratio: 375/320;
}

.program-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-blue-main);
    color: white;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 800;
    z-index: 5;
}

.program-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.program-card-category {
    color: var(--color-blue-main);
    font-size: 16px;
    font-weight: 700;
}

.program-card-share {
    width: 24px;
    height: 24px;
    background-image: url("/resources/main-new/icons/icon-share.png");
    background-size: contain;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 10;
}

.program-card-divider {
    height: 1px;
    background: var(--color-gray-800);
    margin: 8px 0;
}

.program-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gray-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.program-card-date {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gray-400);
}

.program-more-btn-wrapper {
    display: flex;
    width: 100%;
    max-width: 1600px;
    justify-content: flex-end;
    padding: 20px 2px 0 2px;
}

.program-more-btn {
    /* font-size: 14px; */
    color: var(--color-gray-400);
    border: none;
    border-bottom: 1px solid var(--color-gray-400);
    background: transparent;
    padding-bottom: 4px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 5;
}

.program-more-btn:hover {
    color: var(--color-gray-600);
    border-bottom: 1px solid var(--color-gray-600);
}

/* SNS Share Popup */
.sns_share_pop {
    position: absolute;
    z-index: 9999;
    background: white;
    border: 1px solid #e9ebef;
    border-radius: 12px;
    padding: 16px;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: none;
}

.sns_share_pop strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #262b32;
    margin-bottom: 16px;
}

.sns_share_pop .close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    text-indent: -9999px;
    background: url("/resources/img/main/btn_progm_layer_close.png") no-repeat;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.sns_share_pop .close:hover {
    opacity: 1;
}

.sns_share_pop .sns_btns {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.sns_share_pop .sns_btns a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #e9ebef;
    border-radius: 8px;
    font-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 32px 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 56px;
}

.sns_share_pop .sns_btns a:hover {
    background-color: #f8f9fb;
    border-color: #dde0e4;
}

.sns_share_pop .sns_btns a.fb {
    background-image: url("/resources/img/common/circle_fb.png");
}

.sns_share_pop .sns_btns a.kakao {
    background-image: url("/resources/img/common/circle_kakao.png");
}

.sns_share_pop .sns_btns a.twi {
    background-image: url("/resources/img/common/circle_twitter.png");
}

.sns_share_pop .sns_btns a.blog {
    background-image: url("/resources/img/common/circle_blog.png");
}

.sns_share_pop .url_copy_wrap {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.sns_share_pop .url_copy_wrap input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e9ebef;
    border-radius: 6px;
    font-size: 13px;
    color: #6b7278;
    background: #f8f9fb;
}

.sns_share_pop .url_copy_wrap a {
    padding: 10px 16px;
    border: 1px solid #262b32;
    border-radius: 6px;
    background: #262b32;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sns_share_pop .url_copy_wrap a:hover {
    background: #1a1f25;
    border-color: #1a1f25;
}

.sns_share_pop i {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Program Section end */

/* Checkerboard Pattern start */
.bg-checkerboard {
    width: 100%;
    height: 100%;
    --cell-size: 8px;
    --color-a: var(--color-white);
    --color-b: #e5e5e5;
    background-color: var(--color-a);
    background-image: linear-gradient(45deg, var(--color-b) 25%, transparent 25%),
        linear-gradient(-45deg, var(--color-b) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--color-b) 75%),
        linear-gradient(-45deg, transparent 75%, var(--color-b) 75%);
    background-size: calc(var(--cell-size) * 2) calc(var(--cell-size) * 2);
    background-position: 0 0, 0 var(--cell-size), var(--cell-size) calc(-1 * var(--cell-size)),
        calc(-1 * var(--cell-size)) 0;
}

/* Checkerboard Pattern end */

/* Event Section start */

#eventDataSource .sub_cont_inner,
#eventDataSource.news_wrap,
#eventDataSource .nl_list_wrap .pagination_wrap,
#eventDataSource .people_search_wrap {
    display: none;
}

.section-event {
    /* min-height: 100dvh; */
    min-width: 360px;
    background-color: #eeeff1;
    max-width: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-event .container.column {
    overflow: hidden;
    max-width: 1920px;
}

.section-event .section-title {
    padding: 0 0 60px 0;
}

#event-title {
    padding: 0 0 10px 0;
}

.eventSwiper {
    /* overflow: visible; */
    overflow: hidden;
    padding: 0 0 20px 0;
    margin: 0 auto;
    width: 100%;
}

/* .eventSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
} */

.eventSwiper .swiper-slide {
    max-width: 558px;
    max-height: 348px;
    aspect-ratio: 16/10;
    flex-shrink: 0;
}

.event-slide-content {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.event-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.4) 100%),
        rgba(0, 0, 0, 0.2);
}

.event-slide-badge {
    position: absolute;
    font-family: var(--font-suit);
    top: 0;
    left: 0;
    background: var(--color-blue-main);
    color: white;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 800;
    z-index: 5;
}

.event-slide-text {
    /* position: absolute;
      bottom: 46px;
      left: 50px;
      color: white;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; */
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5%;
    box-sizing: border-box;
    color: white;
}

.event-slide-title {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-slide-date {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.event-pagination-wrapper {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding: 0 24px;
    box-sizing: border-box;
}

.swiper-pagination-segments {
    flex: 1;
    display: flex;
    gap: 0;
}

.pagination-segment {
    flex: 1;
    height: 4px;
    background: var(--color-gray-150);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.pagination-segment.active {
    background: var(--color-gray-400);
}

.event-controls {
    display: flex;
    gap: 6px;
    margin-left: 24px;
}

.event-controls button {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.event-controls button:hover {
    opacity: 0.7;
}

.event-controls button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.event-controls img {
    width: 100%;
    height: 100%;
}

/* Event Section end */

/* Food Section start */
.section-food {
    height: 100%;
    min-width: 360px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.section-food {
    width: 100%;
    max-width: 100%;
}

.section-food>div {
    width: 100%;
}

.food-layout {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 0 2px;
    display: flex;
    gap: 120px;
    /* display: grid; */
    /* grid-template-columns: 0.8fr auto; */
}

.food-layout.container {
    max-width: 1600px;
}

.food-content {
    width: 100%;
    /* padding: 120px 24px; */
    /* 기본 패딩: 1400px 이상 */
    /* min-height: 717px;
      min-width: 800px; */
}

.food-header {
    margin-bottom: 32px;
}

.food-tabs {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 16px;
    margin-bottom: 32px;
}

.food-tabs div {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.food-tab {
    padding: 0 2px 6px;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.food-tab:hover {
    color: var(--color-gray-800);
    border-bottom: 4px solid var(--color-blue-main);
}

.food-tab.active {
    color: var(--color-gray-800);
    border-bottom: 4px solid var(--color-blue-main);
}

.food-more {
    color: var(--color-gray-400);
    border: none;
    background: none;
    border-bottom: 1px solid var(--color-gray-400);
    padding-bottom: 4px;
    cursor: pointer;
}

.food-more:hover {
    color: var(--color-gray-600);
    border-bottom: 1px solid var(--color-gray-600);
}

.food-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    min-height: 380px;
}

.foodSwiper {
    /* 
      overflow: visible;
      padding: 0 0 20px 0;
      width: 100%;
      max-height: 320px; */
    display: none;
    overflow: visible;
    padding: 0 0 20px 0;
    width: 100%;
}

.foodSwiper .swiper-wrapper {
    align-items: stretch;
}

.foodSwiper .swiper-slide {
    width: 626px;
    height: 400px;
    flex-shrink: 0;
    overflow: hidden;
}

.food-pagination-wrapper {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding: 0 24px;
    box-sizing: border-box;
}

.food-item {
    position: relative;
    /* aspect-ratio: 3/2; */
    aspect-ratio: 303/201;
    overflow: hidden;
}

.food-item>a>div {
    width: 100%;
    height: 100%;
    display: flex;
}

.food-slide {
    position: relative;
    width: 626px;
    height: 400px;
}

.food-slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    /* aspect-ratio: 16/10; */
    aspect-ratio: 303/201;
    overflow: hidden;
}

.food-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.food-item:hover img {
    transform: scale(1.05);
}

.food-item-overlay {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.4) 100%),
        rgba(0, 0, 0, 0.2);
}

.food-item-text {
    position: relative;
    width: 100%;
    /* height: 100%; */
    display: flex;
    align-self: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
}

.food-item-title {
    padding: 20px 20px 0 20px;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-white);
    /* color: var(--color-gray-800); */
    /* background-color: var(--color-gray-150); */
}

.food-item-subtitle {
    padding: 0 20px 20px 20px;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-white);
    /* color: var(--color-gray-500); */
    /* background-color: var(--color-gray-150); */
}

.food-map {
    min-width: 720px;
    height: 100%;
    background: #f5f9ff;
    display: none;
    /* padding: 210px 24px 120px 24px; */
    /* padding: 210px 30px 120px 30px; */
    padding: 220px 30px 120px 30px;
    flex-direction: column;
}

.food-map .food-map-image {
    /* background: url('/resources/main-new/images/food-store-map.png') center/cover no-repeat; */
    background: url("/resources/main-new/images/food-store-map.png") 100% 100%/100% 100% no-repeat;
    min-width: 464px;
    min-height: 416px;
    width: 100%;
    flex: 1;
    max-width: 100%;
    /* aspect-ratio: 1/1; */
    flex-shrink: 0;
    /* margin: 0 0 20px 0; */
}

.food-map .food-map-image.en {
    /* background: url('/resources/main-new/images/food-store-map.png') center/cover no-repeat; */
    background: url("/resources/main-new/images/food-store-map-en.png") 100% 100%/100% 100% no-repeat;
    min-width: 464px;
    min-height: 416px;
    width: 100%;
    flex: 1;
    max-width: 100%;
    /* aspect-ratio: 1/1; */
    flex-shrink: 0;
    /* margin: 0 0 20px 0; */
}

.food-map-header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    /* padding: 100px 80px 40px; */
    gap: 4px;
    display: none;
}

.food-map-header span {
    color: var(--color-blue-main);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

/* Food Section end */

/* News Section start */
.section-news {
    min-width: 360px;
    background: var(--color-bg-gray);
    padding-bottom: 80px;
}

.news-header-container {
    display: flex;
    flex-direction: row;
    padding: 90px 24px 80px;
    gap: 16px;
}

.news-title {
    white-space: nowrap;
}

.news-more {
    color: var(--color-gray-400);
    border: none;
    background: none;
    border-bottom: 1px solid var(--color-gray-400);
    padding-top: 20px;
    cursor: pointer;
}

.news-more :hover {
    color: var(--color-gray-600);
    border-bottom: 1px solid var(--color-gray-600);
}

.section-news .news-list {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    overflow: hidden;
    max-width: 1273px;
}

.section-news .news-list>li,
.section-news .news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 2px solid var(--color-gray-200);
}

.section-news .news-list>li>a,
.section-news .news-item a {
    display: flex;
    width: 100%;
}

.section-news .news-list>li:last-child,
.section-news .news-item:last-child {
    border-bottom: 2px solid var(--color-gray-200);
}

.section-news .news-list>li>a,
.section-news.news-item-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.section-news .news-list>li>a>.noti_tag,
.section-news .news-category {
    min-width: 56px;
    color: var(--color-blue-main);
    font-family: var(--font-suit);
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.04em;
}

.section-news .news-list>li>a>.main_noti_ttl {
    flex: 1;
    color: var(--color-gray-800);
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section-news .news-list>li>a>.noti_date,
.section-news .news-date {
    color: #71717a;
    font-size: 16px;
    font-weight: 700;
}

/* Family Sites Section */
.section-family {
    position: relative;
    min-width: 360px;
    height: 0;
    z-index: 10;
}

.family-sites {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1596px;
    width: calc(100vw - 48px);
    gap: 0;
    z-index: 10;
}



.family-site-card {
    width: 100%;
    height: 150px;
    padding: 20px;
    border-right: 1px solid var(--color-gray-200);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: white;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s;
}

.family-site-card.en {
    padding: 20px 4px;
    height: 170px;
}

.family-site-card:last-of-type {
    border-right: none;
}

.family-site-card:last-child {
    border: none;
}

/* .family-site-card:first-child {
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
  }
  
  .family-site-card:last-child {
      border-right: none;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
  } */

.family-site-card:hover {
    background-color: var(--color-gray-50);
}

.family-site-card:hover .family-site-background {
    opacity: 1;
}

.family-site-card:hover .family-site-subtitle,
.family-site-card:hover .family-site-title {
    color: var(--color-white);
}

.family-site-card:hover img {
    filter: brightness(0) invert(1);
}

.family-site-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.family-site-subtitle {
    color: var(--color-gray-400);
    text-align: center;
    transition: color 0.3s ease;
}

.family-site-title {
    color: var(--color-gray-800);
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.family-site-card.en .family-site-title {
    white-space: normal;
}

.family-site-card img {
    max-width: 142px;
    height: 45px;
    object-fit: contain;
    z-index: 5;
    transition: filter 0.3s ease;
}

/* Operational Info Section */
.section-info {
    position: relative;
    min-width: 360px;
    padding: 155px 24px 100px;
    background: url("/resources/main-new/images/bg-footer.png") center/cover no-repeat #1a1a1a;
    color: white;
}

.info-content {
    position: relative;
    z-index: 1;
}

.info-details {
    margin: 24px 0;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0;
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.info-row.en {
    align-items: baseline;
}

.info-row dt {
    width: 68px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-row dt.en {
    width: 130px;
}

.info-row .info-divider {
    width: 24px;
    flex-shrink: 0;
    text-align: center;
    color: #adb6bd;
}

.info-row dd {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-row dd.en {
    flex: 1;
    white-space: wrap;
    overflow: visible;
    text-overflow: unset;
}

.info-buttons {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.info-button {
    flex: 1;
    height: 56px;
    overflow: hidden;
    padding: 0 20px;
    border: 1px solid white;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.info-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.info-button-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-width: 100px;
    gap: 12px;
}

.info-button-content .icon {
    width: 36px;
    height: 22px;
}

.info-button span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* News Section end */
/* Section end */

/* container start */
.container {
    /* max-width: var(--max-width); */
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 24px;
    /* 기본 패딩: 1400px 이상 */
}

.container.column {
    display: flex;
    flex-direction: column;
}

.container.row {
    display: flex;
    flex-direction: row;
}

.container.justify-between {
    justify-content: space-between;
}

.section-info .container {
    padding: 0 !important;
}

/* container end */

/* body media query start */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 120px 24px;
    }

    .program-more-btn-wrapper {
        padding: 20px 2px 0 2px;
    }

    .news-header-container {
        padding: 90px 0;
    }

    .section-info .container {
        padding: 0 !important;
    }

    /* .eventSwiper .swiper-wrapper {
        width: 140%;
        justify-content: center;
    } */


    .food-map {
        display: flex;
        margin-left: 60px;
    }

    .section-food {
        display: flex;
        flex-direction: row;
        margin: 0 auto;
        background: linear-gradient(to right, #fff 0%, #fff 70%, #f5f9ff 70%, #f5f9ff 100%);
    }

    .section-food>div {
        max-width: 1600px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
}

@media (min-width: 1601px) and (max-width: 1919px) {
    .container {
        padding: 120px 24px;
    }

    .food-layout.container {
        max-width: 1600px;
    }

    .banner-content-wrapper {
        padding: 160px 24px 260px;
    }

    .news-header-container {
        padding: 90px 24px 80px;
    }
}

@media (min-width: 1400px) and (max-width: 1600px) {
    .container {
        padding: 120px 24px;
    }

    .banner-content-wrapper {
        padding: 160px 24px 260px;
    }

    .program-more-btn-wrapper {
        padding: 20px 2px 0 2px;
    }

    .news-header-container {
        padding: 90px 24px 80px;
    }

    .section-info .container {
        padding: 0 !important;
    }
}

@media (max-width: 1399px) {
    .container {
        padding: 120px 24px;
    }

    .banner-content-wrapper {
        padding: 160px 80px 260px;
    }

    .program-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .program-more-btn-wrapper {
        padding: 20px 0 0 0;
    }

    .food-map .food-map-image {
        width: 420px;
        height: 420px;
    }

    .news-header-container {
        padding: 90px 80px 80px;
    }

    .section-news {
        padding-bottom: 90px;
    }

    .section-family {
        height: 0;
    }

    .family-sites {
        position: absolute;
        top: 0;
        transform: translate(-50%, -50%);
        grid-template-columns: repeat(3, 1fr);
        max-width: calc(100vw - 80px);
    }

    .family-site-card {
        height: 150px;
        padding: 16px;
        border-bottom: 1px solid var(--color-gray-200);
    }

    .family-site-card.en {
        padding: 16px;
    }

    .section-news .news-list>li:nth-last-child(1),
    .section-news .news-list>li:nth-last-child(2) {
        display: none;
    }

    .section-news .news-list>li:nth-last-child(3) {
        border-bottom: 2px solid var(--color-gray-200);
    }

    .section-info {
        padding-top: 180px;
    }

    .section-info .container {
        padding: 0 2px !important;
    }
}

@media (max-width: 1199px) {
    .container {
        padding: 120px 60px;
    }

    .banner-content-wrapper {
        padding: 160px 60px 260px;
    }

    .program-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .program-more-btn-wrapper {
        padding: 20px 2px 0 2px;
    }

    .section-food {
        background: white;
    }

    .food-map .food-map-image {
        width: 380px;
        height: 380px;
    }

    .news-header-container {
        padding: 90px 60px 80px;
    }
}

@media (max-width: 1023px) {
    /* override original css */

    /* Banner */
    .banner-section {
        min-height: 70vh;
        padding: 60px 20px;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-category {
        padding: 4px 8px;
        margin-left: 6px;
        margin-bottom: 16px;
    }

    .banner-title {
        font-size: 48px;
        line-height: 1.2;
        max-width: 500px;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: keep-all;
    }

    .banner-list {
        width: 100%;
        max-width: 300px;
        padding-top: 40px;
    }

    .banner-list-item {
        padding: 14px 0;
    }

    .banner-vr {
        max-width: 90%;
        bottom: 32px;
    }

    .banner-vr-content {
        padding: 16px 32px 16px 32px;
    }

    .banner-vr img {
        width: 100%;
        height: auto;
    }

    /* Section Title */
    .section-title {
        padding: 0 0 60px 0;
    }

    .section-title h2 {
        font-size: 36px !important;
    }

    .section-title p {
        font-size: 14px;
    }

    /* Program */
    .program-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .program-card-title {
        font-size: 16px;
    }

    .program-card-date {
        font-size: 14px;
    }

    /* Food */

    .food-layout {
        grid-template-columns: 1fr;
    }

    .food-header h2 {
        color: var(--color-gray-900);
    }

    .food-tabs {
        gap: 10px;
    }

    .food-tab {
        padding: 10px 18px;
        font-size: 14px;
    }

    .food-grid-desktop {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .food-map {
        display: none;
        width: 100%;
    }

    /* .food-map .food-map-image {
      width: 360px;
      height: 360px;
    } */

    .food-map-header {
        margin-bottom: 16px;
    }

    /* News */
    .news-header-container {
        flex-direction: row;
        gap: 16px;
    }

    .section-news {
        padding-bottom: 160px;
    }

    .news-header {
        min-width: 300px;
        translate: none;
        rotate: none;
        scale: none;
        transform: translate(0px, 0px);
        opacity: 1;
    }

    .new-header {
        padding: 60px 16px 200px;
    }

    .news-more {
        font-size: 14px;
    }

    .section-news .news-list>li:nth-last-child(1),
    .section-news .news-list>li:nth-last-child(2) {
        display: none;
    }

    .section-news .news-list>li:nth-last-child(3) {
        border-bottom: 2px solid var(--color-gray-200);
    }

    .section-news .news-item {
        padding: 20px 0;
    }

    .section-news .news-category {
        font-size: 12px;
    }

    .section-news .news-date {
        font-size: 13px;
    }

    /* Info */
    .section-info .container {
        padding: 0 !important;
    }

    .info-content h2 {
        font-size: 36px !important;
    }

    .info-content p {
        font-size: 15px;
    }

    .info-details {
        margin-top: 24px;
    }

    .info-row {
        font-size: 15px;
    }

    .info-row dt {
        width: 60px;
    }

    .info-row dt.en {
        width: 110px;
    }

    .info-buttons {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 24px;
    }

    .info-button {
        min-width: calc(50% - 6px);
        font-size: 14px;
        height: 54px;
    }
}

@media (max-width: 768px) {
    /* [중복] 원본 1280행, 1312행에서 2번 등장 */
}

@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        position: relative;
        overscroll-behavior-x: none;
        -webkit-overflow-scrolling: touch;
    }

    section,
    .container,
    .section-banner,
    .section-program,
    .section-food,
    .section-event,
    .section-news,
    .section-info,
    .section-family {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding: 60px 16px;
    }

    .banner-content-wrapper {
        padding: 160px 16px 0;
        width: 100%;
    }

    .program-more-btn-wrapper {
        padding: 20px 2px 0 2px;
        width: 100%;
    }

    .news-header-container {
        padding: 60px 16px;
        width: 100%;
    }

    .sns_share_pop {
        min-width: 240px;
        padding: 20px;
    }

    .sns_share_pop strong {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .sns_share_pop .sns_btns a {
        height: 48px;
        background-size: 28px 28px;
    }

    .sns_share_pop .url_copy_wrap input {
        font-size: 12px;
        padding: 8px 10px;
    }

    .sns_share_pop .url_copy_wrap a {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* Banner */
    .banner-section {
        min-height: 60vh;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }

    .banner-swiper-container {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }

    .bannerSwiper,
    .bannerSwiper .swiper-wrapper,
    .bannerSwiper .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
    }

    .banner-content-wrapper {
        display: none;
    }

    .banner-bg,
    .banner-overlay {
        display: none;
    }

    .banner-navigation-wrapper {
        position: relative;
        bottom: 50px;
        left: unset;
        transform: unset;
        /* padding: 0 16px 40px; */
        justify-content: flex-start;
        gap: 6px;
        width: 100%;
    }

    .banner-pagination {
        display: flex !important;
        width: auto !important;
        left: unset !important;
        right: unset !important;
        top: unset !important;
        bottom: unset !important;
        border: unset !important;
        height: 100%;
        align-self: center;
        width: auto !important;
    }

    .banner-button-prev,
    .banner-button-next {
        width: 24px !important;
        height: 24px !important;
        background-size: 20px 20px;
        margin: 0 !important;
        top: unset !important;
        bottom: unset !important;
        right: unset !important;
        left: unset !important;
        position: relative !important;
    }

    .banner-button-prev:after,
    .banner-button-next:after {
        content: none;
    }

    .banner-content {
        align-items: flex-start;
    }

    .banner-category {
        font-size: 12px;
        padding: 2px 6px;
        margin-bottom: 8px;
    }

    .banner-title {
        font-size: 32px;
        line-height: 1.2;
        max-width: 400px;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: keep-all;
    }

    .banner-list {
        width: 100%;
        padding-top: 32px;
    }

    .banner-list-item {
        padding: 12px 0;
    }

    .banner-list-item:first-child a {
        font-size: 20px;
    }

    .banner-list-item span {
        font-size: 14px;
    }

    .banner-vr {
        position: relative;
        max-width: 100%;
        bottom: auto;
        right: auto;
        margin-top: 32px;
    }

    .banner-vr-content {
        display: none;
        padding: 16px 24px;
        background: linear-gradient(to right, #111111, #111111);
    }

    .swiper-banner-container {
        position: absolute;
        padding: 60px 16px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .swiper-banner-category {
        display: inline-block;
        background-color: white;
        color: #222222;
        padding: 2px 6px;
        margin-bottom: 8px;
    }

    .swiper-banner-title {
        max-width: 192px;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: keep-all;
        color: var(--color-white);
    }

    .swiper-banner-date {
        margin-bottom: 30px;
        color: var(--color-white);
    }

    /* Section Title */
    .section-title {
        padding: 0 0 60px 0;
        /* padding-top: 60px; */
        /* margin-bottom: 40px; */
    }

    .section-title h2 {
        font-size: 28px !important;
    }

    .section-title p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Program */
    .section-program {
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    .program-card-image {
        aspect-ratio: 1/1;
        min-height: 280px;
    }

    .program-card-image--square {
        aspect-ratio: 375/320;
    }

    .program-card-badge {
        padding: 4px 10px;
        font-size: 11px;
    }

    .program-card-category {
        font-size: 11px;
    }

    .program-card-title {
        font-size: 14px;
        line-height: 1.4;
    }

    .program-card-date {
        font-size: 12px;
    }

    /* .program-more-btn {
        font-size: 13px;
    } */

    /* Event */
    .section-event {
        padding: 40px 0;
    }

    .event-pagination-wrapper {
        flex-direction: row;
        gap: 16px;
        padding: 0 16px;
    }

    .swiper-pagination-segments {
        width: 100%;
    }

    .event-controls {
        justify-content: center;
    }

    .event-slide-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .event-slide-category {
        font-size: 12px;
    }

    .event-slide-date {
        font-size: 12px;
        margin-bottom: 8px;
    }

    /* Food */
    .section-food {
        padding: 60px 16px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .food-layout {
        grid-template-columns: 1fr;
        /* gap: 32px; */
        gap: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 0;
    }

    .food-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .food-tabs {
        gap: 8px;
        flex-wrap: wrap;
    }

    .food-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .food-more {
        font-size: 12px;
    }

    .food-grid-desktop {
        display: none;
    }

    .foodSwiper {
        /* display: block;
          overflow: hidden;
          width: 100%;
          max-width: 100%; */
        display: block;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .foodSwiper .swiper-wrapper {
        width: 100%;
    }

    .eventSwiper {
        overflow: hidden;
        /* width: 100%; */
        /* max-width: 100%; */
    }

    .eventSwiper .swiper-wrapper {
        width: 100%;
    }

    .food-pagination-wrapper {
        display: flex;
        flex-direction: row;
        gap: 16px;
        padding: 0 16px;
    }

    .food-pagination-segments {
        flex: 1;
        display: flex;
        gap: 0;
        width: 100%;
    }

    .food-pagination-segments .pagination-segment {
        flex: 1;
        height: 4px;
        background: var(--color-gray-200);
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .food-pagination-segments .pagination-segment.active {
        background: var(--color-gray-400);
    }

    .food-controls {
        display: flex;
        gap: 6px;
        margin-left: 24px;
        justify-content: center;
    }

    .food-pause-btn {
        display: none;
    }

    .food-prev-btn,
    .food-next-btn {
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: opacity 0.3s;
        background: transparent;
        border: none;
        padding: 0;
    }

    .food-prev-btn:hover,
    .food-next-btn:hover {
        opacity: 0.7;
    }

    .food-prev-btn.swiper-button-disabled,
    .food-next-btn.swiper-button-disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }

    .food-prev-btn img,
    .food-next-btn img {
        width: 100%;
        height: 100%;
    }

    .food-slide a {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        box-sizing: content-box;
    }

    .food-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: transform 0.3s ease;
    }

    .food-slide:hover img,
    .food-slide:active img {
        transform: scale(1.03);
    }

    .food-slide .food-item-overlay {
        display: none;
        /* position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%); */
    }

    .food-slide .food-item-text {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        /* height: 100%; */
        /* color: rgba(255, 255, 255, 0.8); */
        background: rgba(0, 0, 0, 0.5);
    }

    .food-slide .food-item-title {
        /* font-size: 16px; */
        /* font-weight: 700; */
        /* margin-bottom: 4px; */
        /* color: var(--color-gray-800); */
        color: var(--color-white);
    }

    .food-slide .food-item-subtitle {
        /* font-size: 13px; */
        /* color: rgba(255, 255, 255, 0.8); */
        /* color: var(--color-gray-500); */
        color: var(--color-white);
    }

    .food-map {
        width: 100%;
    }

    .food-map-header {
        margin-bottom: 12px;
    }

    .food-map-header h3 {
        font-size: 14px;
    }

    /* News - 이미 위에서 padding 설정됨 */

    .news-header-container {
        width: 100%;
        flex-direction: column !important;
        gap: 30px;
    }

    .section-news .news-list>li:nth-last-child(1),
    .section-news .news-list>li:nth-last-child(2) {
        display: none;
    }

    .section-news .news-list>li:nth-last-child(3) {
        border-bottom: 2px solid var(--color-gray-200);
    }

    .news-more {
        display: none;
        /* font-size: 13px; */
    }

    .section-news .news-list {
        margin-top: 24px;
    }

    .section-news .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 0;
    }

    .section-news .news-category {
        font-size: 11px;
        padding: 4px 8px;
    }

    /* .news-title {
          font-size: 14px;
          line-height: 1.5;
      } */

    .section-news .news-date {
        font-size: 12px;
        margin-top: 4px;
    }

    .section-news {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section-family {
        position: relative;
        height: auto;
        background: white;
    }

    .family-sites {
        position: static;
        transform: none;
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-shadow: none;
        border-top: 1px solid var(--color-gray-200);
        border-bottom: none;
        z-index: 10;
        box-sizing: border-box;
    }

    .family-site-card {
        height: 120px;
        padding: 16px;
        border-right: 1px solid var(--color-gray-200);
        border-bottom: 1px solid var(--color-gray-200);
    }

    .family-site-card.en {
        padding: 16px;
    }

    .family-site-card:nth-child(2n) {
        border-right: none;
    }

    .family-site-card:nth-child(n + 5) {
        border-bottom: none;
    }

    /* Operational Info */
    .section-info {
        padding: 60px 16px 60px;
    }

    .family-site-card:last-child {
        margin-right: 0;
    }

    .family-site-text {
        gap: 6px;
    }

    /* .family-site-subtitle {
          font-size: 10px;
      } */

    /* .family-site-title {
          font-size: 14px;
      } */

    .family-site-card img {
        max-width: 100%;
        width: auto;
        max-height: unset;
        height: auto;
    }

    .info-content h2 {
        font-size: 28px !important;
    }

    .info-content p {
        font-size: 14px;
    }

    .info-details {
        gap: 12px;
    }

    .info-row {
        font-size: 14px;
    }

    .info-row dt {
        width: 56px;
    }

    .info-row .info-divider {
        width: 20px;
    }

    .info-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .info-button {
        width: 100%;
        min-width: 100%;
        min-height: 44px;
        font-size: 14px;
    }

    /* Swiper 반응형 */
    .eventSwiper {
        padding: 0 16px;
        overflow: visible;
    }

    /* .eventSwiper .swiper-wrapper {
        align-items: stretch;
    } */

    .eventSwiper .swiper-slide {
        width: 350px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 626/400;
    }

    .foodSwiper {
        padding: 0 16px;
        overflow: visible;
        /* max-height: 320px; */
    }

    .foodSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .foodSwiper .swiper-slide {
        width: auto;
        height: auto;
        max-width: 100%;
        aspect-ratio: 303/201;
    }

    .food-slide {
        width: 100%;
        height: 100%;
        aspect-ratio: 3/2;
    }
}

@media (max-width: 480px) {

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        overscroll-behavior-x: none;
    }

    section,
    .container,
    .section-banner,
    .section-program,
    .section-food,
    .section-event,
    .section-news,
    .section-info,
    .section-family {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding: 120px 16px;
    }

    .banner-content-wrapper {
        padding: 160px 16px 260px;
        width: 100%;
    }

    .program-more-btn-wrapper {
        padding: 20px 16px 0 16px;
        width: 100%;
    }

    .news-header-container {
        padding: 60px 16px;
        width: 100%;
    }

    .banner-category {
        font-size: 12px;
        padding: 2px 6px;
        margin-bottom: 8px;
    }

    .banner-title {
        font-size: 28px;
        max-width: 300px;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: keep-all;
    }

    .swiper-banner-container {
        position: absolute;
        padding: 60px 16px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .swiper-banner-category {
        display: inline-block;
        background-color: white;
        color: #222222;
        padding: 2px 6px;
        margin-bottom: 8px;
    }

    .swiper-banner-title {
        max-width: 192px;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: keep-all;
        color: var(--color-white);
    }

    .banner-list-item:first-child a {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 24px !important;
    }

    .food-pagination-segments .pagination-segment {
        height: 2px;
    }

    .food-prev-btn,
    .food-next-btn {
        width: 28px;
        height: 28px;
    }

    .food-prev-btn img,
    .food-next-btn img {
        width: 14px;
        height: 14px;
    }

    .program-grid {
        grid-template-columns: 1fr;
        /* Mobile: 1 column */
    }

    .program-card-image {
        aspect-ratio: 1/1;
        min-height: 220px;
    }

    .program-card-image--square {
        aspect-ratio: 1/1;
    }

    .food-tabs {
        flex-wrap: nowrap;
        gap: 6px;
    }

    .food-tab {
        padding: 6px 12px;
    }

    .news-item {
        padding: 12px 0;
    }

    .section-news {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section-family {
        /* padding: 20px 0; */
        background: white;
        height: auto;
    }

    .family-sites {
        position: static;
        transform: none;
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-shadow: none;
        border-top: 1px solid var(--color-gray-200);
        /* border-bottom: 1px solid var(--color-gray-200); */
        border-bottom: none;
    }

    .family-site-card {
        /* height: 120px; */
        height: auto;
        overflow: hidden;
        padding: 16px;
        border-right: 1px solid var(--color-gray-200);
        border-bottom: 1px solid var(--color-gray-200);
    }

    .family-site-card.en {
        height: auto;
        overflow: hidden;
        padding: 16px;
    }

    .family-site-card:nth-child(2n) {
        border-right: none;
    }

    .family-site-card:nth-child(n + 5) {
        border-bottom: none;
    }

    /* .family-site-subtitle {
          font-size: 10px;
      } */

    .family-site-title {
        white-space: normal;
    }

    .family-site-card img {
        max-width: 100%;
        width: auto;
        max-height: unset;
        height: auto;
    }

    .section-info {
        padding: 60px 16px 60px;
    }

    .info-content h2 {
        font-size: 24px !important;
    }

    .info-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Swiper 반응형 */
    .eventSwiper {
        padding: 0 16px;
        overflow: visible;
    }

    .eventSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .eventSwiper .swiper-slide {
        width: 350px;
        height: auto;
        aspect-ratio: 626/400;
    }

    .foodSwiper {
        padding: 0 16px;
        overflow: visible;
    }

    .foodSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .foodSwiper .swiper-slide {
        width: auto;
        height: auto;
        aspect-ratio: 3/2;
    }

    .food-slide {
        width: 100%;
        height: 100%;
        aspect-ratio: 3/2;
    }
}

@media (max-width: 374px) {
    .container {
        padding: 60px 16px;
    }

    .program-grid {
        grid-template-columns: 1fr;
        /* Mobile Small: 1 column */
        gap: 16px;
    }
}

/* body media query end */