:root {
    --ink: #071c22;
    --muted: #5d6a66;
    --paper: #efe7d5;
    --white: #ffffff;
    --signal: #d8c18b;
    --red: #8f1f2d;
    --blue: #123f4a;
    --spray: #071419;
    --cream: #f4dfb1;
    --line: rgba(7, 28, 34, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(7, 28, 34, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
        linear-gradient(rgba(7, 28, 34, 0.028) 1px, transparent 1px) 0 0 / 44px 44px,
        var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
}

p {
    font-size: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 56px);
    background: rgba(7, 28, 34, 0.9);
    border-bottom: 2px solid rgba(216, 193, 139, 0.55);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.brand img {
    display: block;
    width: 130px;
    height: auto;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--cream);
}

.main-nav a {
    text-decoration: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 56px);
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(7, 20, 25, 0.93), rgba(7, 28, 34, 0.66) 46%, rgba(143, 31, 45, 0.34)),
        linear-gradient(0deg, rgba(7, 20, 25, 0.38), rgba(7, 20, 25, 0.08)),
        url("/assets/img/brand/velvart-bmx-hero-bg.webp") center center / cover fixed,
        linear-gradient(135deg, #071419, #123f4a 62%, #8f1f2d);
    background-attachment: scroll, scroll, fixed, scroll;
}

.hero::before {
    content: "BMX SULI";
    position: absolute;
    right: -4vw;
    bottom: 12vh;
    z-index: 0;
    color: rgba(244, 223, 177, 0.07);
    font-size: clamp(86px, 18vw, 260px);
    font-weight: 900;
    line-height: 0.8;
    text-transform: uppercase;
    transform: rotate(-7deg);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px);
    background-size: 28px 28px, 36px 36px;
    mix-blend-mode: screen;
    opacity: 0.28;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    flex: 1 1 680px;
    min-width: 0;
}

.hero h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(48px, 9vw, 116px);
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 5px 5px 0 rgba(143, 31, 45, 0.8), 10px 10px 0 rgba(7, 20, 25, 0.95);
}

.hero__lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(18px, 2.2vw, 24px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .eyebrow,
.section--contact .eyebrow {
    color: var(--cream);
}

.hero__actions,
.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 2px solid currentColor;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 5px 5px 0 var(--red);
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translate(5px, 5px);
    box-shadow: 0 0 0 var(--red);
}

.button:active {
    transform: translate(6px, 6px);
}

.button:focus-visible {
    outline: 3px solid var(--cream);
    outline-offset: 3px;
}

.button--primary {
    color: var(--spray);
    background: var(--cream);
    border-color: var(--cream);
    color: var(--ink) !important;
}

.button--ghost,
.button--ghost-light {
    color: var(--white);
}

.button--dark {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
}

.hero-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 2px solid rgba(244, 223, 177, 0.72);
    border-bottom-color: var(--cream);
    border-radius: 6px 6px 0 0;
    color: var(--white);
    background: rgba(7, 20, 25, 0.46);
    box-shadow: 5px 5px 0 var(--red);
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.hero-tab:hover,
.hero-tab:focus-visible {
    transform: translate(5px, 5px);
    box-shadow: 0 0 0 var(--red);
}

.hero-tab:active {
    transform: translate(6px, 6px);
}

.hero-tab:focus-visible {
    outline: 3px solid var(--cream);
    outline-offset: 3px;
}

.hero-tab[aria-expanded="true"] {
    color: var(--spray);
    background: var(--cream);
    border-color: var(--cream);
}

.hero-schedule {
    width: min(100%, 720px);
    margin-top: 8px;
    color: var(--ink);
    background: var(--paper);
    border: 2px solid var(--cream);
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.hero-schedule .schedule-tabpanel__label {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: var(--cream);
}

.hero__panel {
    position: relative;
    z-index: 1;
    flex: 0 1 380px;
    display: grid;
    gap: 12px;
}

.hero__panel div {
    padding: 18px;
    border: 2px solid rgba(244, 223, 177, 0.45);
    background: rgba(7, 20, 25, 0.58);
    box-shadow: 7px 7px 0 rgba(143, 31, 45, 0.42);
}

.hero__panel strong,
.hero__panel span {
    display: block;
}

.hero__panel strong {
    font-size: 22px;
}

.hero__panel span {
    color: rgba(255, 255, 255, 0.72);
}

.section {
    padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

#rolunk {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(90deg, rgba(239, 231, 213, 0.96), rgba(239, 231, 213, 0.88) 46%, rgba(239, 231, 213, 0.28)),
        linear-gradient(0deg, rgba(239, 231, 213, 0.6), rgba(239, 231, 213, 0.18)),
        url("/assets/img/brand/velvart-bmx-about-bg.png") center center / cover fixed,
        var(--paper);
    background-attachment: scroll, scroll, fixed, scroll;
}

.section--dark,
.section--contact {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 20, 25, 0.95), rgba(18, 63, 74, 0.96)),
        var(--ink);
}

main > section.section:nth-of-type(n+3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.text-grid,
.cards,
.team-grid,
.feature,
.timeline,
.contact-box {
    width: 100%;
}

.section__heading {
    max-width: 100%;
    margin-bottom: 32px;
}

.section h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 70px);
    line-height: 1;
    text-transform: uppercase;
}

.text-flow,
.text-grid,
.cards,
.feature,
.contact-box {
    max-width: 1120px;
}

.text-flow {
    column-count: 4;
    column-gap: 32px;
    color: var(--muted);
    line-height: 1.65;
}

.text-flow p {
    margin: 0;
}

.text-flow strong {
    color: var(--ink);
}

.about-actions {
    width: 100%;
    max-width: 1120px;
    margin-top: 28px;
}

.text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.text-grid strong {
    color: var(--ink);
}

#edzoink {
    position: relative;
    overflow: hidden;
}

#edzoink::before {
    content: "TEAM";
    position: absolute;
    left: 50%;
    top: 55%;
    z-index: 0;
    color: rgba(143, 31, 45, 0.14);
    font-size: clamp(220px, 42vw, 680px);
    font-weight: 900;
    line-height: 0.8;
    text-transform: uppercase;
    transform: translate(-50%, -50%) rotate(-8deg);
    pointer-events: none;
}

#edzoink .section__heading,
#edzoink .team-grid {
    position: relative;
    z-index: 1;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1120px;
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    padding: 12px;
    border: 2px solid rgba(143, 31, 45, 0.28);
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 7px 7px 0 rgba(143, 31, 45, 0.2);
}

.team-card__photo {
    width: 100%;
    aspect-ratio: 1125 / 1658;
    overflow: hidden;
    border: 2px solid var(--cream);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(7, 20, 25, 0.98), rgba(18, 63, 74, 0.92)),
        var(--spray);
}

.team-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-card__body {
    display: block;
    width: calc(100% - 18px);
    margin: -18px auto 0;
    padding: 14px 14px 16px;
    color: var(--ink);
    background: var(--cream);
    border: 2px solid rgba(7, 28, 34, 0.18);
    border-radius: 6px;
    box-shadow: 5px 5px 0 rgba(143, 31, 45, 0.32);
    text-align: center;
    text-decoration: none;
    z-index: 1;
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.team-card__body:hover,
.team-card__body:focus-visible {
    transform: translate(5px, 5px);
    box-shadow: 0 0 0 rgba(143, 31, 45, 0.32);
}

.team-card__body:active {
    transform: translate(6px, 6px);
}

.team-card__body:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
}

.team-card span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.team-card h3 {
    margin: 0;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1;
    white-space: nowrap;
}

.card {
    min-height: 210px;
    padding: 24px;
    border: 2px solid rgba(244, 223, 177, 0.24);
    background: rgba(244, 223, 177, 0.07);
    box-shadow: 6px 6px 0 rgba(143, 31, 45, 0.36);
}

.card h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.split-section {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: stretch;
    min-height: clamp(560px, 72vh, 760px);
    padding: 0;
    text-align: left !important;
}

.split-section__panel {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    padding: clamp(52px, 7vw, 96px) clamp(22px, 5vw, 72px);
}

.split-section__panel--light {
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(7, 28, 34, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
        linear-gradient(rgba(7, 28, 34, 0.028) 1px, transparent 1px) 0 0 / 44px 44px,
        var(--paper);
}

.split-section__panel--dark {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 20, 25, 0.96), rgba(18, 63, 74, 0.96)),
        var(--ink);
}

.split-section__panel--dark .eyebrow {
    color: var(--cream);
}

.split-section .section__heading,
.split-section .feature,
.split-section .contact-box {
    max-width: 640px;
}

.split-section .section__heading {
    margin-bottom: 28px;
}

.split-section h2 {
    font-size: clamp(34px, 4.8vw, 70px);
}

.split-section .feature p,
.split-section .contact-box p {
    max-width: none;
}

#taborok {
    min-height: 100vh;
}

#taborok .split-section__panel {
    align-items: center;
    text-align: center;
}

#taborok .feature-actions,
#taborok .contact-links {
    justify-content: center;
}

.feature,
.contact-box {
    font-size: 21px;
}

.feature p,
.contact-box p {
    max-width: 760px;
    margin: 0 0 24px;
}

.feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-box a,
.modal__intro a {
    color: inherit;
    font-weight: 800;
}

.form-status {
    padding: 14px 16px;
    border-radius: 6px;
    font-weight: 800;
    opacity: 1;
    transition: opacity 5s ease;
}

.form-status--success {
    color: #123300;
    background: var(--cream);
}

.form-status--error {
    color: var(--white);
    background: var(--red);
}

.form-status--fade {
    opacity: 0;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal[aria-hidden="false"] {
    display: flex;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.modal__dialog {
    position: relative;
    width: min(100%, 620px);
    max-height: 90vh;
    overflow: auto;
    padding: clamp(24px, 4vw, 38px);
    color: var(--ink);
    background: var(--paper);
    border-radius: 8px;
    border: 2px solid var(--cream);
    box-shadow: 12px 12px 0 rgba(143, 31, 45, 0.45), 0 24px 80px rgba(0, 0, 0, 0.34);
}

.modal__dialog--wide {
    width: min(100%, 980px);
}

.modal__dialog--image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(96vw, 1280px);
    padding: 14px;
    overflow: hidden;
    background: var(--spray);
}

.modal__dialog--image img {
    display: block;
    max-width: 100%;
    max-height: calc(90vh - 28px);
    filter: none;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 64px;
    border: 2px solid var(--cream);
    border-radius: 6px;
    color: var(--ink);
    background: var(--cream);
    box-shadow: 5px 5px 0 var(--red);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
    box-shadow: 0 0 0 var(--red);
}

.lightbox-nav--prev {
    left: 18px;
}

.lightbox-nav--next {
    right: 18px;
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--red);
    box-shadow: 4px 4px 0 var(--ink);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.modal__close:hover,
.modal__close:focus-visible {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 var(--ink);
}

.modal__close:active {
    transform: translate(5px, 5px);
}

.modal__close:focus-visible {
    outline: 3px solid var(--cream);
    outline-offset: 3px;
}

.modal h2 {
    margin: 0 42px 14px 0;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1;
    text-transform: uppercase;
}

.modal__intro {
    margin: 0 0 22px;
    color: var(--muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.form-hidden {
    position: absolute;
    left: -9999px;
}

.gallery-grid {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    column-width: 200px;
    column-gap: 18px;
}

.gallery-item {
    display: inline-block;
    width: 200px;
    max-width: 100%;
    margin: 0 0 18px;
    break-inside: avoid;
    overflow: hidden;
    border: 2px solid var(--cream);
    background: var(--spray);
    box-shadow: 5px 5px 0 rgba(143, 31, 45, 0.36);
}

.gallery-item__button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.gallery-item__button:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: -5px;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(80%);
}

.gallery-empty {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: clamp(28px, 5vw, 52px);
    border: 2px dashed rgba(143, 31, 45, 0.42);
    background: rgba(244, 223, 177, 0.45);
}

.gallery-empty p {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.gallery-empty span {
    color: var(--muted);
    font-size: 18px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1120px;
}

.timeline div {
    min-height: 170px;
    padding: 22px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 20, 25, 0.94), rgba(18, 63, 74, 0.86)),
        var(--blue);
    border: 2px solid rgba(244, 223, 177, 0.34);
    box-shadow: 6px 6px 0 rgba(143, 31, 45, 0.36);
}

.timeline strong,
.timeline span {
    display: block;
}

.timeline strong {
    margin-bottom: 18px;
    color: var(--cream);
    font-size: 22px;
    text-transform: uppercase;
}

.timeline span {
    color: rgba(255, 255, 255, 0.76);
}

.schedule-tabpanel {
    max-width: 920px;
}

.schedule-tabpanel__label {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
    color: var(--ink);
    background: var(--cream);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.schedule-intro {
    display: grid;
    gap: 8px;
    padding: 16px 18px 18px;
    background: rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(7, 28, 34, 0.18);
}

.schedule-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.48;
}

.schedule-intro p:first-child {
    color: var(--ink);
    font-weight: 800;
}

.schedule-table {
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.schedule-table__row {
    display: flex;
    border-top: 1px solid rgba(7, 28, 34, 0.18);
}

.schedule-table__day {
    flex: 0 0 150px;
    padding: 16px 18px;
    color: var(--red);
    font-size: 20px;
    font-weight: 900;
}

.schedule-table__details {
    flex: 1 1 auto;
    min-width: 0;
    padding: 16px 18px;
    color: var(--muted);
    font-size: 18px;
}

.schedule-table__time,
.schedule-table__note {
    display: block;
}

.schedule-table__time {
    color: var(--ink);
    font-size: 19px;
    line-height: 1.2;
}

.schedule-table__note {
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.45;
}

.schedule-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 16px;
    min-height: 126px;
    padding: 20px 18px;
    background:
        linear-gradient(90deg, rgba(7, 28, 34, 0.035) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(rgba(7, 28, 34, 0.028) 1px, transparent 1px) 0 0 / 28px 28px,
        var(--paper);
    border-top: 2px solid rgba(143, 31, 45, 0.22);
}

.schedule-logos__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    min-height: 52px;
    text-decoration: none;
}

.schedule-logos__item img {
    display: block;
    width: 100px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 24px;
    padding: 28px clamp(18px, 4vw, 56px);
    color: rgba(244, 223, 177, 0.72);
    background: var(--spray);
}

.site-footer p {
    margin: 0;
}

.footer-credit {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px 10px;
}

.site-footer a {
    color: var(--cream);
    font-weight: 800;
    text-decoration: none;
}

.footer-credit__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
}

.footer-credit__logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 104px;
    max-height: 16px;
}

@media (max-width: 820px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .text-grid,
    .cards,
    .team-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .text-flow {
        column-count: 2;
    }

    .team-card h3 {
        font-size: clamp(22px, 7vw, 30px);
    }

    .hero {
        align-items: stretch;
        background-attachment: scroll, scroll, scroll, scroll;
        background-position: 44% center;
        flex-direction: column;
        min-height: auto;
    }

    #rolunk {
        background-attachment: scroll, scroll, scroll, scroll;
        background-position: 58% center;
    }

    .hero__content,
    .hero__panel {
        flex-basis: auto;
    }

    .hero-schedule {
        width: 100%;
    }

    .schedule-table__row {
        flex-direction: column;
        gap: 4px;
        padding: 14px 18px;
    }

    .schedule-table__day,
    .schedule-table__details {
        flex-basis: auto;
        padding: 0;
    }

    .schedule-intro {
        padding: 14px 18px;
    }

    .schedule-table__time {
        font-size: 18px;
    }

    .split-section {
        flex-direction: column !important;
        min-height: 0;
    }

    .split-section__panel {
        min-height: 50vh;
    }

    .site-footer,
    .footer-credit {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .button,
    .hero-tab {
        width: 100%;
    }

    .text-flow {
        column-count: 1;
    }

    .team-card h3 {
        font-size: clamp(18px, 6vw, 24px);
    }
}
