
/* 공통 섹션 스타일 */
.content-right section {
    background: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

.content-layout .content-title {
    width: 100%;
    font-family: 'Geist', sans-serif;
    font-size: 26px;
    margin-bottom: 20px;
    color: #252525;
    letter-spacing: -0.03em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.more-btn {
    color: #444;
    text-decoration: none;
    font-size: 26px;
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-left: auto;
}

.more-btn:hover {
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

.section-title {
    font-family: 'Geist', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #4D382D;
    letter-spacing: -0.03em;
}

/* ============================================
    섹션별 스타일 (Section Styles)
============================================ */
/* main {
    padding-top: 130px;
} */
/* 메인 슬라이드 스타일 */
.main-section {
    position: relative;
    /* height: 650px; */
    aspect-ratio: 1920/650; /* 1920/850 ≈ 2.2588 */
    overflow: hidden;
    /* 영상 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-section>iframe {
    pointer-events: none;
}

.main-video.pc {
    display: block;
    width: 100%;

    border: none;
}

.main-video.mo {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}



.swiper {
    width: 100%;
    height: 100%;
}

.slide-content {
    position: absolute;
    left: 50px;
    bottom: 50px;
    color: white;
    z-index: 10;
}

.slide-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 14px;
    max-width: 400px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


/* 메인 섹션 커스텀 네비게이션 */
.main-section .swiper-button-next,
.main-section .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    top: 55% !important;
}

.main-section .swiper-button-next:hover,
.main-section .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1);
}

.main-section .swiper-button-next:after,
.main-section .swiper-button-prev:after {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.main-section:hover .swiper-button-next,
.main-section:hover .swiper-button-prev {
    opacity: 1;
    transform: scale(1);
}

.main-section .swiper-button-next {
    right: 30px;
}

.main-section .swiper-button-prev {
    left: 30px;
}


/* 카테고리 메뉴 스타일 */
.category-section {
    background: var(--color-background-tertiary);
    padding: 55px 50px;
    box-sizing: border-box;
}


.category-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    gap: 5px;
}

.category-item:hover {
    transform: translateY(-3px);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C5C5C5;
    transition: all 0.2s ease-in-out;
}

.category-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.category-icon:hover {
    background: #FF8F20;
    transition: all 0.2s ease-in-out;
}

.category-text {
    font-size: 20px;
    letter-spacing: -0.02em;
    color: #333;
    line-height: 1.3;
}

/* 스와이퍼 네비게이션 */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    display: none;
}

/* 메인 섹션 커스텀 페이지네이션 */
.main-section .swiper-pagination {
    bottom: 30px;
}

.main-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.main-section .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.main-section .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-slide:hover .swiper-button-next,
.swiper-slide:hover .swiper-button-prev {
    display: block;
}


/* 배너 섹션 스타일 */
.section-banner {
    width: 100%;
    min-height: 530px;
    aspect-ratio: 1920/530;
    background: linear-gradient(135deg, #222 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 143, 32, 0);
    transition: background 0.3s ease;
    z-index: 0;
}

.section-banner:hover::before {
    background: rgba(255, 143, 32, 0.05);
}

.section-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-banner-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.section-banner-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-banner-title {
    font-family: 'Geist', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0;
}

.section-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: #FF8F20;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: fit-content;
    pointer-events: none;
}

.section-banner:hover .section-banner-btn {
    background: #ff7a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 143, 32, 0.3);
}

.section-banner-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.section-banner:hover .section-banner-btn i {
    transform: translateX(4px);
}

.section-banner-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.section-banner-steps,
.section-banner-cer {
    width: auto;
    max-height: 100%;
    object-fit: contain;
}


.section-banner-cer {
    max-height: 300px;
    transform: skew(-9deg, 0deg);

    /* 입체감 있게 안쪽, 바깥쪽 모두 그림자 */
    box-shadow:
        0 6px 24px rgba(185, 185, 185, 0.18), /* 바깥쪽(외부) 그림자 */
        0 2px 6px #fff inset,         /* 위쪽 약간 밝은 안쪽선 */
        0 -2px 14px rgba(105, 105, 105, 0.12) inset; /* 아래 안쪽 그림자 */

}

/* 메인 콘텐츠 영역 */
.content {
    padding: 80px 0;
    margin: 0 auto;
}


.content-container {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.content-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.content-middle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.content-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.content-left,
.content-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-left {
    width: 65%;
}

.content-right {
    width: 450px;
}

.highlights-section {
    padding: 25px 0;
}

/* Partner Class 섹션 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* Partner Swiper */

.partner-class-section {
    width: 100%;
}

.partner-swiper {
    width: 100%;
    height: 320px;
    margin-bottom: 20px;
}

.partner-swiper .swiper-slide {
    width: auto;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    background: linear-gradient(135deg, #f9e6b2 0%, #e2d1f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.partner-swiper .swiper-slide img {
    width: auto;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    max-height: 100%;
    max-width: 100%;
    padding: 10px 10px 0;
}


.partner-swiper .swiper-button-next,
.partner-swiper .swiper-button-prev {
    display: none;
}

/* Insights 섹션 */

.insights-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 25px 30px 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 15px;

}

.tab-menu {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30PX;
}

.tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.05em;
    transition: all 0.3s ease;
}

.tab-btn.active {
    font-family: 'Geist', serif;
    color: #222;
    font-weight: 500;
    transition: all 0.3s ease;
}

.community-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.community-content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.tab-content {
    width: 100%;
    display: none;
}

.tab-content.active {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}



.community-article {
    display: flex;
    gap: 30px;

}

.community-article img {
    width: 230px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    background: #ccc;
    border: 1px solid #ddd;
}

.article-content {
    width: 50%;
}


.article-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.05em;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: -0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author {
    font-size: 14px;
    color: #444;
}

.community-right {
    width: 40%;
}

.community-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.community-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    gap: 3px;
}

.community-item .link {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.community-item>span {
    max-width: 60%;
    white-space: normal;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}


.community-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.good>i {
    color: #FF8F20;
}

.views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 12px;
}

.good {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 12px;
}

.view-all {
    width: 100%;
    color: #444;
    font-size: 16px;
    padding: 20px 0 0;
    margin: 0 auto;
    letter-spacing: -0.05em;
    border-top: 1px solid #ddd;
    text-align: center;
}





/* Highlights 섹션 */
.highlights-scroll {}

.highlight-images {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-images img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background: #ccc;
}

/* Store 섹션 */


.store-event-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.store-section,
.event-section {
    width: 50%;
}

.store-grid-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.store-grid {
    height: 210px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.store-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #ccc;
}

.store-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ccc;
}

.store-item-big {
    width: 210px;
    height: 210px;
    background: #ccc;
    border-radius: 10px;

}

.store-item-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ccc;
    border-radius: 10px;
}

.store-coming-soon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8a3d 0%, #ffd166 50%, #ffa500 100%);
    color: white;
    font-size: 24px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    gap: 8px;
}

.store-coming-soon .store-icon {
    font-size: 48px;
    display: block;
    line-height: 1;
    color: white;
}

.store-coming-soon .store-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.store-item-big .store-coming-soon {
    border-radius: 10px;
}

.store-item-big .store-coming-soon .store-icon {
    font-size: 64px;
}

.store-item-big .store-coming-soon .store-text {
    font-size: 22px;
}


/* Our Values & Partnerships 섹션 */
.values-section {
    width: 100%;
    background: #f5f5f5;
    padding: 80px 0 40px;
    /* filter: blur(5px); */
    opacity: 0.3;
    transition: all 0.2s ease-in-out;
}

.values-section.visible {
    filter: blur(0px);
    opacity: 1;
    position: relative;
    /* optional: add a :before pseudo-element for finer grain noise, or use SVG/png if supported */
}

/* 슬로건 섹션 */
.slogan-section {
    width: 100%;
    max-width: 100%;
    background: white;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
    box-sizing: border-box;
    left: 0;
    right: 0;
}

.slogan-section.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.slogan-container {
    width: 100%;
    text-align: center;
    position: relative;
}

.slogan-line {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -30%);
    transform-origin: center top;
    font-size: 64px;
    font-weight: 700;
    color: #333;
    opacity: 0;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
}


/* Notice & Contact Us 섹션 */
.notice-contact-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FDF7EC;
    padding: 80px 0;
}

.notice-contact-section>.container {
    width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-background-tertiary) !important;
}

@media screen and (min-width: 1400px) {
    .notice-contact-section>.container {
        max-width: 1400px !important;
    }


}

.notice-section {
    width: 60%;
    box-sizing: border-box;
}

.contact-section {
    width: 40%;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}

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

.notice-header .section-title {
    font-size: 36px;
}
.notice-header .more-btn {
    font-size: 36px;
    color: #4D382D !important;
}


.notice-list {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
}


.notice-item {
    border-top: 1px solid #ccc;
    padding: 20px 0;
}

.notice-item:last-child {
    border-bottom: 1px solid #ccc;
}

.notice-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}




.notice-item:hover h4 {
    color: #FF8F20;
    transition: all .2s ease-in-out;
}

.notice-item:hover .notice-date {
    color: #888;
    transition: all .2s ease-in-out;
}



.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.contact-icon {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: #444444;
    background: #fff;
    text-decoration: none;
}

.contact-icon:hover {
    text-decoration: none;
    color: #444444;
}

.contact-icon:after {
    position: absolute;
    content: '';
    display: block;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background: #FF8F20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .2s ease-in-out;
    z-index: 0;
}


.contact-icon:hover::after {
    width: 100%;
    height: 100%;
    transition: all .2s ease-in-out;
}

.contact-icon>i {
    z-index: 2;
}

.contact-icon:hover>i {
    color: #FDF7EC;
    transition: all .2s ease-in-out;
}




.contact-txt-box {
    width: 100%;
    text-align: center;
}

.contact-txt-box .section-title {
    font-family: 'Geist', sans-serif;
    font-size: 30px;
    color: #4D382D;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 15px;
}

.contact-text {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    color: #555;
}



.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.values-left {
    flex: 1;
}

.values-title {
    font-family: 'Geist', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #B49E90;
    margin-bottom: 40px;
}

.values-text-block {
    margin-bottom: 30px;
}

.values-main-text {
    font-family: 'Geist', sans-serif;
    font-size: 68px;
    font-weight: 400;
    color: #4D382D;
    line-height: 1;
    letter-spacing: -0.05em;
}

.values-sub-text {
    font-family: 'Geist', sans-serif;
    font-size: 68px;
    font-weight: 400;
    color: #929090;
    line-height: 1;
    letter-spacing: -0.05em;
}

.values-divider {
    width: 1px;
    height: 400px;
    background: #ddd;
}

.values-right {
    flex: 1;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

}

.iso-logos {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.iso-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.iso-circle {
    width: 205px;
    height: 205px;
    border: 1px solid #514B48;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.iso-circle.a .iso-text,
.iso-circle.a .iso-number {
    color: transparent;
    -webkit-text-stroke: 1px #514B48;
    text-stroke: 1px #514B48;
    /* For future-proofing, some browsers */
}

.iso-text {
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #514B48;
    line-height: 1;
}

.iso-number {
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #514B48;
    line-height: 1;
}

.iso-description {
    font-family: 'Geist', sans-serif;
    font-size: 32px;
    color: #4D382D;
    text-align: center;
    letter-spacing: -0.05em;
    display: block;
}


.values-divider-line {
    height: 1px;
    display: none;
    background: #ddd;
    margin-bottom: 20px;
}

.values-footer-text {
    width: 100%;
    display: none;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.values-footer-text span {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}



/* Event 섹션 */

.event-items {
    width: 100%;
    display: flex;
    gap: 20px;
}

.event-item {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    background: #ccc;
    border-radius: 10px;
}

.event-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}



/* Course Swiper */
.course-swiper {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.course-swiper .swiper-slide {
    width: 100% !important;
    height: auto;
    /* border-radius: 15px;
        overflow: hidden;
        display: flex;
        flex-direction: column; */
}

.course-swiper .swiper-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #ccc;
    border-radius: 10px;
    overflow: hidden;
}

.course-info {
    width: 100%;
    position: relative;
}

.course-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-tag {
    background: #000;
    color: white;
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 5px;
}

.course-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-nav,
.job-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    padding: 10px 0;
    box-sizing: border-box;
    border-radius: 5px;
}

.nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.course-swiper .swiper-button-next,
.course-swiper .swiper-button-prev {
    display: none;
}

/* Job Swiper */
.job-swiper {
    width: 100%;
    height: 350px;
}

.job-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.job-item {
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    background: #F6F6F6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-date {
    font-size: 15px;
    color: #FF8F20;
    font-weight: 500;
    letter-spacing: -0.05em;
}

.job-item h4 {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-item p {
    font-size: 14px;
    color: #333;
}

.job-swiper .swiper-button-next,
.job-swiper .swiper-button-prev {
    display: none;
}

/* Workshops 섹션 */
.workshops-section {
    width: 100%;
}

.workshops-section .content-title {
    align-items: flex-start;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.workshop-item {
    background: #f0f0f0;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-size: 12px;
    color: #666;
}





/* 브랜드 쇼케이스 섹션 */
.brand-showcase-section {
    width: 100%;
    padding: 0;
    background: #fff;
}

.brand-showcase-container {
    max-width: 100%;
    margin: 0 auto;

    text-align: center;
    position: relative;
}

.brand-title-over {
    font-family: 'Geist', sans-serif;
    font-size: 24px;
    color: #666;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.brand-title-main {
    font-family: 'Geist', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 40px;
}

/* 로고 마키 */
.logo-marquee {
    position: absolute;
    top: 20%;
    width: 100%;
    overflow: hidden;
    margin: 20px 0 50px;
    z-index: 10;
    transition: transform 0.6s ease-out;
}

.logo-marquee .marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    /* 좌 -> 우 일정 속도 */
    animation: marquee-right 30s linear infinite;
    will-change: transform;
    padding: 20px 0;
}

/* 동일한 속도를 위해 고정 width 트랙을 두 번 반복 */
.logo-marquee .marquee-group {
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo-chip {
    min-width: 210px;
    height: 92px;
    background: #fff;
    border-radius: 48px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.logo-chip img {
    max-width: 150px;
    max-height: 44px;
    object-fit: contain;
    filter: saturate(1);
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* 히어로 이미지(뒤 배경) */
.brand-hero-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0;
    position: relative;
    z-index: 1;
}

.brand-hero {
    width: 72vw;
    /* 처음에는 여백 있는 상태 */
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.8s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 스크롤 시 꽉 차도록 */
.brand-hero.fill-width {
    width: 100vw;
    border-radius: 0;
    max-width: 100vw;
}

@media screen and (max-width: 1480px) {
    .slogan-line {
        font-size: 54px;
    }
}



@media screen and (max-width: 1400px) {
    .content-container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    /* .content-top,
    .content-middle,
    .content-bottom {
        flex-direction: column;
    }
        */
    .content-right {
        width: 32%;
    }

    .category-text {
        font-size: 18px;
    }

    .content-layout .content-title {
        font-size: 24px;
    }

    .tab-btn {
        font-size: 24px;
    }



    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .values-title {
        font-size: 32px;
    }

    .values-main-text {
        font-size: 54px;
    }

    .values-sub-text {
        font-size: 54px;
    }

    .iso-number {
        font-size: 32px;
    }

    .iso-text {
        font-size: 32px;
    }

    .iso-description {
        font-size: 24px;
    }


    .notice-contact-section>.container {
        width: 100%;
        padding: 0 20px;
    }

}

@media screen and (max-width: 1280px) {
    .content-middle {
        flex-direction: column;
    }


    .content-middle .content-left,
    .content-middle .content-right {
        width: 100%;
    }
    .values-content {
        gap: 30px;
    }

    .iso-circle {
        width: 180px;
        height: 180px;
    }


}

@media screen and (max-width: 1024px) {
    /* 카테고리 섹션 */
    .category-section {
        padding: 40px 80px;
    }

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

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon img {
        width: 35px;
        height: 35px;
    }

    .category-text {
        font-size: 16px;
    }

    .content-top,
    .content-bottom {
        flex-direction: column;
    }

    .content-left,
    .content-right {
        width: 100%;
    }
    
    .course-swiper {
        height: auto;
    }

    .course-swiper .swiper-slide img {
        height: 400px;
    }

    .course-tag {
        font-size: 12px;
    }

    .values-divider,
    .values-right {
        height: 300px;
    }

    .values-title {
        font-size: 24px;
    }

    .values-sub-text {
        font-size: 44px;
    }

    .values-main-text {
        font-size: 44px;
    }

    .iso-circle {
        width: 150px;
        height: 150px;
    }

    .iso-description {
        font-size: 20px;
    }

    .slogan-line {
        font-size: 2.5rem;
    }

    .brand-title-main {
        font-size: 52px;
    }



    .notice-contact-section>.container {
        flex-direction: column;
        gap: 30px;
    }

    .notice-section {
        width: 100%;
    }

    .contact-section {
        width: 100%;
        padding: 0;
    }



}

@media (max-width: 768px) {
    .main-video.pc {
        display: none;
    }

    .main-video.mo {
        display: block;
        transform: scale(2.5);
    }

    /* 메인 슬라이드 */
    .main-section {
        /* height: 80vh; */
        aspect-ratio: 3/4;
        position: relative;
        overflow: hidden;
        margin-top: 0;
    }

    .slide-content {
        left: 20px;
        bottom: 30px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 14px;
    }

    .slide-description {
        font-size: 12px;
        max-width: 90%;
    }

    .main-section .swiper-button-next,
    .main-section .swiper-button-prev {
        width: 40px;
        height: 40px;
        right: 15px;
    }

    .main-section .swiper-button-prev {
        left: 15px;
    }

    .main-section .swiper-button-next:after,
    .main-section .swiper-button-prev:after {
        font-size: 18px;
    }

    .main-section .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
    }


    .category-section {
        padding: 30px 60px;
    }

    /* 배너 섹션 */
    .section-banner {
        min-height: auto;
        aspect-ratio: auto;
        padding: 60px 0;
    }

    .section-banner-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
    }

    .section-banner-left {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .section-banner-title {
        font-size: 48px;
    }

    .section-banner-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .section-banner-right {
        width: 100%;
        justify-content: center;
    }

    .section-banner-steps,
    .section-banner-cer {
        max-height: 250px;
    }

    /* 콘텐츠 레이아웃 */
    .content {
        padding: 40px 0;
    }

    .content-container {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .content-layout {
        flex-direction: column;
        gap: 30px;
    }

    .content-top,
    .content-middle,
    .content-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .content-left,
    .content-right {
        width: 100%;
    }

    .content-right section {
        padding: 20px 15px 15px 15px;
    }

    .content-title {
        font-size: 22px;
    }


    /* Partner Swiper */
    .partner-swiper {
        height: auto;
    }

    /* Insights 섹션 */
    .tab-content{
        flex-direction: column;
    }

    .tab-content.active {
        gap: 80px;
    }

    .insights-section {
        padding: 20px 15px 15px 15px;
    }
    

    .tab-menu {
        gap: 20px;
        flex-wrap: wrap;
    }

    .tab-content.active {
        gap: 20px;
    }

    .community-content {
        flex-direction: column;
    }

    .community-left,
    .community-right {
        width: 100%;
    }
    

    .community-article {
        flex-direction: column;
        gap: 15px;
    }

    .community-article img {
        width: 100%;
        height: 200px;
    }

    .article-content {
        width: 100%;
    }

    .community-item>span {
        display: block;
        max-width: 80%;
    }

    .community-list {
        gap : 10px;
    }

    .community-list.last {
        border-bottom: none;
    }

    .community-item span {
        font-size: 12px;
    }

    .view-all {
        font-size: 14px;
        padding: 15px 0 0;
    }

    /* Highlights */
    .highlight-images {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    /* Store & Event */
    .store-event-container {
        flex-direction: column;
        gap: 30px;
    }

    .store-section,
    .event-section {
        width: 100%;
    }

    .store-grid-container {
        flex-direction: column;
    }

    .store-grid {
        width: 100%;
        height: auto;
    }

    .store-item-big {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .store-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .store-item-big {
        display: none;
    }

    .event-item {
        width: 50%;
        aspect-ratio: 1 / 1;
    }

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

    /* Course & Job Swiper */

    .course-swiper .swiper-slide img {
        height: 250px;
    }

    /* Values 섹션 */
    .values-section {
        padding: 40px 0 20px;
    }

    .values-container {
        padding: 0 20px;
    }

    .values-content {
        align-items: center;
        flex-direction: column;
        gap: 40px;
    }

    .values-divider {
        height: 1px;
        width: 100%;
    }
    .values-left {
        width: 100%;
    }


    .values-title {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .values-text-block{
        margin-bottom: 10px;
    }

    .values-main-text,
    .values-sub-text {
        font-size: 48px;
    }
    

    .values-right {
        width: 100%;
        height: auto;
    }

    .iso-logos {
        justify-content: center;
        margin-bottom: 20px;
    }

    .iso-circle {
        width: 200px;
        height: 200px;
    }

    .iso-text,
    .iso-number {
        font-size: 36px;
    }

    .iso-description {
        font-size: 20px;
    }

    .values-footer-text span {
        font-size: 12px;
    }


    .slogan-line {
        font-size: 1.5rem;
    }

    /* Notice & Contact */
    .notice-contact-section {
        padding: 40px 0;
        flex-direction: column;
    }

    .notice-contact-section>.container {
        width: 100%;
        flex-direction: column;
        padding: 0 20px;
    }

    .notice-section {
        width: 100%;
        padding-right: 0;
        padding-bottom: 40px;
        border-right: none;
    }

    .contact-section {
        width: 100%;
        padding-left: 0;
        padding-top: 0;
        align-items: center;
    }

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

    .contact-txt-box .section-title {
        font-size: 24px;
    }

    .notice-content h4 {
        font-size: 16px;
    }

    .notice-date {
        font-size: 14px;
    }

    /* 브랜드 쇼케이스 */

    .brand-title-over {
        font-size: 18px;
    }

    .brand-title-main {
        font-size: 36px;
    }

    .logo-chip {
        min-width: 150px;
        height: 70px;
        padding: 0 15px;
    }

    .logo-chip img {
        max-width: 120px;
        max-height: 35px;
    }

    .brand-hero {
        width: 100%;
        border-radius: 15px;
    }

    .brand-hero.fill-width {
        width: 100vw !important;
        border-radius: 0 !important;
        max-width: 100vw !important;
    }

    


}

@media (max-width: 480px) {

    .content-layout .content-title,
    .tab-btn {
        font-size: 22px;
    }



    /* 메인 슬라이드 */

    .main-section {
        overflow: hidden;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-subtitle {
        font-size: 12px;
    }

    /* 카테고리 */
    .category-section {
        padding: 30px 20px;
    }



    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-icon img {
        width: 30px;
        height: 30px;
    }

    .category-text {
        font-size: 14px;
    }

    /* 배너 섹션 */
    .section-banner {
        min-height: auto;
        aspect-ratio: auto;
        padding: 40px 0;
    }

    .section-banner-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .section-banner-left {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .section-banner-title {
        font-size: 32px;
    }

    .section-banner-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .section-banner-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .section-banner-steps,
    .section-banner-cer {
        max-height: 200px;
    }

    /* 콘텐츠 */
    .content-container {
        padding: 0 15px;
    }

    .content-title {
        font-size: 20px;
    }


    /* Partner Swiper */
    .partner-swiper {
        height: 180px;
    }

    .partner-swiper .swiper-slide {
        height: 180px;
    }

    /* community */

    .tab-menu {
        gap: 10px;
    }


    .community-article img {
        height: 150px;
    }

    .article-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .article-content p {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 4px;
    }

    .author {
        font-size: 12px;
    }

    /* job */

    .job-item {
        gap: 5px;
    }

    .job-date {
        font-size: 13px;
    }

    .job-item h4 {
        font-size: 15px;
        line-height: 1.2;
    }
    /* Highlights */
    .highlight-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Store */
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .store-item-big {
        width: 100%;
    }

    .workshop-grid {
        grid-template-columns: 1fr;
    }

    .event-items {
        gap: 15px;
    }

    /* Values */
    .values-title {
        font-size: 24px;
    }

    .values-main-text,
    .values-sub-text {
        font-size: 36px;
    }

    .iso-circle {
        width: 120px;
        height: 120px;
    }

    .iso-text,
    .iso-number {
        font-size: 28px;
    }

    .iso-description {
        font-size: 18px;
    }


    .slogan-line {
        font-size: 1.5rem;
        white-space: normal;
        word-break: break-word;
        line-height: 1.2;
    }

    /* Notice & Contact */
    .section-title {
        font-size: 22px;
    }

    .contact-txt-box .section-title {
        font-size: 20px;
    }

    .contact-icon {
        width: 150px;
        height: 150px;
        font-size: 50px;
    }

    .contact-text {
        font-size: 16px;
    }



    /* 브랜드 쇼케이스 */
    .brand-title-over {
        font-size: 16px;
    }

    .brand-title-main {
        font-size: 28px;
    }
    

    .logo-chip {
        min-width: 95px;
        height: 50px;
    }

    .logo-chip img {
        max-width: 80px;
        max-height: 25px;
    }

    /* 배너 섹션 */
    .section-banner {
        min-height: auto;
        padding: 40px 0;
    }

    .section-banner-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .section-banner-left {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .section-banner-title {
        font-size: 32px;
    }

    .section-banner-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .section-banner-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-banner-steps,
    .section-banner-cer {
        max-height: 200px;
    }
}

@media (max-width: 380px) {
    .slogan-line {
        font-size: 1rem;
    }
}

/* main.icon */
.social-icons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 11;
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

.social-icon:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease-in-out;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp { background: #25D366; }
.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.kakao { background: #FEE500; color: #3c1e1e; }

@media (max-width: 768px) {
    .social-icons {
        right: 15px;
        top: auto;
        bottom: 150px;
        gap: 15px;
        transform: none;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

}

@media (max-width: 380px) {
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* time banner */
/* 타임배너 (하단 고정) */
.time-banner {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 2000;
    background: #0F0F0F;
    color: #fff;
    border-radius: 999px;
    padding: 10px 30px;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 850px;
}

.time-banner .tb-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    background: #111;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.time-banner .tb-dday {
    color: #FF8F20;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -2px;
}

.time-banner .tb-clock {
    min-width: 180px;
    font-size: 30px;
    font-weight: 500;
    color: #EDEDED;
    letter-spacing: 2px;
}

.time-banner .tb-seats {
    font-size: 26px;
    color: #CFCFCF;
}

.time-banner .tb-seats .num {
    color: #2BD14B;
    font-weight: 700;
}

.time-banner .tb-btn {
    margin-left: auto;
    background: #FF8F20;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    box-sizing: border-box;
    font-weight: 700;
    cursor: pointer;
}

.time-banner .tb-subject {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    padding: 0 15px;
    background: transparent;
}

.time-banner .tb-close {
    margin-left: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #AFAFAF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

/* 접기/펼치기 버튼 (기본적으로 숨김) */
.time-banner .tb-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .time-banner {
        min-width: 700px;
        padding: 10px 25px;
        gap: 12px;
    }

    .time-banner .tb-item {
        padding: 0;
    }

    .time-banner .tb-subject {
        font-size: 14px;
        padding: 0 12px;
    }

    .time-banner .tb-dday {
        font-size: 30px;
    }
    
    .time-banner .tb-clock {
        min-width: 150px;
        font-size: 24px;
    }

    .time-banner .tb-seats {
        font-size: 20px;
    }
    
    .time-banner .tb-btn {
        padding: 8px 16px;
        font-size: 16px;
    }

    .time-banner .tb-close {
        width: 26px;
        height: 26px;
    }
}
@media (max-width: 768px) {
    .time-banner {
        min-width: unset;
        width: 100%;
        max-width: 100%;
        padding: 10px 14px;
        flex-wrap: wrap;
        gap: 8px;
        border-radius: 0;
        bottom: 0;
        justify-content: flex-start;
        align-items: center;
    }

    .time-banner .tb-item {
        padding: 5px 10px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .time-banner .tb-subject {
        order: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 4px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .time-banner .tb-dday {
        letter-spacing: -1px;
        order: 1;
    }
    
    .time-banner .tb-clock {
        letter-spacing: 0.5px;
        min-width: auto;
        order: 2;
    }
    
    .time-banner .tb-seats {
        order: 3;
    }

    .time-banner .tb-btn {
        padding: 7px 14px;
        font-size: 13px;
        font-weight: 600;
        margin-left: auto;
        flex-shrink: 0;
        order: 4;
    }

    .time-banner .tb-close {
        display: none;
    }

    /* 접기/펼치기 버튼 (768px 이하에서만 표시) */
    .time-banner .tb-toggle {
        display: flex;
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 25px;
        background: #0F0F0F;
        border: none;
        border-radius: 8px 8px 0 0;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 2002;
        transition: all 0.3s ease;
    }

    .time-banner .tb-toggle:hover {
        background: #1A1A1A;
    }

    .time-banner .tb-toggle i {
        transition: transform 0.3s ease;
    }

    .time-banner.collapsed .tb-toggle i {
        transform: rotate(180deg);
    }

    /* 접혔을 때 스타일 - 배너 완전히 숨김 */
    .time-banner.collapsed {
        transform: translateX(-50%) translateY(100%);
        overflow: hidden;
    }

    .time-banner.collapsed .tb-item,
    .time-banner.collapsed .tb-btn,
    .time-banner.collapsed .tb-close {
        opacity: 0;
        height: 0;
        padding: 0;
        margin: 0;
        overflow: hidden;
        display: none;
    }

    /* 접혔을 때 토글 버튼만 화면 하단에 고정 */
    .time-banner.collapsed .tb-toggle {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .time-banner .tb-item,
    .time-banner .tb-btn {
        transition: all 0.3s ease;
    }
}

@media (max-width: 480px) {
    .time-banner {
        padding: 8px 12px;
        gap: 6px;
    }

    .time-banner .tb-item {
        min-width: 100px;
        padding: 4px 8px;
        font-size: 15px;
    }

    .time-banner .tb-seats .num {
        font-size: 14px;
    }
    
    .time-banner .tb-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .time-banner .tb-toggle {
        width: 35px;
        height: 25px;
        font-size: 16px;
    }
}