:root {
    --color-bg: #030605;
    --color-surface: #101514;
    --color-surface-light: #171d1b;
    --color-border: #252d2a;
    --color-text: #ffffff;
    --color-muted: #9ca3af;
    --color-primary: #c6ff00;
    --color-primary-dark: #8bb800;
    --color-danger: #ff3b4f;

    --font-main: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius-md: 12px;
    --radius-lg: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(3, 6, 5, 0.94);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--color-text);
    font-weight: 900;
    text-transform: uppercase;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.brand-text small {
    color: var(--color-primary);
    font-size: 11px;
}

.brand-text-single {
    display: inline-block;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin: 0;
}

.main-menu a {
    display: block;
    padding: 10px 13px;
    border-radius: 7px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.main-menu a:hover,
.main-menu .current-menu-item > a,
.main-menu .current_page_item > a {
    background: rgba(198, 255, 0, 0.12);
    color: var(--color-primary);
}

/* Hero */

.home-hero {
    padding: 40px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
    gap: 22px;
}

.hero-main,
.hero-match {
    min-height: 410px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    background:
        linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.25)),
        radial-gradient(circle at top, rgba(198,255,0,0.12), transparent 35%),
        var(--color-surface);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-match {
    background-image:
        linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.2) 100%),
        radial-gradient(circle at top, rgba(198, 255, 0, 0.12), transparent 40%),
        url("../img/sdw.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-main h1 {
    max-width: 660px;
    margin: 12px 0 10px;
    font-size: clamp(25px, 3.2vw, 38px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-main p {
    max-width: 620px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    background: rgba(198, 255, 0, 0.12);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-danger {
    border-color: var(--color-danger);
    background: var(--color-danger);
    color: #ffffff;
}

.match-card-large {
    margin-top: 28px;
    text-align: center;
}

.match-card-large strong {
    display: block;
    margin: 18px 0;
    color: var(--color-primary);
    font-size: 46px;
    line-height: 1;
}

.team {
    font-size: 20px;
    font-weight: 900;
}

.match-card-large small {
    display: block;
    margin-top: 14px;
    color: var(--color-muted);
}

/* Hero-News unter dem oberen Bereich */

.hero-news-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.hero-small-news {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: rgba(16, 21, 20, 0.92);
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.hero-small-news:hover {
    transform: translateY(-2px);
    border-color: rgba(198, 255, 0, 0.65);
    background: rgba(20, 28, 25, 0.96);
}

.hero-small-news a {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 118px;
    padding: 14px;
}

.hero-small-news-image {
    width: 120px;
    height: 78px;
    border-radius: 7px;
    overflow: hidden;
    background: var(--color-surface-light);
}

.hero-small-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-small-news-content {
    min-width: 0;
}

.hero-small-news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.hero-small-news .badge {
    padding: 4px 8px;
    font-size: 10px;
}

.hero-small-news h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-small-news p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-small-news small {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 12px;
}
.hero-main-link {
    display: block;
}

.hero-main-date {
    display: block;
    margin-top: 14px;
    color: var(--color-muted);
    font-size: 12px;
}
.hero-main {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Allgemeine Sections */

.section {
    padding: 36px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.section-header h2 {
    position: relative;
    margin: 0;
    padding-left: 14px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.section-header h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 4px;
    border-radius: 999px;
    background: var(--color-primary);
}

.section-header a {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
}

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

.post-card {
    min-height: 260px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    overflow: hidden;
}

.post-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.post-card-content {
    padding: 18px;
}

.post-card h2,
.post-card h3 {
    margin: 12px 0 8px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.post-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.5;
}

/* Spieltag */

.matchday-section {
    padding-top: 10px;
}

.matchday-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.matchday-slider::-webkit-scrollbar {
    height: 8px;
}

.matchday-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.matchday-slider::-webkit-scrollbar-thumb {
    background: rgba(198, 255, 0, 0.35);
    border-radius: 999px;
}

.matchday-card {
    min-height: 150px;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: rgba(16, 21, 20, 0.92);
    scroll-snap-align: start;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.matchday-card:hover {
    transform: translateY(-2px);
    border-color: rgba(198, 255, 0, 0.65);
    background: rgba(20, 28, 25, 0.96);
}

.matchday-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--color-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.matchday-meta span {
    line-height: 1.25;
}

.matchday-meta span:last-child {
    text-align: right;
}

.matchday-teams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    align-items: start;
}

.matchday-team {
    min-width: 0;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.matchday-team.is-home {
    text-align: left;
}

.matchday-team.is-away {
    text-align: right;
}

.matchday-score-row {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.matchday-score {
    color: var(--color-primary);
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    white-space: nowrap;
}

.matchday-date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--color-muted);
    font-size: 12px;
    flex-wrap: wrap;
}

.matchday-league-block {
    margin-top: 24px;
}

.matchday-league-block + .matchday-league-block {
    margin-top: 42px;
}

.matchday-league-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.matchday-league-header h3 {
    margin: 0;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.matchday-league-header a {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
}

.matchday-empty {
    margin: 0;
    color: var(--color-muted);
}

/* Spiele-Archiv */

.archive-hero {
    padding: 64px 0 30px;
}

.archive-hero h1 {
    max-width: none;
    margin: 14px 0 10px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.archive-hero p {
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
}

.archive-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.archive-filter a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}

.archive-filter a:hover,
.archive-filter a.is-active {
    border-color: var(--color-primary);
    background: rgba(198, 255, 0, 0.12);
    color: var(--color-primary);
}

.archive-spieltag-filter {
    margin-bottom: 24px;
}

.archive-spieltag-filter form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.archive-spieltag-filter label {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}

.archive-spieltag-filter select {
    min-width: 190px;
    padding: 9px 12px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 13px;
    font-weight: 800;
    outline: none;
}

.archive-spieltag-filter select:focus {
    border-color: var(--color-primary);
}

.archive-reset-filter {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
}

.archive-match-list {
    display: grid;
    gap: 12px;
}

.archive-match-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: rgba(16, 21, 20, 0.92);
    overflow: hidden;
    cursor: default;
}

.archive-match-row:hover {
    border-color: var(--color-border);
    background: rgba(16, 21, 20, 0.92);
}

.archive-match-meta {
    display: grid;
    gap: 5px;
    color: var(--color-muted);
    font-size: 11px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.archive-match-main {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(170px, auto) minmax(180px, 1fr);
    gap: 18px;
    align-items: center;
    min-width: 0;
}

.archive-match-main strong {
    min-width: 0;
    font-size: 15px;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.archive-match-main strong:last-child {
    text-align: right;
}

.archive-match-score,
.archive-match-time {
    color: var(--color-primary);
    font-weight: 900;
    white-space: nowrap;
    text-align: center;
}

.archive-match-score {
    font-size: 22px;
}

.archive-match-time {
    font-size: 13px;
}

/* Footer */

.site-footer {
    margin-top: 60px;
    padding: 52px 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
}

.site-footer p,
.site-footer a {
    color: var(--color-muted);
}

.site-footer h3 {
    margin-top: 0;
    font-size: 14px;
    text-transform: uppercase;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li + li {
    margin-top: 8px;
}

/* Responsive */

@media (max-width: 900px) {
    .hero-grid,
    .post-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .main-navigation {
        display: none;
    }

    .hero-main,
    .hero-match {
        min-height: 340px;
    }

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

    .archive-hero h1 {
        white-space: normal;
        font-size: clamp(34px, 8vw, 48px);
    }
}

@media (max-width: 800px) {
    .archive-match-row {
        grid-template-columns: 1fr;
    }

    .archive-match-main {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .archive-match-main strong:last-child {
        text-align: left;
    }

    .archive-match-score,
    .archive-match-time {
        text-align: left;
    }
}

@media (max-width: 700px) {
    .matchday-slider {
        grid-auto-columns: minmax(270px, 88vw);
    }

    .matchday-card {
        min-height: 150px;
    }

    .matchday-team {
        font-size: 14px;
    }

    .matchday-score {
        font-size: 20px;
    }

    .matchday-date {
        font-size: 12px;
    }
}

@media (max-width: 560px) {
    .hero-small-news a {
        grid-template-columns: 1fr;
    }

    .hero-small-news-image {
        width: 100%;
        height: 150px;
    }
}

/* Einzelartikel */

.single-article-hero {
    padding: 70px 0 28px;
}

.single-article-header-inner {
    max-width: 980px;
}

.single-article-kicker {
    margin-bottom: 16px;
}

.single-article-hero h1 {
    max-width: 980px;
    margin: 0 0 16px;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 0.95;
    letter-spacing: -0.055em;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
}

.single-article-image {
    margin-top: 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.single-article-image img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.single-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
}

.single-article-content {
    padding: 44px 0 70px;
    color: #d6dee8;
    font-size: 18px;
    line-height: 1.78;
}

.single-article-lead {
    margin: 0 0 34px !important;
    color: var(--color-text) !important;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.single-article-content p {
    margin: 0 0 26px;
}

.single-article-content h2 {
    margin: 46px 0 18px;
    color: var(--color-text);
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.single-article-content h3 {
    margin: 38px 0 14px;
    color: var(--color-text);
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.single-article-content a {
    color: var(--color-primary);
    font-weight: 900;
}

.single-article-content ul,
.single-article-content ol {
    margin: 0 0 26px 24px;
    padding: 0;
}

.single-article-content li + li {
    margin-top: 8px;
}

.single-article-content blockquote {
    margin: 36px 0;
    padding: 22px 26px;
    border-left: 4px solid var(--color-primary);
    border-radius: 10px;
    background: rgba(16, 21, 20, 0.92);
    color: var(--color-text);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 800;
}

.single-article-back {
    margin-top: 44px;
    padding-top: 26px;
    border-top: 1px solid var(--color-border);
}

.single-article-back a {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 900;
}

.related-news-section {
    padding-top: 10px;
    padding-bottom: 80px;
}

@media (max-width: 800px) {
    .single-article-hero {
        padding: 46px 0 24px;
    }

    .single-article-hero h1 {
        font-size: clamp(30px, 9vw, 44px);
        line-height: 1;
    }

    .single-article-content {
        font-size: 16px;
        padding-top: 32px;
    }

    .single-article-lead {
        font-size: 19px;
    }
}

/* News-Übersicht */

.news-archive-hero {
    padding: 64px 0 30px;
}

.news-archive-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.news-archive-hero p {
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
}

.news-archive-section {
    padding: 24px 0 70px;
}

.news-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-filter-ligas {
    margin-bottom: 22px;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: rgba(16, 21, 20, 0.92);
}

.news-filter-types {
    margin-bottom: 32px;
}

.news-filter-group a {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}

.news-filter-group a:hover,
.news-filter-group a.is-active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #050805;
}

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

.news-card-archive {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: rgba(16, 21, 20, 0.92);
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.news-card-archive:hover {
    transform: translateY(-2px);
    border-color: rgba(198, 255, 0, 0.65);
    background: rgba(20, 28, 25, 0.96);
}

.news-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-surface-light);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-content {
    padding: 18px;
}

.news-card-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.news-card-badges .badge {
    padding: 5px 8px;
    font-size: 10px;
}

.news-liga-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.news-card-archive h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.news-card-archive p {
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.45;
}

.news-card-archive small {
    display: block;
    margin-top: 14px;
    color: var(--color-muted);
    font-size: 12px;
}

.news-empty {
    grid-column: 1 / -1;
    color: var(--color-muted);
}

@media (max-width: 1000px) {
    .news-grid-archive {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .news-grid-archive {
        grid-template-columns: 1fr;
    }

    .news-filter-ligas {
        padding: 0;
        border: 0;
        background: transparent;
    }
}
/* TablePress Tabellenbereich */

.tablepress-section {
    padding-top: 34px;
}

.tablepress-tabs {
    display: flex;
    width: fit-content;
    gap: 6px;
    padding: 5px;
    margin-bottom: 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: rgba(16, 21, 20, 0.92);
}

.tablepress-tab {
    appearance: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 6px;
    background: transparent;
    color: var(--color-muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.tablepress-tab:hover,
.tablepress-tab.is-active {
    background: var(--color-primary);
    color: #050805;
}

.tablepress-panels {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: rgba(16, 21, 20, 0.92);
    overflow-x: auto;
}

.tablepress-panel {
    display: none;
}

.tablepress-panel.is-active {
    display: block;
}

/* TablePress selbst überschreiben */

.tablepress-panels .tablepress {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    border-collapse: collapse !important;
    background: transparent !important;
    color: var(--color-muted);
}

.tablepress-panels .tablepress thead th {
    padding: 16px 17px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--color-border) !important;
    background: rgba(255, 255, 255, 0.015) !important;
    color: var(--color-muted) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-align: left !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tablepress-panels .tablepress tbody td {
    padding: 16px 17px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.045) !important;
    background: transparent !important;
    color: #b9c7d8 !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
}

.tablepress-panels .tablepress tbody tr:last-child td {
    border-bottom: 0 !important;
}

.tablepress-panels .tablepress tbody tr:hover td {
    background: rgba(255, 255, 255, 0.025) !important;
}

.tablepress-panels .tablepress tbody td.column-1 {
    width: 52px;
    color: var(--color-text) !important;
    font-weight: 900 !important;
}

.tablepress-panels .tablepress tbody td.column-2 {
    min-width: 230px;
    color: var(--color-text) !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

.tablepress-panels .tablepress tbody td.column-8 {
    color: var(--color-primary) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

.tablepress-panels .tablepress tbody td.column-9 {
    white-space: nowrap;
    font-size: 15px !important;
}


/* =========================
   OBERLIGA RLP/SAAR
   ========================= */

/* Aufsteiger */
.tablepress-panel[data-table-panel="oberliga"] .tablepress tbody tr:nth-child(1) {
    box-shadow: inset 3px 0 0 #16c784;
    background: rgba(22, 199, 132, 0.06);
}

/* Relegation */
.tablepress-panel[data-table-panel="oberliga"] .tablepress tbody tr:nth-child(2) {
    box-shadow: inset 3px 0 0 #f5c542;
    background: rgba(245, 197, 66, 0.06);
}

/* Abstieg */
.tablepress-panel[data-table-panel="oberliga"] .tablepress tbody tr:nth-last-child(1),
.tablepress-panel[data-table-panel="oberliga"] .tablepress tbody tr:nth-last-child(2),
.tablepress-panel[data-table-panel="oberliga"] .tablepress tbody tr:nth-last-child(3),
.tablepress-panel[data-table-panel="oberliga"] .tablepress tbody tr:nth-last-child(4),
.tablepress-panel[data-table-panel="oberliga"] .tablepress tbody tr:nth-last-child(5) {
    box-shadow: inset 3px 0 0 #ff4d5e;
    background: rgba(255, 77, 94, 0.06);
}


/* =========================
   REGIONALLIGA SW
   ========================= */

/* Aufsteiger */
.tablepress-panel[data-table-panel="regionalliga"] .tablepress tbody tr:nth-child(1) {
    box-shadow: inset 3px 0 0 #16c784;
    background: rgba(22, 199, 132, 0.06);
}


/* Abstieg */
.tablepress-panel[data-table-panel="regionalliga"] .tablepress tbody tr:nth-last-child(1),
.tablepress-panel[data-table-panel="regionalliga"] .tablepress tbody tr:nth-last-child(2),
.tablepress-panel[data-table-panel="regionalliga"] .tablepress tbody tr:nth-last-child(3) {
    box-shadow: inset 3px 0 0 #ff4d5e;
    background: rgba(255, 77, 94, 0.06);
}


/* Mobile */

@media (max-width: 700px) {
    .tablepress-tabs {
        width: min(var(--container), calc(100% - 40px));
        overflow-x: auto;
    }

    .tablepress-tab {
        white-space: nowrap;
    }

    .tablepress-panels .tablepress thead th,
    .tablepress-panels .tablepress tbody td {
        padding: 13px 12px !important;
    }
}
/* Tabellen-Legende */

.table-legend {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

.table-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.legend-dot.is-promotion {
    background: #16c784;
}

.legend-dot.is-relegation {
    background: #f5c542;
}

.legend-dot.is-relegation-down {
    background: #ff8a00;
}

.legend-dot.is-relegation-zone {
    background: #ff4d5e;
}
.site-brand-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    display: block;
    width: auto;
    height: 46px;
    max-width: 210px;
    object-fit: contain;
}
/* Auszeichnungen */

.awards-section {
    padding-top: 38px;
}

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

.award-card {
    position: relative;
    min-height: 520px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: var(--color-surface);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.award-card:hover {
    transform: translateY(-3px);
    border-color: rgba(198, 255, 0, 0.65);
    background: rgba(20, 28, 25, 0.96);
}

.award-card-image {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.award-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-card-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to top, rgba(3, 6, 5, 0.98) 0%, rgba(3, 6, 5, 0.72) 38%, rgba(3, 6, 5, 0.1) 100%),
        radial-gradient(circle at top, rgba(198, 255, 0, 0.12), transparent 42%);
}

.award-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 6px;
    background: var(--color-primary);
    color: #050805;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.award-card-badge span {
    font-size: 12px;
    line-height: 1;
}

.award-card-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.award-card-content h3 {
    margin: 0 0 6px;
    color: var(--color-text);
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.award-card-content strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 900;
}

.award-card-content small {
    display: block;
    margin-bottom: 12px;
    color: var(--color-muted);
    font-size: 12px;
}

.award-card-content p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.4;
}

.awards-empty {
    grid-column: 1 / -1;
    color: var(--color-muted);
}

@media (max-width: 1000px) {
    .awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .award-card {
        min-height: 460px;
    }
}
/* Header-Menü sauber einzeilig */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(3, 6, 5, 0.96);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--color-text);
    font-weight: 900;
    text-transform: uppercase;
}

.brand-text-single {
    display: inline-block;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu > li {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 9px 12px;
    border-radius: 7px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.main-menu > li > a:hover,
.main-menu > .current-menu-item > a,
.main-menu > .current_page_item > a {
    background: rgba(198, 255, 0, 0.12);
    color: var(--color-primary);
}


/* Falls WordPress trotzdem Marker ausgibt */
.main-menu li::marker {
    content: "";
}

@media (max-width: 1050px) {
    .main-menu > li > a {
        padding: 9px 9px;
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .main-navigation {
        display: none;
    }
}
/* Header Dropdown-Menü */

.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu > li {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 10px 13px;
    border-radius: 7px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.main-menu > li:hover > a,
.main-menu > li:focus-within > a,
.main-menu > .current-menu-item > a,
.main-menu > .current-menu-ancestor > a,
.main-menu > .current_page_item > a {
    background: rgba(198, 255, 0, 0.12);
    color: var(--color-primary);
}

.main-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 100;
    display: block;
    min-width: 220px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: rgba(16, 21, 20, 0.98);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.main-menu > li:hover > .sub-menu,
.main-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-menu .sub-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu .sub-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 11px;
    border-radius: 7px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
}

.main-menu .sub-menu a:hover,
.main-menu .sub-menu .current-menu-item > a {
    background: rgba(198, 255, 0, 0.12);
    color: var(--color-primary);
}

/* Kleine Pfeil-Markierung bei Menüpunkten mit Untermenü */
.main-menu > .menu-item-has-children > a::after {
    content: "▾";
    margin-left: 7px;
    color: var(--color-primary);
    font-size: 10px;
}

/* Letzte Dropdowns nach rechts ausrichten, damit sie nicht aus dem Bildschirm laufen */
.main-menu > li:nth-last-child(-n+2) > .sub-menu {
    right: 0;
    left: auto;
}
/* Header Dropdown-Menü – klickbar/funktionierend */

.main-menu > li {
    position: relative;
}

.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: block;
    min-width: 230px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: rgba(16, 21, 20, 0.98);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.main-menu > li:hover > .sub-menu,
.main-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-menu .sub-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu .sub-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 11px 12px;
    border-radius: 7px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
}

.main-menu .sub-menu a:hover,
.main-menu .sub-menu .current-menu-item > a {
    background: rgba(198, 255, 0, 0.12);
    color: var(--color-primary);
}

.main-menu > .menu-item-has-children > a::after {
    content: "▾";
    margin-left: 7px;
    color: var(--color-primary);
    font-size: 10px;
}

.main-menu > li:nth-last-child(-n+2) > .sub-menu {
    right: 0;
    left: auto;
}
/* Kategorie-Archiv */

.category-archive-hero {
    padding: 72px 0 30px;
}

.category-archive-hero h1 {
    max-width: 980px;
    margin: 16px 0 12px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.category-archive-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.5;
}

.category-archive-section {
    padding: 28px 0 80px;
}

.archive-pagination {
    margin-top: 34px;
}

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

.archive-pagination a,
.archive-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 900;
}

.archive-pagination a:hover,
.archive-pagination .current {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #050805;
}
/* Liga-Statistikseiten */

.league-stats-hero {
    padding: 72px 0 34px;
}

.league-stats-hero h1 {
    max-width: 980px;
    margin: 16px 0 10px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.league-stats-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.5;
}

.league-stats-section {
    padding-top: 20px;
}

.league-stats-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.league-section-header {
    margin-bottom: 18px;
}

.league-stats-sidebar {
    display: grid;
    gap: 18px;
}

.league-widget {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: rgba(16, 21, 20, 0.92);
    padding: 18px;
}

.league-widget h3 {
    margin: 0 0 16px;
    color: var(--color-text);
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.league-topscorer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.league-topscorer-list li {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    counter-increment: scorer;
}

.league-topscorer-list li:last-child {
    border-bottom: 0;
}

.league-topscorer-list li::before {
    content: counter(scorer);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
}

.league-topscorer-list strong {
    display: block;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.15;
}

.league-topscorer-list small {
    display: block;
    margin-top: 3px;
    color: var(--color-muted);
    font-size: 12px;
}

.league-topscorer-list b {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 900;
}

.league-mini-games {
    display: grid;
    gap: 10px;
}

.league-mini-game {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: rgba(3, 6, 5, 0.35);
}

.league-mini-game strong {
    min-width: 0;
    color: var(--color-text);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.league-mini-game strong:last-child {
    text-align: right;
}

.league-mini-game span {
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    text-align: center;
}

.league-mini-score {
    color: var(--color-primary) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

.league-empty {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.45;
}

.league-table-single {
    margin-top: 0;
}

@media (max-width: 1050px) {
    .league-stats-grid {
        grid-template-columns: 1fr;
    }

    .league-stats-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .league-widget:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .league-stats-hero {
        padding: 46px 0 24px;
    }

    .league-stats-hero h1 {
        font-size: clamp(34px, 10vw, 50px);
    }

    .league-stats-sidebar {
        grid-template-columns: 1fr;
    }

    .league-mini-game {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .league-mini-game strong:last-child,
    .league-mini-game span {
        text-align: left;
    }
}
/* Liga-Seiten: Tabelle volle Breite ohne horizontalen Scroll */

.league-stats-grid {
    grid-template-columns: 1fr;
}

.league-stats-main {
    min-width: 0;
}

.league-table-single,
.league-table-single.tablepress-panels {
    width: min(var(--container), calc(100% - 40px));
    max-width: var(--container);
    overflow-x: visible;
}

.league-table-single .tablepress {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: auto;
}

/* Sidebar unter der Tabelle */
.league-stats-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

/* Tabelle auf Liga-Seiten etwas kompakter, damit alles reinpasst */
.league-table-single .tablepress thead th,
.league-table-single .tablepress tbody td {
    padding: 13px 12px !important;
    font-size: 12px !important;
}

.league-table-single .tablepress tbody td.column-2 {
    min-width: 180px;
}

.league-table-single .tablepress tbody td.column-8 {
    font-size: 14px !important;
}

/* Lange Vereinsnamen sauber umbrechen, statt Scroll zu erzeugen */
.league-table-single .tablepress th,
.league-table-single .tablepress td {
    white-space: normal !important;
}

.league-table-single .tablepress tbody td.column-2 {
    word-break: normal;
    overflow-wrap: anywhere;
}

/* Responsive */
@media (max-width: 1000px) {
    .league-stats-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .league-table-single .tablepress thead th,
    .league-table-single .tablepress tbody td {
        padding: 11px 8px !important;
        font-size: 11px !important;
    }

    .league-table-single .tablepress tbody td.column-2 {
        min-width: 120px;
    }
}
/* Torjägerliste TablePress – finales sauberes Layout */

.league-widget-wide .tablepress {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    border-collapse: collapse !important;
    table-layout: fixed !important;
    background: transparent !important;
}

/* Tabellenkopf wieder anzeigen */
.league-widget-wide .tablepress thead {
    display: table-header-group !important;
}

.league-widget-wide .tablepress thead tr,
.league-widget-wide .tablepress tbody tr {
    display: grid !important;
    grid-template-columns: 70px minmax(260px, 1.3fr) minmax(260px, 1.1fr) 110px 110px !important;
    align-items: center;
    column-gap: 24px;
    width: 100% !important;
}

/* Kopfzeile */
.league-widget-wide .tablepress thead th {
    display: block !important;
    min-width: 0;
    padding: 0 0 14px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--color-border) !important;
    background: transparent !important;
    color: var(--color-muted) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-align: left !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Tabellenzellen */
.league-widget-wide .tablepress tbody td {
    display: block !important;
    min-width: 0;
    padding: 16px 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--color-text) !important;
    font-size: 16px !important;
    text-align: left !important;
}

/* Zeilentrenner */
.league-widget-wide .tablepress tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.league-widget-wide .tablepress tbody tr:last-child {
    border-bottom: 0;
}

/* Platz */
.league-widget-wide .tablepress thead th.column-1,
.league-widget-wide .tablepress tbody td.column-1 {
    text-align: left !important;
}

.league-widget-wide .tablepress tbody td.column-1 {
    color: var(--color-primary) !important;
    font-weight: 900 !important;
}

/* Spieler / Name */
.league-widget-wide .tablepress thead th.column-2,
.league-widget-wide .tablepress tbody td.column-2 {
    text-align: left !important;
}

.league-widget-wide .tablepress tbody td.column-2 {
    color: #ffffff !important;
    font-weight: 900 !important;
}

/* Verein */
.league-widget-wide .tablepress thead th.column-3,
.league-widget-wide .tablepress tbody td.column-3 {
    text-align: left !important;
}

.league-widget-wide .tablepress tbody td.column-3 {
    color: var(--color-muted) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Tore */
.league-widget-wide .tablepress thead th.column-4,
.league-widget-wide .tablepress tbody td.column-4 {
    text-align: left !important;
}

.league-widget-wide .tablepress tbody td.column-4 {
    color: var(--color-primary) !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

/* Spiele */
.league-widget-wide .tablepress thead th.column-5,
.league-widget-wide .tablepress tbody td.column-5 {
    text-align: left !important;
}

.league-widget-wide .tablepress tbody td.column-5 {
    color: #d9e3f0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* Mobile */
@media (max-width: 800px) {
    .league-widget-wide .tablepress thead tr,
    .league-widget-wide .tablepress tbody tr {
        grid-template-columns: 46px minmax(140px, 1.2fr) minmax(130px, 1fr) 60px 60px !important;
        column-gap: 12px;
    }

    .league-widget-wide .tablepress thead th {
        font-size: 10px !important;
    }

    .league-widget-wide .tablepress tbody td {
        font-size: 13px !important;
    }

    .league-widget-wide .tablepress tbody td.column-4 {
        font-size: 17px !important;
    }

    .league-widget-wide .tablepress tbody td.column-5 {
        font-size: 13px !important;
    }
}

@media (max-width: 560px) {
    .league-widget-wide {
        overflow-x: auto;
    }

    .league-widget-wide .tablepress {
        min-width: 620px !important;
    }
}

/* Zahlen optisch sauber rechts bündig */
.league-widget-wide .tablepress tbody td.column-4 {
    color: var(--color-primary) !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

.league-widget-wide .tablepress tbody td.column-5 {
    color: var(--color-muted) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}
/* Liga-Seiten: Tabelle, Torjäger und Module exakt gleiche Breite */

.league-stats-section > .league-stats-grid,
.league-stats-grid {
    width: min(var(--container), calc(100% - 40px)) !important;
    max-width: var(--container) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.league-stats-main,
.league-stats-modules,
.league-widget-wide,
.league-stats-bottom-grid {
    width: 100% !important;
    max-width: none !important;
}

.league-table-single,
.league-table-single.tablepress-panels,
.league-stats-main .tablepress-panels {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.league-widget,
.league-widget-wide {
    box-sizing: border-box;
}
/* Liga-Seiten: Nächste Spiele und Letzte Ergebnisse nebeneinander */

.league-stats-bottom-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
    width: 100% !important;
}

.league-stats-bottom-grid .league-widget {
    width: 100% !important;
}

/* Mobile wieder untereinander */
@media (max-width: 800px) {
    .league-stats-bottom-grid {
        grid-template-columns: 1fr !important;
    }
}
/* Liga-Seiten: Abstand zwischen Torjäger und unteren Boxen */

.league-stats-bottom-grid {
    margin-top: 28px !important;
}
/* Über-uns-Seite */

.about-hero {
    padding: 82px 0 42px;
}

.about-hero-inner {
    max-width: 980px;
}

.about-hero h1 {
    max-width: 900px;
    margin: 16px 0 14px;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.about-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--color-muted);
    font-size: 20px;
    line-height: 1.5;
}

.about-section {
    padding: 34px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
    gap: 24px;
    align-items: stretch;
}

.about-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at top left, rgba(198, 255, 0, 0.08), transparent 34%),
        rgba(16, 21, 20, 0.92);
    padding: 28px;
}

.about-card-large {
    min-height: 320px;
}

.about-card h2,
.about-card h3 {
    margin: 0 0 16px;
    color: var(--color-text);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.about-card h2 {
    font-size: 34px;
}

.about-card h3 {
    font-size: 24px;
}

.about-card p {
    margin: 0;
    color: #c7d4e3;
    font-size: 17px;
    line-height: 1.7;
}

.about-card p + p {
    margin-top: 18px;
}

.about-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 800;
}

.about-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--color-primary);
    flex-shrink: 0;
}

.about-values-section {
    padding-top: 44px;
}

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

.about-value-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(16, 21, 20, 0.92);
    padding: 24px;
}

.about-value-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
}

.about-value-card h3 {
    margin: 0 0 12px;
    color: var(--color-text);
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.about-value-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.6;
}

.about-contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.about-button {
    display: inline-flex;
    width: fit-content;
    margin-top: 24px;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--color-primary);
    color: #050805;
    font-size: 14px;
    font-weight: 900;
}

.about-button:hover {
    background: #d9ff45;
}

@media (max-width: 900px) {
    .about-grid,
    .about-contact-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 54px 0 28px;
    }

    .about-hero h1 {
        font-size: clamp(40px, 12vw, 62px);
    }

    .about-hero p {
        font-size: 17px;
    }
}
/* Hover-Rand bei Cards immer vollständig sichtbar */

.matchday-card,
.hero-small-news,
.post-card,
.news-card-archive {
    outline: 1px solid transparent;
    outline-offset: -1px;
}

.matchday-card:hover,
.hero-small-news:hover,
.post-card:hover,
.news-card-archive:hover {
    border-color: var(--color-primary);
    outline-color: var(--color-primary);
    transform: none;
}
/* Einzelnes Spiel */

.single-match-hero {
    padding: 72px 0 28px;
}

.single-match-hero h1 {
    max-width: 980px;
    margin: 16px 0 10px;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.single-match-hero p {
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
}

.single-match-stage {
    padding: 12px 0 34px;
}

.single-match-stage-inner {
    position: relative;
    min-height: 500px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    isolation: isolate;
}

.single-match-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(to top, rgba(3, 6, 5, 0.98) 0%, rgba(3, 6, 5, 0.72) 45%, rgba(3, 6, 5, 0.18) 100%),
        radial-gradient(circle at center, rgba(198, 255, 0, 0.1), transparent 38%),
        url("../img/sdw.png");
    background-size: cover;
    background-position: center;
}

.single-match-label {
    position: absolute;
    left: 44px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 6px;
    background: var(--color-primary);
    color: #050805;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.single-match-center {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 180px auto 180px;
    align-items: center;
    gap: 34px;
    text-align: center;
}

.single-match-team {
    display: grid;
    justify-items: center;
}

.single-match-logo {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: rgba(16, 21, 20, 0.96);
    color: var(--color-text);
    font-size: 26px;
    font-weight: 900;
}

.single-match-team h2 {
    margin: 0 0 5px;
    color: var(--color-text);
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.single-match-team span {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

.single-match-score {
    color: var(--color-primary);
    font-size: clamp(54px, 7vw, 86px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.single-match-score small {
    display: block;
    margin-top: 18px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.single-match-info-section,
.single-match-h2h-section {
    padding: 10px 0 24px;
}

.single-match-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
}

.single-match-card {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: rgba(16, 21, 20, 0.92);
    padding: 24px;
}

.single-match-card h3 {
    margin: 0 0 18px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.single-match-card p,
.single-match-text {
    margin: 0;
    color: #c3cfdd;
    font-size: 15px;
    line-height: 1.6;
}

.single-match-info-list {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-match-info-list li {
    display: grid;
    gap: 4px;
}

.single-match-info-list span {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.single-match-info-list strong {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.35;
}

.single-match-keyplayers {
    display: grid;
    gap: 16px;
}

.single-match-keyplayers div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: rgba(3, 6, 5, 0.35);
}

.single-match-keyplayers strong {
    color: var(--color-text);
    font-size: 14px;
}

.single-match-keyplayers span {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
}

.single-match-h2h-card {
    padding: 24px 32px;
}

.single-match-h2h-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.single-match-h2h-grid strong {
    display: block;
    color: var(--color-primary);
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.single-match-h2h-grid span {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .single-match-stage-inner {
        min-height: 560px;
    }

    .single-match-label {
        left: 24px;
        top: 34px;
        transform: none;
    }

    .single-match-center {
        grid-template-columns: 1fr;
        gap: 20px;
        bottom: 38px;
        width: calc(100% - 40px);
    }

    .single-match-info-grid {
        grid-template-columns: 1fr;
    }

    .single-match-h2h-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}
/* Vereinslogos auf Spiel-Detailseiten */

.single-match-logo img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}
/* Header: Seitentitel etwas größer */

.brand-text-single {
    font-size: 21px !important;
    letter-spacing: -0.045em;
}
/* Header: Menü etwas größer */

.main-menu > li > a {
    font-size: 14px !important;
    padding: 11px 14px !important;
}

.main-menu .sub-menu a {
    font-size: 14px !important;
    padding: 11px 12px !important;
}
.main-menu > li > a {
    font-weight: 900 !important;
}
.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.footer-brand:hover {
    color: var(--color-primary);
}
/* Schlüsselspieler mit Verein */

.single-match-keyplayers .single-match-keyplayer {
    align-items: center;
}

.single-match-keyplayer > div {
    display: grid;
    gap: 3px;
}

.single-match-keyplayer small {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.single-match-keyplayer span {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
    text-align: right;
    line-height: 1.2;
}
/* Direkter Vergleich erweitert */

.single-match-h2h-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.single-match-h2h-header h3 {
    margin: 0;
}

.single-match-h2h-header span {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.single-match-h2h-extra {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 18px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--color-border);
}

.single-match-h2h-extra div {
    border: 1px solid var(--color-border);
    border-radius: 9px;
    background: rgba(3, 6, 5, 0.35);
    padding: 18px;
}

.single-match-h2h-extra span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.single-match-h2h-extra strong {
    display: block;
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.single-match-h2h-extra div:first-child strong {
    color: var(--color-primary);
    font-size: 28px;
}

@media (max-width: 700px) {
    .single-match-h2h-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .single-match-h2h-extra {
        grid-template-columns: 1fr;
    }
}
/* Auszeichnungen Archivseite */

.awards-archive-hero {
    padding: 72px 0 30px;
}

.awards-archive-hero h1 {
    max-width: 980px;
    margin: 16px 0 12px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.awards-archive-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.5;
}

.awards-archive-section {
    padding-top: 26px;
    padding-bottom: 80px;
}

/* Awards im Archiv ebenfalls nicht anklickbar */
.post-type-archive-flh_auszeichnung .award-card {
    cursor: default;
}

.post-type-archive-flh_auszeichnung .award-card:hover {
    transform: none;
}
/* Torjägerlisten: Regionalliga/Oberliga einheitlich erzwingen */

.league-widget-wide .tablepress {
    width: 100% !important;
    table-layout: fixed !important;
}

.league-widget-wide .tablepress thead tr,
.league-widget-wide .tablepress tbody tr {
    display: grid !important;
    grid-template-columns: 70px minmax(260px, 1.3fr) minmax(260px, 1.1fr) 110px 110px !important;
    column-gap: 24px !important;
    align-items: center !important;
}

.league-widget-wide .tablepress thead th,
.league-widget-wide .tablepress tbody td {
    display: block !important;
    min-width: 0 !important;
    text-align: left !important;
}

.league-widget-wide .tablepress thead th.column-4,
.league-widget-wide .tablepress tbody td.column-4,
.league-widget-wide .tablepress thead th.column-5,
.league-widget-wide .tablepress tbody td.column-5 {
    text-align: left !important;
}
/* Footer Watermark Logo – zentriert mit Text */

.footer-about-watermark {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-about-watermark::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 210px;
    height: 210px;
    transform: translate(-50%, -50%);
    background-image: url("../img/flutlicht-helden-logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
}

.footer-about-content {
    position: relative;
    z-index: 1;
    max-width: 430px;
    text-align: center;
}

.footer-about-content p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.45;
}
/* Vereine Übersicht */

.clubs-archive-hero {
    padding: 70px 0 28px;
}

.clubs-archive-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.clubs-archive-hero p {
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
}

.clubs-filter-section {
    padding: 12px 0 28px;
}

.clubs-filter-bar {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 16px;
    align-items: center;
}

.clubs-search input {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    background: rgba(16, 21, 20, 0.92);
    color: var(--color-text);
    font: inherit;
}

.clubs-search input::placeholder {
    color: var(--color-muted);
}

.clubs-liga-tabs {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    gap: 6px;
    padding: 5px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: rgba(16, 21, 20, 0.92);
}

.clubs-liga-tabs a {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.clubs-liga-tabs a.is-active,
.clubs-liga-tabs a:hover {
    background: var(--color-primary);
    color: #050805;
}

.clubs-archive-section {
    padding: 0 0 80px;
}

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

.club-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: rgba(16, 21, 20, 0.92);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.club-card:hover {
    border-color: var(--color-primary);
}

.club-card a {
    display: block;
    height: 100%;
    padding: 18px;
}

.club-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.club-logo {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--color-text);
    font-size: 13px;
    font-weight: 900;
}

.club-logo img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.club-rank {
    padding: 5px 8px;
    border: 1px solid rgba(198, 255, 0, 0.45);
    border-radius: 5px;
    color: var(--color-text);
    font-size: 11px;
    font-weight: 900;
}

.club-card h2 {
    margin: 0 0 8px;
    color: var(--color-text);
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.club-liga-badge,
.club-sub-badge {
    display: inline-flex;
    width: fit-content;
    padding: 5px 8px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    color: var(--color-muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.club-meta-list {
    display: grid;
    gap: 8px;
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.club-meta-list li {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.35;
}

.club-profile-link {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
}

/* Vereinsseite */

.club-single-hero {
    padding: 32px 0 34px;
}

.club-back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--color-muted);
    font-size: 13px;
}

.club-back-link:hover {
    color: var(--color-primary);
}

.club-single-hero-card {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background:
        radial-gradient(circle at left, color-mix(in srgb, var(--club-primary, #c6ff00) 22%, transparent), transparent 36%),
        radial-gradient(circle at right, color-mix(in srgb, var(--club-secondary, #ffffff) 10%, transparent), transparent 34%),
        linear-gradient(135deg, rgba(18, 22, 34, 0.92), rgba(3, 6, 5, 0.96));
    padding: 42px;
    overflow: hidden;
}

.club-single-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--club-primary, #c6ff00) 10%, transparent), transparent 48%);
    opacity: 0.8;
    pointer-events: none;
}

.club-single-main {
    position: relative;
    z-index: 1;
}

.club-single-main {
    display: flex;
    align-items: center;
    gap: 22px;
}

.club-single-logo {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--club-primary, #c6ff00) 55%, transparent);
    border-radius: 6px;
    background:
        radial-gradient(circle, color-mix(in srgb, var(--club-primary, #c6ff00) 12%, transparent), rgba(8, 11, 18, 0.92));
    color: var(--color-text);
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 0 28px color-mix(in srgb, var(--club-primary, #c6ff00) 14%, transparent);
}

.club-single-logo img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.club-single-main h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.club-single-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.club-single-section {
    padding: 0 0 88px;
}

.club-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.club-single-content {
    display: grid;
    gap: 22px;
}

.club-info-card,
.club-side-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: rgba(16, 21, 20, 0.92);
    padding: 24px;
}

.club-info-card h2,
.club-side-card h3 {
    margin: 0 0 18px;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.club-info-card p {
    margin: 0;
    color: #c7d4e3;
    font-size: 16px;
    line-height: 1.7;
}

.club-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.club-stats-grid div {
    border: 1px solid var(--color-border);
    border-radius: 7px;
    background: rgba(3, 6, 5, 0.34);
    padding: 18px;
}

.club-stats-grid strong {
    display: block;
    color: var(--color-primary);
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.club-stats-grid span {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.club-single-sidebar {
    display: grid;
    gap: 20px;
}

.club-side-list {
    display: grid;
}

.club-side-list div {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.club-side-list div:first-child {
    padding-top: 0;
}

.club-side-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.club-side-list span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.club-side-list strong {
    color: var(--color-text);
    font-size: 15px;
}

.club-link-list {
    display: grid;
    gap: 10px;
}

.club-link-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    color: var(--color-primary);
    font-weight: 900;
}

@media (max-width: 1100px) {
    .clubs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .club-single-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .clubs-filter-bar {
        grid-template-columns: 1fr;
    }

    .clubs-grid {
        grid-template-columns: 1fr;
    }

    .club-single-hero-card {
        padding: 28px;
    }

    .club-single-main {
        align-items: flex-start;
        flex-direction: column;
    }

    .club-stats-grid {
        grid-template-columns: 1fr;
    }
}
/* Vereinsseite: Aktuelle Vereinsnews */

.club-news-card {
    padding: 0;
    overflow: hidden;
}

.club-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 24px 18px;
    border-bottom: 1px solid var(--color-border);
}

.club-news-header h2 {
    margin: 0;
}

.club-news-header a {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.club-news-list {
    display: grid;
}

.club-news-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--color-border);
}

.club-news-item:last-child {
    border-bottom: 0;
}

.club-news-item:hover {
    background: rgba(255, 255, 255, 0.025);
}

.club-news-image {
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
}

.club-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-news-content {
    min-width: 0;
}

.club-news-content .badge {
    margin-bottom: 10px;
}

.club-news-content h3 {
    margin: 0 0 8px;
    color: var(--color-text);
    font-size: 19px;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.club-news-content p {
    margin: 0 0 10px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.45;
}

.club-news-content small {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

.club-news-empty {
    margin: 0;
    padding: 24px;
    color: var(--color-muted);
    font-size: 15px;
}

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

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

    .club-news-image {
        height: 180px;
    }
}
/* Vereinsseite: Historie Timeline */

.club-timeline-card {
    position: relative;
}

.club-timeline {
    position: relative;
    display: grid;
    gap: 18px;
    margin-top: 8px;
    padding-left: 22px;
}

.club-timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(
        to bottom,
        var(--club-primary, var(--color-primary)),
        rgba(255, 255, 255, 0.08)
    );
}

.club-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.club-timeline-item::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--club-primary, var(--color-primary));
    box-shadow: 0 0 0 4px rgba(198, 255, 0, 0.08);
}

.club-timeline-year {
    color: var(--club-primary, var(--color-primary));
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.club-timeline-content strong {
    display: block;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.35;
}

@media (max-width: 700px) {
    .club-timeline-item {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 12px;
    }

    .club-timeline-year {
        font-size: 16px;
    }
}
/* Vereinsseite: Vereinsrekorde */

.club-records-card h2 {
    margin-bottom: 22px;
}

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

.club-record-box {
    border: 1px solid var(--color-border);
    border-radius: 9px;
    background: rgba(3, 6, 5, 0.34);
    padding: 18px;
}

.club-record-box h3 {
    margin: 0 0 16px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.club-record-list {
    display: grid;
    gap: 12px;
}

.club-record-row {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.club-record-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.club-record-rank {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(198, 255, 0, 0.12);
    color: var(--club-primary, var(--color-primary));
    font-size: 12px;
    font-weight: 900;
}

.club-record-row strong {
    display: block;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.2;
}

.club-record-row small {
    display: block;
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 700px) {
    .club-records-grid {
        grid-template-columns: 1fr;
    }
}
/* Header-Menü größer */

.main-menu > li > a {
    font-size: 16px !important;
    font-weight: 900 !important;
    padding: 12px 16px !important;
}

.main-menu .sub-menu a {
    font-size: 14px !important;
    font-weight: 800 !important;
    padding: 12px 14px !important;
}