.all-menu {
    margin: 0 auto;
    margin-top: 48px;
    padding: 0 40px;
    height: 48px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
}

.all-menu>span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    width: 18.5px;
    height: 18.5px;
    border-radius: 50%;
}

.mission-list-box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.mission-card {
    width: 24%;
}

.card-image {
    position: relative;
    overflow: hidden;
}

.badge {
    position: absolute;
    top: 10%;
    background: #d5d5d573;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    right: 10px;
    font-size: 14px;
}

.card-content {
    background: #F3F3F3;
    padding: 28px 15px 26px 15px;
}

.card-content-main h3 {
    font-size: 22px;
    font-weight: 600;
}

.card-content-main {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.card-img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    /* 비율 유지하며 채움 */
    transition: transform 0.4s ease;
    /* 부드러운 전환 */
    will-change: transform;
}

/* 마우스 오버 시 확대 */
.card-image:hover .card-img {
    transform: scale(1.1);
    /* 1.1~1.2 정도가 자연스러움 */
}

.card-image:hover .best-card-img {
    transform: scale(1.1);
    /* 1.1~1.2 정도가 자연스러움 */
}

.wish-box {
    background: #959595;
    border-radius: 50px;
    width: 25px;
    height: 25px;
}

.wish-btn {
    position: absolute;
    top: 17%;
    right: 3px;
    width: 19px;
    opacity: 0.8;
}

.card-sub-text {
    font-size: 15px;
    margin-top: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-info {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 14px;
}

.card-tag {
    background: #000;
    color: #fff;
    border-radius: 20px;
    padding: 3px 13px;
    font-size: 14px;
}

.tags {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

.start-btn {
    margin-top: 16px;
    background: #303030;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    padding: 9px 0px;
    border: 1px solid #303030;
}

.start-btn:hover {
    background: #7800FF;
    border: 1px solid #7800FF;
}

.paper-container {
    width: 100%;
    padding-bottom: 255px;
    position: relative;
}

.paper-container>img {
    width: 100%;
    height: 2336px;
    object-fit: fill;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.main-container {
    width: 100%;
}

.main-banner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.banner-box {
    width: 100%;
    height: 556px;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0;
}

.banner-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(7, 7, 7, 0.2);
    flex: 1;
}

.banner-image>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-txt {
    position: absolute;
    bottom: 67px;
    text-align: center;
}

.banner-txt>p {
    font-size: 80px;
    font-weight: 700;
    color: #ffff;
}

.banner-txt>span {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
    text-shadow: 0px 0px 1rem #ffffff;
    animation: blink 3s ease-in-out infinite;
}

.second-container {
    width: 100%;
    margin-top: 176px;
    text-align: center;
}

.second-container>h1 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
}

.second-container>p {
    font-size: 22px;
    margin-top: 30px;
    font-weight: 500;
    color: #000;
}

.second-container>p span {
    font-weight: 700;
    color: #7800ff;
}

.second-wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.second-slide {
    --speed: 40s;
    --gap: 16px;
    width: 100%;
    display: flex;
    gap: var(--gap);
    align-items: center;
    width: max-content;
    animation: marquee var(--speed) linear infinite;
}

.second-slide img {
    flex: 0 0 auto;
    display: block;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueereverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.platform-stats-section {
    width: 100%;
    margin-top: 200px;
    background: #F5F2FF;
}

.platform-stats-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.platform-stats-content {
    height: 496px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.platform-stats-title {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    line-height: 50px;
    margin: 0;
}

.platform-stats-subtitle {
    margin-top: 58px;
    font-size: 60px;
    font-weight: 700;
    color: #7800ff;
}

.platform-stats-right {
    position: relative;
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.platform-stats-right img {
    height: 673px;
    position: absolute;
    right: 0;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* 에듀테마파크 특별함 섹션 */
.edupark-features-section {
    width: 100%;
    margin-top: 310px;
}

.edupark-features-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.edupark-features-header {
    text-align: center;
}

.edupark-features-title {
    font-size: 42px;
    font-weight: 800;
    color: #000;
}

.edupark-features-title span {
    color: #7800ff;
}

.edupark-features-subtitle {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.edupark-features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 60px;
    gap: 35px;
}

.edupark-feature-item {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    background: #F3F3F3;
    overflow: hidden;
}

.feature-content {
    width: 100%;
    padding: 36px;
    height: 250px;
}

.feature-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    height: 44px;
    border-radius: 22px;
    background: #000;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.feature-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-top: 24px;
}

.feature-description {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin-top: 22px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 250px;
    display: flex;
    position: relative;
}

.feature-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-hover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    position: absolute;
    opacity: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.edupark-feature-item:hover .feature-hover {
    opacity: 1;
}

.feature-hover>p {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    line-height: 40px;
    text-align: center;
}

/* 에듀테마파크 특별함 섹션 반응형 */


.edupark-tab-section {
    width: 100%;
    height: auto;
    padding: 75px 54px 68px 54px;
    margin-top: 201px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.29);
}

.edupark-tab-section>h1 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    text-align: center;
}

.edupark-tab-section>h1 span {
    color: #7800ff;
}

.tab-image {
    margin-top: 48px;
    width: 100%;
}

.tab-image>img {
    width: 100%;
}

.fifth-container {
    width: 100%;
    margin-top: 180px;
    height: 444px;
    background: #643FCE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fifth-container>h1 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    margin-top: 20px;
}

.fifth-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.fifth-box>a {
    width: 260px;
    height: 70px;
    background: #fff;
    border-radius: 14px;
    color: #7800ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
}

.six-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.six-container>h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7800ff;
    border-radius: 45px;
    background: #fff;
    width: 420px;
    height: 78px;
    font-size: 30px;
    font-weight: 700;
    color: #7800ff;
    margin: 0 auto;
}

.six-container>p {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-top: 30px;
}

.education-showcase-container {
    width: 100%;
    max-width: 1300px;
    margin: 163px auto 0;
}

.education-showcase-header {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.education-showcase-title {
    font-size: 29px;
    font-weight: 700;
    color: #000;
    padding-bottom: 10px;
}

.education-showcase-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.education-showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 5px;
    margin-top: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* 첫 번째 줄 - 4개 아이템 */
.education-showcase-item:nth-child(1) {
    grid-column: span 4;
}

.education-showcase-item:nth-child(2) {
    grid-column: span 2;
}

.education-showcase-item:nth-child(3) {
    grid-column: span 3;
}

.education-showcase-item:nth-child(4) {
    grid-column: span 3;
}

/* 두 번째 줄 - 4개 아이템 (다른 비율로 어긋나게) */
.education-showcase-item:nth-child(5) {
    grid-column: span 3;
}

.education-showcase-item:nth-child(6) {
    grid-column: span 3;
}

.education-showcase-item:nth-child(7) {
    grid-column: span 4;
}

.education-showcase-item:nth-child(8) {
    grid-column: span 2;
}

.education-showcase-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* .education-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
} */

.education-showcase-item img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: fill;
    /* transition: transform 0.3s ease; */
}



/* 진로 체험 섹션 */
.career-experience-container {
    width: 100%;
    margin: 163px auto 0;
    padding: 0;
}

.career-experience-header {
    max-width: 1300px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.career-experience-title {
    font-size: 50px;
    font-weight: 700;
    color: #000;
    line-height: 72px;
    margin: 0 0 16px 0;
}

.career-experience-title .highlight {
    color: #7a04ff;
}

.career-experience-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 28px;
    margin: 0;
}

.career-experience-image {
    width: 100%;
}

.career-experience-image img {
    width: 100%;
    height: auto;
    display: block;
}

.career-experience-video {
    width: 100%;
}

.career-experience-video .career-video {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
}

.eight-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eight-container>h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7800ff;
    border-radius: 45px;
    background: #fff;
    width: 420px;
    height: 78px;
    font-size: 30px;
    font-weight: 700;
    color: #7800ff;
    margin: 0 auto;
}

.eight-container>p {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-top: 30px;
}

.nine-container {
    width: 100%;
    margin-top: 213px;
}

.nine-container>h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7800ff;
    border-radius: 45px;
    background: #fff;
    width: 320px;
    height: 78px;
    font-size: 30px;
    font-weight: 700;
    color: #7800ff;
    margin: 0 auto;
}

.nine-container>p {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-top: 30px;
}

.nine-box {
    width: 100%;
    height: 560px;
    background: #F5F2FF;
    margin-top: 60px;
}

.boos-wrap {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.boos-wrap>img {
    width: 680px;
}

.nine-right>h1 {
    font-size: 34px;
    font-weight: 700;
    color: #000;
}

.nine-right>p {
    font-size: 26px;
    font-weight: 500;
    color: #000;
    margin-top: 17px;
}

.nine-right>span {
    display: block;
    margin-top: 24px;
    font-size: 22px;
    font-weight: 400;
    color: #000;
    line-height: 34px;
    word-break: keep-all;
}

.nine-btn {
    width: 100%;
    margin-top: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nine-btn>p {
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.nine-btn>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 156px;
    height: 46px;
    border-radius: 23px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    gap: 8px;
    background: #7800ff;
    cursor: pointer;
}

.nine-wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 12px;
}

.nine-track {
    --speed: 40s;
    --gap: 12px;
    width: 100%;
    display: flex;
    gap: var(--gap);
    align-items: center;
    width: max-content;
    animation: marquee var(--speed) linear infinite;
    height: 155px;
    overflow: hidden;
}

.nine-track img {
    flex: 0 0 auto;
    display: block;
    height: 100%;
    object-fit: cover;
}

.ten-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 189px;
}

.ten-container>h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.ten-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.ten-top>p {
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.ten-top>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 196px;
    height: 46px;
    border-radius: 23px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    gap: 8px;
    background: #7800ff;
    cursor: pointer;
}

.ten-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
    gap: 22px;
    margin-bottom: 131px;
}

.ten-box {
    width: 100%;
    height: 350px;
    position: relative;
}

.ten-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ten-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.ten-wrap>p {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    position: absolute;
    bottom: 40px;
}

.ten-piece {
    width: 100%;
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.piece-box {
    width: 100%;
    height: auto;
}

.ten-image {
    width: 100%;
    height: 287px;
    overflow: hidden;
}

.ten-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.piece-box>p {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-top: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.piece-box>span {
    display: -webkit-box;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 28px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: keep-all;
}

.ele-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 206px;
}

.ele-container>h1 {
    font-size: 46px;
    font-weight: 800;
    color: #000;
    text-align: center;
}

.ele-container>p {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 400;
    color: #000;
    text-align: center;
}

.ele-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 60px;
}

.ele-box {
    width: 100%;
    height: 458px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    grid-column: span 1 / span 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.ele-image {
    position: relative;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    height: 100px;
}

.ele-image>img {
    top: 0;
    position: absolute;
}

.ele-box>p {
    margin-top: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.ele-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: start;
    margin-top: 40px;
}

.ele-info>p {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    gap: 19px;
}

.info-container {
    width: 100%;
}

.info-box {
    width: 100%;
    height: 710px;
    background: #643FCE;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 127px 310px;
}

.info-box>h1 {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    margin-top: 18px;
}

.info-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-top: 50px;
}

.info-image {
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 42px 30px;
    background: #fff;
    width: 410px;
    border-radius: 20px;
}

.menu-box>p {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
}

.menu-box>span {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin-top: 8px;
}

.menu-box>a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 31px;
    border: 1px solid #762CC7;
    color: #762CC7;
    font-weight: 500;
    margin-top: 23px;
    gap: 10px;
    cursor: pointer;
    font-size: 24px;
    padding: 8px 18px;
    white-space: nowrap;
}

.menu-box>a span {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #762CC7;
}

.copy-email {
    font-size: 21px !important;
}


.unit-price-div {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 282px;
}

.unit-price-div h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

.unit-price-div p {
    font-size: 22px;
    margin-bottom: 40px;
}

.rw-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 30px 30px 0px 0px;
}

.rw-table thead th {
    background: #7800FF;
    color: #fff;
    padding: 18px 24px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    border-right: 1px solid #fff;
    height: 70px;
}

.rw-table tbody td {
    background: #F2F2F2;
    border: 1px solid #ffffff;
    font-size: 22px;
}

.rw-table td.group {
    background: #F2F2F2;
    border-right: 1px solid #ffffff;
    text-align: center;
}

.rw-table td.group>span {
    color: #7A00FF;
    font-size: 26px;
    font-weight: 700;
}

.rw-table .note {
    color: #666;
    font-size: 20px;
    width: 40%;
}

.t_center {
    text-align: center;
    width: 20%;
    height: 75px;
}

.t_right {
    text-align: right;
    width: 20%;
    height: 75px;
    padding-right: 31px;
}

.note {
    text-align: center;
}

.future-class-div {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 200px;
}

.future-class-div h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 34px;
}

.future-class-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.future-class-flex img {
    width: 247px;
    height: 247px;
}

.future-class-btn {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    background: #7800FF;
    padding: 21px 62px;
    border-radius: 15px;
    cursor: pointer;
}

.future-btn-box {
    display: flex;
    justify-content: center;
}

.future-classroom-section {
    width: 100%;
    margin: 136px 0 164px;
}

.future-classroom-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.future-classroom-header {
    text-align: center;
    margin-bottom: 60px;
}

.future-classroom-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    line-height: 56px;
    margin-bottom: 20px;
}

.future-classroom-subtitle {
    font-size: 18px;
    color: #000;
    margin: 0;
}

.future-classroom-list {
    margin-top: 60px;
    display: flex;
    gap: 26px;
}

.future-classroom-list img {
    width: 416px;
    height: 566px;
    object-fit: cover;
    display: block;
}

.future-class-edu-p2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 14px;
}

.future-classroom-list span {
    font-size: 20px;
    line-height: 32px;
}

.future-classroom-list .edu-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.future-classroom-list .edu-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: opacity .2s;
}

.future-classroom-list .edu-more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    color: #fff;
    font-size: 30px;
    letter-spacing: -.2px;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .9), 0 0 1px rgba(0, 0, 0, 1);
    z-index: 2;
}

.future-classroom-list .edu-thumb:hover::after,
.future-classroom-list .edu-thumb:hover .edu-more {
    opacity: 1;
}

/* 콘텐츠 중심 미래교실 구축사례 섹션 */
.classroom-cases-section {
    width: 100%;
    margin: 100px 0 164px;
}

.classroom-cases-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.classroom-cases-header {
    margin-bottom: 60px;
}

.classroom-cases-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 72px;
    margin: 0;
}

.classroom-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 375px);
    gap: 10px;
}

.classroom-case-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.case-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.case-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.case-info h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.case-info p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}

/* 제품 소개서 신청 버튼 */
.product-brochure-section {
    text-align: center;
    margin-top: 60px;
}

.product-brochure-btn {
    width: 250px;
    font-size: 20px;
    color: #fff;
    background: #7800FF;
    padding: 14px 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-brochure-btn:hover {
    background: #6600CC;
}

/* 상담 섹션 */
.consultation-section {
    background: #f8f5fd;
    width: 100%;
    padding: 100px 0;
}

.consultation-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.consultation-header {
    margin-bottom: 60px;
}

.consultation-title {
    font-size: 35px;
    font-weight: 700;
    color: #000;
    line-height: 43px;
    margin: 0 0 20px 0;
}

.consultation-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

.consultation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.consultation-btn {
    width: 250px;
    font-size: 20px;
    padding: 14px 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.consultation-btn.primary {
    color: #fff;
    background: #7800FF;
}

.consultation-btn.primary:hover {
    background: #6600CC;
}

.consultation-btn.secondary {
    color: #7800FF;
    background: #fff;
    border: 2px solid #7800FF;
}

.consultation-btn.secondary:hover {
    background: #7800FF;
    color: #fff;
}



.twe-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 210px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.twe-box {
    width: 100%;
    height: 700px;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.twe-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.twe-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.twe-txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding: 86px;
}

.twe-cover {
    width: 290px;
    height: 400px;
    border-radius: 160px 160px 0 0;
    border: 6px solid #fff;
    padding: 30px;
    display: flex;
    align-items: end;
}

.twe-cover>p {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    word-break: keep-all;
}

.twe-cover>p span {
    color: #FF8000;
}

.twe-txt>h1 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.twe-txt>p {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-top: 28px;
    line-height: 34px;
}

.real-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 170px;
}

.real-container>h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.real-container>p {
    margin-top: 18px;
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.real-image {
    margin-top: 34px;
    width: 100%;
    height: 492px;
    overflow: hidden;
}

.real-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 체험/서비스/공간 선택 및 검색 섹션 스타일 */
.experience-search-container {
    width: 100%;
    max-width: 1300px;
    margin: 20px auto;
    padding: 40px 0px;
}

.experience-search-container.fixed {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 100%;
    z-index: 99;
    background: #fff;
    padding: 20px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-selection {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 25px;
}

.category-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.category-item img {
    transition: transform 0.3s ease;
}

.category-btn {
    width: 80px;
    height: 37px;
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-btn:hover {
    border-color: #b67bfc;
    color: #b67bfc;
}

.category-item.active .category-btn {
    background-color: #b67bfc;
    border-color: #b67bfc;
    color: #fff;
}

.category-item.active .category-btn:hover {
    background-color: #a666fa;
    border-color: #a666fa;
}

.search-form {
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #ddd;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.search-fields {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
}

.search-field {
    position: relative;
    flex: 1;
    border-right: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px;
    margin: 0;
}

.search-field:last-of-type {
    border-right: none;
}

.search-field:hover {
    background-color: #f7f7f7;
    border-radius: 50px;
}

.search-field label {
    font-size: 12px;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
    display: block;
    padding: 6px 16px 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field select,
.search-field input {
    border: none;
    background: transparent;
    padding: 0 16px 6px 16px;
    font-size: 16px;
    color: #717171;
    width: 100%;
    outline: none;
    appearance: none;
}

.search-field select {
    cursor: pointer;
}

.search-field input {
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-field input::placeholder {
    color: #717171;
    font-size: 16px;
}

.search-field input[type="date"] {
    color: #717171;
    font-family: inherit;
}

.search-field input.selected {
    color: #222;
    font-weight: 500;
}

/* people-input 데이터 입력 시 색상 */
#people-input:not(:placeholder-shown) {
    color: #222;
    font-weight: 500;
}

/* 커스텀 드롭다운 스타일 */
.search-field {
    position: relative;
}

/* 검색 필드 클릭/터치 시 파란색 외곽선(highlight) 제거 */
.search-field {
    -webkit-tap-highlight-color: transparent;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -100px;
    right: -100px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 420px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 16px;
}
.dropdown-menu .dropdown-footer {
    display: none;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Filter Modal - Larger Size */
.dropdown-menu.show.filter-modal {
    max-height: none;
    min-width: 800px;
    left: -250px;
    right: -250px;
    overflow-y: visible;
    overflow-x: visible;
}

.dropdown-item {
    padding: 16px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 12px;
    margin-bottom: 4px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background-color: #f7f7f7;
}

.dropdown-item-icon {
    width: 86px;
    height: 86px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.dropdown-item-content {
    flex: 1;
}

.dropdown-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
}

.dropdown-item-desc {
    font-size: 14px;
    color: #717171;
    line-height: 1.3;
}


/* 인원 수 스텝퍼 스타일 */
.people-stepper {
    padding: 16px;
}

.stepper-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stepper-row:last-child {
    border-bottom: none;
}

.stepper-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.stepper-desc {
    font-size: 12px;
    color: #666;
}

.stepper-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stepper-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stepper-btn:hover {
    border-color: #333;
    background: #f8f8f8;
}

.stepper-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #f0f0f0;
}

.stepper-btn:disabled:hover {
    border-color: #f0f0f0;
    background: #fff;
}

.stepper-btn svg {
    color: #666;
}

.stepper-value {
    min-width: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* 오리지널 콘텐츠 스타일 */
.original-content-section {
    width: 100%;
    max-width: 1300px;
    margin: 80px auto 0;
    padding: 0 20px;
}

/* 교과별 체험 콘텐츠 섹션 */
.subject-content-section {
    width: 100%;
    max-width: 1300px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.subject-content-container {
    width: 100%;
}

/* 메인 제목 */
.main-title-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.subject-content-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.subject-content-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.subject-content-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* 각 교과별 섹션 */
.subject-category-section {
    margin-bottom: 50px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.category-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-slide-controls {
    display: flex;
}

.category-content-slider {
    overflow: hidden;
}

.category-content-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 16px;
}

.subject-content-item {
    flex: 0 0 calc((100% - 64px) / 5);
    /* background: #fff; */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.subject-content-item-empty {
    border: 1px solid #ddd;
    border-radius: 12px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.subject-content-item-empty .subject-content-image {
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.subject-content-item-empty .subject-content-image span {
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.subject-content-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
}

.subject-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.subject-content-item:hover .subject-content-image img {
    transform: scale(1.1);
}

.subject-content-info {
    padding: 20px 0;
}

.subject-content-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.subject-content-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subject-content-reservation-date {
    font-size: 13px;
    color: #7a04ff;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 6px 10px;
    background: rgba(122, 4, 255, 0.08);
    border-radius: 6px;
    display: inline-block;
}

.subject-content-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.original-content-container {
    width: 100%;
}

.original-content-header {
    margin-bottom: 40px;
}

.original-header-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.original-content-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.original-content-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.original-content-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.original-header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.original-content-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.original-slide-controls {
    display: flex;
}

.slide-nav-btn {
    width: 32px;
    height: 25px;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-nav-btn.prev {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.slide-nav-btn.next {
    border-radius: 0 6px 6px 0;
}

.slide-nav-btn:hover {
    border-color: #333;
    background: #f8f8f8;
}

.slide-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slide-nav-btn svg {
    color: #666;
    width: 16px;
    height: 16px;
}

.original-content-slider {
    overflow: hidden;
}

.original-content-track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
}

.original-content-item {
    flex: 0 0 calc((100% - 64px) / 5);
    background: #fff;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.original-content-image {
    width: 100%;
    height: 180px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    position: relative;
}

.original-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.original-content-item:hover .original-content-image img {
    transform: scale(1.1);
}

.content-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.content-type-badge.visiting {
    background: #FF6B35;
}

.content-type-badge.coming {
    background: #7B68EE;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.favorite-btn svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.favorite-btn .heart-svg {
    fill: none;
    stroke: #7a04ff;
    stroke-width: 2;
}

.favorite-btn.active .heart-svg {
    fill: #7a04ff;
    stroke: #7a04ff;
}

.original-content-info {
    padding: 20px 0;
}

.original-content-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.original-content-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.original-content-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount {
    color: #7800ff;
    font-size: 16px;
    font-weight: 600;
}

.price {
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

.original-content-item:first-child .original-content-info {
    padding: 20px 0;
}

/* 커스텀 달력 스타일 */
.custom-calendar {
    position: absolute;
    top: calc(100% + 8px);
    left: -60px;
    right: -60px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 20px;
}

.custom-calendar.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.calendar-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.calendar-nav {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.calendar-nav:hover {
    background-color: #f7f7f7;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 8px;
}

.calendar-weekday {
    padding: 8px 4px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #717171;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    padding: 12px 4px;
    text-align: center;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #222;
    position: relative;
}

.calendar-day:hover {
    background-color: #f7f7f7;
}

.calendar-day.today {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 600;
}

.calendar-day.selected {
    background-color: #7a04ff;
    color: #fff;
    font-weight: 600;
}

.calendar-day.other-month {
    color: #ccc;
}

.calendar-day.disabled {
    color: #ddd;
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background-color: transparent;
}

.calendar-shortcuts {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    margin-top: 16px;
}

.shortcut-btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px 8px 4px 0;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 14px;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shortcut-btn:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.shortcut-btn.active {
    background-color: #7a04ff;
    border-color: #7a04ff;
    color: #fff;
}

.search-btn {
    background: #7a04ff;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(122, 4, 255, 0.3);
    flex-shrink: 0;
    margin: 8px;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(122, 4, 255, 0.4);
    background: #6a03dd;
}

.search-btn:active {
    transform: scale(0.98);
}

.search-btn img {
    width: 16px;
    height: 16px;
}

/* 탭 레이아웃 스타일 */
.tab-section {
    width: 100%;
    max-width: 1300px;
    margin: 40px auto 0; /* 상단 마진 조정 */
    padding: 0 20px;
    background-image: url('/theme/realworld/img/experience/visiting_bg.jpg');
    background-size: cover;
    background-position: center top -160px;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative; /* 자식 요소의 position 기준 */
    min-height: 650px; /* 배경 이미지가 잘리지 않도록 최소 높이 확보 */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tab-container {
    position: static; /* absolute 제거하여 정상적인 흐름으로 변경 */
    width: 100%;
}

.tab-header {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
}

.tab-item {
    flex: 1;
    /* max-width: 600px; */
    position: relative;
    cursor: pointer;
    background: #e8e8e8;
    transition: all 0.3s ease;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #d7d7d7;
}

.tab-item:first-child {
    margin-right: 0;
    border-left: 1px solid #d7d7d7;
    border-right: none;
}

.tab-item:last-child {
    margin-left: 0;
    border-right: 1px solid #d7d7d7;
    border-left: none;
}

.tab-item.active {
    background: #fff;
    z-index: 10;
    position: relative;
}

.tab-item.active .tab-title {
    color: #222;
}

.tab-title {
    padding: 25px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #999;
    transition: color 0.3s ease;
}

/* 체험 리스트 스타일 */
.experience-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
    border: 1px solid #d7d7d7;
    border-top: none;
}

.experience-item {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.experience-item-empty {
    border: 1px solid #ddd;
    border-radius: 8px;
    min-height: 210px;
}

.experience-item-empty .experience-image {
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.experience-item-empty .experience-image span {
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.experience-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.experience-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-item:hover .experience-image img {
    transform: scale(1.1);
}

.experience-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    padding: 15px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 권역별 체험센터 스타일 */
.regional-center-section {
    width: 100%;
    max-width: 1300px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.regional-center-container {
    width: 100%;
}

.regional-center-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.regional-center-icon {
    width: 25px;
    height: 25px;
}

.regional-center-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.regional-center-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.regional-center-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.regional-center-item {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.regional-center-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.regional-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.regional-center-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.regional-center-item:hover .regional-center-overlay {
    opacity: 1;
}

.regional-center-item:hover .regional-center-image img {
    transform: scale(1.1);
}

.view-detail {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.regional-center-info {
    padding: 20px 0;
}

.regional-center-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.regional-center-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* Search Filter Modal Styles */
.filter-modal-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.filter-modal-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    padding: 0;
    border: none;
}

.filter-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-option-btn {
    padding: 10px 24px;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 24px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-option-btn:hover {
    background-color: #f5f5f5;
    border-color: #bfbfbf;
}

.filter-option-btn.selected {
    background-color: #7800FF;
    color: #fff;
    border-color: #7800FF;
    font-weight: 600;
}




/* 로딩 스피너 스타일 */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 300px;
    width: 100%;
    text-align: center;
}

.loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px auto;
}

.loading-spinner p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin: 0;
    text-align: center;
    width: 100%;
}