@font-face {
    font-family: "EKJ Gotham";
    src: url("../fonts/Gotham-Book.otf") format("opentype");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "EKJ Gotham";
    src: url("../fonts/Gotham-Bold.otf") format("opentype");
    font-display: swap;
    font-style: normal;
    font-weight: 700 950;
}

@font-face {
    font-family: "EKJ FEI Bold";
    src: url("../fonts/FEI-Bold.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700 950;
}

:root {
    --ekj-font-body: "EKJ Gotham", Arial, sans-serif;
    --ekj-font-title: "EKJ FEI Bold", Arial, sans-serif;
    --ekj-type-page-title: clamp(2rem, 3vw, 3.3rem);
    --ekj-type-section-title: clamp(1.25rem, 1.6vw, 1.38rem);
    --ekj-type-card-title: 1.2rem;
    --ekj-type-body: clamp(0.9rem, 1vw, 0.95rem);
    --ekj-type-label: 0.78rem;
    --ekj-type-action: 0.8rem;
    --ekj-leading-page-title: 1.02;
    --ekj-leading-section-title: 1.08;
    --ekj-leading-card-title: 1.2;
    --ekj-leading-body: 1.55;
    --ekj-leading-label: 1.1;
    --ekj-leading-action: 1;
    --ekj-green: #14342b;
    --ekj-green-dark: #0d241f;
    --ekj-gold: #FFB71D;
    --ekj-cream: #f7f4ed;
    --ekj-ink: #1f2a27;
    --motion-fast: 180ms;
    --motion-medium: 420ms;
    --motion-slow: 900ms;
    --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --motion-jump: cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
    font-family: var(--ekj-font-body);
    color: var(--ekj-ink);
}

button,
input,
select,
textarea,
.btn {
    font-family: var(--ekj-font-body);
}

.btn {
    line-height: normal !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
[class*="-title"] {
    font-family: var(--ekj-font-title);
}

.ekj-main {
    min-height: 90vh;
}

.ekj-pt-none {
    padding-top: 0;
}

.ekj-pb-none {
    padding-bottom: 0;
}

.ekj-pt-xs {
    padding-top: 0.85rem;
}

.ekj-pb-xs {
    padding-bottom: 0.85rem;
}

.ekj-pt-s {
    padding-top: 1.45rem;
}

.ekj-pb-s {
    padding-bottom: 1.45rem;
}

.ekj-pt-m {
    padding-top: 2.4rem;
}

.ekj-pb-m {
    padding-bottom: 2.4rem;
}

.ekj-pt-l {
    padding-top: 4.5rem;
}

.ekj-pb-l {
    padding-bottom: 4.5rem;
}

.ekj-pt-xl {
    padding-top: 5.5rem;
}

.ekj-pb-xl {
    padding-bottom: 5.5rem;
}

@media (min-width: 992px) {
    .ekj-pt-m {
        padding-top: 3rem;
    }

    .ekj-pb-m {
        padding-bottom: 3rem;
    }

    .ekj-pt-l {
        padding-top: 5.75rem;
    }

    .ekj-pb-l {
        padding-bottom: 5.75rem;
    }

    .ekj-pt-xl {
        padding-top: 7rem;
    }

    .ekj-pb-xl {
        padding-bottom: 7rem;
    }
}

.ekj-status-modal .modal-content {
    overflow: hidden;
    border-radius: 8px;
    background: #4b08a1;
    color: #ffffff;
}

.ekj-status-modal .modal-header {
    border-bottom: 0;
    background: #4b08a1;
    color: #ffffff;
}

.ekj-status-modal .modal-title {
    font-size: 1.35rem;
}

.ekj-status-modal .modal-body {
    padding: 1.4rem 1.5rem;
}

.ekj-status-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: #4b08a1;
}

.ekj-status-modal-error,
.ekj-status-modal-errors {
    color: #ffffff;
}

.ekj-status-modal-errors {
    padding-left: 1.15rem;
}

.ekj-status-modal-errors li::marker {
    color: #FFB71D;
}

.ekj-status-modal-errors li + li {
    margin-top: 0.45rem;
}

.ekj-status-modal .ekj-btn {
    --ekj-button-bg: #7454d1;
    --ekj-button-text: #ffffff;
}

.ekj-status-modal .ekj-btn:hover,
.ekj-status-modal .ekj-btn:focus {
    border-color: #ffffff;
    background: #ffffff;
    color: #4b08a1;
}

.motion-reveal {
    --motion-delay: 0ms;
    --motion-y: 14px;
    opacity: 0;
    transform: translateY(var(--motion-y));
    transition:
        opacity var(--motion-slow) var(--motion-ease),
        transform var(--motion-slow) var(--motion-ease);
    transition-delay: var(--motion-delay);
    will-change: opacity, transform;
}

.motion-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.motion-reveal--still {
    --motion-y: 0;
}

.motion-reveal--image {
    --motion-y: 10px;
}

.motion-reveal--icon {
    --motion-y: 8px;
}

.motion-stagger-1,
.row > .motion-reveal:nth-child(1),
.splide__slide.motion-reveal:nth-child(1),
.ekj-program-filter.motion-reveal:nth-child(1),
.ekj-hero-countdown-item.motion-reveal:nth-child(1) {
    --motion-delay: 0ms;
}

.motion-stagger-2,
.row > .motion-reveal:nth-child(2),
.splide__slide.motion-reveal:nth-child(2),
.ekj-program-filter.motion-reveal:nth-child(2),
.ekj-hero-countdown-item.motion-reveal:nth-child(2) {
    --motion-delay: 80ms;
}

.motion-stagger-3,
.row > .motion-reveal:nth-child(3),
.splide__slide.motion-reveal:nth-child(3),
.ekj-program-filter.motion-reveal:nth-child(3),
.ekj-hero-countdown-item.motion-reveal:nth-child(3) {
    --motion-delay: 160ms;
}

.motion-stagger-4,
.row > .motion-reveal:nth-child(4),
.splide__slide.motion-reveal:nth-child(4),
.ekj-program-filter.motion-reveal:nth-child(4),
.ekj-hero-countdown-item.motion-reveal:nth-child(4) {
    --motion-delay: 240ms;
}

.motion-stagger-5,
.row > .motion-reveal:nth-child(5),
.splide__slide.motion-reveal:nth-child(5),
.ekj-program-filter.motion-reveal:nth-child(5),
.ekj-hero-countdown-item.motion-reveal:nth-child(5) {
    --motion-delay: 310ms;
}

.row > .motion-reveal:nth-child(n+6),
.splide__slide.motion-reveal:nth-child(n+6),
.ekj-program-filter.motion-reveal:nth-child(n+6) {
    --motion-delay: 380ms;
}

.ekj-features .row > :nth-child(1) .motion-reveal,
.ekj-blog-overview .row > :nth-child(1) .motion-reveal,
.ekj-events-overview .row > :nth-child(1) .motion-reveal,
.ekj-gallery-overview .row > :nth-child(1) .motion-reveal,
.ekj-program-carousel .splide__slide:nth-child(1) .motion-reveal {
    --motion-delay: 0ms;
}

.ekj-features .row > :nth-child(2) .motion-reveal,
.ekj-blog-overview .row > :nth-child(2) .motion-reveal,
.ekj-events-overview .row > :nth-child(2) .motion-reveal,
.ekj-gallery-overview .row > :nth-child(2) .motion-reveal,
.ekj-program-carousel .splide__slide:nth-child(2) .motion-reveal {
    --motion-delay: 80ms;
}

.ekj-features .row > :nth-child(3) .motion-reveal,
.ekj-blog-overview .row > :nth-child(3) .motion-reveal,
.ekj-events-overview .row > :nth-child(3) .motion-reveal,
.ekj-gallery-overview .row > :nth-child(3) .motion-reveal,
.ekj-program-carousel .splide__slide:nth-child(3) .motion-reveal {
    --motion-delay: 160ms;
}

.ekj-features .row > :nth-child(4) .motion-reveal,
.ekj-blog-overview .row > :nth-child(4) .motion-reveal,
.ekj-events-overview .row > :nth-child(4) .motion-reveal,
.ekj-gallery-overview .row > :nth-child(4) .motion-reveal,
.ekj-program-carousel .splide__slide:nth-child(4) .motion-reveal {
    --motion-delay: 240ms;
}

.ekj-features .row > :nth-child(n+5) .motion-reveal,
.ekj-blog-overview .row > :nth-child(n+5) .motion-reveal,
.ekj-events-overview .row > :nth-child(n+5) .motion-reveal,
.ekj-gallery-overview .row > :nth-child(n+5) .motion-reveal,
.ekj-program-carousel .splide__slide:nth-child(n+5) .motion-reveal {
    --motion-delay: 310ms;
}

.ekj-event-list-panel tbody > tr.motion-reveal:nth-child(2),
.ekj-blog-detail-related .d-flex > .motion-reveal:nth-child(2) {
    --motion-delay: 80ms;
}

.ekj-event-list-panel tbody > tr.motion-reveal:nth-child(3),
.ekj-blog-detail-related .d-flex > .motion-reveal:nth-child(3) {
    --motion-delay: 160ms;
}

.ekj-event-list-panel tbody > tr.motion-reveal:nth-child(4),
.ekj-blog-detail-related .d-flex > .motion-reveal:nth-child(4) {
    --motion-delay: 240ms;
}

.ekj-event-list-panel tbody > tr.motion-reveal:nth-child(n+5),
.ekj-blog-detail-related .d-flex > .motion-reveal:nth-child(n+4) {
    --motion-delay: 310ms;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }

    .motion-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .ekj-program-swoosh-mask-draw {
        stroke-dashoffset: 0;
    }

    .ek-swoosh-mask__draw-ek {
        stroke-dashoffset: 0;
    }
}

.ekj-navigation-shell {
    position: relative;
    top: auto;
    z-index: 1040;
    margin-bottom: calc(-1 * (var(--ekj-floating-overlap) + var(--ekj-floating-gap)));
}

.ekj-navigation-page-section {
    position: relative;
    top: auto;
    z-index: 1040;
    margin-bottom: calc(-1 * var(--ekj-navigation-overlap, 140px));
}

.ekj-navigation-page-section > .ekj-navigation-shell {
    position: relative;
    top: auto;
    margin-bottom: 0;
}

@supports selector(.page-section:has(> .ekj-navigation-shell)) {
    .page-section:has(> .ekj-navigation-shell) {
        position: relative;
        top: auto;
        z-index: 1040;
        margin-bottom: calc(-1 * var(--ekj-navigation-overlap, 140px));
    }

    .page-section:has(> .ekj-navigation-shell) > .ekj-navigation-shell {
        position: relative;
        top: auto;
        margin-bottom: 0;
    }
}

.ekj-top-nav {
    position: relative;
    z-index: 1060;
    min-height: var(--ekj-topbar-height);
    background: var(--ekj-topbar-bg);
    color: var(--ekj-topbar-text);
}

.ekj-top-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--ekj-topbar-height);
    gap: 1.5rem;
}

.ekj-website-switcher,
.ekj-top-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ekj-top-actions {
    margin-left: auto;
    gap: var(--ekj-topbar-action-gap);
}

.ekj-switcher-link,
.ekj-top-link,
.ekj-language-toggle,
.ekj-language-static {
    position: relative;
    color: var(--ekj-topbar-text);
    font-size: var(--ekj-topbar-font-size);
    font-weight: var(--ekj-topbar-font-weight);
    line-height: 1;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.32);
    text-transform: uppercase;
    white-space: nowrap;
}

.ekj-switcher-link {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.35rem 0.5rem;
    border: 1px solid transparent;
    border-radius: var(--ekj-switcher-radius);
}

.ekj-top-actions > a.ekj-top-link::before,
.ekj-nav-link:not(.dropdown-toggle)::after,
.ekj-footer-nav a::after,
.ekj-footer-languages a::after {
    position: absolute;
    right: 0;
    bottom: -0.28rem;
    left: 0;
    height: 2px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: all 0.3s ease;
}

.ekj-top-actions > a.ekj-top-link:hover::before,
.ekj-top-actions > a.ekj-top-link:focus-visible::before,
.ekj-nav-link:not(.dropdown-toggle):hover::after,
.ekj-nav-link:not(.dropdown-toggle):focus-visible::after,
.ekj-footer-nav a:hover::after,
.ekj-footer-nav a:focus-visible::after,
.ekj-footer-languages a:hover::after,
.ekj-footer-languages a:focus-visible::after {
    transform: scaleX(1);
}

.ekj-switcher-link.active,
.ekj-switcher-link:not(.active):hover,
.ekj-switcher-link:not(.active):focus-visible {
    border-color: var(--ekj-switcher-border);
    background: var(--ekj-switcher-active-bg);
    font-weight: 600;
}

.ekj-switcher-link:hover,
.ekj-switcher-link:focus,
.ekj-top-link:hover,
.ekj-top-link:focus,
.ekj-language-toggle:hover,
.ekj-language-toggle:focus {
    color: #ffffff;
    opacity: 0.78;
}

.ekj-language-toggle {
    padding: 0;
    border: 0;
    background: transparent;
}

.ekj-language-toggle::after {
    margin-left: 0.45rem;
    vertical-align: 0.12em;
}

.ekj-language-static {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.ekj-language-menu {
    min-width: 5rem;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.11);
    background: var(--ekj-topbar-bg);
    color: var(--ekj-topbar-text);
}

.ekj-language-menu .dropdown-item {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ekj-language-menu .dropdown-item.active {
    background-color: var(--ekj-accent) !important;
}

.ekj-floating-nav-wrap {
    position: relative;
    z-index: 1050;
    margin: var(--ekj-floating-gap) auto 0;
}

.ekj-floating-nav {
    min-height: var(--ekj-floating-overlap);
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ekj-navigation-shell.ekj-is-scrolled .ekj-floating-nav {
    box-shadow: none;
}

.ekj-nav-logo {
    display: block;
    width: auto;
    max-width: min(var(--ekj-logo-width), 25vw);
    object-fit: contain;
    object-position: left center;
    border-radius: 6px;
    background-color: #fff;
    padding: 1rem;
}

.ekj-nav-logo-link {
    margin-right: 2rem;
}

.ekj-floating-nav .navbar-collapse {
    flex-grow: 1;
}

.ekj-floating-nav .navbar-nav {
    column-gap: clamp(1.25rem, 3.4vw, 4rem);
}

.ekj-nav-link {
    position: relative;
    color: var(--ekj-floating-text) !important;
    font-size: 0.875rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 !important;
}

.ekj-nav-link:hover,
.ekj-nav-link:focus,
.ekj-nav-dropdown .dropdown-item:hover,
.ekj-nav-dropdown .dropdown-item:focus {
    color: var(--ekj-accent) !important;
}

.ekj-nav-link.active{
    color: var(--ekj-accent) !important;
}

.ekj-nav-link.active::after{
    position: absolute;
    right: 0;
    bottom: -0.28rem;
    left: 0;
    height: 2px;
    background: currentColor;
    content: "";
    transform: scaleX(1);
    transform-origin: left center;
    transition: all 0.3s ease;
}

.ekj-nav-dropdown {
    border: 0;
    border-radius: 6px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.11);
}

.ekj-nav-dropdown .dropdown-item {
    color: var(--ekj-floating-text) !important;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.navbar-toggler{
    background-color: #4B0A57 !important;
    border: none !important;
}


.ekj-nav-toggler .navbar-toggler-icon {
    color: #fff;
    filter: brightness(0) invert(1);
}

.navbar-toggler:focus{
    box-shadow: none !important;
}

.ekj-btn {
    --ekj-button-bg: var(--ekj-accent, var(--ekj-gold));
    --ekj-button-text: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--ekj-button-bg);
    border-radius: 8px;
    background: var(--ekj-button-bg);
    color: var(--ekj-button-text);
    font-weight: 800;
    text-decoration: none;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-btn:hover,
.ekj-btn:focus {
    border-color: var(--ekj-green);
    background: var(--ekj-green);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(13, 36, 31, 0.16);
    transform: translateY(-3px);
}

.ekj-btn:active {
    transform: scale(0.98);
}

.ekj-cta-section {
    background: var(--ekj-cta-section-bg);
}

.ekj-cta-panel {
    min-height: 78px;
    padding: clamp(1rem, 1.35vw, 1.3rem) clamp(1.1rem, 2vw, 2rem);
    border: 1px solid rgba(75, 8, 161, 0.06);
    border-radius: 6px;
    background: var(--ekj-cta-panel-bg);
    box-shadow: 0 6px 18px rgba(25, 35, 48, 0.06);
}

.ekj-cta-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--ekj-cta-accent);
    font-size: 1.25rem;
    line-height: 1;
}

.ekj-cta-icon--filled {
    border-color: var(--ekj-cta-accent);
    background: var(--ekj-cta-accent);
    color: #ffffff;
}

.ekj-cta-icon img {
    object-fit: contain;
}

.ekj-cta-title {
    color: var(--ekj-cta-title);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-cta-text {
    max-width: 740px;
    color: var(--ekj-cta-text);
    font-size: 0.78rem;
    line-height: 1.45;
}

.ekj-cta-text p {
    margin-bottom: 0;
}

.ekj-cta-button {
    --bs-btn-padding-x: 1.35rem;
    --bs-btn-padding-y: 0.68rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 0.8rem;
    --bs-btn-font-weight: 900;
    --bs-btn-color: var(--ekj-cta-button-text);
    --bs-btn-bg: var(--ekj-cta-button-bg);
    --bs-btn-border-color: var(--ekj-cta-button-bg);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ekj-cta-accent);
    --bs-btn-hover-border-color: var(--ekj-cta-accent);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ekj-cta-accent);
    --bs-btn-active-border-color: var(--ekj-cta-accent);
    min-width: min(100%, 240px);
    min-height: 42px;
    box-shadow: 0 5px 12px rgba(25, 35, 48, 0.06);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-cta-button:hover,
.ekj-cta-button:focus-visible {
    box-shadow: 0 10px 22px rgba(75, 8, 161, 0.16);
    transform: translateY(-2px);
}

.ekj-cta-button:active {
    transform: scale(0.98);
}

.ekj-cta-panel--social {
    min-height: 76px;
}

.ekj-cta-socials {
    color: var(--ekj-cta-title);
}

.ekj-cta-social-link {
    width: 1.8rem;
    height: 1.8rem;
    color: inherit;
    font-size: 1.25rem;
    line-height: 1;
    text-decoration: none;
    transition:
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-cta-social-link:hover,
.ekj-cta-social-link:focus-visible {
    color: var(--ekj-cta-accent);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .ekj-cta-panel {
        align-items: center !important;
        text-align: center !important;
    }

    .ekj-cta-button {
        width: 100%;
    }

    .ekj-cta-socials {
        justify-content: center;
        width: 100%;
    }

    .ekj-nav-link {
        padding: 8px !important;
        color: var(--ekj-floating-text) !important;
        text-shadow: none;
    }
}

.ekj-hero {
    isolation: isolate;
    z-index: 2;
    overflow-x: clip;
    overflow-y: visible;
    clip-path: inset(-40vh 0 -40vh 0);
    background-image: var(--ekj-hero-image);
    background-position: var(--ekj-hero-bg-position);
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--ekj-hero-text-color);
}

.ekj-hero--swoosh-overflow {
    overflow-y: visible;
    clip-path: inset(0 0 -45vh 0);
}

.ekj-hero-animation {
    --ekj-hero-horse-left: 37.73%;
    --ekj-hero-horse-bottom: 0%;
    --ekj-hero-horse-height: 100%;
    --ekj-hero-horse-width: 62.27%;
    --ekj-hero-swoosh-left: -2%;
    --ekj-hero-swoosh-bottom: -5%;
    --ekj-hero-swoosh-width: 110%;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow-x: clip;
    overflow-y: visible;
    pointer-events: none;
    transform: translateZ(0);
}

.ekj-hero-animation::after {
    position: absolute;
    inset: 0;
    z-index: 5;
    background:
        linear-gradient(90deg, rgba(18, 0, 22, 0.36) 0%, rgba(18, 0, 22, 0.2) 44%, rgba(18, 0, 22, 0.04) 100%),
        linear-gradient(180deg, rgba(18, 0, 22, 0) 0%, rgba(18, 0, 22, 0.14) 100%);
    content: "";
}

.ekj-hero-animation img {
    display: block;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

.ekj-hero-animation-bg,
.ekj-hero-animation-bg img,
.ekj-hero-animation-pole,
.ekj-hero-animation-pole img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ekj-hero-animation-bg {
    z-index: 0;
    background-color: #120016;
    transform-origin: 50% 50%;
    will-change: transform, filter;
}

.ekj-hero-animation-bg img,
.ekj-hero-animation-pole img {
    object-fit: cover;
    object-position: var(--ekj-hero-bg-position);
}

.ekj-hero-animation-swoosh,
.ek-hero__swoosh-svg {
    position: absolute;
    left: var(--ekj-hero-swoosh-left);
    bottom: var(--ekj-hero-swoosh-bottom);
    z-index: 6;
    width: var(--ekj-hero-swoosh-width);
    height: auto;
    overflow: visible;
    transform: translateZ(0);
    will-change: opacity, filter;
}

.ekj-hero-animation-swoosh-path,
.ek-swoosh-mask__draw {
    fill: none;
    stroke-width: 78;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    will-change: stroke-dashoffset;
}

.ek-swoosh-mask__draw {
    stroke: #ffffff;
}

.ek-swoosh-mask__draw-ek {
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    will-change: stroke-dashoffset;
}

.ek-hero__swoosh-shape {
    pointer-events: none;
}

.ekj-hero-animation--ek {
    --ekj-hero-horse-left: 30%;
    --ekj-hero-horse-bottom: 0%;
    --ekj-hero-horse-height: 100%;
    --ekj-hero-horse-width: 66%;
    --ekj-hero-swoosh-left: 18%;
    --ekj-hero-swoosh-bottom: -8%;
    --ekj-hero-swoosh-width: 82%;
}

.ekj-hero-animation--ek::after {
    z-index: 5;
    background:
        linear-gradient(90deg, rgba(10, 0, 14, 0.72) 0%, rgba(10, 0, 14, 0.5) 36%, rgba(10, 0, 14, 0.12) 68%, rgba(10, 0, 14, 0.02) 100%),
        linear-gradient(180deg, rgba(10, 0, 14, 0.24) 0%, rgba(10, 0, 14, 0.34) 100%);
}

.ekj-hero-animation--ek .ek-hero__swoosh-svg {
    z-index: 6;
}

.ekj-hero-animation--ek .ekj-hero-animation-horse-wrap {
    z-index: 3;
}

.ekj-hero-animation--ek .ekj-hero-animation-pole {
    inset: auto auto 0 50%;
    z-index: 4;
    width: clamp(480px, 66vw, 1080px);
    height: auto;
    overflow: clip;
    transform: translateX(-50%);
}

.ekj-hero-animation--ek .ekj-hero-animation-pole img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    transform: translateY(10%);
}

.ekj-hero-animation-horse-wrap {
    position: absolute;
    bottom: var(--ekj-hero-horse-bottom);
    left: var(--ekj-hero-horse-left);
    z-index: 3;
    width: var(--ekj-hero-horse-width);
    height: var(--ekj-hero-horse-height);
    transform-origin: 60% 72%;
    will-change: transform, filter, opacity;
}

.ekj-hero-animation-horse {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.ekj-hero-animation-shadow {
    position: absolute;
    left: 22%;
    bottom: 6%;
    z-index: -1;
    width: 58%;
    height: 8%;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.24);
    filter: blur(18px);
    opacity: 0;
    transform: scaleX(0.72);
    transform-origin: 50% 50%;
    will-change: opacity, transform;
}

.ekj-hero-animation-pole {
    z-index: 4;
    opacity: 1;
    will-change: opacity, filter;
}

.ekj-hero-animation.is-loading .ekj-hero-animation-horse-wrap,
.ekj-hero-animation.is-loading .ekj-hero-animation-swoosh,
.ekj-hero-animation.is-loading .ek-hero__swoosh-svg,
.ekj-hero-animation.is-loading .ekj-hero-animation-pole {
    opacity: 0;
}

.ekj-hero-animation.is-ready .ekj-hero-animation-bg {
    animation: ekj-hero-bg-cinematic-settle 2000ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ekj-hero-animation.is-ready .ekj-hero-animation-horse-wrap {
    animation:
        ekj-hero-horse-jump-in 1850ms cubic-bezier(0.18, 0.86, 0.25, 1) 80ms both,
        ekj-hero-horse-alive 4200ms ease-in-out 1950ms infinite;
}

.ekj-hero-animation.is-ready .ekj-hero-animation-shadow {
    animation: ekj-hero-horse-shadow 1850ms cubic-bezier(0.18, 0.86, 0.25, 1) 80ms both;
}

.ekj-hero-animation.is-ready .ekj-hero-animation-swoosh-path,
.ekj-hero-animation.is-ready .ek-swoosh-mask__draw {
    animation: ekj-hero-swoosh-draw 2020ms cubic-bezier(0.65, 0, 0.22, 1) both;
}

.ekj-hero-animation--ek.is-ready .ek-swoosh-mask__draw-ek {
    animation-name: ekj-hero-swoosh-draw;
}

.ekj-hero-animation.is-static .ekj-hero-animation-swoosh-path,
.ekj-hero-animation.is-static .ek-swoosh-mask__draw {
    stroke-dashoffset: 0;
}

.ekj-hero-animation--ek.is-static .ek-swoosh-mask__draw-ek {
    stroke-dashoffset: 0;
}

.ekj-hero-animation.is-static .ekj-hero-animation-swoosh,
.ekj-hero-animation.is-static .ek-hero__swoosh-svg,
.ekj-hero-animation.is-static .ekj-hero-animation-shadow,
.ekj-hero-animation.is-static .ekj-hero-animation-pole {
    opacity: 1;
    filter: none;
}

.ekj-hero-inner {
    --ekj-hero-content-offset-top: 56px;
    margin-top: var(--ekj-hero-content-offset-top) !important;
}

@media (min-width: 992px) {
    .ekj-navigation-page-section + .page-section > :is(.ekj-hero, .ekj-page-hero) .ekj-hero-inner,
    .ekj-navigation-page-section + .page-section > :is(.ekj-event-detail, .ekj-blog-detail, .ekj-gallery-detail) > :is(.ekj-event-detail-hero, .ekj-blog-detail-hero, .ekj-gallery-detail-hero) .ekj-hero-inner {
        --ekj-hero-content-offset-top: calc(var(--ekj-navigation-overlap, 140px) + 28px);
    }

    .ekj-navigation-page-section ~ .page-section .ekj-navigation-offset-header .ekj-hero-inner {
        --ekj-hero-content-offset-top: calc(var(--ekj-navigation-overlap, 140px) + 28px);
    }

    @supports selector(.page-section:has(> .ekj-navigation-shell)) {
        .page-section:has(> .ekj-navigation-shell) + .page-section > :is(.ekj-hero, .ekj-page-hero) .ekj-hero-inner,
        .page-section:has(> .ekj-navigation-shell) + .page-section > :is(.ekj-event-detail, .ekj-blog-detail, .ekj-gallery-detail) > :is(.ekj-event-detail-hero, .ekj-blog-detail-hero, .ekj-gallery-detail-hero) .ekj-hero-inner {
            --ekj-hero-content-offset-top: calc(var(--ekj-navigation-overlap, 140px) + 28px);
        }

        .page-section:has(> .ekj-navigation-shell) ~ .page-section .ekj-navigation-offset-header .ekj-hero-inner {
            --ekj-hero-content-offset-top: calc(var(--ekj-navigation-overlap, 140px) + 28px);
        }
    }
}

.ekj-hero-copy {
    max-width: 620px;
}

.ekj-hero-eyebrow {
    color: var(--ekj-hero-eyebrow-color);
    font-size: clamp(1.12rem, 1.65vw, 1.58rem);
    font-weight: 950;
    line-height: 1.1;
}

.ekj-min-height-small {
    min-height: 420px;
}

.ekj-min-height-medium {
    min-height: 560px;
}

.ekj-min-height-large {
    min-height: calc(100vh - 56px);
}

.ekj-hero-title {
    max-width: 610px;
    color: var(--ekj-hero-title-color);
    font-size: clamp(2rem, 3.5vw, 4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.ekj-hero-text {
    max-width: 430px;
    color: var(--ekj-hero-text-color);
    font-size: clamp(1.42rem, 2.18vw, 2rem);
    font-weight: 400;
    line-height: 1.08;
}

.ekj-hero-text-sm {
    font-size: var(--ekj-type-body) !important;
    line-height: var(--ekj-leading-body) !important;
}

.ekj-hero-button {
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: 0.78rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 1.02rem;
    --bs-btn-font-weight: 900;
    --bs-btn-line-height: 1;
    --bs-btn-border-width: 1px;
    min-height: 42px;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-hero-button:hover,
.ekj-hero-button:focus-visible {
    box-shadow: 0 10px 24px rgba(22, 0, 29, 0.22);
    transform: translateY(-3px);
}

.ekj-hero-button:active {
    transform: scale(0.98);
}

.ekj-hero-button-primary {
    --bs-btn-color: var(--ekj-hero-primary-text);
    --bs-btn-bg: var(--ekj-hero-primary-bg);
    --bs-btn-border-color: var(--ekj-hero-primary-bg);
    --bs-btn-hover-color: #16001d;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-active-color: #16001d;
    --bs-btn-active-bg: #ffffff;
    --bs-btn-active-border-color: #ffffff;
}

.ekj-hero-button-secondary {
    --bs-btn-color: var(--ekj-hero-secondary-text);
    --bs-btn-bg: var(--ekj-hero-secondary-bg);
    --bs-btn-border-color: var(--ekj-hero-secondary-border);
    --bs-btn-hover-color: #16001d;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-active-color: #16001d;
    --bs-btn-active-bg: #ffffff;
    --bs-btn-active-border-color: #ffffff;
}

.ekj-landing {
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
    background:
        radial-gradient(circle at 50% 15%, rgba(94, 47, 168, 0.38) 0%, rgba(35, 6, 68, 0.34) 27%, rgba(8, 0, 24, 0) 56%),
        linear-gradient(180deg, rgba(13, 0, 36, 0.96) 0%, rgba(8, 0, 24, 0.98) 58%, rgba(5, 0, 17, 1) 100%),
        var(--ekj-landing-bg);
    color: var(--ekj-landing-text);
}

.ekj-landing-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ekj-landing-bg::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 0, 24, 0.05) 0%, rgba(8, 0, 24, 0.62) 100%),
        radial-gradient(circle at 5% 16%, rgba(123, 76, 255, 0.18) 0%, rgba(123, 76, 255, 0) 23%),
        radial-gradient(circle at 92% 18%, rgba(241, 53, 30, 0.16) 0%, rgba(241, 53, 30, 0) 24%);
    content: "";
}

.ekj-landing-bg-layer {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 45%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.09;
    filter: saturate(0.85) contrast(1.05);
    mix-blend-mode: screen;
}

.ekj-landing-bg-layer--left {
    left: -16%;
    background-image: url("/frontend/themes/ek-jumping/assets/images/hero-background-layer.jpg");
    background-position: center center;
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.68) 48%, transparent 100%);
}

.ekj-landing-bg-layer--right {
    right: -15%;
    background-image: url("/frontend/themes/ek-jumping/assets/images/hero-background-layer-ek.png");
    background-position: center center;
    mask-image: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0.62) 46%, transparent 100%);
}

.ekj-landing-header {
    max-width: 700px;
}

.ekj-landing-language-switcher {
    position: absolute;
    top: clamp(1.25rem, 3vw, 2.5rem);
    right: clamp(1.25rem, 4vw, 4rem);
    z-index: 3;
}

.ekj-landing-header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ekj-landing-header-content {
    max-width: 650px;
    min-width: 0;
}

.ekj-landing-title {
    color: var(--ekj-landing-title);
    font-family: var(--ekj-font-body);
    font-size: clamp(2rem, 3.55vw, 3.65rem);
    font-weight: 900;
    line-height: 1.02;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.ekj-landing-title::after {
    display: none;
}

.ekj-landing-subtitle {
    color: var(--ekj-landing-text);
    font-size: clamp(0.92rem, 1vw, 1.05rem);
    line-height: 1.35;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.42);
}

.ekj-landing-subtitle p {
    margin-bottom: 0.2rem;
}

.ekj-landing-card-row {
    width: 100%;
    max-width: 1120px;
    margin-top: clamp(1rem, 2vh, 1.8rem) !important;
}

.ekj-landing-card-row > [class*="col-"] {
    display: flex;
    justify-content: center;
}

.ekj-landing-media-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ekj-landing-card {
    --ekj-landing-card-accent: #312c72;
    --ekj-landing-card-scene-top: -14%;
    position: relative;
    display: flex;
    width: 100%;
    max-width: 420px;
    min-height: clamp(430px, 45vw, 540px);
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(8, 0, 24, 0.26) 0%, rgba(8, 0, 24, 0.88) 68%, rgba(8, 0, 24, 0.96) 100%),
        color-mix(in srgb, var(--ekj-landing-card-accent) 18%, rgba(8, 0, 24, 0.84));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-landing-fade {
    --motion-slow: 1400ms;
}

.ekj-landing-card.ekj-landing-fade {
    transition:
        opacity var(--motion-slow) var(--motion-ease),
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
    transition-delay: var(--motion-delay), 0ms, 0ms, 0ms;
}

.ekj-landing-card-row > :nth-child(1) .ekj-landing-fade {
    --motion-delay: 240ms;
}

.ekj-landing-card-row > :nth-child(2) .ekj-landing-fade {
    --motion-delay: 480ms;
}

.ekj-landing-card::before {
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(8, 0, 24, 0.08) 0%, rgba(8, 0, 24, 0.2) 42%, rgba(8, 0, 24, 0.7) 100%),
        linear-gradient(180deg, color-mix(in srgb, var(--ekj-landing-card-accent) 34%, transparent) 0%, transparent 52%);
    content: "";
    pointer-events: none;
}

.ekj-landing-card-media {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    width: 50%;
    height: 100%;
    opacity: 0.54;
    background: #d3dce8;
}

.ekj-landing-card-media--right {
    right: 0;
    left: auto;
}

.ekj-landing-card-media::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 35%),
        linear-gradient(180deg, rgba(18, 0, 22, 0.02) 0%, rgba(18, 0, 22, 0.68) 100%);
    content: "";
}

.ekj-landing-card-hero-bg,
.ekj-landing-card-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ekj-landing-card-hero-bg {
    z-index: 0;
    background: #120016;
    transform-origin: center center;
    animation: ekj-hero-bg-cinematic-settle 2400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ekj-landing-card-hero-bg img {
    object-fit: cover;
    object-position: center top;
}

.ekj-landing-card-hero-bg img,
.ekj-landing-card-horse,
.ekj-landing-card-pole,
.ekj-landing-card-swoosh {
    display: block;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

.ekj-landing-card-hero-bg img {
    position: relative;
    z-index: 0;
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-landing-card-swoosh {
    position: absolute;
    z-index: 4;
    height: auto;
    overflow: visible;
    filter: drop-shadow(0 8px 15px rgba(18, 0, 22, 0.12));
    opacity: 0.92;
    transform-origin: center center;
}

.ekj-landing-card-swoosh--ek {
    top: 14%;
    right: 6%;
    width: 100%;
    z-index: 10;
}

.ekj-landing-card-swoosh--jvhp {
    top: 28%;
    right: -15%;
    width: 128%;
}

.ekj-landing-card-swoosh-mask {
    animation: ekj-hero-swoosh-draw 2220ms cubic-bezier(0.65, 0, 0.22, 1) both;
}

.ekj-landing-card-horse,
.ekj-landing-card-pole {
    position: absolute;
    z-index: 3;
    height: auto;
    object-fit: contain;
    object-position: center top;
}

.ekj-landing-card-horse {
    transform-origin: 60% 72%;
    animation:
        ekj-hero-horse-jump-in 1850ms cubic-bezier(0.18, 0.86, 0.25, 1) 80ms both,
        ekj-hero-horse-alive 4200ms ease-in-out 1950ms infinite;
}

.ekj-landing-card-pole {
    animation: ekj-landing-layer-fade 1200ms ease 180ms both;
}

.ekj-landing-card-horse--ek {
    top: 13%;
    right: -12%;
    width: 89%;
}

.ekj-landing-card-pole--ek {
    top: 22%;
    right: -2%;
    z-index: 4;
    width: 92%;
    transform: translateY(10%);
}

.ekj-landing-card-horse--jvhp {
    bottom: 0;
    right: -26%;
    width: 94%;
}

.ekj-landing-card-pole--jvhp {
    bottom: 0%;
    right: -18%;
    z-index: 4;
    width: 106%;
}

.ekj-landing-card-body {
    position: relative;
    z-index: 6;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(1.25rem, 2vw, 1.9rem) clamp(1rem, 1.8vw, 1.65rem) clamp(1.45rem, 2.4vw, 2.15rem);
}

.ekj-landing-card-icon {
    width: 40%;
    object-fit: contain;
}

.ekj-landing-card-title {
    color: #ffffff;
    font-family: var(--ekj-font-body);
    font-size: clamp(1.35rem, 1.9vw, 1.85rem);
    font-weight: 900;
    line-height: 1.05;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.ekj-landing-card-rule {
    width: 48px;
    height: 1px;
    background: #ffffff;
    opacity: 0.76;
}

.ekj-landing-card-text {
    max-width: 330px;
    color: #ffffff;
    font-size: clamp(0.82rem, 0.92vw, 0.94rem);
    line-height: 1.5;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.ekj-landing-card-text p {
    margin-bottom: 0.25rem;
}

.ekj-landing-card-button {
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-padding-y: 0.72rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 0.78rem;
    --bs-btn-font-weight: 900;
    --bs-btn-line-height: 1;
    --bs-btn-color: #ffffff;
    --bs-btn-bg: rgba(8, 0, 24, 0.36);
    --bs-btn-border-color: rgba(255, 255, 255, 0.72);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ekj-landing-card-accent);
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ekj-landing-card-accent);
    --bs-btn-active-border-color: #ffffff;
    min-width: min(100%, 260px);
    min-height: 42px;
    backdrop-filter: blur(8px);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-landing-card:hover,
.ekj-landing-card:focus-within {
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
    transform: translateY(-4px);
}

.ekj-landing-card:hover .ekj-landing-card-hero-bg img,
.ekj-landing-card:focus-within .ekj-landing-card-hero-bg img {
    transform: scale(1.035);
}

.ekj-landing-card:hover .ekj-landing-card-swoosh,
.ekj-landing-card:focus-within .ekj-landing-card-swoosh {
    opacity: 1;
}

.ekj-landing-card-button:active {
    transform: scale(0.98);
}

@keyframes ekj-landing-layer-fade {
    0% {
        opacity: 0;
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        filter: none;
    }
}

@media (min-width: 992px) {
    .ekj-landing {
        height: 100vh;
        height: 100svh;
        max-height: 100vh;
        max-height: 100svh;
    }

    .ekj-landing::after {
        position: absolute;
        inset: 0;
        z-index: 0;
        background:
            linear-gradient(90deg, rgba(8, 0, 24, 0.18) 0%, rgba(49, 19, 58, 0.42) 34%, #31133a 50%, rgba(49, 19, 58, 0.42) 66%, rgba(8, 0, 24, 0.18) 100%),
            radial-gradient(ellipse at 50% 50%, #31133a 0%, rgba(49, 19, 58, 0.86) 18%, rgba(49, 19, 58, 0) 46%),
            radial-gradient(circle at 50% 52%, rgba(49, 19, 58, 0.72) 0%, rgba(49, 19, 58, 0) 22%);
        content: "";
        pointer-events: none;
    }

    .ekj-landing-card-media {
        top: 0;
        bottom: 0;
        width: 50%;
        min-height: 100%;
        height: 100%;
        border-radius: 0;
        opacity: 0.54;
    }

    .ekj-landing-card-media--left {
        right: auto;
        left: 0;
        transform: none;
    }

    .ekj-landing-card-media--right {
        right: 0;
        left: auto;
        transform: none;
    }

    .ekj-landing-card-media--left::after {
        background:
            radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 35%),
            linear-gradient(180deg, rgba(18, 0, 22, 0.08) 0%, rgba(18, 0, 22, 0.74) 100%),
            linear-gradient(270deg, rgba(49, 44, 114, 0.84) 0%, rgba(49, 44, 114, 0.48) 42%, rgba(49, 44, 114, 0.02) 100%);
    }

    .ekj-landing-card-media--right::after {
        background:
            radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 35%),
            linear-gradient(180deg, rgba(18, 0, 22, 0.08) 0%, rgba(18, 0, 22, 0.74) 100%),
            linear-gradient(90deg, rgba(236, 52, 74, 0.8) 0%, rgba(236, 52, 74, 0.44) 42%, rgba(236, 52, 74, 0.02) 100%);
    }

    .ekj-landing-card-row {
        width: 100%;
        max-width: 1200px;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 0;
        padding-left: 0;
    }

    .ekj-landing-card {
        max-width: 390px;
        min-height: clamp(330px, 36vw, 430px);
    }

    .ekj-landing-card-body {
        justify-content: center;
        padding-top: clamp(1.45rem, 2.2vw, 2.15rem);
    }
}

@media (max-width: 991.98px) {
    .ekj-landing::after {
        position: absolute;
        top: 40%;
        right: 0;
        left: 0;
        z-index: 0;
        height: 20%;
        background: linear-gradient(
            180deg,
            rgba(49, 19, 58, 0) 0%,
            rgba(49, 19, 58, 0.72) 34%,
            #31133a 50%,
            rgba(49, 19, 58, 0.72) 66%,
            rgba(49, 19, 58, 0) 100%
        );
        content: "";
        pointer-events: none;
    }

    .ekj-landing-card-media {
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 50%;
    }

    .ekj-landing-card-media--left {
        top: 0;
    }

    .ekj-landing-card-media--right {
        top: 50%;
    }

    .ekj-landing-card {
        max-width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 767.98px) {
    .ekj-landing-language-switcher {
        top: 1rem;
        right: 1rem;
    }

    .ekj-landing-header {
        max-width: 620px;
    }

    .ekj-landing-title {
        font-size: clamp(2.35rem, 13vw, 3.7rem);
    }

    .ekj-landing-card-media {
        aspect-ratio: auto;
    }

    .ekj-landing-card-body {
        padding: 1.65rem 1.15rem 2rem;
    }

    .ekj-landing-card-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ekj-landing-card-hero-bg,
    .ekj-landing-card-swoosh,
    .ekj-landing-card-horse,
    .ekj-landing-card-pole,
    .ekj-landing-card-swoosh-mask {
        animation: none;
        opacity: 1;
        stroke-dashoffset: 0;
        filter: none;
    }
}

.ekj-hero-countdown {
    max-width: 720px;
    background: transparent;
    color: var(--ekj-hero-countdown-text);
}

.ekj-hero-countdown .lon-livewatch {
    display: flex;
    width: 100%;
    height: 240px;
    border: 0;
    background-color: transparent;
}

@container (min-width: 640px) {
    .ekj-hero-countdown .lon-livewatch .lon-livewatch__inner {
        flex-direction: column;
        align-items: center;
    }

    .ekj-hero-countdown .lon-livewatch .lon-livewatch__logo-container {
        width: 100%;
        height: 45%;
        justify-content: center;
        margin: 0 auto;
        padding-top: 10px;
        padding-bottom: 0;
    }

    .ekj-hero-countdown .lon-livewatch .lon-livewatch__counter-container {
        width: 100%;
        height: 55%;
        align-items: center;
        text-align: center;
    }

    .ekj-hero-countdown .lon-livewatch .lon-livewatch__counter-container h3 {
        font-size: 1.08rem;
    }

    .ekj-hero-countdown .lon-livewatch .lon-livewatch__counter {
        justify-content: center;
    }

    .ekj-hero-countdown .lon-livewatch .lon-livewatch__counter .lon-livewatch__counter-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 70px !important;
        min-height: auto !important;
        margin: 0.25rem;
        padding: 0.6rem;
        font-size: clamp(1.8rem, 3vw, 2.65rem) !important;
        line-height: 1;
    }

    .ekj-hero-countdown .lon-livewatch .lon-livewatch__counter small {
        font-size: 1.2rem !important;
    }
}

.ekj-hero-countdown-brand {
    color: var(--ekj-hero-countdown-text);
    width: 100%;
}

.ekj-hero-countdown-brand-image {
    width: 100%;
    object-fit: contain;
    max-height: 10vh !important;
}

.ekj-hero-countdown-subtitle {
    color: var(--ekj-hero-countdown-text);
    font-size: 1.08rem;
    font-weight: 800;
}

.ekj-hero-countdown-item {
    min-width: 0;
}

.ekj-hero-countdown-value {
    position: relative;
    overflow: hidden;
    place-items: center;
    min-height: 58px;
    color: var(--ekj-hero-countdown-box-text);
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 700;
    line-height: 1;
    border-radius: 3px;
    perspective: 260px;
    transform-style: preserve-3d;
    transition: background-color var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease);
    background-color: var(--ekj-hero-countdown-box-bg);
}

.ekj-hero-countdown-value.is-changing {
    box-shadow: 0 7px 15px rgba(22, 0, 29, 0.14);
}

.ekj-hero-countdown-digit {
    display: grid;
    grid-area: 1 / 1;
    align-self: stretch;
    justify-self: stretch;
    min-height: inherit;
    place-items: center;
    background: var(--ekj-hero-countdown-box-bg);
    color: var(--ekj-hero-countdown-box-text);
    border-radius: inherit;
    backface-visibility: hidden;
    transform-origin: center top;
    will-change: transform, opacity, box-shadow;
}

.ekj-hero-countdown-digit-next {
    opacity: 0;
    transform: rotateX(-96deg) translateY(-16%);
}

.ekj-hero-countdown-value.is-changing .ekj-hero-countdown-digit-current {
    animation: ekj-countdown-current-hold 460ms var(--motion-ease) both;
}

.ekj-hero-countdown-value.is-changing .ekj-hero-countdown-digit-next {
    animation: ekj-countdown-next-flip 460ms var(--motion-ease) both;
}

.ekj-hero-countdown-label {
    color: var(--ekj-hero-countdown-text);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1;
}

@keyframes ekj-hero-bg-cinematic-settle {
    0% {
        filter: brightness(0.92) saturate(1.05);
        transform: scale(1.018);
    }

    100% {
        filter: brightness(1) saturate(1);
        transform: scale(1);
    }
}

@keyframes ekj-hero-swoosh-draw {
    0% {
        stroke-dashoffset: 1;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes ekj-hero-horse-jump-in {
    0% {
        opacity: 0;
        filter: blur(3px) brightness(0.92);
        transform: translate3d(10.1%, 8.1%, 0) scale(1.045) rotate(-1.1deg);
    }

    22% {
        opacity: 1;
        filter: blur(1.6px) brightness(0.96);
    }

    100% {
        opacity: 1;
        filter: blur(0) brightness(1);
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
}

@keyframes ekj-hero-horse-shadow {
    0% {
        opacity: 0;
        transform: translateY(13%) scaleX(0.58);
    }

    50% {
        opacity: 0.16;
        transform: translateY(4%) scaleX(0.72);
    }

    76% {
        opacity: 0.35;
        transform: translateY(0) scaleX(1.05);
    }

    100% {
        opacity: 0.26;
        transform: translateY(0) scaleX(1);
    }
}

@keyframes ekj-hero-horse-alive {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0.12%, -0.22%, 0) rotate(0.035deg);
    }
}

.ekj-page-hero {
    min-height: 300px;
    background-color: #f5f7fb;
    background-image: var(--ekj-page-hero-bg-image);
    background-position: var(--ekj-page-hero-bg-position);
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--ekj-page-hero-text);
}

.ekj-page-hero--with-swoosh {
    isolation: isolate;
    z-index: 2;
    overflow-x: clip;
    overflow-y: visible;
    clip-path: inset(-40vh 0 -40vh 0);
}

.ekj-page-hero--with-swoosh::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(49, 19, 58, 0.98) 0%, rgba(49, 19, 58, 0.94) 40%, rgba(49, 19, 58, 0.56) 55%, rgba(49, 19, 58, 0.08) 66%, rgba(49, 19, 58, 0) 74%);
    content: "";
    pointer-events: none;
}

.ekj-page-hero-swoosh {
    --ekj-page-hero-swoosh-left: 20%;
    --ekj-page-hero-swoosh-bottom: -42%;
    --ekj-page-hero-swoosh-width: 112%;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: visible;
    opacity: 1;
    pointer-events: none;
}

.ekj-page-hero-swoosh-svg {
    position: absolute;
    left: var(--ekj-page-hero-swoosh-left);
    bottom: var(--ekj-page-hero-swoosh-bottom);
    display: block;
    width: var(--ekj-page-hero-swoosh-width);
    height: auto;
    overflow: visible;
    filter: drop-shadow(0 14px 28px rgba(25, 35, 48, 0.1));
    opacity: 1;
    transform: translateZ(0);
    will-change: opacity, filter;
}

.ekj-page-hero-swoosh--program {
    --ekj-page-hero-swoosh-left: -8%;
    --ekj-page-hero-swoosh-bottom: -10%;
    --ekj-page-hero-swoosh-width: 122%;
}

.ekj-page-hero-swoosh--events {
    --ekj-page-hero-swoosh-left: -4%;
    --ekj-page-hero-swoosh-bottom: -10%;
    --ekj-page-hero-swoosh-width: 112%;
}

.ekj-page-hero-swoosh.is-loading .ekj-page-hero-swoosh-svg {
    opacity: 0;
}

.ekj-page-hero-swoosh.is-ready .ekj-program-swoosh-mask-draw,
.ekj-page-hero-swoosh.is-ready .ekj-events-overview-swoosh-mask-draw {
    animation: ekj-program-swoosh-draw 1800ms cubic-bezier(0.65, 0, 0.22, 1) forwards;
}

.ekj-page-hero-swoosh.is-static .ekj-page-hero-swoosh-svg {
    opacity: 1;
    filter: none;
}

.ekj-page-hero-swoosh.is-static .ekj-program-swoosh-mask-draw,
.ekj-page-hero-swoosh.is-static .ekj-events-overview-swoosh-mask-draw {
    stroke-dashoffset: 0;
}

.ekj-page-hero-copy {
    max-width: 520px;
}

.ekj-page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--ekj-page-hero-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.ekj-page-hero-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.ekj-page-hero-breadcrumb a:hover,
.ekj-page-hero-breadcrumb a:focus-visible {
    color: var(--ekj-page-hero-title);
    text-decoration: underline;
}

.ekj-page-hero--with-swoosh .ekj-page-hero-breadcrumb {
    color: color-mix(in srgb, var(--ekj-page-hero-muted) 82%, transparent);
}

.ekj-page-hero-title {
    color: var(--ekj-page-hero-title);
    font-size: clamp(2.4rem, 5vw, 4.1rem);
    font-weight: 900;
    line-height: 0.98;
}

.ekj-page-hero-text {
    max-width: 430px;
    color: var(--ekj-page-hero-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .ekj-page-hero-swoosh {
        opacity: 1;
    }

    .ekj-page-hero-swoosh--program {
        --ekj-page-hero-swoosh-left: -30%;
        --ekj-page-hero-swoosh-bottom: -10%;
        --ekj-page-hero-swoosh-width: 178%;
    }

    .ekj-page-hero-swoosh--events {
        --ekj-page-hero-swoosh-left: -44%;
        --ekj-page-hero-swoosh-bottom: -10%;
        --ekj-page-hero-swoosh-width: 190%;
    }
}

.ekj-program-section {
    background-color: var(--ekj-program-bg);
    color: var(--ekj-program-text);
}

.ekj-program-swoosh-bg {
    position: absolute;
    right: -10%;
    bottom: 4%;
    left: -12%;
    z-index: 0;
    pointer-events: none;
}

.ekj-program-swoosh {
    display: block;
    width: 124%;
    height: auto;
    opacity: 1;
    transform: translateX(-4%);
}

.ekj-program-swoosh-shape {
    pointer-events: none;
}

.ekj-program-swoosh-mask-draw {
    fill: none;
    stroke: #ffffff;
    stroke-width: 145;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.ekj-program-swoosh-bg.is-visible .ekj-program-swoosh-mask-draw {
    animation: ekj-program-swoosh-draw 1800ms cubic-bezier(0.65, 0, 0.22, 1) forwards;
}

.motion-ready .ekj-program-section:not(.is-program-cards-ready) .ekj-program-card {
    opacity: 0;
    pointer-events: none;
    transform: translateY(22px);
}

.motion-ready .ekj-program-section.is-program-cards-ready .ekj-program-card {
    animation: ekj-program-card-enter 520ms var(--motion-ease) backwards;
    animation-delay: var(--ekj-program-card-delay, 0ms);
}

@keyframes ekj-countdown-current-hold {
    0% {
        opacity: 1;
        filter: brightness(1);
    }

    62% {
        opacity: 1;
        filter: brightness(.78);
    }

    100% {
        opacity: 1;
        filter: brightness(1);
    }
}

@keyframes ekj-countdown-next-flip {
    0% {
        opacity: 0;
        transform: rotateX(-96deg) translateY(-18%);
    }

    15% {
        opacity: 1;
    }

    72% {
        opacity: 1;
        transform: rotateX(10deg) translateY(2%);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg) translateY(0);
    }
}

@keyframes ekj-program-swoosh-draw {
    from {
        stroke-dashoffset: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes ekj-program-card-enter {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ekj-program-label {
    color: var(--ekj-program-title);
    font-size: 1.28rem;
    font-weight: 900;
    letter-spacing: 0;
}

.ekj-program-intro {
    max-width: 600px;
    color: var(--ekj-program-text);
    font-size: 1.08rem;
    line-height: 1.45;
}

.ekj-program-overview-link {
    position: relative;
    color: var(--ekj-program-title);
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
    transition: color var(--motion-fast) var(--motion-ease);
}

.ekj-program-overview-link:hover,
.ekj-program-overview-link:focus {
    color: var(--ekj-program-accent);
}

.ekj-program-overview-link .bi {
    transition: transform var(--motion-fast) var(--motion-ease);
}

.ekj-program-overview-link:hover .bi,
.ekj-program-overview-link:focus-visible .bi {
    transform: translateX(4px);
}

.ekj-program-filter {
    position: relative;
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: 0.55rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 0.9rem;
    --bs-btn-font-weight: 800;
    --bs-btn-color: #230047;
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: #ffffff;
    --bs-btn-hover-color: #230047;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-active-color: #230047;
    --bs-btn-active-bg: #ffffff;
    --bs-btn-active-border-color: #ffffff;
    line-height: 1.15;
    text-transform: uppercase;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        opacity var(--motion-fast) var(--motion-ease);
}

.ekj-program-filter::after {
    content: none;
}

.ekj-program-filter.active,
.ekj-program-filter:hover,
.ekj-program-filter:focus-visible {
    background: #ffffff;
    border-color: #ffffff;
    color: #230047;
    opacity: 1;
    box-shadow: 0 4px 10px rgba(25, 35, 48, 0.16);
}

.ekj-program-filter:not(.active):not(:hover):not(:focus-visible) {
    opacity: 0.64;
}

.ekj-program-filter:focus-visible {
    outline: 0;
}

.ekj-program-carousel {
    padding-inline: 0;
}

.ekj-program-carousel .splide__track {
    overflow: hidden;
    padding-block: 0.8rem 1.05rem;
}

.ekj-program-carousel .splide__slide {
    display: flex;
    min-width: 0;
}

.ekj-program-card {
    position: relative;
    isolation: isolate;
    width: 100%;
    border: 0px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 5px 9px rgba(25, 35, 48, 0.12);
    transition: all 0.3s ease;
}

.ekj-program-card-image {
    overflow: hidden;
    background: #d4dce7;
}

/* .ekj-program-card-image img,
.ekj-blog-card-image img,
.ekj-event-card-image img,
.ekj-image-frame img,
.ekj-hero-countdown-brand-image,
.ekj-partner-logo img {
    transition: transform var(--motion-slow) var(--motion-jump), opacity var(--motion-fast) var(--motion-ease);
} */

.ekj-program-card .card-body {
    min-height: 172px;
    padding: 0.85rem 1rem 1.05rem;
}

.ekj-program-card-weekday,
.ekj-program-card-month {
    color: var(--ekj-program-accent);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-program-card-month{
    color: var(--ekj-program-title);
}

.ekj-program-card-day {
    color: var(--ekj-program-title);
    font-size: 3.55rem;
    font-weight: 900;
    line-height: 0.94;
}

.ekj-program-card-description {
    color: #7d8795;
    font-size: 0.86rem;
    line-height: 1.2;
}

.ekj-program-card-button {
    --bs-btn-padding-x: 1.15rem;
    --bs-btn-padding-y: 0.55rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 0.9rem;
    --bs-btn-font-weight: 900;
    --bs-btn-color: #233044;
    --bs-btn-bg: #dfe7f2;
    --bs-btn-border-color: #dfe7f2;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ekj-program-title);
    --bs-btn-hover-border-color: var(--ekj-program-title);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ekj-program-title);
    --bs-btn-active-border-color: var(--ekj-program-title);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-program-card:hover,
.ekj-program-card:focus-within {
    box-shadow: 0 12px 25px rgba(25, 35, 48, 0.14);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.ekj-program-card:hover .ekj-program-card-image img,
.ekj-program-card:focus-within .ekj-program-card-image img {
    transform: scale(1.035);
}

.ekj-program-card:hover .ekj-program-card-button,
.ekj-program-card:focus-within .ekj-program-card-button,
.ekj-program-card-button:hover,
.ekj-program-card-button:focus-visible {
    box-shadow: 0 8px 16px rgba(61, 11, 79, 0.14);
    transform: translateY(-1px);
}

.ekj-program-card-button:active {
    transform: scale(0.98);
}

.ekj-program-carousel .splide__arrow {
    width: 2rem;
    height: 2rem;
    background: transparent;
    opacity: 1;
}

.ekj-program-carousel .splide__arrow svg {
    width: 1rem;
    height: 1rem;
    fill: #ffffff;
}

.ekj-program-carousel .splide__arrow--prev {
    left: calc(-1 * clamp(2.25rem, 4vw, 3.25rem));
}

.ekj-program-carousel .splide__arrow--next {
    right: calc(-1 * clamp(2.25rem, 4vw, 3.25rem));
}

.ekj-features {
    background: var(--ekj-features-bg);
    color: var(--ekj-features-text);
}

.ekj-features-title {
    color: var(--ekj-features-title);
    font-size: 1.38rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-features-subtitle {
    color: var(--ekj-features-text);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
}

.ekj-features-card {
    min-height: 156px;
    padding: 1.6rem 2rem;
    border-radius: 6px;
    background: var(--ekj-features-card-bg);
    color: var(--ekj-features-card-text);
    box-shadow: 0 6px 18px rgba(27, 4, 38, 0.1);
    transition: all 0.3s ease;
}

.ekj-features-card:hover {
    box-shadow: 0 10px 24px rgba(27, 4, 38, 0.12);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.ekj-features-icon {
    color: var(--ekj-features-card-text);
    font-size: clamp(3.2rem, 5vw, 3.7rem);
    max-width: 3.7rem;
    max-height: 3.7rem;
    line-height: 1;
    transform-origin: center;
    transition: color var(--motion-fast) var(--motion-ease), opacity var(--motion-fast) var(--motion-ease), transform var(--motion-medium) var(--motion-jump);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ekj-features-icon img {
    width: 3.7rem;
    height: 3.7rem;
    object-fit: contain;
}

.ekj-features-content {
    min-width: 0;
}

.ekj-features-card-title {
    color: var(--ekj-features-card-text);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-features-card-text {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ekj-features-card-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.2;
}

.ekj-features-link {
    color: var(--ekj-features-link);
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
    transition: color var(--motion-fast) var(--motion-ease), opacity var(--motion-fast) var(--motion-ease);
}

.ekj-features-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 0.42rem 0.85rem;
    border: 1px solid currentColor;
    border-radius: 3px;
    font-size: 0.74rem;
    line-height: 1;
}

.ekj-features-link:hover,
.ekj-features-link:focus {
    color: var(--ekj-features-link);
    opacity: 0.75;
}

.ekj-features-link .bi {
    transition: transform var(--motion-fast) var(--motion-ease);
}

.ekj-features-link:hover .bi,
.ekj-features-link:focus-visible .bi {
    transform: translateX(4px);
}

.ekj-features-card:hover,
.ekj-features-card:focus-within {
    box-shadow: 0 11px 25px rgba(27, 4, 38, 0.1);
}

.ekj-features-card:hover .ekj-features-icon,
.ekj-features-card:focus-within .ekj-features-icon {
    opacity: 0.9;
    transform: translateY(-3px) scale(1.04);
}

.ekj-features--centered .ekj-features-card {
    min-height: 116px;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1.15rem;
    text-align: center;
    gap: 0.55rem !important;
}

.ekj-features-line {
    background: var(--ekj-features-line-bg);
    color: var(--ekj-features-line-text);
}

.ekj-features-line-heading {
    color: var(--ekj-features-line-title);
    font-size: 1.38rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-features-line-intro {
    color: var(--ekj-features-line-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    line-height: 1.25;
}

.ekj-features-line-card {
    position: relative;
    align-items: center;
    min-height: 132px;
    padding: 1.35rem 2.4rem;
    background: var(--ekj-features-line-bg);
    transition:
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-features-line--horizontal.ekj-features-line--align-top .ekj-features-line-card {
    align-items: flex-start;
}

.ekj-features-line--horizontal.ekj-features-line--align-bottom .ekj-features-line-card {
    align-items: flex-end;
}

.ekj-features-line--centered .ekj-features-line-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ekj-features-line--centered.ekj-features-line--align-top .ekj-features-line-card {
    justify-content: flex-start;
}

.ekj-features-line--centered.ekj-features-line--align-center .ekj-features-line-card {
    justify-content: center;
}

.ekj-features-line--centered.ekj-features-line--align-bottom .ekj-features-line-card {
    justify-content: flex-end;
}

.ekj-features-line .row > [class*="col-"]:not(:last-child) .ekj-features-line-card::after {
    position: absolute;
    top: 1.35rem;
    right: 0;
    bottom: 1.35rem;
    width: 1px;
    background: var(--ekj-features-line-divider);
    content: "";
}

.ekj-features-line--columns-1 .row > [class*="col-"]:not(:last-child) .ekj-features-line-card::after {
    top: auto;
    right: 2.4rem;
    bottom: 0;
    left: 2.4rem;
    width: auto;
    height: 1px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .ekj-features-line--columns-4 .row > [class*="col-"]:nth-child(even) .ekj-features-line-card::after {
        display: none;
    }
}

.ekj-features-line-icon {
    color: var(--ekj-features-line-icon);
    font-size: clamp(3rem, 4vw, 4.2rem);
    line-height: 1;
}

.ekj-features-line-icon img {
    width: clamp(3rem, 4vw, 4.2rem);
    height: clamp(3rem, 4vw, 4.2rem);
    object-fit: contain;
}

.ekj-features-line-title {
    color: var(--ekj-features-line-title);
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-features-line-text {
    max-width: 250px;
    color: var(--ekj-features-line-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.28;
}

.ekj-features-line-link {
    color: var(--ekj-features-line-title);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: color var(--motion-fast) var(--motion-ease);
}

.ekj-features-line-link .bi {
    transition: transform var(--motion-fast) var(--motion-ease);
}

.ekj-features-line-link:hover,
.ekj-features-line-link:focus-visible {
    color: #5a22a6;
}

.ekj-features-line-link:hover .bi,
.ekj-features-line-link:focus-visible .bi {
    transform: translateX(4px);
}

.ekj-features-line-link-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border: 1px solid currentColor;
    border-radius: 4px;
}

.ekj-event-timeline-section {
    overflow: hidden;
    background: var(--ekj-event-timeline-bg);
    color: var(--ekj-event-timeline-text);
}

.ekj-event-timeline-label {
    color: var(--ekj-event-timeline-accent);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-event-timeline-title {
    color: var(--ekj-event-timeline-title);
    font-size: clamp(1.45rem, 2.1vw, 2.15rem);
    font-weight: 900;
    line-height: 1.05;
}

.ekj-event-timeline-carousel {
    --ekj-event-timeline-axis-bottom: 2.45rem;
    --ekj-event-timeline-line-bottom: 23px;
    position: relative;
    padding-inline: 0;
}

.ekj-event-timeline-carousel::after {
    position: absolute;
    right: 1.15rem;
    bottom: var(--ekj-event-timeline-line-bottom);
    left: 1.15rem;
    z-index: 1;
    height: 1px;
    background: rgba(37, 0, 168, 0.24);
    content: "";
}

.ekj-event-timeline-carousel .splide__track {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding-block: 0.25rem var(--ekj-event-timeline-axis-bottom);
}

.ekj-event-timeline-carousel .splide__slide {
    display: flex;
    min-width: 0;
}

.ekj-event-timeline-card {
    --ekj-event-timeline-card-delay: 0ms;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 1.8rem;
}

.ekj-event-timeline-section.is-event-timeline-animated:not(.is-event-timeline-ready) .ekj-event-timeline-card-link {
    opacity: 0;
    transform: translateY(34px);
}

.ekj-event-timeline-section.is-event-timeline-animated.is-event-timeline-ready .ekj-event-timeline-card-link {
    opacity: 1;
    transform: translateY(0);
}

.ekj-event-timeline-card-link {
    display: flex;
    flex: 1 1 auto;
    color: inherit;
    transition:
        opacity var(--motion-slow) var(--motion-ease),
        transform var(--motion-slow) var(--motion-jump);
    transition-delay: var(--ekj-event-timeline-card-delay);
}

.ekj-event-timeline-card-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(25, 35, 48, 0.12);
    border-radius: 6px;
    background: var(--ekj-event-timeline-card-bg);
    box-shadow: 0 5px 12px rgba(25, 35, 48, 0.07);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-event-timeline-date,
.ekj-event-timeline-card-title,
.ekj-event-timeline-location {
    padding-inline: 0.9rem;
}

.ekj-event-timeline-date {
    padding-top: 0.8rem;
    color: var(--ekj-event-timeline-accent);
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.45rem !important;
}

.ekj-event-timeline-card-title {
    color: var(--ekj-event-timeline-title);
    font-size: 0.95rem !important;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem !important;
}

.ekj-event-timeline-location {
    color: var(--ekj-event-timeline-text);
    font-size: 0.78rem;
    line-height: 1.25;
    margin-bottom: 0.85rem !important;
}

.ekj-event-timeline-image {
    overflow: hidden;
    margin-top: auto;
    background: #d3dce8;
}

.ekj-event-timeline-image img {
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-event-timeline-dot {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 3;
    width: 0.58rem;
    height: 0.58rem;
    border: 2px solid #e82f14;
    border-radius: 50%;
    background: #e82f14;
    transform: translate(-50%, 50%);
}

.ekj-event-timeline-card:hover .ekj-event-timeline-card-body,
.ekj-event-timeline-card:focus-within .ekj-event-timeline-card-body {
    border-color: rgba(37, 0, 168, 0.22);
    box-shadow: 0 12px 25px rgba(25, 35, 48, 0.12);
    transform: translateY(-4px);
}

.ekj-event-timeline-card:hover .ekj-event-timeline-image img,
.ekj-event-timeline-card:focus-within .ekj-event-timeline-image img {
    transform: scale(1.035);
}

.ekj-event-timeline-carousel .splide__arrow {
    top: auto;
    bottom: calc(var(--ekj-event-timeline-line-bottom) - 0.9rem);
    z-index: 3;
    width: 1.8rem;
    height: 1.8rem;
    background: transparent;
    opacity: 1;
    transform: none;
}

.ekj-event-timeline-carousel .splide__arrow svg {
    width: 0.9rem;
    height: 0.9rem;
    fill: var(--ekj-event-timeline-accent);
}

.ekj-event-timeline-carousel .splide__arrow--prev {
    left: -0.65rem;
}

.ekj-event-timeline-carousel .splide__arrow--next {
    right: -0.65rem;
}

.ekj-event-timeline-footer,
.ekj-event-timeline-empty {
    color: var(--ekj-event-timeline-text);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
}

.ekj-faq-section {
    background: var(--ekj-faq-bg);
    color: var(--ekj-faq-text);
}

.ekj-faq-inner {
    max-width: 980px;
}

.ekj-faq-label {
    color: var(--ekj-faq-accent);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-faq-title {
    color: var(--ekj-faq-title);
    font-size: clamp(1.45rem, 2.1vw, 2.15rem);
    font-weight: 900;
    line-height: 1.05;
}

.ekj-faq-accordion {
    display: grid;
    gap: 0.6rem;
}

.ekj-faq-item {
    overflow: hidden;
    border: 1px solid rgba(25, 35, 48, 0.1);
    border-radius: 6px;
    background: var(--ekj-faq-item-bg);
    box-shadow: 0 5px 12px rgba(25, 35, 48, 0.045);
}

.ekj-faq-question {
    min-height: 44px;
    padding: 0.8rem 1rem;
    background: var(--ekj-faq-item-bg);
    color: var(--ekj-faq-title);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.25;
    box-shadow: none;
}

.ekj-faq-question:not(.collapsed) {
    background: var(--ekj-faq-item-bg);
    color: var(--ekj-faq-accent);
    box-shadow: none;
}

.ekj-faq-question:focus {
    border-color: rgba(37, 0, 168, 0.22);
    box-shadow: 0 0 0 0.18rem rgba(37, 0, 168, 0.12);
}

.ekj-faq-question::after {
    width: 0.85rem;
    height: 0.85rem;
    background-size: 0.85rem;
}

.ekj-faq-answer {
    padding: 1rem;
    color: var(--ekj-faq-text);
    font-size: 0.84rem;
    line-height: 1.55;
}

.ekj-faq-answer p:last-child {
    margin-bottom: 0;
}

.ekj-blog-overview {
    background: var(--ekj-blog-bg);
}

.ekj-blog-overview-title {
    color: var(--ekj-blog-title);
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-blog-card {
    position: relative;
    isolation: isolate;
    border: 1px solid #b9c3cf;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 5px 9px rgba(25, 35, 48, 0.1);
    transition: all 0.3s ease;
}

.ekj-blog-card-image {
    overflow: hidden;
    background: #d3dce8;
}

.ekj-blog-card .card-body {
    min-height: 170px;
    padding: 1.45rem 2rem 1.5rem;
}

.ekj-blog-card-date {
    color: var(--ekj-blog-date);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-blog-card-text {
    color: var(--ekj-blog-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.35;
}

.ekj-blog-card-button {
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-padding-y: 0.55rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 0.86rem;
    --bs-btn-font-weight: 900;
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--ekj-blog-button-bg);
    --bs-btn-border-color: var(--ekj-blog-button-bg);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #2d006b;
    --bs-btn-hover-border-color: #2d006b;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #2d006b;
    --bs-btn-active-border-color: #2d006b;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-blog-card:hover,
.ekj-blog-card:focus-within {
    box-shadow: 0 12px 25px rgba(25, 35, 48, 0.14);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.ekj-blog-card:hover .ekj-blog-card-image img,
.ekj-blog-card:focus-within .ekj-blog-card-image img {
    transform: scale(1.035);
}

.ekj-blog-card:hover .ekj-blog-card-button,
.ekj-blog-card:focus-within .ekj-blog-card-button,
.ekj-blog-card-button:hover,
.ekj-blog-card-button:focus-visible {
    box-shadow: 0 8px 16px rgba(75, 8, 161, 0.16);
    transform: translateY(-1px);
}

.ekj-blog-card-button:active {
    transform: scale(0.98);
}

.ekj-gallery-overview {
    background: var(--ekj-gallery-overview-bg);
}

.ekj-gallery-overview-title {
    color: var(--ekj-gallery-overview-title);
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-gallery-card {
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(25, 35, 48, 0.12);
    border-radius: 6px;
    background: var(--ekj-gallery-card-bg);
    box-shadow: 0 5px 9px rgba(25, 35, 48, 0.1);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-gallery-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.ekj-gallery-card-image {
    overflow: hidden;
    background: #d3dce8;
}

.ekj-gallery-card-image img {
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-gallery-card .card-body {
    min-height: 108px;
    padding: 1.15rem 1.25rem 1.25rem;
}

.ekj-gallery-card-title {
    color: var(--ekj-gallery-card-title);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.2;
}

.ekj-gallery-card-count {
    color: var(--ekj-gallery-card-count);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1;
}

.ekj-gallery-card-count .bi {
    font-size: 0.82rem;
    line-height: 1;
}

.ekj-gallery-card:hover,
.ekj-gallery-card:focus-within {
    border-color: rgba(25, 35, 48, 0.14);
    box-shadow: 0 12px 25px rgba(25, 35, 48, 0.14);
    transform: translateY(-5px);
}

.ekj-gallery-card:hover .ekj-gallery-card-image img,
.ekj-gallery-card:focus-within .ekj-gallery-card-image img {
    transform: scale(1.035);
}

.ekj-gallery-detail {
    background: var(--ekj-gallery-detail-bg);
}

.ekj-gallery-detail-body {
    background: var(--ekj-gallery-detail-bg);
}

.ekj-gallery-detail-grid {
    column-count: 3;
    column-gap: 0.75rem;
}

.ekj-gallery-detail-item {
    display: block;
    overflow: hidden;
    break-inside: avoid;
    margin-bottom: 0.75rem;
    border-radius: 6px;
    background: #d3dce8;
    box-shadow: 0 5px 12px rgba(25, 35, 48, 0.08);
    transition:
        box-shadow var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-gallery-detail-item.is-hidden {
    display: none;
}

.ekj-gallery-detail-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-gallery-detail-item:hover,
.ekj-gallery-detail-item:focus-visible {
    box-shadow: 0 11px 24px rgba(25, 35, 48, 0.12);
    transform: translateY(-3px);
}

.ekj-gallery-detail-item:hover .ekj-gallery-detail-image,
.ekj-gallery-detail-item:focus-visible .ekj-gallery-detail-image {
    transform: scale(1.03);
}

.ekj-gallery-detail-load-button {
    --bs-btn-padding-x: 2rem;
    --bs-btn-padding-y: 0.62rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 0.78rem;
    --bs-btn-font-weight: 900;
    --bs-btn-line-height: 1;
    --bs-btn-color: var(--ekj-gallery-detail-button);
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: var(--ekj-gallery-detail-button);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ekj-gallery-detail-button);
    --bs-btn-hover-border-color: var(--ekj-gallery-detail-button);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ekj-gallery-detail-button);
    --bs-btn-active-border-color: var(--ekj-gallery-detail-button);
    min-width: min(100%, 260px);
    min-height: 38px;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-gallery-detail-load-button:hover,
.ekj-gallery-detail-load-button:focus-visible {
    box-shadow: 0 10px 22px rgba(75, 8, 161, 0.16);
    transform: translateY(-2px);
}

.ekj-gallery-detail-load-button:active {
    transform: scale(0.98);
}

.ekj-gallery-detail-empty {
    color: #120044;
    font-size: 0.95rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .ekj-gallery-detail-hero .ekj-hero-inner {
        --ekj-hero-content-offset-top: 150px !important;
    }

    .ekj-gallery-detail-grid {
        column-count: 2;
    }
}

@media (max-width: 575.98px) {
    .ekj-gallery-detail-grid {
        column-count: 1;
    }

    .ekj-gallery-detail-load-button {
        width: 100%;
    }
}

.ekj-blog-detail {
    background: var(--ekj-blog-detail-bg);
    color: var(--ekj-blog-detail-text);
}

.ekj-blog-detail-hero {
    background: var(--ekj-blog-detail-hero-bg);
}

.ekj-blog-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--ekj-blog-detail-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.ekj-blog-detail-breadcrumb a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18rem;
}

.ekj-blog-detail-category {
    padding: 0.55rem 0.8rem;
    border-radius: 4px;
    background: rgba(90, 34, 166, 0.1);
    color: var(--ekj-blog-detail-accent);
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-blog-detail-title {
    max-width: 620px;
    color: var(--ekj-blog-detail-accent);
    font-size: clamp(2.2rem, 2.5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.08;
}

.ekj-blog-detail-date {
    color: var(--ekj-blog-detail-accent);
    font-size: 0.82rem;
    font-weight: 900;
}

.ekj-blog-detail-hero-image {
    overflow: hidden;
    border-radius: 8px;
    background: #d3dce8;
}

.ekj-blog-detail-body-wrap {
    background: var(--ekj-blog-detail-bg);
}

.ekj-blog-detail-body {
    color: var(--ekj-blog-detail-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.9;
}

.ekj-blog-detail-body h2,
.ekj-blog-detail-body h3,
.ekj-blog-detail-body h4 {
    margin-top: 2.4rem;
    margin-bottom: 1rem;
    color: var(--ekj-blog-detail-accent);
    font-weight: 900;
    text-transform: uppercase;
}

.ekj-blog-detail-body h2 {
    font-size: 1rem;
}

.ekj-blog-detail-body ul {
    padding-left: 1.25rem;
}

.ekj-blog-detail-body li + li {
    margin-top: 0.35rem;
}

.ekj-blog-detail-body > *:last-child {
    margin-bottom: 0;
}

.ekj-blog-detail-related-title {
    color: var(--ekj-blog-detail-accent);
    font-size: 1rem;
    font-weight: 900;
}

.ekj-blog-detail-related-card {
    border: 1px solid #dfe2ec;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(25, 35, 48, 0.045);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-blog-detail-related-card:hover,
.ekj-blog-detail-related-card:focus-within {
    border-color: rgba(35, 0, 71, 0.18);
    box-shadow: 0 13px 28px rgba(25, 35, 48, 0.1);
    transform: translateY(-3px);
}

.ekj-blog-detail-related-image {
    min-height: 148px;
    overflow: hidden;
    background: #d3dce8;
}

.ekj-blog-detail-related-image img {
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-blog-detail-related-card:hover .ekj-blog-detail-related-image img,
.ekj-blog-detail-related-card:focus-within .ekj-blog-detail-related-image img {
    transform: scale(1.035);
}

.ekj-blog-detail-related-card .card-body {
    padding: 1rem 1.15rem;
}

.ekj-blog-detail-related-date {
    color: var(--ekj-blog-detail-muted);
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-blog-detail-related-heading {
    color: var(--ekj-blog-detail-text);
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1.25;
}

.ekj-blog-detail-related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--ekj-blog-detail-accent);
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.ekj-blog-detail-related-link .bi {
    transition: transform var(--motion-fast) var(--motion-ease);
}

.ekj-blog-detail-related-link:hover .bi,
.ekj-blog-detail-related-link:focus-visible .bi {
    transform: translateX(4px);
}

.ekj-blog-detail-empty {
    color: var(--ekj-blog-detail-muted);
    font-size: 1rem;
    font-weight: 700;
}

.ekj-blog-index {
    background: var(--ekj-blog-index-bg);
    color: var(--ekj-blog-index-text);
}

.ekj-blog-index-toolbar {
    min-height: 46px;
}

.ekj-blog-index-filters {
    min-width: 0;
}

.ekj-blog-index-filter {
    --bs-btn-padding-x: 1.05rem;
    --bs-btn-padding-y: 0.68rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 0.76rem;
    --bs-btn-font-weight: 900;
    --bs-btn-color: var(--ekj-blog-index-text);
    --bs-btn-bg: var(--ekj-blog-index-filter-bg);
    --bs-btn-border-color: #d8dce6;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ekj-blog-index-accent);
    --bs-btn-hover-border-color: var(--ekj-blog-index-accent);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ekj-blog-index-accent);
    --bs-btn-active-border-color: var(--ekj-blog-index-accent);
    min-height: 42px;
    text-transform: uppercase;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease);
}

.ekj-blog-index-filter.active {
    color: #ffffff;
    background: var(--ekj-blog-index-accent);
    border-color: var(--ekj-blog-index-accent);
}

.ekj-blog-index-filter:hover,
.ekj-blog-index-filter:focus-visible {
    box-shadow: 0 8px 18px rgba(25, 35, 48, 0.12);
}

.ekj-blog-index-search {
    width: min(100%, 310px);
}

.ekj-blog-index-search-input {
    min-height: 42px;
    border-color: #d8dce6;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    color: var(--ekj-blog-index-text);
    font-size: 0.84rem;
    font-weight: 600;
}

.ekj-blog-index-search-input::placeholder {
    color: var(--ekj-blog-index-muted);
    opacity: 1;
}

.ekj-blog-index-search-input:focus {
    border-color: var(--ekj-blog-index-accent);
    box-shadow: 0 0 0 0.18rem rgba(35, 0, 71, 0.12);
}

.ekj-blog-index-search-icon {
    border-color: #d8dce6;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    background: #ffffff;
    color: var(--ekj-blog-index-accent);
}

.ekj-blog-index-card {
    border-color: #d8dce6;
}

.ekj-blog-index-card .card-body {
    min-height: 214px;
    padding: 1.1rem 1.15rem 1.35rem;
}

.ekj-blog-index-card-title {
    color: var(--ekj-blog-index-text);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.25;
}

.ekj-blog-index-card .ekj-blog-card-text {
    color: var(--ekj-blog-index-muted);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    line-height: 1.45;
}

.ekj-blog-index-card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0;
    border: 0;
    color: var(--ekj-blog-index-accent);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: color var(--motion-fast) var(--motion-ease);
}

.ekj-blog-index-card-button .bi {
    transition: transform var(--motion-fast) var(--motion-ease);
}

.ekj-blog-index-card-button:hover,
.ekj-blog-index-card-button:focus-visible {
    color: #4b08a1;
}

.ekj-blog-index-card-button:hover .bi,
.ekj-blog-index-card-button:focus-visible .bi {
    transform: translateX(4px);
}

.ekj-blog-index-empty {
    color: var(--ekj-blog-index-muted);
    font-size: 1rem;
    font-weight: 700;
}

.ekj-blog-index-pagination {
    display: flex;
    justify-content: center;
}

.ekj-blog-index-pagination-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ekj-blog-index-page,
.ekj-blog-index-page-gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: 4px;
    color: var(--ekj-blog-index-text);
    font-size: 0.82rem;
    font-weight: 800;
}

.ekj-blog-index-page {
    border: 1px solid #d8dce6;
    background: #ffffff;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease);
}

.ekj-blog-index-page:hover,
.ekj-blog-index-page:focus-visible,
.ekj-blog-index-page.active {
    border-color: var(--ekj-blog-index-accent);
    background: var(--ekj-blog-index-accent);
    color: #ffffff;
}

.ekj-blog-index-page:hover,
.ekj-blog-index-page:focus-visible {
    box-shadow: 0 8px 18px rgba(25, 35, 48, 0.12);
}

.ekj-blog-index-page:disabled {
    opacity: 0.45;
    pointer-events: none;
}

.ekj-events-overview {
    position: relative;
    overflow: hidden;
    background-image: var(--ekj-events-bg-image);
    background-position: var(--ekj-events-bg-position);
    background-repeat: no-repeat;
    background-size: cover;
}

.ekj-events-overview-swoosh-bg {
    position: absolute;
    right: -10%;
    bottom: 4%;
    left: -12%;
    z-index: 0;
    pointer-events: none;
}

.ekj-events-overview-swoosh {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
}

.ekj-events-overview-swoosh-mask-draw {
    fill: none;
    stroke: #ffffff;
    stroke-width: 145;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.ekj-events-overview-swoosh-bg.is-visible .ekj-events-overview-swoosh-mask-draw {
    animation: ekj-program-swoosh-draw 1800ms cubic-bezier(0.65, 0, 0.22, 1) forwards;
}

.motion-ready .ekj-events-overview:not(.is-event-cards-ready) .ekj-event-card {
    opacity: 0;
    pointer-events: none;
    transform: translateY(22px);
}

.motion-ready .ekj-events-overview.is-event-cards-ready .ekj-event-card {
    animation: ekj-program-card-enter 520ms var(--motion-ease) backwards;
    animation-delay: var(--ekj-event-card-delay, 0ms);
}

.ekj-events-overview-title {
    color: var(--ekj-events-title);
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-event-card {
    position: relative;
    isolation: isolate;
    border: 1px solid #b9c3cf;
    border-radius: 6px;
    background: var(--ekj-events-card-bg);
    box-shadow: 0 5px 10px rgba(25, 35, 48, 0.12);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-event-card-image {
    overflow: hidden;
    background: #d3dce8;
}

.ekj-event-card .card-body {
    min-height: 150px;
    padding: 1.2rem 1.35rem 1.3rem;
}

.ekj-event-card-date {
    color: var(--ekj-events-date);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-event-card-text {
    color: var(--ekj-events-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.35;
}

.ekj-event-card-button {
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: 0.48rem;
    --bs-btn-border-radius: 3px;
    --bs-btn-font-size: 0.76rem;
    --bs-btn-font-weight: 900;
    --bs-btn-color: var(--ekj-events-button-text);
    --bs-btn-bg: var(--ekj-events-button-bg);
    --bs-btn-border-color: var(--ekj-events-button-bg);
    --bs-btn-hover-color: var(--ekj-events-button-text);
    --bs-btn-hover-bg: #b92715;
    --bs-btn-hover-border-color: #b92715;
    --bs-btn-active-color: var(--ekj-events-button-text);
    --bs-btn-active-bg: #b92715;
    --bs-btn-active-border-color: #b92715;
    line-height: 1;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-event-card:hover,
.ekj-event-card:focus-within {
    border-color: rgba(25, 35, 48, 0.14);
    background: var(--ekj-events-card-bg);
    box-shadow: 0 14px 28px rgba(25, 35, 48, 0.15);
    transform: translateY(-5px);
}

.ekj-event-card:hover .ekj-event-card-image img,
.ekj-event-card:focus-within .ekj-event-card-image img {
    transform: scale(1.035);
}

.ekj-event-card:hover .ekj-event-card-button,
.ekj-event-card:focus-within .ekj-event-card-button,
.ekj-event-card-button:hover,
.ekj-event-card-button:focus-visible {
    box-shadow: 0 8px 16px rgba(232, 47, 20, 0.16);
    transform: translateY(-1px);
}

.ekj-event-card-button:active {
    transform: scale(0.98);
}

.ekj-event-detail {
    background: var(--ekj-event-detail-bg);
    color: var(--ekj-event-detail-text);
}

.ekj-event-detail-hero {
    background: var(--ekj-event-detail-hero-bg);
}

.ekj-event-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--ekj-event-detail-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.ekj-event-detail-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.ekj-event-detail-breadcrumb a:hover,
.ekj-event-detail-breadcrumb a:focus-visible {
    color: var(--ekj-event-detail-accent);
    text-decoration: underline;
    text-underline-offset: 0.18rem;
}

.ekj-event-detail-category,
.ekj-event-detail-badge {
    padding: 0.42rem 0.7rem;
    border-radius: 4px;
    background: #dff0ff;
    color: var(--ekj-event-detail-accent);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-event-detail-title {
    max-width: 560px;
    color: var(--ekj-event-detail-accent);
    font-size: clamp(2.2rem, 2.5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.02;
}

.ekj-event-detail-intro {
    max-width: 520px;
    color: var(--ekj-event-detail-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.55;
}

.ekj-event-detail-meta {
    color: var(--ekj-event-detail-text);
    font-size: 0.82rem;
    font-weight: 800;
}

.ekj-event-detail-meta span p{
    margin-bottom: 0px !important;
}

.ekj-event-detail-meta .bi,
.ekj-event-detail-card-row .bi {
    color: var(--ekj-event-detail-accent);
    font-size: 1.35rem;
}

.ekj-event-detail-hero-image {
    overflow: hidden;
    border-radius: 8px;
    background: #d3dce8;
}

.ekj-event-detail-ticket,
.ekj-event-detail-back {
    --bs-btn-padding-x: 1.35rem;
    --bs-btn-padding-y: 0.78rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 0.84rem;
    --bs-btn-font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 46px;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-event-detail-ticket {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--ekj-event-detail-accent);
    --bs-btn-border-color: var(--ekj-event-detail-accent);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #4b08a1;
    --bs-btn-hover-border-color: #4b08a1;
}

.ekj-event-detail-back {
    --bs-btn-color: var(--ekj-event-detail-accent);
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: rgba(35, 0, 71, 0.28);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ekj-event-detail-accent);
    --bs-btn-hover-border-color: var(--ekj-event-detail-accent);
}

.ekj-event-detail-ticket:hover,
.ekj-event-detail-ticket:focus-visible,
.ekj-event-detail-back:hover,
.ekj-event-detail-back:focus-visible {
    box-shadow: 0 10px 22px rgba(35, 0, 71, 0.16);
    transform: translateY(-2px);
}

.ekj-event-detail-content {
    background: var(--ekj-event-detail-bg);
}

.ekj-event-detail-tabs {
    border-bottom: 1px solid #dfe2ec;
    gap: 2rem;
}

.ekj-event-detail-tabs .nav-link {
    position: relative;
    padding: 0 0 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ekj-event-detail-muted);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-event-detail-tabs .nav-link:hover,
.ekj-event-detail-tabs .nav-link:focus-visible,
.ekj-event-detail-tabs .nav-link.active {
    color: var(--ekj-event-detail-accent);
}

.ekj-event-detail-tabs .nav-link.active::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: var(--ekj-event-detail-accent);
    content: "";
}

.ekj-event-detail-body {
    color: var(--ekj-event-detail-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.85;
}

.ekj-event-detail-body h2,
.ekj-event-detail-body h3,
.ekj-event-detail-body h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--ekj-event-detail-accent);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ekj-event-detail-body > *:last-child {
    margin-bottom: 0;
}

.ekj-event-detail-location-text {
    color: var(--ekj-event-detail-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 700;
    line-height: 1.5;
}

.ekj-event-detail-location-text p {
    margin-bottom: 0;
}

.ekj-event-detail-location-text .bi {
    color: var(--ekj-event-detail-accent);
    font-size: 1.25rem;
}

.ekj-event-detail-map-frame {
    overflow: hidden;
    border: 1px solid #dfe2ec;
    border-radius: 6px;
    background: #f3f1fa;
}

.ekj-event-detail-map-canvas {
    width: 100%;
    min-height: 320px;
}

.ekj-map-pulse-marker {
    position: absolute;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.ekj-map-pulse-marker::before {
    position: absolute;
    inset: 3px;
    content: "";
    border: 2px solid #e82f14;
    border-radius: 999px;
    opacity: .55;
    animation: ekj-map-pin-pulse 1800ms ease-out infinite;
}

.ekj-map-pulse-marker-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 12px;
    height: 12px;
    border: 2px solid #e82f14;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(35, 0, 71, .15);
    transform: translate(-50%, -50%);
}

@keyframes ekj-map-pin-pulse {
    0% {
        opacity: .55;
        transform: scale(.45);
    }

    72% {
        opacity: 0;
        transform: scale(1.35);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

.ekj-event-detail-card,
.ekj-event-detail-cta {
    border-radius: 6px;
}

.ekj-event-detail-card {
    background: #f3f1fa;
}

.ekj-event-detail-cta {
    background: var(--ekj-event-detail-cta-bg);
}

.ekj-event-detail-card-title,
.ekj-event-detail-related-title {
    color: var(--ekj-event-detail-accent);
    font-size: 1rem;
    font-weight: 900;
}

.ekj-event-detail-card-row {
    min-height: 54px;
    border-bottom: 1px solid rgba(35, 0, 71, 0.12);
    color: var(--ekj-event-detail-text);
    font-size: 0.82rem;
    font-weight: 800;
}

.ekj-event-detail-card-row .value p{
    margin-bottom: 0px !important;
}

.ekj-event-detail-card-row:last-child {
    border-bottom: 0;
}

.ekj-event-detail-card-row .label {
    min-width: 94px;
}

.ekj-event-detail-card-row .value {
    color: var(--ekj-event-detail-text);
    font-weight: 700;
}

.ekj-event-detail-cta-icon {
    width: 64px;
    height: 64px;
    color: #ffffff;
    font-size: 2rem;
}

.ekj-event-detail-cta-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ekj-event-detail-cta-label {
    color: var(--ekj-event-detail-cta-label);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-event-detail-cta-title {
    color: var(--ekj-event-detail-cta-title);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-event-detail-cta-text {
    color: var(--ekj-event-detail-cta-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
}

.ekj-event-detail-empty {
    color: var(--ekj-event-detail-muted);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 600;
}

.ekj-event-detail-cta .ekj-event-detail-ticket {
    --bs-btn-color: var(--ekj-event-detail-cta-button-text);
    --bs-btn-bg: var(--ekj-event-detail-cta-button-bg);
    --bs-btn-border-color: var(--ekj-event-detail-cta-button-bg);
    --bs-btn-hover-color: var(--ekj-event-detail-cta-button-hover-text);
    --bs-btn-hover-bg: var(--ekj-event-detail-cta-button-hover-bg);
    --bs-btn-hover-border-color: var(--ekj-event-detail-cta-button-hover-bg);
    --bs-btn-active-color: var(--ekj-event-detail-cta-button-hover-text);
    --bs-btn-active-bg: var(--ekj-event-detail-cta-button-hover-bg);
    --bs-btn-active-border-color: var(--ekj-event-detail-cta-button-hover-bg);
}

.ekj-event-detail-related-card {
    border: 1px solid #dfe2ec;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(25, 35, 48, 0.06);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-event-detail-related-card:hover,
.ekj-event-detail-related-card:focus-within {
    border-color: rgba(35, 0, 71, 0.18);
    box-shadow: 0 13px 28px rgba(25, 35, 48, 0.11);
    transform: translateY(-4px);
}

.ekj-event-detail-related-image {
    overflow: hidden;
    background: #d3dce8;
}

.ekj-event-detail-related-image img {
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-event-detail-related-card:hover .ekj-event-detail-related-image img,
.ekj-event-detail-related-card:focus-within .ekj-event-detail-related-image img {
    transform: scale(1.035);
}

.ekj-event-detail-related-card .card-body {
    min-height: 130px;
    padding: 1rem 1.1rem;
}

.ekj-event-detail-related-time {
    color: var(--ekj-event-detail-muted);
    font-size: 0.74rem;
    font-weight: 800;
}

.ekj-event-detail-related-heading {
    color: var(--ekj-event-detail-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 900;
    line-height: 1.25;
}

.ekj-event-list {
    background: var(--ekj-event-list-bg);
    color: var(--ekj-event-list-text);
}

.ekj-event-list-toolbar {
    min-height: 44px;
}

.ekj-event-list-filter {
    --bs-btn-padding-x: 1.15rem;
    --bs-btn-padding-y: 0.62rem;
    --bs-btn-border-radius: 6px;
    --bs-btn-font-size: 0.78rem;
    --bs-btn-font-weight: 900;
    --bs-btn-color: var(--ekj-event-list-text);
    --bs-btn-bg: #f7f7fb;
    --bs-btn-border-color: #dfe2ec;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ekj-event-list-accent);
    --bs-btn-hover-border-color: var(--ekj-event-list-accent);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ekj-event-list-accent);
    --bs-btn-active-border-color: var(--ekj-event-list-accent);
    min-height: 42px;
    text-transform: uppercase;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease);
}

.ekj-event-list-filter.active {
    color: #ffffff;
    background: var(--ekj-event-list-accent);
    border-color: var(--ekj-event-list-accent);
}

.ekj-event-list-filter:hover,
.ekj-event-list-filter:focus-visible,
.ekj-event-list-load:hover,
.ekj-event-list-load:focus-visible {
    box-shadow: 0 8px 18px rgba(25, 35, 48, 0.12);
}

.ekj-event-list-select {
    width: min(100%, 310px);
}

.ekj-event-list-select .input-group-text,
.ekj-event-list-select .form-select {
    min-height: 42px;
    border-color: #dfe2ec;
    color: var(--ekj-event-list-text);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ekj-event-list-select .input-group-text {
    border-right: 0;
    background: #ffffff;
    color: var(--ekj-event-list-accent);
}

.ekj-event-list-select .form-select {
    border-left: 0;
    box-shadow: none;
}

.ekj-event-list-select .form-select:focus {
    border-color: var(--ekj-event-list-accent);
    box-shadow: 0 0 0 0.18rem rgba(35, 0, 71, 0.1);
}

.ekj-event-list-panel {
    border: 1px solid #e0e4ee;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 6px 19px rgba(25, 35, 48, 0.045);
}

.ekj-event-list-scroll-shell {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
    border-radius: 6px;
    box-shadow: 0 6px 19px rgba(25, 35, 48, 0.045);
}

.ekj-event-list-scroll-shell .ekj-event-list-panel {
    width: 100%;
    max-width: 100%;
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .ekj-event-list-scroll-shell .ekj-event-list-panel {
        overflow-x: scroll;
        scrollbar-width: thin;
        scrollbar-color: var(--ekj-event-list-accent) #ece8ed;
        scrollbar-gutter: stable;
    }

    .ekj-event-list-scroll-shell .ekj-event-list-panel::-webkit-scrollbar {
        height: 8px;
    }

    .ekj-event-list-scroll-shell .ekj-event-list-panel::-webkit-scrollbar-track {
        background: #ece8ed;
    }

    .ekj-event-list-scroll-shell .ekj-event-list-panel::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: var(--ekj-event-list-accent);
    }

    .ekj-event-list-scroll-shell::before,
    .ekj-event-list-scroll-shell::after {
        position: absolute;
        top: 1px;
        bottom: 1px;
        z-index: 2;
        width: 48px;
        content: "";
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
    }

    .ekj-event-list-scroll-shell::before {
        left: 1px;
        border-radius: 5px 0 0 5px;
        background: linear-gradient(270deg, transparent 0%, var(--ekj-event-list-accent) 100%);
    }

    .ekj-event-list-scroll-shell::after {
        right: 1px;
        border-radius: 0 5px 5px 0;
        background: linear-gradient(90deg, transparent 0%, var(--ekj-event-list-accent) 100%);
    }

    .ekj-event-list-scroll-shell.can-scroll-left::before,
    .ekj-event-list-scroll-shell.can-scroll-right::after {
        opacity: 0.18;
    }
}

.ekj-event-list-panel .table {
    min-width: 900px;
    color: var(--ekj-event-list-text);
}

.ekj-event-list-panel thead th {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e0e4ee;
    background: #f2f3f8;
    color: var(--ekj-event-list-text);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ekj-event-list-panel tbody td {
    padding: 0.95rem 1.25rem;
    border-color: #e6e9f1;
    vertical-align: middle;
}

.ekj-event-list-time {
    width: 86px;
    color: var(--ekj-event-list-text);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.ekj-event-list-time span {
    display: block;
}

.ekj-event-list-time-separator {
    width: 10px;
    height: 1px;
    margin: 0.35rem 0;
    background: var(--ekj-event-list-muted);
}

.ekj-event-list-image {
    width: 104px;
    height: 72px;
    overflow: hidden;
    border-radius: 4px;
    background: #d3dce8;
}

.ekj-event-list-image img {
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-event-list-panel tbody tr {
    transition:
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease);
}

.ekj-event-list-panel tbody tr:hover,
.ekj-event-list-panel tbody tr:focus-within {
    background: #fbfbfe;
    box-shadow: inset 3px 0 0 var(--ekj-event-list-accent);
}

.ekj-event-list-panel tbody tr:hover .ekj-event-list-image img,
.ekj-event-list-panel tbody tr:focus-within .ekj-event-list-image img {
    transform: scale(1.035);
}

.ekj-event-list-title {
    color: var(--ekj-event-list-text);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.ekj-event-list-text,
.ekj-event-list-location,
.ekj-event-list-empty {
    color: var(--ekj-event-list-muted);
    font-size: 0.84rem;
    line-height: 1.35;
}

.ekj-event-list-location p {
    margin-bottom: 0px !important;
}

.ekj-event-list-badge {
    display: inline-flex;
    align-items: center;
    max-width: 180px;
    padding: 0.42rem 0.75rem;
    border-radius: 3px;
    background: #e8f2ff;
    color: var(--ekj-event-list-accent);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.ekj-event-list-button,
.ekj-event-list-load {
    --bs-btn-padding-x: 1.2rem;
    --bs-btn-padding-y: 0.55rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 0.72rem;
    --bs-btn-font-weight: 900;
    --bs-btn-color: var(--ekj-event-list-accent);
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: var(--ekj-event-list-accent);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ekj-event-list-accent);
    --bs-btn-hover-border-color: var(--ekj-event-list-accent);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ekj-event-list-accent);
    --bs-btn-active-border-color: var(--ekj-event-list-accent);
    min-width: 112px;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-event-list-button:active,
.ekj-event-list-load:active {
    transform: scale(0.98);
}

.ekj-form-section {
    background: var(--ekj-form-bg);
}

.ekj-form-icon {
    width: 70px;
    height: 70px;
    border: 0;
    border-radius: 6px;
    background: var(--ekj-form-icon-bg);
    color: var(--ekj-form-icon);
    font-size: 2rem;
}

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

.ekj-form-copy {
    min-width: 0;
}

.ekj-form-label {
    color: var(--ekj-form-label);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-form-title {
    color: var(--ekj-form-title);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-form-text {
    max-width: 390px;
    color: var(--ekj-form-text);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.25;
}

.ekj-form {
    width: 100%;
    max-width: 420px;
}

.ekj-form .input-group {
    flex-wrap: nowrap;
    box-shadow: 0 5px 9px rgba(25, 35, 48, 0.1);
}

.ekj-form-input {
    min-width: 0;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: 4px 0 0 4px;
    background: var(--ekj-form-input-bg);
    color: #4e5968;
    font-size: 0.98rem;
    font-weight: 600;
    transition: border-color var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease);
}

.ekj-form-input::placeholder {
    color: #8b96a3;
    opacity: 1;
}

.ekj-form-input:focus {
    border-color: var(--ekj-form-button-bg);
    background: var(--ekj-form-input-bg);
    box-shadow: 0 0 0 0.18rem rgba(75, 8, 161, 0.18);
}

.ekj-form-button {
    --bs-btn-padding-x: 1.45rem;
    --bs-btn-padding-y: 0.65rem;
    --bs-btn-border-radius: 0 4px 4px 0;
    --bs-btn-font-size: 0.9rem;
    --bs-btn-font-weight: 900;
    --bs-btn-color: var(--ekj-form-button-text);
    --bs-btn-bg: var(--ekj-form-button-bg);
    --bs-btn-border-color: var(--ekj-form-button-bg);
    --bs-btn-hover-color: var(--ekj-form-button-text);
    --bs-btn-hover-bg: #2d006b;
    --bs-btn-hover-border-color: #2d006b;
    --bs-btn-active-color: var(--ekj-form-button-text);
    --bs-btn-active-bg: #2d006b;
    --bs-btn-active-border-color: #2d006b;
    min-width: 140px;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-form-button:hover,
.ekj-form-button:focus-visible,
.ekj-event-map-button:hover,
.ekj-event-map-button:focus-visible {
    box-shadow: 0 8px 18px rgba(75, 8, 161, 0.18);
}

.ekj-form-button:active,
.ekj-event-map-button:active {
    transform: scale(0.98);
}

.ekj-form-success {
    color: var(--ekj-form-title);
    font-size: 0.92rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--motion-medium) var(--motion-ease), transform var(--motion-medium) var(--motion-ease);
}

.ekj-form-success.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ekj-school-form-section {
    background: var(--ekj-school-form-bg);
}

.ekj-school-form-card {
    border: 1px solid rgba(75, 8, 161, 0.06);
    border-radius: 6px;
    background: var(--ekj-school-form-card-bg);
    padding: clamp(1.35rem, 2.2vw, 2rem);
    box-shadow: 0 6px 18px rgba(25, 35, 48, 0.06);
}

.ekj-school-form-title {
    color: var(--ekj-school-form-title);
    font-size: clamp(1rem, 1.2vw, 1.18rem);
    font-weight: 900;
    line-height: 1.1;
}

.ekj-school-form-text {
    max-width: 36rem;
    color: var(--ekj-school-form-text);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.55;
}

.ekj-school-form {
    width: 100%;
}

.ekj-school-form-fields label,
.ekj-school-form-fields .form-label {
    color: var(--ekj-school-form-text);
    font-size: 0.82rem;
    font-weight: 800;
}

.ekj-school-form-fields .form-control,
.ekj-school-form-fields .form-select {
    min-height: 2.65rem;
    border: 1px solid rgba(75, 8, 161, 0.09);
    border-radius: 4px;
    background-color: var(--ekj-school-form-input-bg);
    color: var(--ekj-school-form-text);
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: none;
    transition: border-color var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease);
}

.ekj-school-form-fields textarea.form-control {
    min-height: 7rem;
}

.ekj-school-form-fields .form-control:focus,
.ekj-school-form-fields .form-select:focus {
    border-color: var(--ekj-school-form-accent);
    box-shadow: 0 0 0 0.18rem rgba(75, 8, 161, 0.14);
}

.ekj-school-form-fields .form-check {
    margin-bottom: 0.35rem;
}

.ekj-school-form-fields .form-check-label {
    font-size: 0.86rem;
    line-height: 1.35;
    font-weight: normal !important;
}

.ekj-school-form-fields .form-check-input {
    border-color: rgba(75, 8, 161, 0.22);
}

.ekj-school-form-fields .form-check-input:checked {
    border-color: var(--ekj-school-form-accent);
    background-color: var(--ekj-school-form-accent);
}

.ekj-school-form-button {
    --bs-btn-border-radius: 4px;
    --bs-btn-color: var(--ekj-school-form-button-text);
    --bs-btn-bg: var(--ekj-school-form-button-bg);
    --bs-btn-border-color: var(--ekj-school-form-button-bg);
    --bs-btn-hover-color: var(--ekj-school-form-button-text);
    --bs-btn-hover-bg: #2d006b;
    --bs-btn-hover-border-color: #2d006b;
    --bs-btn-active-color: var(--ekj-school-form-button-text);
    --bs-btn-active-bg: #2d006b;
    --bs-btn-active-border-color: #2d006b;
}

.ekj-school-resources-card {
    display: flex;
    flex-direction: column;
}

.ekj-school-resource-list {
    min-width: 0;
}

.ekj-school-resource-item {
    min-width: 0;
    border-radius: 6px;
}

.ekj-school-resource-image {
    width: clamp(104px, 10vw, 132px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    background: #ffffff;
}

.ekj-school-resource-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-school-resource-item:hover .ekj-school-resource-image img,
.ekj-school-resource-item:focus-within .ekj-school-resource-image img {
    transform: scale(1.035);
}

.ekj-school-resource-title {
    color: var(--ekj-school-form-title);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.2;
}

.ekj-school-resource-text {
    color: var(--ekj-school-form-text);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.35;
}

.ekj-school-resource-button {
    --bs-btn-padding-x: 0.7rem;
    --bs-btn-padding-y: 0.42rem;
    --bs-btn-border-radius: 4px;
    --bs-btn-font-size: 0.72rem;
    --bs-btn-font-weight: 900;
    --bs-btn-color: var(--ekj-school-form-accent);
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: rgba(75, 8, 161, 0.22);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ekj-school-form-accent);
    --bs-btn-hover-border-color: var(--ekj-school-form-accent);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ekj-school-form-accent);
    --bs-btn-active-border-color: var(--ekj-school-form-accent);
    letter-spacing: 0;
}

.ekj-partners-section {
    background: var(--ekj-partners-bg);
}

.ekj-partners-title {
    color: var(--ekj-partners-title);
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-partners-carousel {
    width: 100%;
    min-height: 58px;
}

.ekj-partners-carousel .splide__track {
    overflow: hidden;
}

.ekj-partners-carousel .splide__list {
    align-items: center;
}

.ekj-partners-carousel .splide__slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 42px;
}

.ekj-partner-logo {
    height: 45px;
    text-decoration: none;
    transition: opacity var(--motion-fast) var(--motion-ease), transform var(--motion-medium) var(--motion-jump);
    opacity: 0.88;
    transform: scale(0.9);
}

.ekj-partner-logo img {
    display: block;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
}

.ekj-partner-logo:hover,
.ekj-partner-logo:focus-visible {
    opacity: 1;
    transform: scale(1);
}

.ekj-event-map-section {
    background: var(--ekj-event-map-bg);
}

.ekj-event-map-copy {
    max-width: 360px;
}

.ekj-event-map-title {
    color: var(--ekj-event-map-title);
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.05;
}

.ekj-event-map-text {
    color: var(--ekj-event-map-text);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.35;
}

.ekj-event-map-button {
    --bs-btn-padding-x: 1.35rem;
    --bs-btn-padding-y: 0.72rem;
    --bs-btn-border-radius: 3px;
    --bs-btn-font-size: 0.84rem;
    --bs-btn-font-weight: 900;
    --bs-btn-color: var(--ekj-event-map-button-text);
    --bs-btn-bg: var(--ekj-event-map-button-bg);
    --bs-btn-border-color: var(--ekj-event-map-button-bg);
    --bs-btn-hover-color: var(--ekj-event-map-button-text);
    --bs-btn-hover-bg: #b92715;
    --bs-btn-hover-border-color: #b92715;
    --bs-btn-active-color: var(--ekj-event-map-button-text);
    --bs-btn-active-bg: #b92715;
    --bs-btn-active-border-color: #b92715;
    line-height: 1;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-event-map-frame {
    overflow: hidden;
    border-radius: 4px;
    background: #eef2f8;
}

.ekj-event-map-canvas {
    width: 100%;
}

.ekj-event-map-canvas-small {
    min-height: 220px;
}

.ekj-event-map-canvas-medium {
    min-height: 270px;
}

.ekj-event-map-canvas-large {
    min-height: 340px;
}

.ekj-parking-map-section {
    overflow: hidden;
    background: var(--ekj-parking-map-bg);
}

.ekj-parking-map-panel {
    overflow: hidden;
    border: 1px solid rgba(75, 8, 161, 0.06);
    border-radius: 8px;
    background: var(--ekj-parking-map-panel-bg);
    box-shadow: 0 8px 22px rgba(25, 35, 48, 0.06);
}

.ekj-parking-map-copy {
    padding: clamp(1.35rem, 2vw, 2rem);
}

.ekj-parking-map-title {
    color: var(--ekj-parking-map-title);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-parking-map-text {
    max-width: 340px;
    color: var(--ekj-parking-map-text);
    font-size: 0.86rem;
    line-height: 1.55;
}

.ekj-parking-map-text p {
    margin-bottom: 0;
}

.ekj-parking-map-list-item {
    color: var(--ekj-parking-map-text);
    font-size: 0.78rem;
    line-height: 1.35;
}

.ekj-parking-map-list-item strong {
    color: var(--ekj-parking-map-title);
    font-weight: 900;
}

.ekj-parking-map-badge,
.ekj-parking-map-pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ekj-parking-color);
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
}

.ekj-parking-map-badge {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 6px;
    font-size: 0.82rem;
    box-shadow: 0 5px 12px rgba(25, 35, 48, 0.08);
}

.ekj-parking-map-cta {
    padding: 1rem;
    border-radius: 6px;
    background: color-mix(in srgb, var(--ekj-parking-map-cta-bg) var(--ekj-parking-map-cta-bg-opacity), transparent);
    color: var(--ekj-parking-map-cta-text);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
}

.ekj-parking-map-cta-icon {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--ekj-parking-map-accent);
    font-size: 1rem;
}

.ekj-parking-map-cta-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ekj-parking-map-cta-link {
    color: var(--ekj-parking-map-cta-button-text);
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
}

.ekj-parking-map-cta-link:hover,
.ekj-parking-map-cta-link:focus-visible {
    color: var(--ekj-parking-map-cta-button-text);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.ekj-parking-map-frame {
    overflow: hidden;
    min-height: 350px;
    border-radius: 0 8px 8px 0;
    background: #eef2f8;
}

.ekj-parking-map-canvas {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.ekj-parking-google-marker {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 6px;
    background: var(--ekj-parking-color);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    cursor: default;
    user-select: none;
    transform: translate(-50%, -100%);
    box-shadow: 0 6px 15px rgba(25, 35, 48, 0.12);
}

.ekj-parking-google-marker::after {
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 10px;
    height: 10px;
    background: inherit;
    content: "";
    transform: translateX(-50%) rotate(45deg);
}

.ekj-parking-map-visual {
    position: relative;
    isolation: isolate;
    min-height: 350px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(0deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px) 0 0 / 42px 42px,
        #eef0f5;
}

.ekj-parking-map-visual::before,
.ekj-parking-map-visual::after {
    position: absolute;
    z-index: 0;
    border-radius: 999px;
    background: rgba(206, 214, 226, 0.72);
    content: "";
}

.ekj-parking-map-visual::before {
    left: 7%;
    top: 56%;
    width: 88%;
    height: 22px;
    transform: rotate(-3deg);
}

.ekj-parking-map-visual::after {
    right: 18%;
    top: -16%;
    width: 28px;
    height: 132%;
    transform: rotate(8deg);
}

.ekj-parking-map-road,
.ekj-parking-map-water,
.ekj-parking-map-route,
.ekj-parking-map-arena,
.ekj-parking-map-label,
.ekj-parking-map-pin {
    position: absolute;
}

.ekj-parking-map-road {
    z-index: 1;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(208, 214, 225, 0.9);
}

.ekj-parking-map-road--horizontal {
    left: 12%;
    top: 78%;
    width: 82%;
    height: 26px;
    transform: rotate(-2deg);
}

.ekj-parking-map-road--diagonal {
    left: 20%;
    top: 8%;
    width: 24px;
    height: 96%;
    transform: rotate(-12deg);
}

.ekj-parking-map-road--vertical {
    right: 10%;
    top: 0;
    width: 26px;
    height: 100%;
    transform: rotate(4deg);
}

.ekj-parking-map-water {
    left: -8%;
    bottom: 5%;
    z-index: 0;
    width: 58%;
    height: 30px;
    border-radius: 999px;
    background: rgba(196, 206, 222, 0.86);
    transform: rotate(-4deg);
}

.ekj-parking-map-route {
    z-index: 4;
    border-top: 3px dashed var(--ekj-parking-map-accent);
    opacity: 0.78;
}

.ekj-parking-map-route--main {
    left: 28%;
    top: 57%;
    width: 36%;
    transform: rotate(9deg);
}

.ekj-parking-map-route--station {
    left: 61%;
    top: 27%;
    width: 23%;
    transform: rotate(-78deg);
}

.ekj-parking-map-arena {
    left: 43%;
    top: 23%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 120px;
    height: 86px;
    background: #2d063f;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    transform: rotate(9deg);
    box-shadow: 0 13px 23px rgba(45, 6, 63, 0.12);
}

.ekj-parking-map-label {
    z-index: 5;
    padding: 0.28rem 0.48rem;
    border: 1px solid rgba(25, 35, 48, 0.08);
    border-radius: 4px;
    background: #ffffff;
    color: #263347;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 3px 8px rgba(25, 35, 48, 0.06);
}

.ekj-parking-map-label--station {
    left: 10%;
    top: 36%;
}

.ekj-parking-map-label--road {
    right: 8%;
    top: 34%;
    background: #3d4655;
    color: #ffffff;
}

.ekj-parking-map-label--walk {
    left: 57%;
    top: 61%;
}

.ekj-parking-map-pin {
    left: var(--ekj-parking-x);
    top: var(--ekj-parking-y);
    z-index: 6;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 6px;
    font-size: 0.82rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 6px 15px rgba(25, 35, 48, 0.12);
}

.ekj-parking-map-pin::after {
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 10px;
    height: 10px;
    background: inherit;
    content: "";
    transform: translateX(-50%) rotate(45deg);
}

.ekj-section {
    background: var(--ekj-section-bg);
}

.ekj-copy-block {
    max-width: 780px;
}

.ekj-eyebrow {
    color: var(--ekj-accent);
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ekj-section-title {
    color: var(--ekj-title-color);
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    font-weight: 900;
    line-height: 1.05;
}

.ekj-section-text {
    color: var(--ekj-text-color);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.6;
}

.ekj-section-text p:last-child,
.ekj-hero-text p:last-child,
.ekj-footer-text p:last-child {
    margin-bottom: 0;
}

.ekj-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 14px 29px rgba(25, 35, 48, 0.11);
}

.ekj-image-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ekj-image-frame:hover img,
.ekj-image-frame:focus-within img {
    transform: scale(1.035);
}

.ekj-image-text-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 0;
    background: transparent;
    font-size: 1.7rem;
}

.ekj-image-text-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ekj-image-text--compact .row {
    align-items: center;
}

.ekj-image-text--compact .ekj-copy-block {
    display: flex;
    gap: 1.35rem;
}

.ekj-image-text--compact .ekj-section-title {
    margin-bottom: 1rem !important;
    color: var(--ekj-title-color);
    font-size: clamp(1.15rem, 1.55vw, 1.45rem);
    line-height: 1.15;
}

.ekj-image-text--compact .ekj-eyebrow {
    font-size: 0.78rem;
}

.ekj-image-text--compact .ekj-section-text {
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.55;
}

.ekj-image-text--compact .ekj-section-text ul {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.ekj-image-text--compact .ekj-section-text li + li {
    margin-top: 0.45rem;
}

.ekj-image-text--compact .ekj-image-frame {
    border-radius: 6px;
    box-shadow: 0 5px 13px rgba(25, 35, 48, 0.1);
}

.ekj-image-text--compact .ekj-image-frame img {
    aspect-ratio: 16 / 9;
}

.ekj-image-text-card {
    overflow: hidden;
    border: 1px solid rgba(75, 8, 161, 0.06);
    border-radius: 6px;
    background: var(--ekj-image-text-card-bg);
    box-shadow: 0 6px 18px rgba(25, 35, 48, 0.06);
}

.ekj-image-text-card-copy {
    min-height: 170px;
    padding: clamp(1.15rem, 2vw, 2rem);
}

.ekj-image-text-card-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 6px;
}

.ekj-image-text-card-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ekj-image-text-card-eyebrow,
.ekj-image-text-card-title {
    color: var(--ekj-title-color);
    line-height: 1;
}

.ekj-image-text-card-eyebrow {
    font-size: 0.74rem;
    font-weight: 900;
}

.ekj-image-text-card-title {
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.15;
}

.ekj-image-text-card-text {
    max-width: 520px;
    color: var(--ekj-text-color);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.55;
}

.ekj-image-text-card-text p:last-child {
    margin-bottom: 0;
}

.ekj-image-text-card-link {
    color: var(--ekj-accent);
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition:
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-image-text-card-link:hover,
.ekj-image-text-card-link:focus-visible {
    color: var(--ekj-title-color);
    transform: translateX(3px);
}

.ekj-image-text-card-image {
    min-height: 170px;
    overflow: hidden;
}

.ekj-image-text-card-image img {
    display: block;
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-image-text-card:hover .ekj-image-text-card-image img,
.ekj-image-text-card:focus-within .ekj-image-text-card-image img {
    transform: scale(1.035);
}

.ekj-content-card-grid-card {
    display: grid;
    min-height: 170px;
    overflow: hidden;
    border: 1px solid rgba(75, 8, 161, 0.06);
    border-radius: 6px;
    background: var(--ekj-content-card-bg);
    box-shadow: 0 6px 18px rgba(25, 35, 48, 0.06);
}

.ekj-content-card-grid--photo .ekj-content-card-grid-card {
    grid-template-columns: minmax(145px, 42%) minmax(0, 1fr);
}

.ekj-content-card-grid--photo .ekj-content-card-grid-media {
    align-self: stretch;
    height: 100%;
}

.ekj-content-card-grid--photo .ekj-content-card-grid-copy {
    align-self: center;
}

.ekj-content-card-grid--icon .ekj-content-card-grid-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    padding: clamp(1.15rem, 2vw, 1.65rem);
    column-gap: 1.35rem;
}

.ekj-content-card-grid-media {
    overflow: hidden;
}

.ekj-content-card-grid--photo .ekj-content-card-grid-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-content-card-grid--photo .ekj-content-card-grid-card:hover .ekj-content-card-grid-media img,
.ekj-content-card-grid--photo .ekj-content-card-grid-card:focus-within .ekj-content-card-grid-media img {
    transform: scale(1.035);
}

.ekj-content-card-grid--icon .ekj-content-card-grid-media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    max-width: 3.4rem;
    max-height: 3.4rem;
    border-radius: 0;
    background: transparent;
}

.ekj-content-card-grid--icon .ekj-content-card-grid-media img {
    display: block;
    width: auto;
    height: auto;
    max-width: 3.4rem;
    max-height: 3.4rem;
    object-fit: contain;
}

.ekj-content-card-grid-copy {
    padding: clamp(1.05rem, 1.75vw, 1.45rem);
}

.ekj-content-card-grid--icon .ekj-content-card-grid-copy {
    padding: 0;
}

.ekj-content-card-grid-title {
    max-width: 15rem;
    color: var(--ekj-title-color);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.15;
}

.ekj-content-card-grid-text {
    color: var(--ekj-text-color);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.55;
}

.ekj-content-card-grid-text p:last-child,
.ekj-content-card-grid-text ul:last-child {
    margin-bottom: 0;
}

.ekj-content-card-grid-text ul {
    padding-left: 1rem;
}

.ekj-content-card-grid-text li + li {
    margin-top: 0.35rem;
}

.ekj-visit-cards-header {
    max-width: 720px;
}

.ekj-visit-cards-label {
    color: var(--ekj-accent);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.ekj-visit-cards-title {
    color: var(--ekj-title-color);
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    font-weight: 900;
    line-height: 1.05;
}

.ekj-visit-cards-subtitle {
    color: var(--ekj-text-color);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.45;
}

.ekj-visit-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(25, 35, 48, 0.1);
    border-radius: 6px;
    background: var(--ekj-visit-card-bg);
    box-shadow: 0 6px 18px rgba(25, 35, 48, 0.06);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-visit-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(1.2rem, 1.8vw, 1.55rem);
}

.ekj-visit-card-title {
    color: var(--ekj-title-color);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.15;
}

.ekj-visit-card-text {
    color: var(--ekj-text-color);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.55;
}

.ekj-visit-card-text p:last-child {
    margin-bottom: 0;
}

.ekj-visit-card-link {
    margin-top: auto !important;
    color: var(--ekj-accent);
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition:
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-jump);
}

.ekj-visit-card-image {
    overflow: hidden;
    margin-top: auto;
    background: #eef2f8;
}

.ekj-visit-card-image img {
    display: block;
    aspect-ratio: 16 / 10;
    transition: transform var(--motion-slow) var(--motion-jump);
}

.ekj-visit-card:hover,
.ekj-visit-card:focus-within {
    border-color: rgba(37, 0, 168, 0.18);
    box-shadow: 0 12px 25px rgba(25, 35, 48, 0.11);
    transform: translateY(-4px);
}

.ekj-visit-card:hover .ekj-visit-card-image img,
.ekj-visit-card:focus-within .ekj-visit-card-image img {
    transform: scale(1.035);
}

.ekj-visit-card-link:hover,
.ekj-visit-card-link:focus-visible {
    color: var(--ekj-title-color);
    transform: translateX(3px);
}

/* Shared typography scale for all EK Jumping sections. */
.ekj-hero-title,
.ekj-landing-title,
.ekj-page-hero-title,
.ekj-blog-detail-title,
.ekj-event-detail-title {
    font-size: var(--ekj-type-page-title);
    line-height: var(--ekj-leading-page-title);
}

.ekj-cta-title,
.ekj-program-label,
.ekj-features-title,
.ekj-features-line-heading,
.ekj-event-timeline-title,
.ekj-faq-title,
.ekj-blog-overview-title,
.ekj-gallery-overview-title,
.ekj-blog-detail-related-title,
.ekj-events-overview-title,
.ekj-event-detail-card-title,
.ekj-event-detail-cta-title,
.ekj-event-detail-related-title,
.ekj-form-title,
.ekj-school-form-title,
.ekj-partners-title,
.ekj-event-map-title,
.ekj-parking-map-title,
.ekj-section-title,
.ekj-image-text--compact .ekj-section-title,
.ekj-image-text-card-title,
.ekj-visit-cards-title {
    font-size: var(--ekj-type-section-title);
    line-height: var(--ekj-leading-section-title);
}

.ekj-landing-card-title,
.ekj-features-card-title,
.ekj-features-line-title,
.ekj-event-timeline-card-title,
.ekj-gallery-card-title,
.ekj-blog-detail-body h2,
.ekj-blog-detail-body h3,
.ekj-blog-detail-body h4,
.ekj-blog-detail-related-heading,
.ekj-blog-index-card-title,
.ekj-event-detail-body h4,
.ekj-event-detail-related-heading,
.ekj-event-list-title,
.ekj-school-resource-title,
.ekj-content-card-grid-title,
.ekj-visit-card-title {
    font-size: var(--ekj-type-card-title);
    line-height: var(--ekj-leading-card-title);
}

.ekj-cta-text,
.ekj-hero-text,
.ekj-hero-text-sm,
.ekj-landing-subtitle,
.ekj-landing-card-text,
.ekj-page-hero-text,
.ekj-program-intro,
.ekj-program-card-description,
.ekj-features-subtitle,
.ekj-features-card-text,
.ekj-features-line-intro,
.ekj-features-line-text,
.ekj-event-timeline-footer,
.ekj-event-timeline-empty,
.ekj-faq-answer,
.ekj-blog-card-text,
.ekj-gallery-detail-empty,
.ekj-blog-detail-body,
.ekj-blog-detail-empty,
.ekj-blog-index-card .ekj-blog-card-text,
.ekj-blog-index-empty,
.ekj-event-card-text,
.ekj-event-detail-intro,
.ekj-event-detail-body,
.ekj-event-detail-location-text,
.ekj-event-detail-cta-text,
.ekj-event-detail-empty,
.ekj-event-list-text,
.ekj-event-list-location,
.ekj-event-list-empty,
.ekj-form-text,
.ekj-form-input,
.ekj-form-success,
.ekj-school-form-text,
.ekj-school-form-fields .form-control,
.ekj-school-form-fields .form-select,
.ekj-school-form-fields .form-check-label,
.ekj-school-resource-text,
.ekj-blog-index-search-input,
.ekj-event-list-select .form-select,
.ekj-event-map-text,
.ekj-parking-map-text,
.ekj-parking-map-list-item,
.ekj-parking-map-cta,
.ekj-section-text,
.ekj-image-text--compact .ekj-section-text,
.ekj-image-text-card-text,
.ekj-content-card-grid-text,
.ekj-visit-cards-subtitle,
.ekj-visit-card-text {
    font-size: var(--ekj-type-body);
    line-height: var(--ekj-leading-body);
}

.ekj-hero-eyebrow,
.ekj-page-hero-breadcrumb,
.ekj-program-card-weekday,
.ekj-program-card-month,
.ekj-event-timeline-label,
.ekj-event-timeline-date,
.ekj-event-timeline-location,
.ekj-faq-label,
.ekj-blog-card-date,
.ekj-gallery-card-count,
.ekj-blog-detail-breadcrumb,
.ekj-blog-detail-category,
.ekj-blog-detail-date,
.ekj-blog-detail-related-date,
.ekj-event-card-date,
.ekj-event-detail-breadcrumb,
.ekj-event-detail-badge,
.ekj-event-detail-meta,
.ekj-event-detail-tabs .nav-link,
.ekj-event-detail-card-row,
.ekj-event-detail-cta-label,
.ekj-event-detail-related-time,
.ekj-event-list-time,
.ekj-event-list-panel thead th,
.ekj-event-list-badge,
.ekj-form-label,
.ekj-school-form-fields .form-label,
.ekj-eyebrow,
.ekj-image-text--compact .ekj-eyebrow,
.ekj-image-text-card-eyebrow,
.ekj-visit-cards-label {
    font-size: var(--ekj-type-label);
    line-height: var(--ekj-leading-label);
}

.ekj-program-overview-link,
.ekj-features-link,
.ekj-features-link-button,
.ekj-features-line-link,
.ekj-blog-detail-related-link,
.ekj-blog-index-card-button,
.ekj-image-text-card-link,
.ekj-visit-card-link,
.ekj-parking-map-cta-link {
    font-size: var(--ekj-type-action);
    line-height: var(--ekj-leading-action);
}

.ekj-cta-button,
.ekj-hero-button,
.ekj-landing-card-button,
.ekj-program-filter,
.ekj-program-card-button,
.ekj-blog-card-button,
.ekj-gallery-detail-load-button,
.ekj-blog-index-filter,
.ekj-event-card-button,
.ekj-event-detail-ticket,
.ekj-event-detail-back,
.ekj-event-list-filter,
.ekj-event-list-load,
.ekj-form-button,
.ekj-school-resource-button,
.ekj-event-map-button {
    --bs-btn-font-size: var(--ekj-type-action);
    --bs-btn-line-height: var(--ekj-leading-action);
    line-height: var(--ekj-leading-action);
}

@media (max-width: 575.98px) {
    .ekj-image-text--compact .ekj-copy-block {
        flex-direction: column;
        gap: 1rem;
    }

    .ekj-image-text-card-copy {
        flex-direction: column;
        min-height: auto;
    }

    .ekj-content-card-grid--photo .ekj-content-card-grid-card,
    .ekj-content-card-grid--icon .ekj-content-card-grid-card {
        grid-template-columns: 1fr;
    }

    .ekj-content-card-grid--icon .ekj-content-card-grid-card {
        row-gap: 1rem;
    }

    .ekj-content-card-grid--photo .ekj-content-card-grid-media img {
        min-height: 210px;
    }
}

.ekj-footer {
    background: var(--ekj-footer-bg);
    color: var(--ekj-footer-text);
    padding: 4.2rem 0 3rem;
}

.ekj-footer-logo {
    width: min(100%, var(--ekj-footer-logo-width));
    max-width: var(--ekj-footer-logo-width);
    height: auto;
}

.ekj-footer-title {
    color: var(--ekj-footer-title);
    font-size: 0.8rem;
    font-weight: 900;
    line-height: var(--ekj-leading-label);
}

.ekj-footer a {
    position: relative;
    color: var(--ekj-footer-text);
    text-decoration: none;
    transition: color var(--motion-fast) var(--motion-ease);
}

.ekj-footer a:hover,
.ekj-footer a:focus {
    color: var(--ekj-footer-accent);
}

.ekj-footer-nav li + li {
    margin-top: 0.45rem;
}

.ekj-footer-nav a {
    font-size: 0.8rem;
    font-weight: 500 !important;
    line-height: var(--ekj-leading-label);
}

.ekj-footer-socials a,
.ekj-footer-languages a,
.ekj-footer-languages span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ekj-footer-text);
}

.ekj-footer-socials a {
    font-size: 0.9rem;
    line-height: var(--ekj-leading-action);
}

.ekj-footer-socials img {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

.ekj-footer-languages a,
.ekj-footer-languages span {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: var(--ekj-leading-action);
    text-transform: uppercase;
}

.ekj-footer-languages .active {
    opacity: 0.6;
    pointer-events: none;
}

.ekj-footer-legal {
    color: var(--ekj-footer-text);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: var(--ekj-leading-label);
    text-transform: uppercase;
}

.ekj-back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1030;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #000;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ekj-back-to-top.ekj-is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.ekj-back-to-top:hover,
.ekj-back-to-top:focus {
    background: var(--ekj-gold);
    color: #ffffff;
}

@media (max-width: 991px) {
    .ekj-hero-inner {
        --ekj-hero-content-offset-top: 110px;
    }

    .ekj-hero-animation {
        --ekj-hero-horse-left: 4%;
        --ekj-hero-horse-height: 62%;
        --ekj-hero-horse-width: 112%;
        --ekj-hero-swoosh-left: -10%;
        --ekj-hero-swoosh-bottom: 0%;
        --ekj-hero-swoosh-width: 100%;
    }

    .ekj-hero-animation--ek {
        --ekj-hero-horse-left: 30%;
        --ekj-hero-horse-bottom: 0%;
        --ekj-hero-horse-height: 100%;
        --ekj-hero-horse-width: 66%;
        --ekj-hero-swoosh-left: 18%;
        --ekj-hero-swoosh-bottom: -8%;
        --ekj-hero-swoosh-width: 82%;
    }

    .ekj-hero-animation--ek .ekj-hero-animation-pole {
        bottom: 0;
        width: min(82vw, 480px);
    }

    /* .ekj-hero-animation::after {
        background:
            linear-gradient(180deg, rgba(18, 0, 22, 0.4) 0%, rgba(18, 0, 22, 0.18) 48%, rgba(18, 0, 22, 0.06) 100%),
            linear-gradient(90deg, rgba(18, 0, 22, 0.28) 0%, rgba(18, 0, 22, 0.04) 100%);
    } */

    .ekj-program-swoosh-bg {
        right: -70%;
        bottom: 7%;
        left: -55%;
    }

    .ekj-program-swoosh {
        width: 190%;
        opacity: 1;
        transform: translateX(-12%);
    }

    .ekj-navigation-shell {
        margin-bottom: 0;
    }

    /* .ekj-navigation-page-section {
        margin-bottom: 0;
    } */

    @supports selector(.page-section:has(> .ekj-navigation-shell)) {
        .page-section:has(> .ekj-navigation-shell) {
            margin-bottom: 0;
        }
    }

    .ekj-website-switcher,
    .ekj-top-actions {
        flex-wrap: wrap;
        gap: 0.85rem 1.2rem;
    }

    .ekj-top-actions {
        margin-left: 0;
    }

    .ekj-floating-nav-wrap {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
    }

    .ekj-floating-nav {
        min-height: auto;
        border-radius: 8px;
        background: transparent;
        box-shadow: none !important;
    }

    .ekj-nav-logo {
        max-width: min(var(--ekj-logo-width), 54vw);
        height: 64px;
    }

    .ekj-floating-nav .navbar-collapse {
        padding: 1rem 0;
        background-color: #fff !important;
        color: #31133A !important;
        border-radius: 6px !important;
    }

    .ekj-hero-countdown {
        max-width: min(100%, 720px);
    }

    .ekj-hero-countdown-brand::before {
        display: none;
    }

    .ekj-program-carousel {
        padding-inline: 0;
    }

    .ekj-features-line-card {
        padding-inline: 1.25rem;
    }

    .ekj-features-line--columns-1 .row > [class*="col-"]:not(:last-child) .ekj-features-line-card::after,
    .ekj-features-line--columns-2 .row > [class*="col-"]:not(:last-child) .ekj-features-line-card::after,
    .ekj-features-line--columns-3 .row > [class*="col-"]:not(:last-child) .ekj-features-line-card::after {
        top: auto;
        right: 1.25rem;
        bottom: 0;
        left: 1.25rem;
        width: auto;
        height: 1px;
    }

    .ekj-min-height-large {
        min-height: calc(100vh - 56px);
    }
}

@media (max-width: 767.98px) {

    .ekj-features-line--columns-4 .row > [class*="col-"]:not(:last-child) .ekj-features-line-card::after {
        top: auto;
        right: 1.25rem;
        bottom: 0;
        left: 1.25rem;
        width: auto;
        height: 1px;
    }
}

@media (max-width: 575.98px) {
    .ekj-switcher-link,
    .ekj-top-link,
    .ekj-language-static {
        font-size: 0.78rem;
    }

    .ekj-hero-title {
        font-size: var(--ekj-type-page-title);
    }

    .ekj-page-hero {
        min-height: 260px;
    }

    .ekj-page-hero-title {
        font-size: var(--ekj-type-page-title);
    }

    .ekj-page-hero-text {
        max-width: 310px;
        font-size: var(--ekj-type-body);
    }

    .ekj-hero-eyebrow {
        font-size: var(--ekj-type-label);
    }

    .ekj-hero-countdown-subtitle,
    .ekj-hero-countdown-label {
        font-size: 0.98rem;
    }

    .ekj-hero-text {
        font-size: var(--ekj-type-body);
    }

    .ekj-hero-countdown-value {
        min-height: 48px;
        font-size: 1.8rem;
    }

    .ekj-top-nav-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 0.7rem;
    }

    .ekj-program-carousel {
        padding-inline: 0;
    }

    .ekj-program-carousel .splide__arrow--prev {
        left: -0.85rem;
    }

    .ekj-program-carousel .splide__arrow--next {
        right: -0.85rem;
    }

    .ekj-program-card-day {
        font-size: 3.05rem;
    }

    .ekj-image-text-card-content{
        text-align: center !important;
    }

    .ekj-features-card {
        align-items: center !important;
        padding: 1.4rem;
    }

    .ekj-features-icon {
        font-size: 3rem;
        max-width: 3rem;
        padding-bottom: 2rem;
    }

    .ekj-features-icon img {
        width: 3rem;
        height: 3rem;
    }

    .ekj-event-list-select,
    .ekj-blog-index-search{
        width: 100% !important;
    }

    .ekj-blog-card .card-body {
        padding: 1.25rem;
    }

    .ekj-event-card .card-body {
        min-height: 138px;
        padding: 1.15rem;
    }

    .ekj-form-icon {
        width: 58px;
        height: 58px;
        font-size: 1.65rem;
    }

    .ekj-form-icon img {
        width: 32px;
        height: 32px;
    }

    .ekj-form-title {
        font-size: var(--ekj-type-section-title);
    }

    .ekj-form-button {
        --bs-btn-padding-x: 1rem;
        min-width: 116px;
    }

    .ekj-school-form-card {
        padding: 1.25rem;
    }

    .ekj-school-resource-item {
        flex-direction: column;
    }

    .ekj-school-resource-image {
        width: 100%;
    }

    .ekj-partner-logo {
        height: 30px;
    }

    .ekj-partners-carousel .splide__slide {
        flex-basis: auto;
        width: auto;
    }

    .ekj-event-map-copy {
        max-width: 100%;
    }

    .ekj-event-map-canvas-small,
    .ekj-event-map-canvas-medium,
    .ekj-event-map-canvas-large {
        min-height: 260px;
    }

    .ekj-parking-map-copy {
        padding: 1.4rem;
    }

    .ekj-parking-map-visual {
        min-height: 320px;
    }

    .ekj-parking-map-frame,
    .ekj-parking-map-canvas {
        min-height: 320px;
    }

    .ekj-parking-map-frame {
        border-radius: 0 0 8px 8px;
    }

    .ekj-parking-map-arena {
        width: 92px;
        height: 66px;
        font-size: 0.92rem;
    }

    .ekj-min-height-medium {
        min-height: 520px;
    }

    .ekj-min-height-large {
        min-height: calc(100vh - 56px);
    }
}
