/* ---------- 웹폰트 ---------- */
@font-face {
    font-family: 'NanumSquare Neo';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/NanumSquareNeo/NanumSquareNeoTTF-aLt.woff') format('woff');
}

@font-face {
    font-family: 'NanumSquare Neo';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/NanumSquareNeo/NanumSquareNeoTTF-bRg.woff') format('woff');
}

@font-face {
    font-family: 'NanumSquare Neo';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/NanumSquareNeo/NanumSquareNeoTTF-cBd.woff') format('woff');
}

@font-face {
    font-family: 'NanumSquare Neo';
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/NanumSquareNeo/NanumSquareNeoTTF-dEb.woff') format('woff');
}

@font-face {
    font-family: 'NanumBarunGothic';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/NanumBarunGothic/NanumBarunGothicBold.woff') format('woff');
}

:root {
    --primary: #0077d4;
    --blue-dark: #0257a6;
    --navy: #043672;
    --purple: #5a57cc;
    --yellow: #ffec6b;
    --ink: #212121;
    --ink-soft: #5b6675;
    --line: #80bbe9;
    --line2: #e2e7eb;
    --tint: #e6f4ff;
    --white: #ffffff;

    --grad-band: linear-gradient(120deg, var(--navy) 0%, var(--blue-dark) 55%, var(--primary) 100%);

    --radius: 10px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 15px 0 rgba(0, 119, 212, 0.2);;
    --shadow-md: 0 14px 40px rgba(0, 119, 212, .16);
    --wrap: 1280px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --font: 'NanumSquare Neo', -apple-system, 'Apple SD Gothic Neo', 'Malgun Gothic', 'Noto Sans KR', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -.01em;
    word-break: keep-all;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

ul, ol {
    list-style: none;
}

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}

.page {
    overflow: hidden;
}

/* ---------- 히어로 ---------- */
.hero {
    position: relative;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
}

.logo-bar {
    margin-bottom: 55px;
}

.logo-bar img {
    display: block;
    width: auto;
    height: 156px;
    object-fit: contain;
}

.hero-text {
    position: relative;
    padding-top: 20px;
    z-index: 6;
    margin-right: 70px;
}

.hero-eyebrow {
    margin-top: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-eyebrow span {
    display: inline-block;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    color: var(--primary);
    background-color: var(--tint);
    padding: 5px 10px;
}

.hero-title {
    font-size: clamp(56px, 6vw, 80px);
    font-family: 'NanumBarunGothic';
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: var(--navy);
}

.hero-title br {
    display: none;
}

.hero-title-en {
    margin-top: 20px;
    font-size: clamp(20px, 3vw, 36px);
    line-height: 1;
    font-weight: 800;
    color: var(--primary);
}

.info-wrap {
    position: relative;
    z-index: 1;
    margin: 10px auto 20px;
}

.info-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 70px;
    background-color: var(--white);
    box-shadow: 0 4px 15px 0 rgba(0, 119, 212, 0.2);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 24px;
}

.info-box {
    padding: 0 50px;
}

.info-box:first-child {
    padding-left: 0;
}

.info-box:last-child {
    padding-right: 0;
    border-left: 1px dashed #d5dee6;
}

.info-box-head {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 15px;
}

.info-box-ico {
    flex: none;
    width: 100px;
    height: auto;
}

.info-box-body {
    min-width: 0;
}

.info-box-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.info-box-desc {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.67;
    color: var(--ink);
}

.info-note-bar {
    padding: 9px 20px;
    background-color: var(--tint);
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 150px;
    padding-top: 20px;
}

.hero-sky {
    position: absolute;
    z-index: 1;
    top: -5%;
    right: -30%;
    width: 1055px;
    max-width: none;
    pointer-events: none;
}

.hero-sky-fade {
    display: none;
}

.hero-cloud {
    position: absolute;
    z-index: 0;
    max-width: none;
    pointer-events: none;
}

.hero-cloud-1 {
    width: 1335px;
    top: 15%;
    left: -135%;
    z-index: 2;
    animation: hero-cloud-drift 9s ease-in-out infinite alternate;
}

.hero-portrait {
    position: relative;
    z-index: 3;
    width: 361px;
}

.hero-cloud-2 {
    width: 887px;
    top: 80%;
    right: 24%;
    animation: hero-cloud-drift 7.5s ease-in-out infinite alternate-reverse;
    z-index: 4;
}

@keyframes hero-cloud-drift {
    from {
        transform: translateY(-32px);
    }
    to {
        transform: translateY(32px);
    }
}

.meaning-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.meaning-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 50px;
    box-shadow: 0 4px 15px 0 rgba(0, 119, 212, 0.2);
}

.meaning-col:first-child {
    padding-right: 50px;
}

.meaning-col:last-child {
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    border-left: 1px dashed #d5dee6;
}

.meaning-title {
    display: flex;
    margin-bottom: 10px;
}

.meaning-title span {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.slogan-list {
    display: grid;
    gap: 18px;
}

.slogan-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
}

.slogan-row dt {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.slogan-ico {
    display: flex;
    justify-content: center;
    flex: none;
    width: 90px;
    color: var(--primary);
    padding-top: 15px;
}

.slogan-label {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.slogan-desc {
    font-size: 18px;
    line-height: 1.53;
    font-weight: 700;
    color: var(--ink);
}

.logo-meaning {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-meaning-img {
    flex: none;
    width: 291px;
}

.logo-meaning-desc {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.53;
    color: var(--ink);
}

/* ---------- 국민참여 문화주간 ---------- */
.week-band-inner {
    display: grid;
    grid-template-columns: auto 1fr 1.2fr 1.2fr;
    align-items: center;
    gap: 0;
    padding: 45px 54px;
    color: var(--white);
    background-color: #0077d4;
    background-image: url(../images/bg-rectangle.png);
    background-repeat: repeat;
}

.week-band-label {
    position: relative;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.53;
    padding-right: 70px;
}

.week-band-item + .week-band-item {
    margin-left: 40px;
}

.week-band-arrow {
    position: absolute;
    width: 9px;
    height: 12px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.week-band-cap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 10px;
}

.week-band-date {
    font-size: 36.5px;
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: 1.16;
}

.week-band-date span {
    font-size: 30.5px;
}

.week-band-place-desc {
    font-size: 17px;
    line-height: 1.41;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -.04em;
}

/* ---------- 국민참여 콘텐츠 챌린지 ---------- */
.join-banner {
    padding: 50px 0 0;
}

.join-banner-inner {
    position: relative;
}

.join-banner-inner a {
    display: block;
    width: 100%;
}

.join-banner-inner img {
    display: block;
    width: 100%;
}

/* ---------- 주요 기념사업 ---------- */
.programs-section {
    padding: 50px 0;
}

.programs-title {
    text-align: center;
    font-size: clamp(26px, 3.4vw, 30px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.programs-swiper-wrap {
    position: relative;
}

.programs-swiper {
    position: relative;
    padding: 16px 16px 50px;
    margin: -16px -16px -50px;
}

.programs-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.programs-swiper .swiper-slide .program-card {
    width: 100%;
}

.programs-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}

.programs-nav-btn {
    position: absolute;
    top: calc(50% - 25px);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #80bbe9;
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    z-index: 2;
    transition: background .2s var(--ease);
}

.programs-nav-btn svg {
    width: 20px;
    height: 20px;
}

.programs-nav-prev {
    left: max(-64px, calc(8px - (100vw - 1280px) / 2));
}

.programs-nav-next {
    right: max(-64px, calc(8px - (100vw - 1280px) / 2));
}

.programs-nav-btn.swiper-button-disabled {
    opacity: 1;
    cursor: default;
    border: solid 1px #ddd;
    background-color: #fff;
    color: var(--ink);
}

.program-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 25px 20px;
    outline: solid 2px transparent;
    transition: box-shadow .25s var(--ease), outline-color .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease) !important;
}

.program-card:hover {
    box-shadow: inset 0 0 10px 0 rgba(0, 119, 212, 0.35), 0 10px 10px 0 rgba(0, 119, 212, 0.15);
    outline-color: #0077d4;
    background-color: #fff;
    transform: translateY(-2px);
}

.program-card-link {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.program-ico {
    flex: none;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    height: 54px;
}

.program-ico svg {
    width: 38px;
    height: 38px;
}

.program-body {
    min-width: 0;
}

.program-name {
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
    color: var(--primary);
    margin-bottom: 8px;
    min-height: 52px;
}

.program-desc {
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -.05em;
    color: var(--ink);
    margin-bottom: 20px;
    min-height: 52px;
}

.program-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    gap: 0 20px;
}

.swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    background-color: #dee3e7;
    opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    border: 5px solid #0077d4;
    opacity: 1;
}

.date-chip {
    position: relative;
    display: inline;
    color: var(--primary);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.date-chip::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 5px;
    width: 1px;
    height: 14px;
    border-left: 1px solid #80bbe9;
    margin-left: 10px;
}

.date-chip-group {
    display: inline-flex;
}

.date-chip-group .date-chip:not(:last-child)::after {
    content: ', ';
}

.program-loc {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
}

/* ---------- 홍보 영상 ---------- */
.video-section {
    padding: 50px 0;
}

.video-section .video {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 50px;
    background: #000;
}

.video-section .video iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.video-play {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 155px;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: transform .2s var(--ease), background .2s var(--ease);
}

.video-coming-soon {
    position: absolute;
    left: 50%;
    top: calc(50% + 77.5px + 24px);
    transform: translate(-50%, 0);
    color: #fff;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
    white-space: nowrap;
}

.video-download {
    position: fixed;
    z-index: 50;
    right: 24px;
    bottom: 24px;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 18px 10px 25px;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: 10px;
    box-shadow: 4px 0 10px rgba(2, 87, 166, .2);
    text-align: center;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.video-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.video-download-ico {
    display: flex;
    color: var(--primary);
}

.video-download-ico svg {
    width: 34px;
    height: 34px;
}

.video-download-text {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--primary);
}

.video-download-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    /*width: 26px;*/
    /*height: 26px;*/
    /*margin-top: 2px;*/
    /*border-radius: 50%;*/
    /*border: 1px solid var(--line);*/
}

.video-section .banner {
    aspect-ratio: 1280 / 240;
}

.video-section .banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------- 하단 CTA ---------- */
.cta-band {
    background-color: var(--blue-dark);
    padding: 50px 0 0;
}

.cta-band-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    width: calc(50% - 20px);
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #eef8ff;
    color: var(--primary);
    font-size: 26px;
    font-weight: 800;
    padding: 30px;
    line-height: 40px;
    letter-spacing: -0.025em;
    border-radius: 10px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.cta-btn.cta-btn-event {
    background-color: #fff;
}

.cta-btn.cta-btn-event .cta-btn-ico {
    margin-right: 7px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .24);
}

.cta-btn-ico {
    flex-shrink: 0;
    margin-right: 20px;
    font-size: 20px;
}

.cta-btn-arrow {
    margin-left: auto;
    font-size: 20px;
    transition: transform .2s var(--ease);
}

/* ---------- 카피라이트 ---------- */
.cta-copyright {
    margin-top: 50px;
    padding: 20px 20px 45px;
    border-top: 1px solid rgba(217, 228, 241, .2);
    text-align: center;
    font-size: 15px;
    color: #c5e2f9;
}

.cta-copyright .logo {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.cta-copyright .logo img {
    display: block;
}

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(90px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

/* ---------- 반응형: 태블릿 ---------- */
@media (max-width: 1280px) {
    .logo-wrap {
        padding: 0 20px;
    }

    .hero-inner {
        padding: 0 20px 20px;
    }

    .hero-visual {
        padding-right: 0;
    }

    .hero-sky {
        right: -80%;
    }

    .info-wrap {
        padding: 0 20px;
    }

    .info-panel {
        padding: 20px;
    }

    .info-box {
        padding: 0 20px;
    }

    .info-box:first-child {
        padding-left: 0;
    }

    .info-box:last-child {
        padding-right: 0;
    }

    .meaning-wrap {
        padding: 0 20px;
    }

    .join-banner {
        padding: 40px 20px;
    }

    .join-banner-inner {
        padding: 30px;
    }

    .meaning-card {
        padding: 30px;
    }

    .week-band-inner {
        grid-template-columns: auto 1fr 1fr;
        padding: 30px 20px;
        row-gap: 24px;
        column-gap: 0;
    }

    .week-band-item + .week-band-item {
        margin-left: 0;
    }

    .week-band-label {
        grid-row: span 2;
    }

    .week-band-place {
        grid-column: 2 / -1;
    }

    .programs-section {
        padding: 40px 20px 50px;
    }

    .programs-nav-btn {
        display: none;
    }

    .video-section {
        padding: 30px 20px 0;
    }

    .cta-band-inner {
        padding: 0 20px;
        gap: 20px;
    }

    .cta-btn {
        font-size: 22px;
        line-height: 30px;
        padding: 30px 20px;
        gap: 20px;
    }

    .cta-btn-ico,
    .cta-btn.cta-btn-event .cta-btn-ico {
        margin-right: 0;
    }

    .cta-btn img {
        width: 30px;
    }
}

@media (max-width: 960px) {
    .hero-inner {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .hero-text {
        margin-right: 0;
    }

    .hero-visual {
        order: -1;
        min-height: 0;
    }

    .hero-sky {
        display: none;
    }

    .hero-sky-fade {
        display: block;
        position: absolute;
        z-index: 1;
        top: -5%;
        right: -70%;
        width: 250%;
        height: 150%;
        background: radial-gradient(ellipse farthest-side at 50% 35%,
            rgba(129, 184, 228, .65) 0%,
            rgba(129, 184, 228, .4) 15%,
            rgba(129, 184, 228, .18) 30%,
            rgba(129, 184, 228, .06) 42%,
            rgba(129, 184, 228, 0) 52%);
        pointer-events: none;
    }

    .hero-cloud-1 {
        left: -170px;
    }

    .hero-portrait {
        width: 300px;
    }

    .hero-cloud-2 {
        width: 980px;
        top: 82%;
        right: 4%;
    }

    .info-grid {
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }

    .info-box {
        padding: 0;
    }

    .info-box:first-child {
        padding-bottom: 20px;
    }

    .info-box:last-child {
        padding-top: 20px;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .info-note-bar {
        margin-top: 20px;
    }

    .logo-meaning {
        flex-direction: column;
        text-align: center;
    }

    .meaning-wrap {
        margin-bottom: 52px;
    }

    .meaning-card {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }

    .meaning-col:first-child {
        padding-right: 0;
        padding-bottom: 24px;
    }

    .meaning-col:last-child {
        padding-left: 0;
        padding-top: 24px;
        border-left: 0;
        border-top: 2px dotted var(--line);
    }

    .week-band-date {
        font-size: 30px;
    }

    .video-play-icon {
        width: 80px;
        height: 80px;
    }

    .video-coming-soon {
        font-size: 24px;
        top: calc(50% + 40px + 16px);
    }

    .cta-btn {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .week-band-inner {
        grid-template-columns: 1fr;
    }

    .join-banner-inner {
        flex-wrap: wrap;
    }

    .join-banner-visual {
        display: none;
    }
}

/* ---------- 반응형: 모바일 ---------- */
@media (max-width: 640px) {
    .logo-bar {
        margin-bottom: 20px;
    }

    .logo-bar .logo {
        max-height: 100px;
    }

    .logo-unesco {
        height: 62px;
    }

    .logo-kimkoo {
        height: 58px;
    }

    .hero-title br {
        display: block;
    }

    .hero-title-en {
        color: var(--primary);
    }

    .hero-eyebrow span {
        font-size: 16px;
    }

    .info-box-title {
        font-size: 20px;
    }

    .info-box-head {
        gap: 20px;
        padding-left: 0;
    }

    .info-box-desc {
        font-size: 16px;
    }

    .info-note-bar {
        font-size: 18px;
    }

    .slogan-row {
        grid-template-columns: 60px 1fr;
    }

    .slogan-ico {
        width: 60px;
    }

    .slogan-desc {
        font-size: 16px;
    }

    .join-banner-inner {
        text-align: center;
        justify-content: center;
    }

    .join-banner-btn {
        width: 100%;
        justify-content: center;
    }

    .week-band-inner {
        grid-template-columns: 1fr;
        row-gap: 18px;
        padding: 25px 20px;
    }

    .week-band-label {
        font-size: 24px;
        padding-right: 0;
        padding-bottom: 4px;
    }

    .week-band-label br {
        display: none;
    }

    .week-band-label .space {
        display: inline-block;
        margin-left: 5px;
    }

    .week-band-arrow {
        display: none;
    }

    .week-band-item {
        padding: 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .22);
        padding-top: 16px;
    }

    .week-band-place {
        grid-column: auto;
        border-left: 0;
    }

    .week-band-date {
        font-size: 30px;
    }

    .week-band-date span {
        font-size: 24px;
    }

    .programs-title {
        margin-bottom: 32px;
    }

    /* 모바일: 현재 활성화된 카드 강조 (카드 요소 자체가 swiper-slide) */
    .programs-swiper .program-card.is-in,
    .programs-swiper .program-card.is-in:hover {
        opacity: .55;
        transform: scale(.96);
        box-shadow: none;
        outline-color: transparent;
    }

    .programs-swiper .program-card.swiper-slide-active.is-in,
    .programs-swiper .program-card.swiper-slide-active.is-in:hover {
        opacity: 1;
        transform: scale(1);
        box-shadow: inset 0 0 10px 0 rgba(0, 119, 212, 0.35), 0 10px 10px 0 rgba(0, 119, 212, 0.15);
        outline-color: #0077d4;
        background-color: #fff;
    }

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        border-width: 4px;
    }

    .video-download {
        width: 84px;
        padding: 12px 8px 10px;
        right: 10px;
        bottom: 10px;
        gap: 4px;
    }

    .video-download-ico svg {
        width: 26px;
        height: 26px;
    }

    .video-download-text {
        font-size: 11px;
    }

    .video-download-arrow {
        width: 22px;
        height: 22px;
    }

    .cta-band-inner {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        font-size: 16px;
        padding: 15px 20px;
        gap: 15px;
    }

    .cta-btn img {
        width: 20px;
    }

    .cta-copyright {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}