.site-card {
    background: #fff;
    border: 1px solid #e1e1e1 !important;
    border-radius: 0.75rem;
    box-shadow: 0 0.35rem 1.15rem rgba(0, 0, 0, 0.055);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

/* 2026-08-26 — global premium design layer */
:root {
    --pkfa-ink: #17191b;
    --pkfa-ink-soft: #25282b;
    --pkfa-red: #d71920;
    --pkfa-red-dark: #a80f15;
    --pkfa-paper: #f6f4f0;
    --pkfa-white: #fff;
    --pkfa-muted: #666a70;
    --pkfa-line: rgba(23, 25, 27, .12);
    --pkfa-shadow: 0 22px 60px rgba(23, 25, 27, .1);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--pkfa-ink);
    background: var(--pkfa-paper);
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: .8rem 1rem;
    border-radius: 8px;
    color: #fff;
    background: var(--pkfa-red);
    box-shadow: var(--pkfa-shadow);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(215, 25, 32, .42);
    outline-offset: 4px;
}

.site-header {
    position: sticky;
    z-index: 1035;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(20, 22, 24, .94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    backdrop-filter: blur(14px);
}

.site-navbar {
    min-height: 82px;
    background: transparent !important;
}

.site-navbar .nav-link {
    position: relative;
    letter-spacing: .01em;
}

.site-navbar .nav-link::after {
    position: absolute;
    right: .75rem;
    bottom: .35rem;
    left: .75rem;
    height: 2px;
    border: 0;
    background: var(--pkfa-red);
    content: '';
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .2s ease, transform .2s ease;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link:focus-visible::after,
.site-navbar .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.home-hero {
    min-height: clamp(600px, 78vh, 820px);
    isolation: isolate;
}

.home-hero::after {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: min(42vw, 620px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7));
    content: '';
}

.home-hero-copy {
    max-width: 770px;
}

.home-hero h1 {
    max-width: 760px;
    font-size: clamp(3rem, 6.5vw, 6rem);
    letter-spacing: -.045em;
    line-height: .95;
    text-wrap: balance;
}

.home-hero-lead {
    max-width: 650px;
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    line-height: 1.65;
}

.btn {
    min-height: 46px;
    padding: .72rem 1.35rem;
    border-radius: 999px;
    font-weight: 750;
    letter-spacing: .01em;
}

.btn-red {
    border-color: var(--pkfa-red);
    background: var(--pkfa-red);
    box-shadow: 0 10px 28px rgba(215, 25, 32, .25);
}

.btn-red:hover,
.btn-red:focus {
    border-color: var(--pkfa-red-dark);
    background: var(--pkfa-red-dark);
    box-shadow: 0 14px 34px rgba(168, 15, 21, .3);
    transform: translateY(-2px);
}

.home-pathways {
    position: relative;
    z-index: 2;
    padding-top: clamp(4.5rem, 8vw, 7.5rem);
    padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.home-pathways-heading {
    max-width: 780px;
    margin: 0 auto clamp(2rem, 4vw, 3.5rem);
    text-align: center;
}

.home-pathways-heading h2 {
    font-size: clamp(2rem, 4.3vw, 3.7rem);
    letter-spacing: -.035em;
    line-height: 1.05;
    text-wrap: balance;
}

.home-pathways-heading p {
    max-width: 670px;
    margin: 1.2rem auto 0;
    color: var(--pkfa-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.home-pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-pathway-card {
    position: relative;
    display: flex;
    min-height: 340px;
    overflow: hidden;
    flex-direction: column;
    padding: clamp(1.6rem, 3vw, 2.35rem);
    border: 1px solid var(--pkfa-line);
    border-radius: 20px;
    color: var(--pkfa-ink);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 12px 36px rgba(23, 25, 27, .06);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.home-pathway-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--pkfa-red);
    content: '';
    transform: scaleX(.22);
    transform-origin: left;
    transition: transform .3s ease;
}

.home-pathway-card:hover,
.home-pathway-card:focus-visible {
    border-color: rgba(215, 25, 32, .35);
    color: var(--pkfa-ink);
    text-decoration: none;
    box-shadow: var(--pkfa-shadow);
    transform: translateY(-7px);
}

.home-pathway-card:hover::before,
.home-pathway-card:focus-visible::before {
    transform: scaleX(1);
}

.home-pathway-card-primary {
    color: #fff;
    background: var(--pkfa-ink);
}

.home-pathway-card-primary:hover,
.home-pathway-card-primary:focus-visible {
    color: #fff;
}

.home-pathway-number {
    margin-bottom: auto;
    color: var(--pkfa-red);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .14em;
}

.home-pathway-kicker {
    margin-bottom: .65rem;
    color: var(--pkfa-red);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-pathway-card strong {
    margin-bottom: .8rem;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    letter-spacing: -.025em;
    line-height: 1.12;
}

.home-pathway-card > span:not(.home-pathway-number, .home-pathway-kicker, .home-pathway-action) {
    color: var(--pkfa-muted);
    line-height: 1.6;
}

.home-pathway-card-primary > span:not(.home-pathway-number, .home-pathway-kicker, .home-pathway-action) {
    color: rgba(255, 255, 255, .7);
}

.home-pathway-action {
    margin-top: 1.5rem;
    font-weight: 800;
}

.site-card,
.home-stat-card,
.home-schedule-card {
    border-color: var(--pkfa-line);
    box-shadow: 0 12px 38px rgba(23, 25, 27, .07);
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--pkfa-ink) !important;
}

.site-footer::before {
    position: absolute;
    top: -240px;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .site-header {
        position: relative;
    }

    .home-pathways-grid {
        grid-template-columns: 1fr;
    }

    .home-pathway-card {
        min-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        min-height: 610px;
    }

    .home-hero h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .home-pathways {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Primary training application design; legacy composition remains at ?design=1. */
.training-form-v2 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(3rem, 7vw, 6.5rem) 0;
    background: #f4f1ee;
}

.training-form-v2::before {
    position: absolute;
    z-index: -2;
    inset: 0 50% 0 0;
    content: '';
    background: linear-gradient(90deg, rgba(17, 17, 17, .96), rgba(17, 17, 17, .72)), url('/img/tren.jpg') center / cover;
}

.training-form-v2::after {
    position: absolute;
    z-index: -1;
    top: -9rem;
    left: calc(50% - 9rem);
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(237, 28, 36, .3);
    border-radius: 50%;
    content: '';
}

.training-form-v2-container {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(34rem, 1.1fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.training-form-v2-intro {
    color: #fff;
}

.training-form-v2-eyebrow,
.training-form-v2-card-heading > span {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: #ed1c24;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.training-form-v2-eyebrow::before,
.training-form-v2-card-heading > span::before {
    width: 2rem;
    height: 2px;
    content: '';
    background: currentColor;
}

.training-form-v2-intro h1 {
    max-width: 8ch;
    margin: 1.15rem 0 1.4rem;
    color: #fff;
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: .96;
    letter-spacing: -.045em;
}

.training-form-v2-lead {
    max-width: 34rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.65;
}

.training-form-v2-benefits {
    display: grid;
    gap: .8rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.training-form-v2-benefits li {
    display: flex;
    align-items: center;
    gap: .85rem;
    color: rgba(255, 255, 255, .9);
}

.training-form-v2-benefits span {
    color: #ed1c24;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.training-form-v2-links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
}

.training-form-v2-links a {
    color: #fff;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(237, 28, 36, .8);
    text-underline-offset: .3rem;
}

.training-form-v2-card {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    border-top: 4px solid #ed1c24;
    border-radius: 0 0 1.25rem 1.25rem;
    background: #fff;
    box-shadow: 0 2rem 5rem rgba(28, 23, 21, .16);
}

.training-form-v2-card-heading {
    margin-bottom: 2rem;
}

.training-form-v2-card-heading h2,
.training-form-v2-card-heading h3 {
    margin: .8rem 0 .4rem;
    color: #252220;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.12;
}

.training-form-v2-card-heading p {
    margin: 0;
    color: #77716d;
    font-size: .9rem;
}

.training-form-v2 .form-group,
.camp-form-card .form-group {
    margin-bottom: 1.25rem;
}

.training-form-v2 .form-control,
.camp-form-card .form-control {
    min-height: 3.1rem;
    border: 1px solid #d9d4d0;
    border-radius: .55rem;
    background: #fbfaf9;
}

.training-form-v2 textarea.form-control,
.camp-form-card textarea.form-control {
    min-height: 8rem;
}

.training-form-v2 .form-control:focus,
.camp-form-card .form-control:focus {
    border-color: #ed1c24;
    background: #fff;
    box-shadow: 0 0 0 .2rem rgba(237, 28, 36, .1);
}

.training-form-v2 .btn-red,
.camp-form-card .btn-red {
    min-width: 12rem;
    padding: .8rem 1.5rem;
    border-radius: 999px;
}

@media (max-width: 991.98px) {
    .training-form-v2::before {
        inset: 0 0 auto;
        height: 39rem;
    }

    .training-form-v2-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .training-form-v2-intro h1 {
        max-width: 12ch;
    }
}

@media (max-width: 575.98px) {
    .training-form-v2 {
        padding: 2.75rem 0 0;
        background: #fff;
    }

    .training-form-v2::before {
        height: 35rem;
    }

    .training-form-v2-container {
        padding-right: 0;
        padding-left: 0;
    }

    .training-form-v2-intro {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .training-form-v2-intro h1 {
        font-size: 3rem;
    }

    .training-form-v2-card {
        padding: 1.5rem 1.25rem 2.5rem;
        border-radius: 0;
        box-shadow: 0 -1rem 3rem rgba(28, 23, 21, .15);
    }

    .training-form-v2-links {
        display: grid;
    }
}

.site-card:hover {
    border-color: #cfcfcf !important;
    box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

.site-card-body {
    padding: 1.35rem;
}

.site-card-title {
    font-size: 1.15rem !important;
    font-weight: 700;
    height: auto !important;
    line-height: 1.35 !important;
    margin: 0 0 0.65rem;
}

.site-card-title a {
    color: #292929;
    line-height: inherit !important;
}

.site-card-title a:hover {
    color: #ed1c24;
    text-decoration: none;
}

.site-card-date {
    color: #777;
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.85rem;
}

.site-card-action {
    align-self: flex-start;
    margin-top: auto;
}

.site-content {
    min-height: 65vh;
}

.training-form-layout {
    background-color: #fff;
    background-image: url('/img/tren.jpg');
    background-position: -230px top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    min-height: 870px;
}

.training-form-panel {
    background: #fff;
    min-height: 870px;
}

.training-form-panel h1 {
    margin-bottom: 1.75rem;
}

.training-form-panel > .px-sm-5 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
}

.training-form-content .inquiry-form {
    max-width: none;
}

.training-form-content legend {
    font-size: 1rem;
    font-weight: 400;
}

.navbar-brand img {
    height: 58px;
    width: auto;
}

.phone {
    color: #fff;
    white-space: nowrap;
}

.phone:hover {
    color: #fff;
}

.modx-content img {
    height: auto;
    max-width: 100%;
}

.modx-content iframe {
    max-width: 100%;
}

.modx-content {
    overflow-wrap: anywhere;
}

.modx-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    width: 100%;
}

.list-group-item.active {
    background-color: #dc3545;
    border-color: #dc3545;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background-color: #292929;
    color: #fff;
}

.home-news .bradtop {
    overflow: hidden;
}

.home-news .bradtop .img-responsive {
    aspect-ratio: 380 / 205.390625;
    display: block;
    object-fit: cover;
    width: 100%;
}

.home-news-card {
    display: flex;
    flex-direction: column;
}

.home-news-card .bradtop {
    flex: 0 0 auto;
}

.home-news-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.35rem;
}

.home-news-card-title {
    margin-bottom: 0.75rem;
}

.home-news-card .entry {
    color: #626262;
    flex: 1 1 auto;
    font-size: 0.95rem;
}

.home-news-card .entry p {
    margin-bottom: 1rem;
}

.home-news-card-footer {
    align-items: center;
    border-top: 1px solid #ededed;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    padding-top: 1rem;
}

.home-news-card-footer .site-card-date,
.home-news-card-footer .site-card-action {
    margin: 0;
}

.collection-card .card-body {
    display: flex;
    flex-direction: column;
}

.collection-card .site-card-date + p {
    color: #626262;
}

.announcements-hero {
    align-items: center;
    background: linear-gradient(125deg, #202020 0%, #303030 70%, #49161a 100%);
    border-bottom: 4px solid #ed1c24;
    color: #fff;
    display: flex;
    justify-content: space-between;
    min-height: 280px;
    overflow: hidden;
    padding: 2.75rem 3rem;
    position: relative;
}

.announcements-hero::after {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: '';
    height: 280px;
    position: absolute;
    right: -65px;
    top: -115px;
    width: 280px;
}

.announcements-hero-content {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.announcements-eyebrow,
.announcement-card-label {
    color: #ed1c24;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.announcements-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 0.3rem 0 0.75rem;
}

.announcements-hero p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    margin: 0;
}

.announcements-hero-symbol {
    display: grid;
    flex: 0 0 170px;
    width: 170px;
    height: 170px;
    margin-right: 2.5rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .045);
    place-items: center;
    transform: rotate(-7deg);
}

.announcements-hero-symbol .announcement-icon {
    width: 96px;
    height: 96px;
}

.announcements-grid {
    margin-top: 0 !important;
}

.announcement-card {
    align-items: stretch;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 230px;
}

.announcement-card .collection-cover {
    height: 100%;
}

.announcement-card-symbol {
    align-items: center;
    border-right: 1px solid #f0d7d8;
    color: #b51219;
    display: flex;
    justify-content: center;
    background: linear-gradient(145deg, #fff8f8, #f7e7e8);
}

.announcement-card-symbol .announcement-icon {
    width: 58px;
    height: 58px;
}

.announcement-card .site-card-body {
    padding: 2rem 2.25rem;
}

.announcement-card .site-card-title {
    font-size: 1.55rem !important;
    margin-top: 0.4rem;
}

.announcement-card-content {
    color: #555;
    margin-top: 0.25rem;
}

.announcement-card-content > :last-child {
    margin-bottom: 0;
}

.gallery-album-card .card-body {
    align-items: center;
    display: flex;
    min-height: 78px;
}

.gallery-album-card .site-card-title {
    margin-bottom: 0;
}

.pagination {
    flex-wrap: wrap;
}

.schedule-hero {
    align-items: center;
    background: linear-gradient(125deg, #202020 0%, #303030 68%, #49161a 100%);
    border-bottom: 4px solid #ed1c24;
    color: #fff;
    display: flex;
    justify-content: space-between;
    min-height: 300px;
    overflow: hidden;
    padding: 2.75rem 3rem;
    position: relative;
}

.schedule-hero::after {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: '';
    height: 280px;
    position: absolute;
    right: -60px;
    top: -120px;
    width: 280px;
}

.schedule-hero-content {
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.schedule-eyebrow {
    color: #ed1c24;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.schedule-hero h1 {
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 4rem);
    margin: 0.35rem 0 0.75rem;
}

.schedule-hero p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    margin: 0;
}

.schedule-hero-stat {
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    margin-left: 2rem;
    min-width: 150px;
    padding-left: 2rem;
    position: relative;
    z-index: 1;
}

.schedule-hero-stat strong {
    color: #fff;
    font-size: 4rem;
    line-height: 1;
}

.schedule-hero-stat span {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.4rem;
}

.schedule-section-heading {
    align-items: end;
    display: flex;
    justify-content: space-between;
}

.schedule-section-heading h2,
.schedule-summary-heading h2 {
    margin: 0.2rem 0 0;
}

.schedule-section-heading p {
    color: #666;
    margin: 0 0 0.2rem 2rem;
    max-width: 480px;
    text-align: right;
}

.schedule-halls-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.schedule-hall-card {
    position: relative;
    align-items: center;
    display: grid;
    gap: 1.35rem;
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 205px;
    padding: 1.45rem 1.6rem;
    overflow: hidden;
    border-color: #353535 !important;
    color: rgba(255, 255, 255, .76);
    background:
        radial-gradient(circle at 96% 0, rgba(237, 28, 36, .22), transparent 36%),
        linear-gradient(125deg, #1c1c1c, #292929);
    box-shadow: 0 12px 28px rgba(20, 20, 20, .14);
}

.schedule-hall-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: #ed1c24;
    content: '';
}

.schedule-hall-card:hover {
    border-color: #484848 !important;
    box-shadow: 0 18px 38px rgba(20, 20, 20, .22);
}

.schedule-hall-number {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    color: rgba(255, 255, 255, .42);
    font-size: 1.25rem;
    font-weight: 800;
}

.schedule-hall-kicker {
    display: block;
    margin-bottom: .28rem;
    color: #ed1c24;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.schedule-hall-content h3 {
    margin: 0 0 .45rem;
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.3;
}

.schedule-hall-content h3 a {
    font-weight: inherit;
}

.schedule-hall-card a {
    color: #fff;
}

.schedule-hall-card a:hover {
    color: #dc3545;
    text-decoration: none;
}

.schedule-address span {
    color: #ed1c24;
    font-size: 0.65rem;
    margin-right: 0.35rem;
}

.schedule-address {
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
}

.schedule-trainer {
    margin-top: .45rem;
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
}

.schedule-trainer span {
    margin-right: .3rem;
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
}

.schedule-hall-action {
    align-items: center;
    gap: .45rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff !important;
    display: flex;
    font-size: .88rem;
    font-weight: 700;
    min-height: 42px;
    justify-content: center;
    padding: .65rem .9rem;
}

.schedule-hall-action:hover,
.schedule-hall-action:focus {
    background: #ed1c24;
    border-color: #ed1c24;
    text-decoration: none;
}

.schedule-hall-actions {
    display: flex;
    grid-column: 2;
    align-items: center;
    flex-wrap: wrap;
    gap: .65rem 1rem;
}

.schedule-hall-map-link {
    color: rgba(255, 255, 255, .7) !important;
    font-size: .82rem;
    font-weight: 650;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .3);
    text-underline-offset: .2em;
}

.schedule-hall-map-link:hover,
.schedule-hall-map-link:focus-visible {
    color: #fff !important;
    text-decoration-color: #ed1c24;
}

.schedule-summary {
    background: #f5f5f5;
    padding: clamp(1.25rem, 3vw, 2.5rem);
}

.schedule-summary-heading {
    margin-bottom: 1rem;
}

.schedule-summary-heading p {
    color: #666;
    margin: 0.5rem 0 0;
}

.schedule-table table {
    background: #fff;
    box-shadow: 0 0.35rem 1.15rem rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

.schedule-table .thead-light th {
    background: #292929;
    border-color: #444;
    color: #fff;
    vertical-align: middle;
}

.schedule-table .thead-light a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 0.2em;
}

.schedule-table tbody tr > th:first-child {
    color: #b51219;
    font-weight: 800;
}

.schedule-table th,
.schedule-table td {
    vertical-align: middle;
}

.schedule-table,
.schedule-table table {
    width: 100% !important;
}

.schedule-table table {
    display: table !important;
}

.gallery-cover,
.gallery-photo,
.article-gallery-photo {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.collection-cover {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.home-trainer {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    border-radius: 0;
    object-fit: contain;
}

.home-trainer-card p {
    margin: 1rem 0 0;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
}

@media (max-width: 575.98px) {
    .home-trainer-card p {
        font-size: 19px;
    }
}

.hall-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
    background: radial-gradient(circle at 92% 12%, rgba(237, 28, 36, .35), transparent 32%), linear-gradient(125deg, #181818, #2c2c2c 65%, #521419);
    box-shadow: 0 18px 42px rgba(20, 20, 20, .18);
}

.hall-hero h1 {
    max-width: 820px;
    margin: .55rem 0 1rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.08;
}

.hall-hero-address {
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 1.1rem;
}

.hall-hero-address span { color: #ed1c24; }
.hall-hero-trainer { margin: .7rem 0 0; color: rgba(255, 255, 255, .62); }
.hall-hero-trainer strong { color: #fff; }
.hall-hero-number { color: rgba(255, 255, 255, .1); font-size: clamp(6rem, 14vw, 11rem); font-weight: 900; line-height: 1; }

.hall-map-card { height: 100%; min-height: 520px; }
.hall-card-heading { padding: 1.5rem 1.7rem; }
.hall-card-heading h2 { margin: .3rem 0 0; font-size: 1.45rem; }
.hall-map-card iframe { display: block; width: 100%; height: 420px; border: 0; }
.hall-map-placeholder { display: grid; min-height: 420px; place-items: center; padding: 2rem; background: #f4f4f4; color: #666; }

.hall-trainer-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 430px;
    object-fit: contain;
    background: #f1f1f1;
}

.hall-trainer-placeholder { display: grid; min-height: 300px; place-items: center; background: #202020; color: #ed1c24; font-size: 6rem; font-weight: 800; }
.hall-trainer-body { padding: 1.5rem; }
.hall-trainer-body h2 { margin: .35rem 0 .75rem; font-size: 1.35rem; line-height: 1.3; }
.hall-trainer-body p { margin: 0; color: #666; }

.hall-schedule-section { padding: clamp(1.5rem, 4vw, 2.7rem); border-radius: 18px; background: #f4f4f4; }
.hall-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; }
.hall-section-heading h2 { margin: .3rem 0 0; }
.hall-section-heading > a { color: #b51219; font-weight: 700; }
.hall-day-card { padding: 1.4rem; }
.hall-day-name { padding-bottom: .8rem; margin-bottom: .8rem; border-bottom: 2px solid #ed1c24; font-size: 1.15rem; font-weight: 800; }
.hall-time-row { display: grid; grid-template-columns: 105px minmax(0, 1fr); gap: .8rem; padding: .65rem 0; border-bottom: 1px solid #ececec; }
.hall-time-row:last-child { border-bottom: 0; }
.hall-time-row time { color: #b51219; font-weight: 800; }
.hall-time-row span { color: #555; }
.hall-schedule-empty { padding: 1.5rem; color: #666; }

.hall-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(1.5rem, 4vw, 2.7rem); border-radius: 18px; color: #fff; background: #202020; }
.hall-cta h2 { margin: .35rem 0 0; color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.hall-cta .btn { flex: 0 0 auto; }

@media (max-width: 767.98px) {
    .hall-hero { min-height: 0; padding: 1.7rem 1.3rem; }
    .hall-hero-number { display: none; }
    .hall-map-card { min-height: 0; }
    .hall-map-card iframe, .hall-map-placeholder { height: 330px; min-height: 330px; }
    .hall-section-heading, .hall-cta { align-items: flex-start; flex-direction: column; }
    .hall-time-row { grid-template-columns: 95px minmax(0, 1fr); }
}

/* Contacts */
.contacts-page .information-main {
    display: grid;
    gap: 1.5rem;
}

.contacts-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contacts-action {
    display: flex;
    min-width: 0;
    min-height: 172px;
    padding: 1.35rem;
    border: 1px solid #e1e1e1;
    border-radius: 16px;
    color: #252525;
    background: #fff;
    box-shadow: 0 10px 28px rgba(20, 20, 20, .07);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.contacts-action:hover,
.contacts-action:focus-visible {
    border-color: rgba(216, 23, 24, .45);
    color: #252525;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(20, 20, 20, .11);
    transform: translateY(-3px);
}

.contacts-action-primary {
    border-color: #1e1e1e;
    color: #fff;
    background: linear-gradient(145deg, #171717 0%, #2b2b2b 100%);
}

.contacts-action-primary:hover,
.contacts-action-primary:focus-visible {
    color: #fff;
}

.contacts-action-mark {
    flex: 0 0 auto;
    margin-right: .85rem;
    color: #d81718;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.contacts-action > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contacts-action small,
.contacts-action em {
    display: block;
    color: #777;
    font-size: .76rem;
    font-style: normal;
    line-height: 1.45;
}

.contacts-action-primary small,
.contacts-action-primary em {
    color: rgba(255, 255, 255, .65);
}

.contacts-action strong {
    margin: auto 0 .55rem;
    overflow-wrap: anywhere;
    font-size: 1.02rem;
    line-height: 1.3;
}

.contacts-leadership {
    display: grid;
    grid-template-columns: minmax(180px, 31%) minmax(0, 1fr);
    overflow: hidden;
    padding: 0;
    border-radius: 18px;
}

.contacts-leadership:hover {
    transform: none;
}

.contacts-portrait {
    min-height: 315px;
    background: linear-gradient(145deg, #e8e8e8, #f7f7f7);
}

.contacts-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.contacts-leadership-copy {
    align-self: center;
    padding: clamp(1.7rem, 4vw, 3.2rem);
}

.contacts-leadership-copy h2,
.contacts-section-heading h2 {
    margin: .5rem 0 1rem;
    color: #242424;
    font-size: clamp(1.55rem, 2.7vw, 2.25rem);
    line-height: 1.15;
}

.contacts-leadership-copy p {
    max-width: 580px;
    margin-bottom: 1.35rem;
    color: #626262;
    font-size: 1rem;
    line-height: 1.65;
}

.contacts-secondary-phone {
    display: inline-flex;
    padding: .72rem 1rem;
    border: 1px solid #d81718;
    border-radius: 999px;
    color: #bd141a;
    font-weight: 750;
}

.contacts-secondary-phone:hover,
.contacts-secondary-phone:focus-visible {
    color: #fff;
    background: #d81718;
    text-decoration: none;
}

.contacts-team {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 18px;
    background: #f0f0f0;
}

.contacts-section-heading {
    margin-bottom: 1.4rem;
}

.contacts-section-heading h2 {
    margin-bottom: 0;
}

.contacts-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contacts-team-grid article {
    position: relative;
    min-height: 145px;
    padding: 1.3rem;
    border-radius: 13px;
    background: #fff;
}

.contacts-team-grid article::before {
    position: absolute;
    top: 0;
    left: 1.3rem;
    width: 34px;
    height: 3px;
    background: #d81718;
    content: '';
}

.contacts-team-grid small {
    display: block;
    margin-bottom: 1.4rem;
    color: #858585;
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contacts-team-grid strong {
    color: #2e2e2e;
    font-size: .95rem;
    line-height: 1.45;
}

.contacts-schedule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(115deg, #ae1117, #d81718);
    box-shadow: 0 14px 30px rgba(174, 17, 23, .22);
}

.contacts-schedule:hover,
.contacts-schedule:focus-visible {
    color: #fff;
    text-decoration: none;
}

.contacts-schedule small,
.contacts-schedule strong {
    display: block;
}

.contacts-schedule small {
    margin-bottom: .35rem;
    color: rgba(255, 255, 255, .72);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contacts-schedule strong {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.contacts-schedule-arrow {
    flex: 0 0 auto;
    font-size: 2rem;
    transition: transform .2s ease;
}

.contacts-schedule:hover .contacts-schedule-arrow,
.contacts-schedule:focus-visible .contacts-schedule-arrow {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .contacts-actions,
    .contacts-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacts-action-primary,
    .contacts-team-grid article:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575.98px) {
    .contacts-page {
        padding-top: 1.5rem !important;
    }

    .contacts-actions,
    .contacts-team-grid,
    .contacts-leadership {
        grid-template-columns: 1fr;
    }

    .contacts-action-primary,
    .contacts-team-grid article:last-child {
        grid-column: auto;
    }

    .contacts-action {
        min-height: 138px;
    }

    .contacts-portrait {
        min-height: 0;
        max-height: 390px;
        aspect-ratio: 4 / 5;
    }

    .contacts-leadership-copy {
        padding: 1.5rem;
    }

    .contacts-team {
        padding: 1.25rem;
    }
}

.home-featured-album,
.home-album-thumb {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.partner-logo {
    max-height: 90px;
    object-fit: contain;
}

.site-footer .border-red {
    border-bottom: 2px solid #d71920;
}

.footer-brand:hover {
    text-decoration: none;
}

.footer-brand img {
    height: 52px;
    width: auto;
}

.footer-map {
    border: 0;
    display: block;
    height: 360px;
    width: 100%;
}

.footer-links {
    background: #171717;
}

.footer-nav,
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.footer-nav a,
.footer-social a {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.footer-social a {
    color: #ed1c24;
}

[data-lightbox] {
    cursor: zoom-in;
}

.photo-lightbox {
    align-items: center;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 3.5rem 5rem;
    position: fixed;
    z-index: 2000;
}

.photo-lightbox.is-open {
    display: flex;
}

.photo-lightbox figure {
    margin: 0;
    max-height: 100%;
    max-width: 100%;
    text-align: center;
}

.photo-lightbox img {
    max-height: calc(100vh - 8rem);
    max-width: 100%;
    object-fit: contain;
}

.photo-lightbox figcaption {
    color: #fff;
    margin-top: 0.75rem;
}

.photo-lightbox button {
    background: rgba(0, 0, 0, 0.35);
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    line-height: 1;
    padding: 0.75rem;
    position: absolute;
}

.photo-lightbox button:focus-visible {
    outline: 3px solid #fff;
}

.photo-lightbox-close {
    right: 1rem;
    top: 1rem;
}

.photo-lightbox-prev {
    left: 1rem;
}

.photo-lightbox-next {
    right: 1rem;
}

body.photo-lightbox-open {
    overflow: hidden;
}

.scrollup {
    background: url('/img/icon_top.png') no-repeat;
    bottom: 50px;
    display: block;
    height: 40px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    right: max(1.25rem, calc((100vw - 1140px) / 2));
    text-indent: -9999px;
    transition: opacity 0.2s ease;
    visibility: hidden;
    width: 40px;
    z-index: 999;
}

.scrollup.is-visible {
    opacity: 0.3;
    pointer-events: auto;
    visibility: visible;
}

.scrollup:hover,
.scrollup:focus-visible {
    opacity: 0.8;
}

.scrollup:focus-visible {
    outline: 3px solid #ed1c24;
    outline-offset: 3px;
}

.pdf-link::after {
    content: ' PDF';
    font-size: 0.7em;
    font-weight: 700;
    margin-left: 0.3em;
}

.pdf-viewer {
    align-items: center;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1.5rem;
    position: fixed;
    z-index: 2100;
}

.pdf-viewer[hidden] {
    display: none;
}

.pdf-viewer-panel {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: min(92vh, 900px);
    max-width: 1400px;
    width: 96vw;
}

.pdf-viewer-header {
    align-items: center;
    background: #292929;
    color: #fff;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-height: 60px;
    padding: 0.65rem 1rem;
}

.pdf-viewer-actions {
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.pdf-viewer-close {
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    padding: 0 0.25rem;
}

.pdf-viewer iframe {
    border: 0;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
}

body.pdf-viewer-open {
    overflow: hidden;
}

.documents-hero {
    background: linear-gradient(125deg, #202020 0%, #303030 68%, #49161a 100%);
    border-bottom: 4px solid #ed1c24;
    color: #fff;
    overflow: hidden;
    padding: 2.75rem 3rem;
    position: relative;
}

.documents-hero::after {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: '';
    height: 240px;
    position: absolute;
    right: -70px;
    top: -105px;
    width: 240px;
}

.documents-eyebrow,
.documents-catalog-kicker,
.document-card-type {
    color: #ed1c24;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.documents-hero h1 {
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 4rem);
    margin: 0.35rem 0 0.75rem;
}

.documents-hero p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    margin: 0;
    max-width: 650px;
}

.documents-navigation {
    border: 1px solid #e4e4e4;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.06);
    padding: 0.75rem;
}

.documents-navigation-title {
    color: #777;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.45rem 0.75rem 0.8rem;
    text-transform: uppercase;
}

.documents-navigation .list-group-item {
    border: 0;
    border-left: 3px solid transparent;
    margin-bottom: 0.2rem;
    padding: 0.75rem;
}

.documents-navigation .list-group-item.active {
    background: #f7f7f7;
    border-left-color: #ed1c24;
    color: #202020;
    font-weight: 700;
}

.information-content-card {
    background: #fff;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.information-content-card .lead {
    border-left: 3px solid #ed1c24;
    color: #4d4d4d;
    font-size: 1.08rem;
    margin-bottom: 1.75rem;
    padding-left: 1rem;
}

.information-content-card .modx-content > :last-child,
.information-content-card .lead > :last-child {
    margin-bottom: 0;
}

.information-content-card .modx-content h2,
.information-content-card .modx-content h3 {
    margin-top: 1.75rem;
}

.information-content-card .modx-content a:not(.btn):not(.gallery-lightbox) {
    color: #b51219;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(237, 28, 36, 0.35);
    text-underline-offset: 0.2em;
}

.information-content-card .modx-content a:hover,
.information-content-card .modx-content a:focus {
    color: #ed1c24;
    text-decoration-color: currentColor;
}

.information-main > .children-list,
.information-main > .row {
    margin-top: 1.5rem;
}

.documents-catalog {
    background: #f7f7f7;
    padding: 2rem;
}

.documents-catalog-heading {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.documents-catalog-heading h2 {
    font-size: 1.75rem;
    margin: 0.2rem 0 0;
}

.documents-count {
    align-items: center;
    background: #292929;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-weight: 700;
    height: 2.5rem;
    justify-content: center;
    width: 2.5rem;
}

.documents-list {
    display: grid;
    gap: 1rem;
}

.document-card {
    align-items: center;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    padding: 1.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.document-card:hover {
    border-color: #d2d2d2 !important;
}

.document-card-icon {
    background: #fff;
    border: 2px solid #ed1c24;
    display: block;
    height: 64px;
    position: relative;
    width: 48px;
}

.document-card-icon::before {
    background: #ed1c24;
    box-shadow: 0 10px 0 #ed1c24, 0 20px 0 #ed1c24;
    content: '';
    height: 2px;
    left: 9px;
    position: absolute;
    top: 17px;
    width: 26px;
}

.document-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0.3rem 0 0.5rem;
}

.document-card-title a {
    color: #292929;
}

.document-card-title a:hover {
    color: #ed1c24;
    text-decoration: none;
}

.document-card-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.document-card-content time {
    color: #777;
    font-size: 0.82rem;
}

.document-card-action {
    border-bottom: 1px solid #ed1c24;
    color: #292929;
    font-weight: 700;
    padding-bottom: 0.2rem;
    white-space: nowrap;
}

.document-card-action:hover {
    color: #ed1c24;
    text-decoration: none;
}

.documents-empty {
    background: #fff;
    border-left: 3px solid #ed1c24;
    margin: 0;
    padding: 1.25rem;
}

.news-article-navigation {
    border-top: 1px solid #dedede;
    margin-top: 3.5rem;
    padding-top: 2rem;
}

.news-back-link {
    align-items: center;
    background: #292929;
    color: #fff;
    display: inline-flex;
    font-weight: 700;
    gap: 0.6rem;
    padding: 0.75rem 1.15rem;
}

.news-back-link:hover,
.news-back-link:focus {
    background: #ed1c24;
    color: #fff;
    text-decoration: none;
}

.news-neighbours {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.news-neighbour {
    background: #f9f9f9;
    color: #292929;
    display: flex;
    flex-direction: column;
    min-height: 150px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.news-neighbour:hover,
.news-neighbour:focus {
    border-color: #ed1c24 !important;
    color: #292929;
    text-decoration: none;
    transform: translateY(-2px);
}

.news-neighbour-next {
    text-align: right;
}

.news-neighbour-next:only-child {
    grid-column: 2;
}

.news-neighbour-label {
    color: #ed1c24;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-neighbour-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0.55rem 0;
}

.news-neighbour time {
    color: #777;
    font-size: 0.8rem;
    margin-top: auto;
}

@media (max-width: 991.98px) {
    .phone {
        display: none;
    }

    .schedule-hero-stat {
        display: none;
    }

    .schedule-halls-grid {
        grid-template-columns: 1fr;
    }
}

/* Primary and footer navigation */
.site-header {
    position: relative;
    z-index: 1030;
}

.site-navbar {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #171717 !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .16);
}

.site-navbar-inner {
    min-height: 86px;
}

.site-navbar-brand {
    margin-right: 1.35rem;
    padding: .65rem 0;
}

.site-navbar-brand img {
    height: 54px;
}

.site-navbar-brand .logotext {
    color: rgba(255, 255, 255, .92);
    font-size: .82rem;
    font-weight: 650;
    letter-spacing: .02em;
    line-height: 1.25;
}

.site-primary-nav {
    align-items: stretch;
    gap: .1rem;
}

.site-primary-nav > .nav-item {
    display: flex;
    align-items: stretch;
}

.site-primary-nav > .nav-item > .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem .62rem;
    color: rgba(255, 255, 255, .72);
    font-size: .79rem;
    font-weight: 700;
    letter-spacing: .015em;
    line-height: 1.25;
    text-align: center;
    transition: color .2s ease, background-color .2s ease;
}

.site-primary-nav > .nav-item > .nav-link::after {
    position: absolute;
    right: .65rem;
    bottom: 0;
    left: .65rem;
    height: 3px;
    border: 0;
    background: #ed1c24;
    content: '';
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .2s ease, transform .2s ease;
}

.site-primary-nav > .nav-item.dropdown > .nav-link::after {
    margin: 0;
    vertical-align: 0;
}

.site-primary-nav > .nav-item > .nav-link:hover,
.site-primary-nav > .nav-item > .nav-link:focus-visible,
.site-primary-nav > .nav-item > .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, .045);
}

.site-primary-nav > .nav-item > .nav-link:hover::after,
.site-primary-nav > .nav-item > .nav-link:focus-visible::after,
.site-primary-nav > .nav-item > .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-navbar .dropdown-menu {
    min-width: 245px;
    padding: .55rem;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.site-navbar .dropdown-item {
    padding: .7rem .8rem;
    border-radius: 8px;
    color: #3b3b3b;
    font-size: .88rem;
    line-height: 1.3;
    white-space: normal;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus,
.site-navbar .dropdown-item.active {
    color: #fff;
    background: #272727;
}

.site-header-phone {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: .55rem .8rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.site-header-phone span {
    margin-right: .2rem;
    color: #ed1c24;
}

.site-header-phone:hover,
.site-header-phone:focus-visible {
    border-color: #ed1c24;
    color: #fff;
    text-decoration: none;
}

.site-navbar .navbar-toggler {
    padding: .5rem .6rem;
    border-color: rgba(255, 255, 255, .22);
    border-radius: 10px;
}

.site-footer {
    overflow: hidden;
    background: #121212 !important;
}

.site-footer .footer-identity {
    border-top: 3px solid #d71920;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: linear-gradient(115deg, #1b1b1b, #202020 68%, #35171a);
}

.footer-brand {
    max-width: 420px;
}

.footer-brand > span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-brand strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
}

.footer-brand small {
    margin-top: .3rem;
    color: rgba(255, 255, 255, .52);
    font-size: .75rem;
}

.footer-contact-label,
.footer-menu-label {
    display: block;
    margin-bottom: .55rem;
    color: #ed1c24;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-phone {
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 700;
}

.footer-phone span {
    color: rgba(255, 255, 255, .55);
}

.footer-links {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    background: #171717;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.footer-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: .55rem .8rem;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    color: rgba(255, 255, 255, .74);
    background: rgba(255, 255, 255, .025);
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    border-color: #ed1c24;
    color: #fff;
    background: rgba(237, 28, 36, .1);
    text-decoration: none;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: .55rem .8rem;
    border-radius: 999px;
    color: #fff;
    background: #292929;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    color: #fff;
    background: #d81718;
    text-decoration: none;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .48);
    background: #101010;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .site-navbar-brand .logotext {
        display: none;
    }

    .site-primary-nav > .nav-item > .nav-link {
        padding-right: .48rem;
        padding-left: .48rem;
        font-size: .75rem;
    }

    .site-header-phone {
        padding-right: .6rem;
        padding-left: .6rem;
    }
}

@media (max-width: 991.98px) {
    .site-navbar-inner {
        min-height: 78px;
    }

    .site-navbar .navbar-collapse {
        width: 100%;
        padding: .65rem 0 1rem;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .site-primary-nav {
        gap: .15rem;
    }

    .site-primary-nav > .nav-item,
    .site-primary-nav > .nav-item > .nav-link {
        width: 100%;
    }

    .site-primary-nav > .nav-item > .nav-link {
        justify-content: space-between;
        padding: .8rem .9rem;
        border-radius: 8px;
        text-align: left;
    }

    .site-primary-nav > .nav-item > .nav-link::after {
        top: .65rem;
        right: auto;
        bottom: .65rem;
        left: 0;
        width: 3px;
        height: auto;
        transform: scaleY(.45);
    }

    .site-primary-nav > .nav-item > .nav-link:hover::after,
    .site-primary-nav > .nav-item > .nav-link:focus-visible::after,
    .site-primary-nav > .nav-item > .nav-link.active::after {
        transform: scaleY(1);
    }

    .site-navbar .dropdown-menu {
        width: 100%;
        margin: .2rem 0 .5rem;
        border: 0;
        border-radius: 8px;
        box-shadow: none;
    }

    .footer-phone {
        display: inline-flex !important;
    }
}

@media (max-width: 575.98px) {
    .site-navbar-brand img {
        height: 48px;
    }

    .site-navbar-brand .logotext {
        font-size: .74rem;
    }

    .footer-brand {
        align-items: flex-start !important;
    }

    .footer-brand img {
        height: 44px;
    }

    .footer-brand strong {
        font-size: .9rem;
    }

    .footer-nav a,
    .footer-social a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Home landing page */
.home-section-eyebrow {
    display: inline-block;
    color: #ed1c24;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-section-heading {
    max-width: 760px;
    margin: 0 auto 1.9rem;
}

.home-section-heading h2 {
    margin: .55rem 0 .75rem;
    color: #252525;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
}

.home-section-heading p {
    margin: 0;
    color: #666;
    font-size: 1.05rem;
}

.home-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #fff;
    background-position: center;
    background-size: cover;
}

.home-hero .container {
    position: relative;
    z-index: 1;
}

.home-hero-copy {
    max-width: 720px;
    padding: 6rem 0;
}

.home-hero h1 {
    margin: .75rem 0 1.25rem;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: .98;
    text-wrap: balance;
}

.home-hero-lead {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.65;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

.home-hero-actions .btn {
    min-height: 48px;
    padding: .75rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
}

.home-btn-outline {
    border: 1px solid rgba(255, 255, 255, .48);
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.home-btn-outline:hover,
.home-btn-outline:focus-visible {
    border-color: #fff;
    color: #202020;
    background: #fff;
}

.home-experience,
.home-trainers-section,
.home-news,
.home-partners {
    padding-top: clamp(2.75rem, 4vw, 3.75rem);
    padding-bottom: clamp(2.75rem, 4vw, 3.75rem);
}

.home-stats {
    margin-bottom: 1.5rem;
}

.home-stat-card {
    display: flex;
    min-height: 155px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #e4e4e4;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(20, 20, 20, .07);
}

.home-stat-card strong {
    color: #252525;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    line-height: 1;
}

.home-stat-card strong::first-letter {
    color: #ed1c24;
}

.home-stat-card span {
    margin-top: .55rem;
    color: #666;
    font-size: 1rem;
}

.home-schedule-card {
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 18%, rgba(237, 28, 36, .35), transparent 28%),
        linear-gradient(125deg, #1b1b1b, #303030 65%, #51171b);
    box-shadow: 0 18px 42px rgba(20, 20, 20, .14);
}

.home-schedule-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.6rem, 4vw, 2.6rem);
}

.home-schedule-intro h3 {
    margin: .35rem 0 .45rem;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.home-schedule-intro p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

.home-schedule-intro .btn {
    flex: 0 0 auto;
    border-radius: 999px;
}

.home-schedule-details {
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.home-schedule-details summary {
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, .86);
    cursor: pointer;
    font-weight: 700;
    text-align: center;
}

.home-schedule-details summary:hover,
.home-schedule-details summary:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.home-schedule-table-wrap {
    padding: 0 1.25rem 1.25rem;
}

.home-schedule-table-wrap .schedule-table tbody th,
.home-schedule-table-wrap .schedule-table tbody td {
    color: #333;
    background-color: #fff;
}

.home-schedule-table-wrap .schedule-table tbody tr:nth-child(even) th,
.home-schedule-table-wrap .schedule-table tbody tr:nth-child(even) td {
    background-color: #f7f7f7;
}

.home-schedule-table-wrap .schedule-table tbody tr > th:first-child {
    color: #b51219;
}

.home-trainers-section {
    position: relative;
}

.home-trainer-card p {
    margin: 1.2rem .5rem 0;
    color: #292929;
    font-size: 22px;
    font-weight: 500;
}

.home-about-section {
    position: relative;
    padding-top: clamp(2.75rem, 4vw, 3.75rem) !important;
    padding-bottom: clamp(2.75rem, 4vw, 3.75rem) !important;
    color: #fff;
    background-position: center;
    background-size: cover;
}

.home-about-section::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(15, 15, 15, .96), rgba(22, 22, 22, .88) 62%, rgba(72, 20, 24, .82));
    content: '';
}

.home-about-section .container {
    position: relative;
    z-index: 1;
}

.home-about-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.home-about-heading h2 {
    margin: .55rem 0 0;
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    line-height: 1.1;
}

.home-about-copy {
    padding: clamp(1.5rem, 4vw, 2.6rem);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(4px);
    column-count: 2;
    column-gap: 2rem;
}

.home-about-copy p {
    break-inside: avoid;
    color: rgba(255, 255, 255, .82);
    line-height: 1.72;
}

.home-about-copy p:last-child {
    margin-bottom: 0;
}

.home-about-gallery {
    align-self: flex-start;
}

.home-featured-album {
    width: 100%;
    max-height: 430px;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .3);
    object-fit: cover;
}

.home-album-thumb {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, .18);
    border-radius: 9px;
    transition: border-color .2s ease, transform .2s ease;
}

.home-album-thumb:hover {
    border-color: #ed1c24;
    transform: translateY(-2px);
}

.home-legacy-story {
    position: relative;
    z-index: 2;
    padding-top: clamp(2.75rem, 4vw, 3.75rem) !important;
    padding-bottom: clamp(2.75rem, 4vw, 3.75rem) !important;
}

.home-legacy-story .terri {
    position: static;
    width: 100%;
    max-width: 400px;
    height: auto;
}

@media (min-width: 992px) {
    .home-legacy-story .home-terri-column {
        position: relative;
        align-self: stretch;
        min-height: 216px;
    }

    .home-legacy-story .terri {
        position: absolute;
        z-index: 2;
        right: 20px;
        bottom: -80px;
        width: 388px;
        max-width: none;
    }
}

.home-news .home-section-heading a {
    color: #252525;
}

.home-news .home-section-heading a:hover {
    color: #ed1c24;
    text-decoration: none;
}

.home-news-card {
    border-radius: 16px;
}

.home-news-card-body {
    padding: 1.5rem;
    text-align: left !important;
}

.home-news-card-title {
    font-size: 1.25rem !important;
}

.home-partners {
    padding-bottom: 2.75rem;
}

.home-partners .partner-logo {
    max-height: 82px;
    filter: grayscale(1);
    opacity: .72;
    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.home-partners .partner-logo:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .home-hero {
        min-height: 610px;
    }

    .home-about-gallery {
        margin-top: 1.5rem;
    }

    .home-about-copy {
        column-count: 1;
    }

}

@media (max-width: 767.98px) {
    .home-hero {
        min-height: 560px;
        background-position: 62% center;
    }

    .home-hero-copy {
        padding: 4.5rem 0;
    }

    .home-hero h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .home-schedule-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-schedule-intro .btn {
        width: 100%;
    }

    .home-about-copy {
        margin-right: 15px;
        margin-left: 15px;
    }

    .home-about-copy-column {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .home-legacy-story-row {
        margin-right: 0;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .home-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-hero-actions .btn {
        width: 100%;
    }

    .home-section-heading {
        margin-bottom: 1.6rem;
    }

    .home-stat-card {
        min-height: 130px;
    }

    .home-trainer-card p {
        font-size: 19px;
    }

    .home-news-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .site-content h1 {
        font-size: 2rem;
    }

    .site-content .py-5 {
        padding-bottom: 2rem !important;
        padding-top: 2rem !important;
    }

    .navbar-brand .logotext {
        font-size: 0.75rem;
    }

    .footer-map {
        height: 280px;
    }

    .schedule-hero {
        min-height: 0;
        padding: 2rem 1.25rem;
    }

    .schedule-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .schedule-section-heading p {
        margin: 0.75rem 0 0;
        text-align: left;
    }

    .schedule-hall-card {
        gap: 0.75rem;
        grid-template-columns: 46px minmax(0, 1fr);
        min-height: 0;
        padding: 1.25rem;
    }

    .schedule-hall-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .schedule-hall-actions {
        justify-self: start;
        margin-top: .2rem;
    }

    .footer-nav,
    .footer-social {
        display: grid;
    }

    .photo-lightbox {
        padding: 3.5rem 1rem;
    }

    .photo-lightbox img {
        max-height: calc(100vh - 7rem);
    }

    .photo-lightbox-prev,
    .photo-lightbox-next {
        bottom: 0.75rem;
        font-size: 2rem !important;
    }

    .pdf-viewer {
        padding: 0;
    }

    .pdf-viewer-panel {
        height: 100vh;
        width: 100vw;
    }

    .pdf-viewer-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .pdf-viewer-actions {
        width: 100%;
    }

    .pdf-viewer-close {
        margin-left: auto;
    }

    .documents-hero {
        padding: 2rem 1.25rem;
    }

    .documents-catalog {
        padding: 1.25rem;
    }

    .information-content-card {
        padding: 1.25rem;
    }

    .document-card {
        align-items: start;
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 1.25rem;
    }

    .document-card-icon {
        height: 56px;
        width: 42px;
    }

    .document-card-icon::before {
        left: 7px;
    }

    .document-card-action {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .news-neighbours {
        grid-template-columns: 1fr;
    }

    .news-neighbour,
    .news-neighbour-next,
    .news-neighbour-next:only-child {
        grid-column: 1;
        min-height: 0;
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .announcements-hero {
        min-height: 0;
        padding: 2rem 1.25rem;
    }

    .announcements-hero-symbol {
        display: none;
    }

    .announcement-card {
        grid-template-columns: 64px minmax(0, 1fr);
        min-height: 0;
    }

    .announcement-card-symbol {
        border-right-color: #f0d7d8;
    }

    .announcement-card-symbol .announcement-icon {
        width: 38px;
        height: 38px;
    }

    .announcement-card .site-card-body {
        padding: 1.25rem;
    }

    .announcement-card .site-card-title {
        font-size: 1.25rem !important;
    }
    .training-form-layout,
    .training-form-panel {
        min-height: 0;
    }

    .training-form-layout {
        background-image: none;
    }

    .training-form-panel > .px-sm-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
.information-gallery-card {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.information-gallery-heading {
    margin-bottom: 1.25rem;
}

.information-gallery-heading h2 {
    margin: .35rem 0 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.information-gallery-grid {
    margin-bottom: -1.5rem;
}

.information-gallery-link {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: #f2f2f2;
    box-shadow: 0 8px 22px rgba(20, 20, 20, .09);
}

.information-gallery-link img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .25s ease;
}

.information-gallery-link:hover img,
.information-gallery-link:focus-visible img {
    transform: scale(1.035);
}

.camp-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 20%, rgba(237, 28, 36, .38), transparent 29%),
        linear-gradient(125deg, #171717 0%, #282828 62%, #551418 100%);
    box-shadow: 0 18px 42px rgba(20, 20, 20, .18);
}

.camp-hero::after {
    position: absolute;
    right: -80px;
    bottom: -130px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    content: '';
}

.camp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.camp-hero h1 {
    margin: .55rem 0 1rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.08;
}

.camp-hero p {
    max-width: 680px;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
}

.camp-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.camp-hero-tags span {
    padding: .45rem .8rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-size: .84rem;
}

.camp-hero-symbol {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
    color: rgba(255, 255, 255, .18);
    font-size: clamp(5rem, 11vw, 9rem);
    line-height: 1;
}

.camp-story-card {
    padding: clamp(1.5rem, 4vw, 2.7rem);
}

.camp-section-heading {
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e7e7e7;
}

.camp-section-heading h2 {
    margin: .35rem 0 0;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.camp-content {
    font-size: 1.03rem;
    line-height: 1.75;
}

.camp-content > p:first-child {
    font-size: 1.22rem;
    font-weight: 600;
}

.camp-content ul {
    padding: 1.1rem 1.2rem 1.1rem 2.5rem;
    border-left: 4px solid #ed1c24;
    border-radius: 0 10px 10px 0;
    background: #f7f7f7;
}

.camp-content > div:last-child {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f7f7f7, #fff1f1);
}

.camp-content > div:last-child h2,
.camp-content > div:last-child h5 {
    grid-column: 1;
}

.camp-content > div:last-child h5 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
}

.camp-content > div:last-child img {
    grid-row: 1 / span 2;
    grid-column: 2;
    width: 100% !important;
    height: 100%;
    min-height: 220px;
    border-radius: 12px;
    object-fit: cover;
}

.camp-application {
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 15% 15%, rgba(237, 28, 36, .2), transparent 35%),
        #171717;
    box-shadow: 0 18px 42px rgba(20, 20, 20, .15);
}

.camp-application-intro {
    padding: clamp(1.6rem, 4vw, 2.7rem);
    color: rgba(255, 255, 255, .8);
}

.camp-application-intro h2 {
    margin: .45rem 0 1rem;
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.camp-application-intro ul {
    padding-left: 1.2rem;
    margin: 1.5rem 0 0;
}

.camp-application-intro li + li {
    margin-top: .65rem;
}

.camp-form-card {
    padding: clamp(1.5rem, 4vw, 2.6rem);
    border: 0 !important;
    border-top: 4px solid #ed1c24 !important;
    border-radius: 0 0 0 18px;
}

.camp-form-card:hover {
    transform: none;
}

.camp-form-card .inquiry-form {
    max-width: none;
}

.camp-form-card .training-form-v2-card-heading {
    margin-bottom: 2rem;
}

.camp-form-card .training-form-v2-card-heading h3 {
    margin: .8rem 0 .4rem;
    color: #252220;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.12;
}

@media (max-width: 991.98px) {
    .camp-hero-symbol {
        display: none;
    }

    .camp-application {
        grid-template-columns: 1fr;
    }

    .camp-form-card {
        border-radius: 0 0 18px 18px;
    }
}

@media (max-width: 575.98px) {
    .camp-hero {
        min-height: 0;
        padding: 1.6rem 1.25rem;
        border-radius: 14px;
    }

    .camp-content > div:last-child {
        display: block;
        padding: 1rem;
    }

    .camp-content > div:last-child img {
        height: auto;
        min-height: 0;
        margin-top: .75rem;
    }
}
.zapis {
    padding-top: 94px;
    padding-bottom: 94px;
}

.zapis .home-signup-title {
    margin: 0 0 .5rem;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
}

.zapis .home-signup-title span {
    color: #d81718;
}

.zapis .but_zapis {
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
}

@media (max-width: 575.98px) {
    .zapis {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .zapis .home-signup-title {
        font-size: 1.75rem;
    }

    .zapis .but_zapis {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Unified visual language for the site's purpose-built page headers. */
.designer-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 20%, rgba(237, 28, 36, .38), transparent 29%),
        linear-gradient(125deg, #171717 0%, #282828 62%, #551418 100%);
    box-shadow: 0 18px 42px rgba(20, 20, 20, .18);
}

.designer-hero::after {
    position: absolute;
    right: -80px;
    bottom: -130px;
    top: auto;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    content: '';
}

.designer-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.designer-hero h1 {
    margin: .55rem 0 1rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.08;
}

.designer-hero p {
    color: rgba(255, 255, 255, .82);
}

@media (max-width: 575.98px) {
    .designer-hero {
        min-height: 0;
        padding: 1.6rem 1.25rem;
        border-radius: 14px;
    }

    .designer-hero h1 {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }
}

.news-hero-eyebrow,
.news-years-kicker,
.news-card-label {
    color: #ed1c24;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.news-hero-symbol {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
    color: rgba(255, 255, 255, .09);
    font-size: clamp(8rem, 18vw, 14rem);
    font-weight: 900;
    line-height: .75;
}

.news-years {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 1.4rem;
    border: 1px solid #e4e4e4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(20, 20, 20, .07);
}

.news-years-heading {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    padding-right: 2rem;
    border-right: 1px solid #e5e5e5;
}

.news-years-heading strong {
    color: #252525;
    font-size: 1.05rem;
}

.news-years-list {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    padding: 0;
    list-style: none;
}

.news-year-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: .5rem .8rem;
    border: 1px solid #dedede;
    border-radius: 999px;
    color: #444;
    background: #f7f7f7;
    font-weight: 600;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease, transform .2s ease;
}

.news-year-link:hover,
.news-year-link:focus-visible,
.news-year-link.active {
    border-color: #ed1c24;
    color: #fff;
    background: #d81718;
    text-decoration: none;
    transform: translateY(-1px);
}

.news-grid {
    margin-top: 0 !important;
}

.news-card {
    overflow: hidden;
}

.news-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #272727;
}

.news-card-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .2));
    content: '';
    pointer-events: none;
}

.news-card .collection-cover {
    width: 100%;
    height: 275px;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-card:hover .collection-cover {
    transform: scale(1.025);
}

.news-card-placeholder {
    display: grid;
    height: 275px;
    place-items: center;
    background:
        radial-gradient(circle at 78% 22%, rgba(237, 28, 36, .34), transparent 28%),
        linear-gradient(135deg, #202020, #3a2022);
}

.news-card-placeholder span {
    color: rgba(255, 255, 255, .12);
    font-size: 9rem;
    font-weight: 900;
    line-height: 1;
}

.news-card .site-card-body {
    padding: 1.7rem 1.8rem 1.8rem;
}

.news-card .site-card-title {
    margin: .45rem 0 .55rem;
    font-size: 1.45rem !important;
    line-height: 1.3;
}

.news-card .site-card-action {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 767.98px) {
    .news-hero-symbol {
        display: none;
    }

    .news-years {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
    }

    .news-years-heading {
        padding: 0 0 1rem;
        border-right: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .news-card .collection-cover,
    .news-card-placeholder {
        height: 230px;
    }
}

.media-hero-eyebrow,
.media-card-label {
    color: #ed1c24;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.media-hero-symbol {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
    color: rgba(255, 255, 255, .1);
    font-size: clamp(7rem, 16vw, 12rem);
    font-weight: 900;
    line-height: .8;
}

.site-breadcrumbs {
    min-width: 0;
    padding: .9rem 1.1rem;
    margin-bottom: clamp(1.35rem, 3vw, 2.25rem);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    color: #777;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 20, 20, .06);
    font-size: .86rem;
}

.site-breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-breadcrumbs li {
    display: flex;
    align-items: center;
    min-width: 0;
}

.site-breadcrumbs li + li::before {
    margin: 0 .65rem;
    color: #bbb;
    content: '›';
    font-size: 1.1rem;
    line-height: 1;
}

.site-breadcrumbs a {
    color: #555;
    font-weight: 650;
}

.site-breadcrumbs a:hover,
.site-breadcrumbs a:focus-visible {
    color: #d81718;
    text-decoration: none;
}

.site-breadcrumbs [aria-current='page'] span {
    overflow: hidden;
    color: #777;
    text-overflow: ellipsis;
}

.gallery-albums-grid {
    margin-top: 0 !important;
}

.gallery-album-card {
    overflow: hidden;
}

.gallery-album-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #262626;
}

.gallery-album-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .25));
    content: '';
    pointer-events: none;
}

.gallery-album-card .gallery-cover {
    height: 245px;
    transition: transform .35s ease;
}

.gallery-album-card:hover .gallery-cover {
    transform: scale(1.03);
}

.gallery-album-placeholder {
    display: grid;
    height: 245px;
    place-items: center;
    background:
        radial-gradient(circle at 78% 22%, rgba(237, 28, 36, .34), transparent 28%),
        linear-gradient(135deg, #202020, #3a2022);
}

.gallery-album-placeholder span {
    color: rgba(255, 255, 255, .13);
    font-size: 7rem;
    font-weight: 900;
}

.gallery-album-card .site-card-body {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.35rem 1.45rem 1.5rem;
}

.gallery-album-card .site-card-title {
    margin-top: .45rem;
    line-height: 1.35;
}

.gallery-photos-grid {
    margin-right: -8px;
    margin-left: -8px;
}

.gallery-photos-grid > div {
    padding-right: 8px;
    padding-left: 8px;
    margin-bottom: 16px !important;
}

.gallery-photo-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #eee;
    box-shadow: 0 8px 22px rgba(20, 20, 20, .1);
}

.gallery-photo-link::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: inherit;
    content: '';
    pointer-events: none;
}

.gallery-photo-link .gallery-photo {
    display: block;
    transition: transform .3s ease, filter .3s ease;
}

.gallery-photo-link:hover .gallery-photo,
.gallery-photo-link:focus-visible .gallery-photo {
    filter: brightness(.94);
    transform: scale(1.035);
}

.video-grid {
    margin-top: 0 !important;
}

.video-card {
    overflow: hidden;
}

.video-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #232323;
}

.video-card-media::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    background: rgba(216, 23, 24, .9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
    color: #fff;
    content: '▶';
    font-size: 1.25rem;
    line-height: 54px;
    text-align: center;
    transform: translate(-50%, -50%);
    transition: transform .2s ease, background-color .2s ease;
}

.video-card-media:hover::after,
.video-card-media:focus-visible::after {
    background: #ed1c24;
    transform: translate(-50%, -50%) scale(1.08);
}

.video-card .collection-cover {
    display: block;
    width: 100%;
    height: 275px;
    transition: transform .35s ease;
}

.video-card:hover .collection-cover {
    transform: scale(1.025);
}

.video-card-placeholder {
    display: grid;
    height: 275px;
    place-items: center;
    background:
        radial-gradient(circle at 78% 22%, rgba(237, 28, 36, .34), transparent 28%),
        linear-gradient(135deg, #202020, #3a2022);
}

.video-card-placeholder > span {
    display: none;
}

.video-card .site-card-body {
    padding: 1.6rem 1.7rem 1.75rem;
}

.video-card .site-card-title {
    margin: .45rem 0 .6rem;
    font-size: 1.4rem !important;
    line-height: 1.32;
}

.video-card .site-card-action {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 767.98px) {
    .media-hero-symbol {
        display: none;
    }

    .gallery-album-card .gallery-cover,
    .gallery-album-placeholder,
    .video-card .collection-cover,
    .video-card-placeholder {
        height: 225px;
    }
}

/* Article reading experience */
.article-page {
    max-width: 1180px;
}

.news-article-page {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: clamp(2rem, 5vw, 5rem);
}

.article-cover,
.news-article-page .news-article-navigation {
    grid-column: 1 / -1;
}

.news-article-page > .site-breadcrumbs {
    grid-column: 1 / -1;
}

.article-cover {
    display: flex;
    justify-content: center;
    margin: 0 0 clamp(2.5rem, 6vw, 5rem);
    overflow: hidden;
    border-radius: 18px;
    background: #eef0f2;
}

.article-cover img {
    display: block;
    width: 100%;
    height: auto;
}

.article-meta-rail {
    grid-column: 1;
    align-self: start;
    padding-top: .35rem;
}

.article-meta-rail time {
    display: block;
    margin-bottom: 2.25rem;
    color: #252525;
    font-size: 1rem;
    font-weight: 800;
}

.article-meta-back {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 2.25rem;
    color: #555;
    font-size: .88rem;
    font-weight: 650;
}

.article-share-label {
    display: block;
    margin-bottom: .65rem;
    color: #c9171e;
    font-size: .78rem;
    font-weight: 750;
    text-transform: uppercase;
}

.article-share-links {
    display: flex;
    gap: .55rem;
}

.article-share-links a {
    display: inline-grid;
    width: 44px;
    height: 44px;
    border: 1px solid #d81718;
    border-radius: 10px;
    color: #d81718;
    font-size: .78rem;
    font-weight: 800;
    place-items: center;
    transition: color .2s ease, background-color .2s ease;
}

.article-share-links a:hover,
.article-share-links a:focus-visible {
    color: #fff;
    background: #d81718;
    text-decoration: none;
}

.news-article-page .article-hero,
.news-article-page .article-content-card,
.news-article-page .article-gallery-section {
    grid-column: 2;
    width: 100%;
    max-width: none;
}

.article-hero {
    position: relative;
    max-width: 1040px;
    padding: clamp(1.75rem, 4vw, 3.5rem) clamp(0rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
    margin-right: auto;
    margin-left: auto;
    border-bottom: 1px solid #d9d9d9;
}

.news-article-page .article-hero {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    margin: 0 0 2rem !important;
}

.news-article-page .article-hero::before {
    left: 0;
}

.article-hero::before {
    position: absolute;
    bottom: -1px;
    left: clamp(0rem, 2vw, 1.5rem);
    width: 92px;
    height: 3px;
    background: #d81718;
    content: '';
}

.article-hero-content {
    max-width: 900px;
}

.article-hero-eyebrow {
    display: block;
    margin-bottom: .75rem;
    color: #c9171e;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 920px;
    margin: 0 0 1.1rem;
    color: #202020;
    font-size: clamp(2.25rem, 5.4vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.03;
}

.article-hero time {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #707070;
    font-size: .92rem;
    font-weight: 650;
}

.article-hero time::before {
    width: 22px;
    height: 2px;
    background: #ed1c24;
    content: '';
}

.article-content-card {
    max-width: 880px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 clamp(0rem, 2vw, 1.5rem);
}

.news-article-page .article-content-card {
    padding: 0;
}

.article-gallery-section:hover {
    transform: none;
}

.article-content-card .modx-content {
    color: #3f3f3f;
    font-size: 1.08rem;
    line-height: 1.75;
}

.article-content-card .modx-content > p:first-child {
    color: #303030;
    font-size: 1.18rem;
    line-height: 1.65;
}

.article-content-card .modx-content h2,
.article-content-card .modx-content h3,
.article-content-card .modx-content h4 {
    margin-top: 1.8em;
    color: #262626;
    line-height: 1.25;
}

.article-content-card .modx-content a {
    color: #c9171e;
    text-decoration-color: rgba(201, 23, 30, .32);
    text-underline-offset: .18em;
}

.article-content-card .modx-content blockquote {
    margin: 2rem 0;
    padding: 1.2rem 1.4rem;
    border-left: 4px solid #ed1c24;
    border-radius: 0 10px 10px 0;
    color: #444;
    background: #f5f5f5;
}

.article-content-card .modx-content ul,
.article-content-card .modx-content ol {
    padding-left: 1.4rem;
}

.article-content-card .modx-content li + li {
    margin-top: .5rem;
}

.article-context {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.article-context img {
    border-radius: 14px;
}

.article-lead-image {
    margin-bottom: 2rem;
}

.article-lead-image img {
    display: block;
    width: 100%;
    max-height: 620px;
    border-radius: 14px;
    object-fit: cover;
}

.article-content-card .embed-responsive {
    overflow: hidden;
    border-radius: 14px;
    background: #171717;
}

.article-gallery-section {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    border-radius: 18px;
}

.article-section-heading {
    padding-bottom: 1.2rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid #e6e6e6;
}

.article-section-heading h2 {
    margin: .35rem 0 0;
    color: #262626;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.article-gallery-grid {
    margin-right: -8px;
    margin-left: -8px;
}

.article-gallery-grid > div {
    padding-right: 8px;
    padding-left: 8px;
    margin-bottom: 16px !important;
}

.article-gallery-grid > div:only-child {
    flex: 0 0 50%;
    max-width: 50%;
}

.article-gallery-link {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #eee;
    box-shadow: 0 8px 22px rgba(20, 20, 20, .09);
}

.article-gallery-link img {
    display: block;
    transition: filter .25s ease, transform .25s ease;
}

.article-gallery-link:hover img,
.article-gallery-link:focus-visible img {
    filter: brightness(.94);
    transform: scale(1.03);
}

.article-page .news-article-navigation {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
}

.article-collection-navigation {
    max-width: 1040px;
    margin: 2rem auto 0;
}

.article-page .news-back-link {
    border-radius: 999px;
}

.article-page .news-neighbour {
    border-radius: 14px;
}

@media (max-width: 767.98px) {
    .article-page {
        padding-top: 1.5rem !important;
    }

    .news-article-page {
        display: block;
    }

    .article-cover {
        margin-bottom: 1.75rem;
        border-radius: 12px;
    }

    .article-meta-rail {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: .8rem 1.25rem;
        padding: 0 0 1.25rem;
    }

    .article-meta-rail time,
    .article-meta-back {
        margin: 0;
    }

    .article-share-label,
    .article-share-links {
        display: none;
    }

    .article-hero {
        padding-top: 1rem;
        padding-right: 0;
        padding-left: 0;
    }

    .article-hero::before {
        left: 0;
    }

    .article-content-card {
        padding: 0;
    }

    .article-content-card .modx-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .article-gallery-grid > div:only-child {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* Keep the premium layer authoritative over imported legacy rules. */
@media (min-width: 992px) {
    .site-header {
        position: sticky;
        z-index: 1035;
        top: 0;
        background: rgba(20, 22, 24, .94);
        box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
        backdrop-filter: blur(14px);
    }

    .site-navbar {
        min-height: 82px;
        background: transparent !important;
    }
}

.home-pathways-grid {
    display: grid;
}

.home-pathway-card {
    border-radius: 20px;
}
