:root {
    --svf-blue: #0056a8;
    --svf-blue-dark: #003f7f;
    --svf-yellow: #f5c400;
    --svf-text: #111827;
    --svf-muted: #667085;
    --svf-border: #e6eaf0;
    --svf-bg: #ffffff;
    --svf-soft: #f6f8fb;
    --svf-radius: 8px;
    --svf-shadow: 0 16px 40px rgba(16, 24, 40, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--svf-text);
    background: var(--svf-bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body.has-football-pattern::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
        radial-gradient(circle at 16px 16px, rgba(0, 86, 168, .055) 0 2px, transparent 3px),
        linear-gradient(135deg, transparent 0 48%, rgba(245, 196, 0, .05) 49% 51%, transparent 52%);
    background-size: 56px 56px, 120px 120px;
}

a {
    color: var(--svf-blue);
    text-decoration: none;
}

a:hover {
    color: var(--svf-blue-dark);
}

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

.container {
    width: min(var(--svf-container, 1180px), calc(100% - 32px));
    margin-inline: auto;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    z-index: 99;
    width: auto;
    height: auto;
    padding: 10px 16px;
    clip: auto;
    color: #fff;
    background: var(--svf-blue);
}

.topbar {
    color: #fff;
    background: var(--svf-blue-dark);
    font-size: .9rem;
}

.topbar__inner,
.topbar__right,
.brandbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar__inner {
    min-height: 42px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .15);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.social-links a:hover {
    color: var(--svf-blue-dark);
    background: var(--svf-yellow);
}

.brandbar {
    background: #fff;
    border-bottom: 1px solid var(--svf-border);
}

.brandbar__inner {
    min-height: 104px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--svf-text);
}

.site-brand img {
    width: clamp(76px, 9vw, 118px);
    height: auto;
    max-height: 118px;
    object-fit: contain;
    object-position: center;
}

.site-brand strong {
    display: block;
    color: var(--svf-blue);
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.1;
}

.site-brand small {
    display: block;
    max-width: 420px;
    color: var(--svf-muted);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--svf-border);
    border-radius: var(--svf-radius);
    background: #fff;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--svf-blue);
}

.main-navigation {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--svf-blue);
    box-shadow: 0 8px 22px rgba(0, 86, 168, .16);
}

.nav-container {
    width: 100%;
    margin-inline: auto;
    padding-inline: clamp(12px, 2.2vw, 36px);
}

.main-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 14px clamp(10px, 1.05vw, 18px);
    color: #fff;
    font-size: .95rem;
    font-weight: 750;
}

.main-navigation .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--svf-blue-dark);
    background: var(--svf-yellow);
}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 230px;
    max-height: min(70vh, 580px);
    overflow: auto;
    padding: 8px 0;
    background: #fff;
    border: 1px solid var(--svf-border);
    box-shadow: var(--svf-shadow);
}

.main-navigation .sub-menu a {
    padding: 11px 15px;
    color: var(--svf-text);
    font-weight: 700;
}

.main-navigation .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.main-navigation .sub-menu a:hover {
    color: var(--svf-blue-dark);
    background: color-mix(in srgb, var(--svf-yellow), white 50%);
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
    display: block;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--svf-blue-dark);
}

.hero-slider__track {
    position: relative;
    height: 430px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    height: 100%;
    display: grid;
    align-items: center;
    background-position: center;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease;
}

.hero-slide.is-active {
    position: absolute;
    opacity: 1;
    pointer-events: auto;
}

.hero__inner {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
    gap: 32px;
    align-items: center;
    padding-block: 42px 92px;
}

.hero__content {
    max-width: 720px;
    min-width: 0;
    align-self: center;
    transform: translateY(-38px);
}

.eyebrow,
.section-heading span,
.archive-header span,
.club-band span,
.not-found span {
    display: inline-block;
    color: var(--svf-blue);
    font-size: .8rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--svf-yellow);
}

.hero h1 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 8px 0 12px;
    font-size: clamp(2rem, 3.4vw, 3.45rem);
    line-height: 1;
}

.hero p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-width: 620px;
    margin: 0 0 18px;
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.hero-latest {
    display: grid;
    align-self: center;
    gap: 10px;
    min-width: 0;
    margin-bottom: 0;
    padding: 18px;
    transform: translateY(-30px);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: var(--svf-radius);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
}

.hero-latest > strong {
    color: var(--svf-yellow);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-latest a {
    display: grid;
    gap: 3px;
    padding: 8px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .22);
    font-size: .88rem;
    font-weight: 850;
    line-height: 1.25;
}

.hero-latest a span {
    color: rgba(255, 255, 255, .72);
    font-size: .76rem;
    font-weight: 700;
}

.hero__badge {
    display: none !important;
}

.headline-rail {
    display: none !important;
}

.hero-slider__controls {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    pointer-events: none;
}

.hero-slider__button,
.hero-slider__dots button {
    pointer-events: auto;
}

.hero-slider__button {
    width: 42px;
    min-height: 42px;
    padding: 0;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .13);
    font-size: 1.6rem;
}

.hero-slider__dots {
    display: flex;
    gap: 7px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .18);
}

.hero-slider__dots button {
    width: 10px;
    min-height: 10px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .56);
}

.hero-slider__dots button.is-active {
    width: 28px;
    background: var(--svf-yellow);
}

.button,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 0;
    border-radius: var(--svf-radius);
    font-weight: 850;
    cursor: pointer;
}

.button--yellow {
    color: var(--svf-blue-dark);
    background: var(--svf-yellow);
}

.ticker {
    border-bottom: 1px solid var(--svf-border);
    background: #fff;
}

.home .site-main > .ticker,
.front-page .site-main > .ticker,
.site-main > .ticker:first-child,
.site-main > .hero:first-child + .ticker {
    display: none;
}

.ticker__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-block: 14px;
}

.ticker strong {
    padding: 5px 10px;
    border-radius: var(--svf-radius);
    color: #fff;
    background: var(--svf-blue);
}

.top-tags {
    border-bottom: 1px solid var(--svf-border);
    background: #fff;
}

.top-tags__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-block: 13px;
}

.top-tags strong {
    color: var(--svf-blue);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.top-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.top-tags__list a {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--svf-blue);
    background: var(--svf-soft);
    font-weight: 800;
}

.news-live-block {
    padding-block: 28px 16px;
}

.section-heading--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.section-heading--row > a {
    color: #fff;
    padding: 8px 12px;
    border-radius: var(--svf-radius);
    background: var(--svf-blue);
    font-weight: 850;
}

.headline-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.headline-rail a {
    display: flex;
    min-height: 54px;
    align-items: center;
    padding: 9px 11px;
    border: 1px solid var(--svf-border);
    border-radius: var(--svf-radius);
    color: var(--svf-text);
    background: #fff;
    font-size: .9rem;
    font-weight: 850;
    line-height: 1.22;
}

.headline-rail a:hover {
    color: var(--svf-blue);
    border-color: color-mix(in srgb, var(--svf-blue), white 55%);
}

.news-live-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 16px;
}

.news-live-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: var(--svf-radius);
    background: var(--svf-blue-dark);
    box-shadow: 0 12px 30px rgba(16, 24, 40, .14);
}

.news-live-card__media {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--svf-yellow);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--svf-blue), var(--svf-blue-dark));
}

.news-live-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-live-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 32, 70, .88));
}

.news-live-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 18px;
    color: #fff;
}

.news-live-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.news-live-card__cats a,
.post-list-card__cats a {
    display: inline-flex;
    padding: 3px 8px;
    border-radius: 999px;
    color: var(--svf-blue-dark);
    background: var(--svf-yellow);
    font-size: .72rem;
    font-weight: 900;
}

.news-live-card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    line-height: 1.22;
}

.news-live-card h3 a,
.news-live-card time {
    color: #fff;
}

.news-live-card p {
    max-width: 620px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .84);
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--svf-sidebar, 330px);
    gap: 34px;
    padding-block: 42px;
}

.section-grid--home,
.home-news-section {
    padding-top: 34px;
}

.home-news-section {
    padding-bottom: 42px;
}

.home-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--svf-sidebar, 330px);
    gap: 34px;
    align-items: start;
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2,
.archive-header h1,
.entry-header h1,
.not-found h1 {
    margin: 3px 0 0;
    color: var(--svf-text);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.1;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(var(--svf-post-columns, 2), minmax(0, 1fr));
    gap: 20px;
}

.section-grid--home .post-grid,
.home-news-layout .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.post-list-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
    overflow: hidden;
    border: 1px solid var(--svf-border);
    border-radius: var(--svf-radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
}

.post-list-card__media {
    display: grid;
    min-height: 190px;
    place-items: center;
    color: var(--svf-yellow);
    background: linear-gradient(135deg, var(--svf-blue), var(--svf-blue-dark));
    font-size: 1.8rem;
    font-weight: 900;
}

.post-list-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-list-card__body {
    padding: 20px 20px 20px 0;
}

.post-list-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.post-list-card h2 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    line-height: 1.25;
}

.post-list-card h2 a {
    color: var(--svf-text);
}

.post-list-card p {
    margin: 10px 0;
    color: var(--svf-muted);
}

.read-more-link {
    color: var(--svf-blue);
    font-weight: 850;
}

.news-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--svf-border);
}

.news-pagination .page-numbers,
.news-pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-pagination li {
    display: inline-flex;
}

.news-pagination a,
.news-pagination span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border: 1px solid var(--svf-border);
    border-radius: var(--svf-radius);
    background: #fff;
    box-shadow: 0 6px 18px rgba(16, 24, 40, .06);
}

.news-pagination a:hover {
    color: #fff;
    border-color: var(--svf-blue);
    background: var(--svf-blue);
}

.news-pagination .current {
    color: var(--svf-blue-dark);
    border-color: var(--svf-yellow);
    background: var(--svf-yellow);
}

.post-card,
.widget,
.match-card,
.sponsor-card {
    overflow: hidden;
    border: 1px solid var(--svf-border);
    border-radius: var(--svf-radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
}

.post-card__media {
    display: grid;
    min-height: 210px;
    place-items: center;
    color: var(--svf-yellow);
    background: linear-gradient(135deg, var(--svf-blue), var(--svf-blue-dark));
    font-size: 2.3rem;
    font-weight: 900;
}

.post-card__media img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.post-card__body {
    padding: 20px;
}

.post-card__tag {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--svf-blue-dark);
    background: color-mix(in srgb, var(--svf-yellow), white 48%);
    font-size: .78rem;
    font-weight: 850;
}

.post-card h2,
.post-card h3 {
    margin: 0 0 8px;
    font-size: 1.22rem;
    line-height: 1.25;
}

.post-card h2 a {
    color: var(--svf-text);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--svf-muted);
    font-size: .9rem;
}

.post-card p,
.widget p,
.club-band p {
    color: var(--svf-muted);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

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

.sidebar {
    display: grid;
    align-content: start;
    gap: 18px;
}

.widget {
    padding: 20px;
}

.widget-title {
    margin: 0 0 12px;
    font-size: 1.05rem;
}

.widget ul {
    margin: 0;
    padding-left: 18px;
}

.widget li + li {
    margin-top: 10px;
}

.widget--accent {
    border-top: 4px solid var(--svf-yellow);
}

.widget--blue {
    color: #fff;
    background: var(--svf-blue);
}

.widget--blue p,
.widget--blue .widget-title {
    color: #fff;
}

.news-tabs {
    padding: 0;
}

.news-tabs__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--svf-border);
}

.news-tabs__nav button {
    min-height: 46px;
    padding: 10px 6px;
    border-radius: 0;
    color: var(--svf-blue);
    background: #fff;
    font-size: .9rem;
}

.news-tabs__nav button.is-active {
    color: var(--svf-blue-dark);
    background: var(--svf-yellow);
}

.news-tabs__panel {
    display: none;
    padding: 16px;
}

.news-tabs__panel.is-active {
    display: grid;
    gap: 14px;
}

.mini-post {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    color: var(--svf-text);
}

.mini-post__thumb {
    display: grid;
    width: 74px;
    height: 62px;
    place-items: center;
    overflow: hidden;
    border-radius: var(--svf-radius);
    color: var(--svf-yellow);
    background: var(--svf-blue);
}

.mini-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-post strong {
    display: block;
    font-size: .92rem;
    line-height: 1.24;
}

.mini-post time {
    display: block;
    margin-top: 4px;
    color: var(--svf-muted);
    font-size: .8rem;
}

.tag-cloud-link {
    display: inline-block;
    margin: 0 6px 7px 0;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--svf-blue);
    background: var(--svf-soft);
    font-weight: 700;
}

.club-band {
    margin-top: 10px;
    padding-block: 46px;
    color: #fff;
    background: linear-gradient(135deg, var(--svf-blue-dark), var(--svf-blue));
}

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

.club-band a {
    color: #fff;
}

.club-band article,
.club-band a {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--svf-radius);
    background: rgba(255, 255, 255, .08);
}

.club-band span {
    color: var(--svf-yellow);
}

.club-band h2 {
    margin: 4px 0 8px;
    color: #fff;
}

.club-band p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.sponsor-section {
    padding-block: 40px;
}

.content-hub {
    padding-block: 44px;
}

.content-hub--primary {
    padding-top: 54px;
    background: var(--svf-soft);
}

.content-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.content-link-card {
    display: flex;
    min-height: 104px;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border: 1px solid var(--svf-border);
    border-radius: var(--svf-radius);
    color: var(--svf-text);
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
}

.content-link-card strong {
    color: var(--svf-blue);
    line-height: 1.25;
}

.content-link-card span {
    color: var(--svf-muted);
    font-size: .9rem;
}

.content-link-card:hover {
    color: var(--svf-blue-dark);
    border-color: color-mix(in srgb, var(--svf-blue), white 55%);
    transform: translateY(-2px);
}

.feature-strip {
    padding-block: 28px;
    background: var(--svf-soft);
}

.feature-strip__grid,
.portal-grid,
.team-grid,
.calendar-preview,
.sponsor-wall {
    display: grid;
    gap: 16px;
}

.feature-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-strip a,
.portal-grid article,
.team-grid article,
.calendar-preview article,
.sponsor-wall article,
.table-card,
.wide-callout {
    border: 1px solid var(--svf-border);
    border-radius: var(--svf-radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
}

.feature-strip a {
    padding: 18px;
    color: var(--svf-text);
}

.feature-strip strong,
.feature-strip span,
.team-grid strong,
.team-grid span,
.calendar-preview strong,
.calendar-preview span,
.sponsor-wall strong,
.sponsor-wall span {
    display: block;
}

.feature-strip strong,
.team-grid strong,
.calendar-preview strong,
.sponsor-wall strong {
    color: var(--svf-blue);
    font-size: 1.05rem;
}

.feature-strip span,
.team-grid span,
.calendar-preview span,
.sponsor-wall span {
    color: var(--svf-muted);
}

.clone-section {
    padding-block: 54px;
}

.clone-section--soft {
    background: var(--svf-soft);
}

.portal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-grid article {
    padding: 22px;
}

.portal-grid h3 {
    margin: 0 0 8px;
    color: var(--svf-blue);
}

.portal-grid p {
    margin: 0;
    color: var(--svf-muted);
}

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

.team-grid article,
.calendar-preview article,
.sponsor-wall article {
    padding: 20px;
    border-top: 4px solid var(--svf-yellow);
}

.wide-callout {
    margin-top: 18px;
    padding: 24px;
    background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--svf-yellow), white 76%));
}

.wide-callout h3 {
    margin-top: 0;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 20px;
}

.table-card {
    padding: 22px;
    overflow: auto;
}

.table-card table {
    width: 100%;
    border-collapse: collapse;
}

.table-card th,
.table-card td {
    padding: 14px 10px;
    border-bottom: 1px solid var(--svf-border);
    text-align: left;
}

.table-card th {
    color: var(--svf-blue);
}

.calendar-preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sponsor-wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shop-band {
    padding-block: 44px;
    color: #fff;
    background: linear-gradient(135deg, var(--svf-blue), var(--svf-blue-dark));
}

.shop-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.shop-band span {
    color: var(--svf-yellow);
    font-size: .8rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.shop-band h2 {
    margin: 3px 0 8px;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.shop-band p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.shop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-actions .button:not(.button--yellow) {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .12);
}

.maintenance-page {
    min-height: 100vh;
    overflow: hidden;
}

.maintenance-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
    background-position: center;
    background-size: cover;
}

.maintenance-card {
    width: min(720px, 100%);
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
}

.maintenance-logo {
    width: clamp(92px, 14vw, 142px);
    height: auto;
    margin-bottom: 24px;
    object-fit: contain;
}

.maintenance-card > span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--svf-yellow);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.maintenance-card h1 {
    max-width: 640px;
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: .98;
}

.maintenance-card p {
    max-width: 600px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .86);
    font-size: 1.15rem;
}

.maintenance-status {
    display: inline-flex;
    margin: 0 12px 16px 0;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, .16);
    font-weight: 800;
}

.maintenance-social {
    margin-top: 22px;
}

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

.sponsor-card,
.match-card {
    padding: 18px;
}

.entry,
.not-found {
    padding-block: 42px;
}

.front-page-content {
    padding-top: 42px;
}

.entry--front {
    padding-block: 0;
}

.content-narrow {
    max-width: var(--svf-page-width, 880px);
}

.entry-header {
    margin-bottom: 24px;
}

.entry-image {
    margin: 0 0 28px;
}

.entry-image--single {
    max-width: 760px;
}

.entry-image--single img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--svf-radius);
}

.entry-image img {
    border-radius: var(--svf-radius);
}

.single-layout {
    align-items: start;
}

.single-layout--no-sidebar {
    display: block;
    padding-block: 42px;
}

.single-layout--no-sidebar > div {
    max-width: min(var(--svf-page-width), 100%);
    margin-inline: auto;
}

.sidebar--single {
    position: sticky;
    top: 18px;
}

.entry-content {
    font-size: 1.08rem;
}

.entry-content > * {
    max-width: 760px;
}

.entry-content .alignwide {
    max-width: 100%;
}

.entry-content .alignfull {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.elementor-page-shell {
    width: 100%;
    max-width: none;
    padding: 0;
}

.entry--elementor,
.elementor-page-shell .entry {
    padding: 0;
}

.elementor-page-shell .entry-content,
.elementor-page-shell .entry-content > *,
.elementor-canvas-shell,
.elementor-canvas-shell > * {
    max-width: none;
}

.elementor-page-shell .entry-content {
    font-size: inherit;
}

.elementor-page-shell .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: var(--svf-container, 1180px);
}

.elementor-canvas-page {
    background: var(--svf-bg);
}

.archive-header {
    margin-bottom: 22px;
}

.pagination,
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.page-numbers,
.nav-links a {
    padding: 8px 12px;
    border-radius: var(--svf-radius);
    background: var(--svf-soft);
    font-weight: 800;
}

.page-numbers.current {
    color: #fff;
    background: var(--svf-blue);
}

.site-footer {
    margin-top: 40px;
    color: #fff;
    background: #071a33;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    padding-block: 42px;
}

.site-footer h2 {
    color: var(--svf-yellow);
    font-size: 1.05rem;
}

.site-footer a {
    color: #fff;
}

.site-footer ul {
    margin: 0;
    padding-left: 18px;
}

.footer-menu {
    display: grid;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-block: 16px;
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer-legal a {
    color: rgba(255, 255, 255, .82);
}

.shop-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(7, 26, 51, .66);
}

.shop-modal__panel {
    position: relative;
    width: min(460px, 100%);
    padding: 28px;
    border-radius: var(--svf-radius);
    background: #fff;
    box-shadow: var(--svf-shadow);
}

.shop-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    min-height: 32px;
    padding: 0;
    color: #fff;
    background: var(--svf-blue);
}

.svf-version-badge {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 5px;
    color: #071a33;
    background: var(--svf-yellow);
    box-shadow: 0 6px 16px rgba(16, 24, 40, .18);
    font-size: 10px;
    font-weight: 850;
    line-height: 1.1;
}

.svf-version-badge a {
    color: #071a33;
    text-decoration: none;
}

.svf-version-badge span {
    opacity: .78;
}

input,
textarea,
select {
    width: 100%;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid var(--svf-border);
    border-radius: var(--svf-radius);
    font: inherit;
}

@media (max-width: 900px) {
    .topbar__inner,
    .topbar__right,
    .brandbar__inner,
    .ticker__inner,
    .footer-bottom .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .brandbar__inner {
        min-height: auto;
        padding-block: 14px;
    }

    .menu-toggle {
        position: absolute;
        top: 64px;
        right: 16px;
        display: block;
    }

    .main-navigation ul {
        display: none;
        flex-direction: column;
    }

    .main-navigation.is-open ul {
        display: flex;
    }

    .main-navigation .sub-menu {
        position: static;
        display: block;
        min-width: 0;
        padding-left: 14px;
        border: 0;
        box-shadow: none;
    }

    .hero__inner,
    .section-grid,
    .home-news-layout,
    .news-live-grid,
    .club-band__grid,
    .footer-grid,
    .content-link-grid,
    .feature-strip__grid,
    .portal-grid,
    .team-grid,
    .calendar-preview,
    .sponsor-wall,
    .split-layout,
    .shop-band__inner {
        grid-template-columns: 1fr;
    }

    .news-live-grid {
        grid-auto-rows: auto;
    }

    .headline-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-live-card,
    .news-live-card--main {
        min-height: 280px;
        grid-row: auto;
    }

    .post-list-card {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .shop-band__inner {
        display: grid;
    }

    .hero-latest {
        justify-self: start;
        width: min(100%, 420px);
        margin-bottom: 0;
        transform: none;
    }

    .hero__content {
        transform: none;
    }
}

@media (max-width: 640px) {
    .post-grid,
    .home-news-layout .post-grid,
    .section-grid--home .post-card,
    .post-list-card,
    .sponsor-grid,
    .match-list {
        grid-template-columns: 1fr;
    }

    .top-tags__inner,
    .section-heading--row {
        align-items: flex-start;
        flex-direction: column;
    }

    .post-list-card__body {
        padding: 18px;
    }

    .post-list-card__media {
        min-height: 210px;
    }

    .site-brand img {
        width: 64px;
        height: auto;
        max-height: 72px;
    }

    .site-brand small {
        display: none;
    }

    .hero-slider__track {
        height: 430px;
    }
}
