:root {
    --green-dark: #063b23;
    --green: #0b7a3b;
    --green-light: #35d07f;
    --white: #ffffff;
    --gray-light: #f4f7f5;
    --gray: #6b7280;
    --dark: #101513;
    --black: #050807;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.small-container {
    width: min(520px, calc(100% - 32px));
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 8, 7, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 800;
}

.logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 1px;
}

.logo-text {
    font-size: 18px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--white);
    font-size: 15px;
}

.main-nav a {
    opacity: 0.88;
    transition: 0.2s ease;
}

.main-nav a:hover {
    opacity: 1;
    color: var(--green-light);
}

.nav-login {
    padding: 10px 18px;
    border: 1px solid var(--green-light);
    border-radius: 999px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* Hero */

.hero {
    min-height: 82vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(53, 208, 127, 0.25), transparent 32%),
        linear-gradient(135deg, #04150d 0%, #063b23 48%, #020403 100%);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    right: -180px;
    top: 80px;
    background: rgba(53, 208, 127, 0.14);
    filter: blur(8px);
    animation: floatPulse 6s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 760px;
}

.eyebrow {
    color: var(--green-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 20px;
    color: rgba(255,255,255,0.82);
    max-width: 660px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--green-light);
    color: #052014;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(53, 208, 127, 0.32);
}

.btn-outline {
    border-color: rgba(255,255,255,0.38);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--green-light);
    color: var(--green-light);
}

.full-width {
    width: 100%;
}

/* Sections */

.section {
    padding: 90px 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-header {
    margin-bottom: 34px;
}

.section-header h2,
.split-section h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card,
.info-panel,
.dashboard-card,
.login-card,
.contact-form {
    background: var(--white);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.news-card h3 {
    font-size: 22px;
    margin: 16px 0 8px;
}

.news-card p {
    color: var(--gray);
}

.badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 122, 59, 0.1);
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
}

.date {
    font-size: 14px;
    margin-bottom: 12px;
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--green);
    font-weight: 800;
}

/* Teams */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-card {
    min-height: 210px;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    transition: 0.22s ease;
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -50px;
    bottom: -50px;
    background: rgba(53, 208, 127, 0.2);
    border-radius: 50%;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--green-light);
}

.team-card span {
    color: var(--green-light);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

.team-card h3 {
    margin: 14px 0 10px;
    font-size: 24px;
}

.team-card p,
.team-card small {
    color: rgba(255,255,255,0.75);
}

/* Page hero */

.page-hero {
    padding: 110px 0 80px;
    background:
        radial-gradient(circle at 80% 20%, rgba(53, 208, 127, 0.2), transparent 30%),
        linear-gradient(135deg, #04150d, #063b23);
    color: var(--white);
}

.page-hero p {
    max-width: 720px;
    color: rgba(255,255,255,0.82);
    font-size: 18px;
}

/* Split */

.split-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: center;
}

.split-section p {
    color: var(--gray);
    margin: 18px 0 24px;
}

.info-panel {
    background:
        linear-gradient(145deg, #ffffff, #f3f8f5);
    border: 1px solid rgba(11, 122, 59, 0.08);
}

.info-panel ul {
    padding-left: 20px;
    margin-top: 14px;
}

.info-panel li {
    margin-bottom: 10px;
}

/* Stats */

.stats-section {
    padding: 64px 0;
    background: var(--green-dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.stat-card {
    text-align: center;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.stat-card strong {
    display: block;
    font-size: 42px;
    color: var(--green-light);
}

.stat-card span {
    color: rgba(255,255,255,0.82);
}

/* Forms */

.contact-form,
.login-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

label {
    font-weight: 800;
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    padding: 13px 15px;
    border-radius: 14px;
    border: 1px solid #d8e1dc;
    font: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--green);
}

.small-text {
    color: var(--gray);
    font-size: 14px;
}

.contact-box {
    padding: 22px;
    border-radius: 20px;
    background: var(--gray-light);
    margin-top: 20px;
}

/* Dashboard */

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.dashboard-card {
    box-shadow: none;
    border: 1px solid #e2e8e4;
}

.dashboard-card h3 {
    margin-bottom: 12px;
}

/* Footer */

.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 58px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,0.72);
    margin-top: 8px;
}

.site-footer a:hover {
    color: var(--green-light);
}

.footer-bottom {
    margin-top: 38px;
    padding: 18px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: rgba(255,255,255,0.65);
}

/* Animations */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(24px) scale(1.04);
    }
}

/* Responsive */

@media (max-width: 980px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(5, 8, 7, 0.98);
        padding: 24px;
        border-radius: 22px;
    }

    .main-nav.open {
        display: flex;
    }

    .card-grid,
    .team-grid,
    .dashboard-grid,
    .stats-grid,
    .split-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 74vh;
    }

    .section {
        padding: 64px 0;
    }
}

/* Dropdown navigation */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 34px;
    left: 0;
    min-width: 220px;
    background: rgba(5, 8, 7, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow);
}

.dropdown-menu a {
    padding: 10px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(53, 208, 127, 0.12);
}

.nav-dropdown:hover .dropdown-menu {
    display: flex;
}

/* Article pages */

.article-container {
    max-width: 900px;
}

.article-card {
    background: var(--white);
    border-radius: 28px;
    padding: 38px;
    box-shadow: var(--shadow);
}

.article-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 18px;
}

.article-actions {
    margin-top: 28px;
}

.inner-header {
    margin-top: 60px;
}

/* Events */

.event-list {
    display: grid;
    gap: 18px;
}

.event-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    align-items: center;
}

.event-date {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}

.event-date strong {
    display: block;
    font-size: 20px;
}

.event-date span {
    color: rgba(255,255,255,0.82);
}

.event-content h3 {
    margin: 12px 0 6px;
    font-size: 24px;
}

.event-content p {
    color: var(--gray);
}

.event-content small {
    color: var(--green);
    font-weight: 800;
}

.center-action {
    margin-top: 30px;
    text-align: center;
}

/* Sponsors */

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.sponsor-card {
    padding: 28px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid #e2e8e4;
    box-shadow: var(--shadow);
    transition: 0.22s ease;
}

.sponsor-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-light);
}

.sponsor-card span {
    color: var(--green);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

.sponsor-card h3 {
    margin-top: 12px;
}

/* Downloads */

.download-list {
    display: grid;
    gap: 16px;
}

.download-card {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid #e2e8e4;
    box-shadow: var(--shadow);
}

.download-card h3 {
    margin: 12px 0 6px;
}

.download-card p {
    color: var(--gray);
}

.download-card strong {
    color: var(--green);
}

/* Team detail */

.team-info-box {
    padding: 20px;
    border-radius: 20px;
    background: var(--gray-light);
    margin-top: 18px;
}

.team-info-box h3 {
    margin-bottom: 6px;
}

/* Mobile dropdown */

@media (max-width: 980px) {
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: flex;
        box-shadow: none;
        background: rgba(255,255,255,0.04);
        margin-top: 8px;
        width: 100%;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .sponsor-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mock localStorage public elements */

.menu-grid,
.training-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.menu-card {
    background: white;
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8e4;
}

.menu-card h3 {
    margin: 14px 0 8px;
    font-size: 24px;
}

.menu-card p {
    color: var(--gray);
    margin-bottom: 14px;
}

.menu-card strong {
    color: var(--green);
    font-size: 22px;
}

@media (max-width: 980px) {
    .menu-grid,
    .training-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* Role login */

.role-login-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.role-login-card {
    text-align: left;
    border: none;
    cursor: pointer;
    background:
        radial-gradient(circle at 90% 10%, rgba(53, 208, 127, 0.16), transparent 34%),
        linear-gradient(145deg, #ffffff, #f4f7f5);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: 0.24s ease;
    min-height: 310px;
}

.role-login-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.role-login-card span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--green-light);
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 22px;
}

.role-login-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--green-dark);
}

.role-login-card p {
    color: var(--gray);
    margin-bottom: 24px;
}

.role-login-card strong {
    color: var(--green);
}

@media (max-width: 1100px) {
    .role-login-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .role-login-grid {
        grid-template-columns: 1fr;
    }
}

/* Club crest */

.nav-crest {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

.footer-brand {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-crest {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* Home v2 */

.home-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(53, 208, 127, 0.26), transparent 30%),
        radial-gradient(circle at 86% 20%, rgba(53, 208, 127, 0.16), transparent 28%),
        linear-gradient(135deg, #030806 0%, #063b23 48%, #020403 100%);
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.55;
}

.home-hero::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    right: -260px;
    bottom: -260px;
    background: rgba(53, 208, 127, 0.15);
    filter: blur(4px);
    animation: floatPulse 7s ease-in-out infinite;
}

.home-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    color: white;
}

.home-hero-content h1 {
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.92;
    margin: 26px 0;
    letter-spacing: -2px;
}

.hero-club-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 18px 10px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(12px);
    font-weight: 900;
    color: rgba(255,255,255,0.92);
}

.hero-club-badge img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.btn-ghost {
    color: white;
    border-color: rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.06);
}

.btn-ghost:hover {
    border-color: var(--green-light);
    color: var(--green-light);
}

.btn-dark-outline {
    border-color: #d8e1dc;
    color: var(--green-dark);
    background: white;
}

.btn-dark-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.home-hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.hero-crest-card {
    width: min(380px, 100%);
    min-height: 430px;
    border-radius: 42px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 38px;
}

.hero-crest-card img {
    width: 190px;
    height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.hero-crest-card h3 {
    margin-top: 20px;
    font-size: 34px;
}

.hero-crest-card p {
    color: rgba(255,255,255,0.74);
    font-weight: 900;
}

.floating-info-card {
    position: absolute;
    padding: 18px 22px;
    border-radius: 24px;
    background: white;
    color: var(--green-dark);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    min-width: 150px;
}

.floating-info-card span {
    display: block;
    color: var(--gray);
    font-size: 13px;
    font-weight: 900;
}

.floating-info-card strong {
    font-size: 38px;
    color: var(--green);
}

.card-one {
    top: 70px;
    right: 20px;
    animation: floatCard 5s ease-in-out infinite;
}

.card-two {
    bottom: 70px;
    left: 10px;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* Quickbar */

.home-quickbar {
    margin-top: -52px;
    position: relative;
    z-index: 5;
}

.quickbar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.quickbar-grid a {
    background: white;
    border-radius: 28px;
    padding: 26px;
    box-shadow: var(--shadow);
    transition: 0.22s ease;
    border: 1px solid #e2e8e4;
}

.quickbar-grid a:hover {
    transform: translateY(-6px);
    border-color: var(--green-light);
}

.quickbar-grid span {
    color: var(--green);
    font-weight: 900;
    font-size: 14px;
}

.quickbar-grid strong {
    display: block;
    margin: 8px 0;
    font-size: 24px;
    color: var(--green-dark);
}

.quickbar-grid p {
    color: var(--gray);
}

/* Section row */

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.text-link-light {
    color: var(--green-light);
}

/* Fixtures */

.fixtures-section {
    background: #f4f7f5;
}

.compact-events {
    margin-bottom: 20px;
}

/* Teams showcase */

.teams-showcase {
    position: relative;
    overflow: hidden;
}

.teams-showcase::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -160px;
    top: -160px;
    background: rgba(53, 208, 127, 0.08);
}

/* Häusle */

.hausle-preview {
    align-items: stretch;
}

.hausle-card {
    background:
        radial-gradient(circle at 90% 10%, rgba(53, 208, 127, 0.14), transparent 36%),
        linear-gradient(145deg, #ffffff, #f4f7f5);
    border-radius: 32px;
    padding: 34px;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8e4;
}

.hausle-card h3 {
    font-size: 34px;
    margin: 18px 0;
    color: var(--green-dark);
}

.hausle-card ul {
    padding-left: 20px;
}

.hausle-card li {
    margin-bottom: 12px;
    color: var(--gray);
}

/* Stats */

.modern-stats {
    background:
        radial-gradient(circle at 10% 10%, rgba(53, 208, 127, 0.18), transparent 30%),
        linear-gradient(135deg, #050807, #063b23);
}

/* Sponsors */

.sponsors-section {
    overflow: hidden;
}

.sponsor-marquee {
    overflow: hidden;
    border-radius: 28px;
    background: #f4f7f5;
    border: 1px solid #e2e8e4;
    padding: 18px;
}

.sponsor-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: sponsorMove 24s linear infinite;
}

.sponsor-marquee:hover .sponsor-track {
    animation-play-state: paused;
}

.sponsor-pill {
    min-width: 230px;
    background: white;
    border-radius: 22px;
    padding: 20px;
    border: 1px solid #e2e8e4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sponsor-pill span {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sponsor-pill strong {
    display: block;
    margin-top: 8px;
    color: var(--green-dark);
    font-size: 20px;
}

@keyframes sponsorMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Final CTA */

.final-cta {
    padding: 76px 0;
    background: var(--green-dark);
    color: white;
}

.final-cta-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 20%, rgba(53, 208, 127, 0.2), transparent 36%),
        rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.final-cta-inner img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.final-cta-inner h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.final-cta-inner p {
    color: rgba(255,255,255,0.78);
}

/* Responsive Home v2 */

@media (max-width: 1100px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        padding: 90px 0;
    }

    .home-hero-visual {
        min-height: 420px;
    }

    .quickbar-grid {
        grid-template-columns: 1fr;
    }

    .section-header-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

@media (max-width: 700px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero-grid {
        padding: 70px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-crest-card {
        min-height: 320px;
    }

    .hero-crest-card img {
        width: 140px;
        height: 140px;
    }

    .floating-info-card {
        position: static;
        margin-top: 14px;
        width: 100%;
    }

    .home-hero-visual {
        display: block;
        min-height: auto;
    }
}


/* Mannschaften overview v2 */

.teams-hero {
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at 12% 20%, rgba(53, 208, 127, 0.24), transparent 32%),
        linear-gradient(135deg, #04150d, #063b23);
    color: white;
    overflow: hidden;
    position: relative;
}

.teams-hero::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    right: -190px;
    top: -160px;
    background: rgba(53, 208, 127, 0.12);
}

.teams-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.teams-hero h1 {
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    margin-bottom: 24px;
}

.teams-hero p {
    max-width: 720px;
    color: rgba(255,255,255,0.8);
    font-size: 19px;
}

.teams-hero-card {
    justify-self: end;
    width: min(330px, 100%);
    min-height: 300px;
    padding: 34px;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    display: grid;
    place-items: center;
    text-align: center;
}

.teams-hero-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3));
}

.teams-hero-card strong {
    font-size: 62px;
    line-height: 1;
    color: var(--green-light);
}

.teams-hero-card span {
    color: rgba(255,255,255,0.78);
    font-weight: 900;
}

.modern-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.modern-team-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(53, 208, 127, 0.12), transparent 32%),
        linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.24s ease;
    color: white;
    position: relative;
    overflow: hidden;
}

.modern-team-card:hover {
    transform: translateY(-7px);
    border-color: var(--green-light);
}

.modern-team-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modern-team-card-top img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.modern-team-card-top span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(53, 208, 127, 0.16);
    color: var(--green-light);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.modern-team-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.modern-team-card p {
    color: rgba(255,255,255,0.72);
}

.modern-team-meta {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.modern-team-meta div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.modern-team-meta small {
    display: block;
    color: var(--green-light);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
}

.modern-team-meta strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-top: 4px;
}

.team-card-link {
    margin-top: 22px;
    color: var(--green-light);
    font-weight: 900;
}

/* Team detail */

.team-detail-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 10% 20%, rgba(53, 208, 127, 0.26), transparent 32%),
        linear-gradient(135deg, #030806 0%, #063b23 55%, #020403 100%);
    color: white;
    overflow: hidden;
}

.team-detail-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.55;
}

.team-detail-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
    padding: 80px 0;
}

.team-detail-content h1 {
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.92;
    margin-bottom: 24px;
}

.team-detail-content p {
    max-width: 680px;
    color: rgba(255,255,255,0.78);
    font-size: 20px;
}

.team-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.team-image-card {
    min-height: 420px;
    max-height: 420px;
    border-radius: 42px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.team-image-card > img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.team-image-placeholder {
    min-height: 430px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 34px;
}

.team-image-placeholder img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

.team-image-placeholder span {
    display: block;
    margin-top: 22px;
    color: rgba(255,255,255,0.72);
    font-weight: 900;
}

.team-overview-section {
    background: #f4f7f5;
}

.team-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-info-modern {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8e4;
}

.team-info-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(53, 208, 127, 0.14);
    font-size: 24px;
    margin-bottom: 18px;
}

.team-info-modern h3 {
    font-size: 26px;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.team-info-modern p {
    color: var(--gray);
    font-size: 17px;
}

.team-contact-list {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.team-contact-list span {
    padding: 12px 14px;
    border-radius: 14px;
    background: #f4f7f5;
    color: var(--green-dark);
    font-weight: 800;
    font-size: 14px;
}

.team-empty-state {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8e4;
    margin-bottom: 24px;
}

.team-empty-state img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.team-empty-state h3 {
    font-size: 24px;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.team-empty-state p {
    color: var(--gray);
}

.team-match-list {
    margin-top: 22px;
}

.dark-empty-state {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.dark-empty-state h3 {
    color: white;
    font-size: 26px;
    margin-bottom: 8px;
}

.dark-empty-state p {
    color: rgba(255,255,255,0.72);
}

/* Responsive Mannschaften */

@media (max-width: 1180px) {
    .modern-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .teams-hero-grid,
    .team-detail-hero-grid {
        grid-template-columns: 1fr;
    }

    .teams-hero-card {
        justify-self: start;
    }
}

@media (max-width: 650px) {
    .modern-team-grid {
        grid-template-columns: 1fr;
    }

    .team-empty-state {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .team-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .team-image-card,
    .team-image-card > img,
    .team-image-placeholder {
        min-height: 320px;
    }
}

/* Häusle page */

.hausle-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(53, 208, 127, 0.24), transparent 32%),
        radial-gradient(circle at 85% 70%, rgba(255,255,255,0.08), transparent 26%),
        linear-gradient(135deg, #030806 0%, #063b23 55%, #020403 100%);
    color: white;
    overflow: hidden;
}

.hausle-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.55;
}

.hausle-hero::after {
    content: "";
    position: absolute;
    width: 640px;
    height: 640px;
    right: -220px;
    top: -120px;
    border-radius: 50%;
    background: rgba(53, 208, 127, 0.14);
    animation: floatPulse 7s ease-in-out infinite;
}

.hausle-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hausle-hero-content h1 {
    font-size: clamp(54px, 8vw, 96px);
    line-height: 0.92;
    margin-bottom: 24px;
}

.hausle-hero-content p {
    max-width: 680px;
    color: rgba(255,255,255,0.8);
    font-size: 20px;
}

.hausle-hero-card {
    justify-self: end;
    width: min(380px, 100%);
    min-height: 440px;
    border-radius: 44px;
    padding: 38px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.17), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.hausle-hero-card img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.34));
}

.hausle-hero-card span {
    color: rgba(255,255,255,0.76);
    font-weight: 900;
}

.hausle-hero-card strong {
    font-size: 42px;
    color: var(--green-light);
}

.hausle-quickbar {
    margin-top: -52px;
}

.section-side-note {
    max-width: 360px;
    color: var(--gray);
    font-weight: 700;
}

.hausle-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.hausle-menu-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(53, 208, 127, 0.13), transparent 32%),
        linear-gradient(145deg, #ffffff, #f4f7f5);
    border: 1px solid #e2e8e4;
    box-shadow: var(--shadow);
    transition: 0.22s ease;
}

.hausle-menu-card:hover {
    transform: translateY(-6px);
    border-color: var(--green-light);
}

.hausle-menu-card h3 {
    font-size: 25px;
    color: var(--green-dark);
    margin: 16px 0 10px;
}

.hausle-menu-card p {
    color: var(--gray);
}

.hausle-menu-card strong {
    color: var(--green);
    font-size: 24px;
    margin-top: 20px;
}

.hausle-dark-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(53, 208, 127, 0.12), transparent 30%),
        linear-gradient(135deg, #050807, #063b23);
    color: white;
}

.hausle-dark-section p {
    color: rgba(255,255,255,0.78);
}

.opening-hours-list {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 32px;
    padding: 24px;
    backdrop-filter: blur(14px);
}

.opening-hour-row {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.opening-hour-row:last-child {
    border-bottom: none;
}

.opening-hour-row span {
    font-weight: 900;
    color: white;
}

.opening-hour-row strong {
    color: var(--green-light);
}

.closed-label {
    color: #fecaca !important;
}

.hausle-feature-card {
    background:
        radial-gradient(circle at 90% 10%, rgba(53, 208, 127, 0.12), transparent 34%),
        linear-gradient(145deg, #ffffff, #f4f7f5);
    border: 1px solid #e2e8e4;
    border-radius: 34px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.hausle-feature-card h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    color: var(--green-dark);
    margin: 16px 0;
}

.hausle-feature-card p {
    color: var(--gray);
}

.hausle-feature-card ul {
    margin-top: 24px;
    padding-left: 20px;
}

.hausle-feature-card li {
    margin-bottom: 10px;
    color: var(--green-dark);
    font-weight: 800;
}

.hausle-image-placeholder {
    min-height: 420px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 20%, rgba(53, 208, 127, 0.16), transparent 34%),
        linear-gradient(145deg, #063b23, #050807);
    color: white;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 34px;
    box-shadow: var(--shadow);
}

.hausle-image-placeholder img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

.hausle-image-placeholder span {
    display: block;
    color: rgba(255,255,255,0.76);
    font-weight: 900;
    margin-top: 20px;
}

/* Responsive Häusle */

@media (max-width: 1180px) {
    .hausle-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hausle-hero-grid {
        grid-template-columns: 1fr;
    }

    .hausle-hero-card {
        justify-self: start;
    }
}

@media (max-width: 650px) {
    .hausle-menu-grid {
        grid-template-columns: 1fr;
    }

    .hausle-hero {
        min-height: auto;
    }

    .hausle-hero-grid {
        padding: 70px 0;
    }

    .hausle-hero-card {
        min-height: 320px;
    }

    .hausle-hero-card img {
        width: 130px;
        height: 130px;
    }

    .opening-hour-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


/* News page v2 */

.news-hero {
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at 12% 20%, rgba(53, 208, 127, 0.24), transparent 32%),
        linear-gradient(135deg, #04150d, #063b23);
    color: white;
    overflow: hidden;
    position: relative;
}

.news-hero::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    right: -190px;
    top: -160px;
    background: rgba(53, 208, 127, 0.12);
}

.news-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.news-hero h1 {
    font-size: clamp(54px, 8vw, 96px);
    line-height: 0.92;
    margin-bottom: 24px;
}

.news-hero p {
    max-width: 720px;
    color: rgba(255,255,255,0.8);
    font-size: 19px;
}

.news-hero-card {
    justify-self: end;
    width: min(340px, 100%);
    min-height: 310px;
    padding: 34px;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    display: grid;
    place-items: center;
    text-align: center;
}

.news-hero-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3));
}

.news-hero-card span {
    color: rgba(255,255,255,0.78);
    font-weight: 900;
}

.news-hero-card strong {
    color: var(--green-light);
    font-size: 38px;
}

.news-featured-section {
    background: #f4f7f5;
}

.featured-news-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    background: white;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8e4;
}

.featured-news-image {
    min-height: 420px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(53, 208, 127, 0.18), transparent 34%),
        linear-gradient(145deg, #063b23, #050807);
}

.featured-news-image img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.34));
}

.featured-news-content {
    padding: 44px;
    align-self: center;
}

.featured-news-content h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    color: var(--green-dark);
    margin: 18px 0 8px;
}

.featured-news-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 18px;
}

.news-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.news-filter {
    border: 1px solid #d8e1dc;
    background: white;
    color: var(--green-dark);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.news-filter:hover,
.news-filter.active {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

.modern-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.modern-news-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8e4;
    transition: 0.24s ease;
}

.modern-news-card:hover {
    transform: translateY(-6px);
    border-color: var(--green-light);
}

.modern-news-image {
    height: 320px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(53, 208, 127, 0.18), transparent 34%),
        linear-gradient(145deg, #063b23, #050807);
}

.modern-news-image img {
    width: auto;
    height: 320px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.34));
}

.modern-news-body {
    padding: 28px;
}

.modern-news-body h3 {
    font-size: 24px;
    color: var(--green-dark);
    margin: 16px 0 8px;
}

.modern-news-body p {
    color: var(--gray);
}

/* News detail */

.news-detail-hero {
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at 12% 20%, rgba(53, 208, 127, 0.24), transparent 32%),
        linear-gradient(135deg, #04150d, #063b23);
    color: white;
}

.news-detail-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.news-detail-hero h1 {
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.96;
    margin-bottom: 24px;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.news-detail-meta span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.82);
    font-weight: 800;
}

.news-detail-crest {
    justify-self: end;
    width: min(300px, 100%);
    min-height: 300px;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.16);
    display: grid;
    place-items: center;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.news-detail-crest img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3));
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 34px;
    align-items: start;
}

.modern-article h2 {
    font-size: clamp(30px, 4vw, 46px);
    color: var(--green-dark);
    margin: 18px 0 24px;
}

.article-sidebar {
    display: grid;
    gap: 20px;
}

.sidebar-card {
    background: white;
    border-radius: 28px;
    padding: 26px;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8e4;
}

.sidebar-card img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    margin-bottom: 14px;
}

.sidebar-card h3 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.sidebar-card p {
    color: var(--gray);
}

.sidebar-card a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #e5eee9;
    color: var(--green);
    font-weight: 900;
}

.sidebar-card a:last-child {
    border-bottom: none;
}

/* Responsive News */

@media (max-width: 1050px) {
    .news-hero-grid,
    .featured-news-card,
    .news-detail-hero-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .news-hero-card,
    .news-detail-crest {
        justify-self: start;
    }

    .modern-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .modern-news-grid {
        grid-template-columns: 1fr;
    }

    .featured-news-content {
        padding: 28px;
    }

    .featured-news-image {
        min-height: 280px;
    }

    .news-filter-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .news-filter {
        width: 100%;
    }
}

/* Kontakt page */

.contact-hero {
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at 12% 20%, rgba(53, 208, 127, 0.24), transparent 32%),
        linear-gradient(135deg, #04150d, #063b23);
    color: white;
    overflow: hidden;
    position: relative;
}

.contact-hero::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    right: -190px;
    top: -160px;
    background: rgba(53, 208, 127, 0.12);
}

.contact-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.contact-hero h1 {
    font-size: clamp(46px, 7vw, 88px);
    line-height: 0.95;
    margin-bottom: 24px;
}

.contact-hero p {
    max-width: 720px;
    color: rgba(255,255,255,0.8);
    font-size: 19px;
}

.contact-hero-card {
    justify-self: end;
    width: min(340px, 100%);
    min-height: 310px;
    padding: 34px;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    display: grid;
    place-items: center;
    text-align: center;
}

.contact-hero-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3));
}

.contact-hero-card span {
    color: rgba(255,255,255,0.78);
    font-weight: 900;
}

.contact-hero-card strong {
    color: var(--green-light);
    font-size: 38px;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-info-card {
    background:
        radial-gradient(circle at 90% 10%, rgba(53, 208, 127, 0.12), transparent 34%),
        linear-gradient(145deg, #ffffff, #f4f7f5);
    border: 1px solid #e2e8e4;
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: 0.22s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: var(--green-light);
}

.contact-info-card h3 {
    margin: 16px 0 10px;
    font-size: 26px;
    color: var(--green-dark);
}

.contact-info-card p {
    color: var(--gray);
}

.contact-lines {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.contact-lines a,
.contact-lines span {
    padding: 12px 14px;
    border-radius: 14px;
    background: white;
    color: var(--green-dark);
    font-weight: 900;
    border: 1px solid #e2e8e4;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: start;
}

.contact-layout h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    color: var(--green-dark);
    margin-bottom: 18px;
}

.contact-layout p {
    color: var(--gray);
}

.contact-note-card {
    margin-top: 28px;
    padding: 26px;
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8e4;
}

.contact-note-card h3 {
    color: var(--green-dark);
    margin-bottom: 14px;
}

.contact-note-card ul {
    padding-left: 20px;
}

.contact-note-card li {
    margin-bottom: 8px;
    color: var(--gray);
    font-weight: 700;
}

.modern-contact-form {
    box-shadow: var(--shadow);
    border: 1px solid #e2e8e4;
}

.modern-contact-form select {
    width: 100%;
    padding: 13px 15px;
    border-radius: 14px;
    border: 1px solid #d8e1dc;
    font: inherit;
    background: white;
}

.map-placeholder {
    min-height: 420px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 20%, rgba(53, 208, 127, 0.16), transparent 34%),
        linear-gradient(145deg, #063b23, #050807);
    color: white;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 34px;
    box-shadow: var(--shadow);
}

.map-placeholder img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

.map-placeholder span {
    display: block;
    color: rgba(255,255,255,0.76);
    font-weight: 900;
    margin-top: 20px;
}

/* Mitgliedschaft */

.membership-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.membership-benefit-card {
    background:
        radial-gradient(circle at 90% 10%, rgba(53, 208, 127, 0.12), transparent 34%),
        linear-gradient(145deg, #ffffff, #f4f7f5);
    border: 1px solid #e2e8e4;
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.membership-benefit-card span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-weight: 900;
    margin-bottom: 18px;
}

.membership-benefit-card h3 {
    color: var(--green-dark);
    font-size: 22px;
    margin-bottom: 10px;
}

.membership-benefit-card p {
    color: var(--gray);
}

.membership-steps-card {
    margin-top: 42px;
    padding: 36px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 10%, rgba(53, 208, 127, 0.14), transparent 34%),
        linear-gradient(145deg, #ffffff, #f4f7f5);
    border: 1px solid #e2e8e4;
    box-shadow: var(--shadow);
}

.membership-steps-card h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--green-dark);
    line-height: 1.05;
    margin-bottom: 24px;
}

.membership-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.membership-steps div {
    background: white;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid #e2e8e4;
}

.membership-steps span {
    color: var(--green);
    font-weight: 900;
    font-size: 14px;
}

.membership-steps strong {
    display: block;
    margin: 8px 0;
    color: var(--green-dark);
    font-size: 19px;
}

.membership-steps p {
    color: var(--gray);
}

/* Responsive Kontakt + Mitgliedschaft */

@media (max-width: 1100px) {
    .contact-hero-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-hero-card {
        justify-self: start;
    }

    .contact-card-grid,
    .membership-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .membership-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .contact-card-grid,
    .membership-benefit-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 90px 0 70px;
    }

    .contact-hero-card {
        min-height: 280px;
    }

    .contact-hero-card img {
        width: 110px;
        height: 110px;
    }
}

/* Legal pages */

.legal-hero {
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at 12% 20%, rgba(53, 208, 127, 0.24), transparent 32%),
        linear-gradient(135deg, #04150d, #063b23);
    color: white;
    overflow: hidden;
    position: relative;
}

.legal-hero::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    right: -190px;
    top: -160px;
    background: rgba(53, 208, 127, 0.12);
}

.legal-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.legal-hero h1 {
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    margin-bottom: 24px;
}

.legal-hero p {
    max-width: 720px;
    color: rgba(255,255,255,0.8);
    font-size: 19px;
}

.legal-hero-card {
    justify-self: end;
    width: min(340px, 100%);
    min-height: 310px;
    padding: 34px;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    display: grid;
    place-items: center;
    text-align: center;
}

.legal-hero-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3));
}

.legal-hero-card span {
    color: rgba(255,255,255,0.78);
    font-weight: 900;
}

.legal-hero-card strong {
    color: var(--green-light);
    font-size: 34px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 34px;
    align-items: start;
}

.legal-content-card {
    background: white;
    border-radius: 34px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8e4;
}

.legal-section {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5eee9;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    color: var(--green-dark);
    font-size: 28px;
    margin-bottom: 14px;
}

.legal-section p {
    color: var(--gray);
    white-space: pre-line;
    font-size: 17px;
}

.legal-sidebar {
    display: grid;
    gap: 20px;
}

/* New footer */

.new-footer {
    padding-top: 70px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 42px;
}

.footer-brand-column {
    max-width: 440px;
}

.footer-description {
    color: rgba(255,255,255,0.68);
    margin-top: 18px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-socials a {
    margin-top: 0;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.82);
    font-weight: 800;
}

.footer-socials a:hover {
    background: rgba(53, 208, 127, 0.13);
}

.footer-cta-strip {
    margin-top: 46px;
    padding: 22px 26px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 20%, rgba(53, 208, 127, 0.2), transparent 32%),
        rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.footer-cta-strip span {
    color: white;
    font-weight: 900;
    font-size: 20px;
}

.footer-cta-strip a {
    margin-top: 0;
    color: var(--green-light);
    font-weight: 900;
}

/* Cookie banner */

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(5, 8, 7, 0.96);
    color: white;
    box-shadow: 0 24px 80px rgba(0,0,0,0.34);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
}

.cookie-banner h3 {
    margin-bottom: 6px;
    color: white;
}

.cookie-banner p {
    color: rgba(255,255,255,0.72);
    max-width: 760px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions a {
    color: var(--green-light);
    font-weight: 900;
}

.cookie-actions button {
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    background: var(--green-light);
    color: #052014;
    font-weight: 900;
    cursor: pointer;
}

/* Responsive legal/footer/cookie */

@media (max-width: 1100px) {
    .legal-hero-grid,
    .legal-layout,
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .legal-hero-card {
        justify-self: start;
    }

    .footer-cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 650px) {
    .legal-content-card {
        padding: 26px;
    }

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions button {
        width: 100%;
    }
}

/* Navigation polish */

.site-header {
    transition: 0.24s ease;
}

.logo {
    min-width: max-content;
}

.main-nav a,
.dropdown-toggle {
    position: relative;
}

.main-nav a.active,
.nav-dropdown.active-parent > .dropdown-toggle {
    color: var(--green-light);
    opacity: 1;
}

.main-nav a.active::after,
.nav-dropdown.active-parent > .dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 3px;
    border-radius: 999px;
    background: var(--green-light);
}

.dropdown-toggle {
    border: none;
    background: transparent;
    color: white;
    font: inherit;
    font-weight: inherit;
    opacity: 0.88;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.dropdown-toggle:hover {
    opacity: 1;
    color: var(--green-light);
}

.dropdown-toggle span {
    color: var(--green-light);
    font-size: 11px;
}

.mobile-nav-head {
    display: none;
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 900;
}

.mobile-nav-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.mobile-nav-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.06);
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0, 0, 0, 0.54);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: 0.24s ease;
}

.nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

body.nav-open {
    overflow: hidden;
}

.mobile-menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: white;
    transition: 0.22s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Better desktop dropdown */

@media (min-width: 981px) {
    .nav-dropdown:hover .dropdown-menu {
        display: flex;
        animation: dropdownFade 0.18s ease forwards;
    }

    .dropdown-menu {
        top: 36px;
    }
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile navigation v2 */

@media (max-width: 980px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        height: 72px;
    }

    .logo-text {
        font-size: 16px;
    }

    .nav-crest {
        width: 42px;
        height: 42px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: min(390px, 92vw);
        height: 100vh;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 22px;
        border-radius: 0;
        background:
            radial-gradient(circle at 20% 0%, rgba(53, 208, 127, 0.18), transparent 34%),
            linear-gradient(180deg, #050807, #063b23);
        border-left: 1px solid rgba(255,255,255,0.12);
        transform: translateX(105%);
        transition: 0.28s ease;
        overflow-y: auto;
    }

    .main-nav.open {
        display: flex;
        transform: translateX(0);
    }

    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 18px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .main-nav > a,
    .dropdown-toggle {
        width: 100%;
        padding: 14px 14px;
        border-radius: 16px;
        color: rgba(255,255,255,0.86);
        justify-content: space-between;
    }

    .main-nav > a:hover,
    .dropdown-toggle:hover,
    .main-nav > a.active,
    .nav-dropdown.active-parent > .dropdown-toggle {
        background: rgba(53, 208, 127, 0.14);
        color: var(--green-light);
    }

    .main-nav a.active::after,
    .nav-dropdown.active-parent > .dropdown-toggle::after {
        display: none;
    }

    .nav-login {
        border-color: rgba(53, 208, 127, 0.5);
        margin-top: 8px;
        text-align: center;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 6px 0 8px;
        padding: 8px;
        border-radius: 16px;
        background: rgba(255,255,255,0.06);
        box-shadow: none;
        border: 1px solid rgba(255,255,255,0.10);
    }

    .nav-dropdown.open .dropdown-menu {
        display: grid;
    }

    .dropdown-menu a {
        padding: 11px 12px;
        border-radius: 12px;
        color: rgba(255,255,255,0.76);
    }

    .dropdown-menu a:hover {
        background: rgba(53, 208, 127, 0.12);
        color: var(--green-light);
    }
}

/* Real login */

.login-layout {
    display: grid;
    place-items: center;
}

.login-form-card {
    width: min(520px, 100%);
}

.login-form-header {
    margin-bottom: 24px;
}

/* Flash messages */

.flash-wrapper {
    position: fixed;
    top: 96px;
    right: 24px;
    z-index: 3000;
    display: grid;
    gap: 12px;
}

.flash-message {
    min-width: 280px;
    max-width: 420px;
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 900;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    border: 1px solid transparent;
}

.flash-success {
    background: #dcfce7;
    color: #14532d;
    border-color: #86efac;
}

.flash-error {
    background: #fee2e2;
    color: #7f1d1d;
    border-color: #fecaca;
}

.flash-message {
    animation: flashSlide 0.28s ease forwards;
}

@keyframes flashSlide {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 650px) {
    .flash-wrapper {
        left: 14px;
        right: 14px;
        top: 82px;
    }

    .flash-message {
        min-width: 0;
        max-width: none;
    }
}

/* Uploaded public images */

.sponsor-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.menu-card-with-image {
    overflow: hidden;
    padding: 0;
}

.menu-image-box {
    width: 100%;
    height: 180px;
    background: #f4f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-content {
    padding: 22px;
}

.team-cover-section {
    padding-top: 30px;
}

.team-cover-image {
    border-radius: 32px;
    overflow: hidden;
    min-height: 260px;
    max-height: 720px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.14);
}

.team-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card-image {
    width: 100%;
    height: 160px;
    border-radius: 24px;
    background: #f4f7f5;
    border: 1px solid #e2e8e4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 18px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-sponsor-item {
    min-width: 160px;
    height: 80px;
    padding: 14px 20px;
    border-radius: 20px;
    background: white;
    border: 1px solid #e2e8e4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-sponsor-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-sponsor-item span {
    font-weight: 900;
    color: #0f2f21;
    text-align: center;
}

@media (max-width: 700px) {
    .menu-image-box {
        height: 150px;
    }

    .team-cover-image {
        min-height: 220px;
        border-radius: 24px;
    }

    .team-card-image {
        height: 130px;
    }
}

/* Sponsors marquee */

.sponsor-marquee-section {
    margin-top: 28px;
}

.sponsor-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    border-radius: 32px;
    background: #eef3ef;
    border: 1px solid #dbe5df;
}

.sponsor-track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    width: max-content;
    animation: sponsorMarquee 28s linear infinite;
    padding-left: 22px;
}

.sponsor-marquee:hover .sponsor-track {
    animation-play-state: paused;
}

.sponsor-slide {
    flex: 0 0 320px;
    min-height: 220px;
    border-radius: 28px;
    background: white;
    border: 1px solid #dbe5df;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sponsor-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.sponsor-slide-logo {
    width: 100%;
    height: 110px;
    border-radius: 22px;
    background: #f7faf8;
    border: 1px solid #e2e8e4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
}

.sponsor-slide-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-slide-content span {
    display: inline-block;
    margin-bottom: 10px;
    color: #1aa15f;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.sponsor-slide-content h3 {
    font-size: 28px;
    line-height: 1.1;
    color: #0f2f21;
    margin-bottom: 10px;
}

.sponsor-slide-content p {
    color: #647067;
    line-height: 1.6;
    margin: 0;
}

@keyframes sponsorMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 11px));
    }
}

@media (max-width: 900px) {
    .sponsor-slide {
        flex: 0 0 260px;
        min-height: 200px;
        padding: 20px;
    }

    .sponsor-slide-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .sponsor-marquee {
        border-radius: 24px;
        padding: 16px 0;
    }

    .sponsor-track {
        gap: 16px;
        padding-left: 16px;
    }

    .sponsor-slide {
        flex: 0 0 220px;
        min-height: 180px;
        border-radius: 22px;
        padding: 16px;
    }

    .sponsor-slide-logo {
        height: 90px;
    }

    .sponsor-slide-content h3 {
        font-size: 20px;
    }
}


/* Home sponsor logo marquee */

.home-sponsors-section {
    overflow: hidden;
}

.home-sponsor-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 24px 0;
    border-radius: 32px;
    background: #eef3ef;
    border: 1px solid #dbe5df;
}

.home-sponsor-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    padding-left: 24px;
    animation: homeSponsorMarquee 30s linear infinite;
}

.home-sponsor-marquee:hover .home-sponsor-track {
    animation-play-state: paused;
}

.home-sponsor-logo-slide {
    flex: 0 0 320px;
    height: 130px;
    border-radius: 28px;
    background: white;
    border: 1px solid #dbe5df;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-sponsor-logo-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.home-sponsor-logo-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-sponsor-logo-slide span {
    color: #0f2f21;
    font-weight: 900;
    font-size: 22px;
    text-align: center;
}

.home-sponsor-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

@keyframes homeSponsorMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@media (max-width: 900px) {
    .home-sponsor-logo-slide {
        flex: 0 0 220px;
        height: 110px;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .home-sponsor-marquee {
        border-radius: 24px;
        padding: 18px 0;
    }

    .home-sponsor-track {
        gap: 16px;
        padding-left: 16px;
        animation-duration: 24s;
    }

    .home-sponsor-logo-slide {
        flex: 0 0 180px;
        height: 95px;
        border-radius: 22px;
        padding: 16px;
    }

    .home-sponsor-logo-slide span {
        font-size: 18px;
    }
}


/* Team player / Kader slider */

.team-player-slider-section {
    background: #282525;
    color: white;
    overflow: hidden;
}

.team-player-slider-section .section-header {
    text-align: center;
}

.team-player-slider-section .section-header h2 {
    color: white;
}

.team-player-slider-section .section-header p {
    color: rgba(255, 255, 255, 0.72);
}

.team-player-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 12px 0 24px;
}

.team-player-track {
    display: flex;
    align-items: stretch;
    gap: 36px;
    width: max-content;
    padding-left: 36px;
    animation: teamPlayerMarquee 36s linear infinite;
}

.team-player-marquee:hover .team-player-track {
    animation-play-state: paused;
}

.team-player-slide {
    flex: 0 0 320px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #063b23;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.team-player-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes teamPlayerMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 18px));
    }
}

@media (max-width: 900px) {
    .team-player-track {
        gap: 24px;
        padding-left: 24px;
        animation-duration: 30s;
    }

    .team-player-slide {
        flex: 0 0 260px;
        height: 420px;
    }
}

@media (max-width: 600px) {
    .team-player-track {
        gap: 18px;
        padding-left: 18px;
        animation-duration: 26s;
    }

    .team-player-slide {
        flex: 0 0 220px;
        height: 360px;
    }
}

/* News title images */

.news-card-with-image {
    overflow: hidden;
    padding: 0;
}

.news-card-image {
    display: block;
    width: 100%;
    height: 220px;
    background: #eef3ef;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.news-card-with-image:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 24px;
}

.news-card-body span {
    display: inline-block;
    color: #1aa15f;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    margin-bottom: 10px;
}

.news-card-body h3 {
    color: #0f2f21;
    margin-bottom: 10px;
}

.news-card-body p {
    color: #647067;
    margin-bottom: 14px;
}

.news-card-body small {
    display: block;
    color: #7a857d;
    font-weight: 800;
    margin-bottom: 14px;
}

.news-detail-image-section {
    padding-top: 32px;
    padding-bottom: 20px;
}

.news-detail-image {
    width: 100%;
    max-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
    background: #eef3ef;
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
}

@media (max-width: 700px) {
    .news-card-image {
        height: 180px;
    }

    .news-detail-image {
        border-radius: 24px;
    }
}

/* Rich Verein page content */

.article-card-rich {
    display: grid;
    gap: 18px;
}

.article-card-rich h2 {
    margin-top: 18px;
    margin-bottom: 4px;
    color: #0f2f21;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.article-card-rich h2:first-child {
    margin-top: 0;
}

.article-card-rich p {
    color: #647067;
    line-height: 1.8;
    font-size: 17px;
}

.article-card-rich ul {
    margin: 0;
    padding-left: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.article-card-rich li {
    position: relative;
    padding-left: 28px;
    color: #647067;
    line-height: 1.7;
    font-size: 17px;
}

.article-card-rich li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1aa15f;
    font-weight: 900;
}

.article-card-rich a {
    color: #1aa15f;
    font-weight: 900;
}


/* Verein gallery */

.verein-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.verein-gallery-card {
    overflow: hidden;
    border-radius: 28px;
    background: white;
    border: 1px solid #dbe5df;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.08);
}

.verein-gallery-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #eef3ef;
}

.verein-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.verein-gallery-card:hover .verein-gallery-image img {
    transform: scale(1.05);
}

.verein-gallery-content {
    padding: 22px;
}

.verein-gallery-content h3 {
    color: #0f2f21;
    margin-bottom: 8px;
}

.verein-gallery-content p {
    color: #647067;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .verein-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .verein-gallery-grid {
        grid-template-columns: 1fr;
    }

    .verein-gallery-image {
        height: 240px;
    }
}


/* Häusle hero image slider */

.hausle-hero-slider,
.hausle-hero-placeholder {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: 34px;
    overflow: hidden;
    background: #032617;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

.hausle-hero-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;
    color: white;
}

.hausle-hero-placeholder img {
    width: 170px;
    height: auto;
    opacity: 0.95;
}

.hausle-hero-placeholder strong {
    color: white;
    font-size: 18px;
}

.hausle-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

.hausle-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hausle-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hausle-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45)),
        radial-gradient(circle at 20% 0%, rgba(0, 99, 52, 0.15), transparent 38%);
    pointer-events: none;
}

.hausle-hero-slide-caption {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 3;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(3, 38, 23, 0.76);
    backdrop-filter: blur(12px);
    color: white;
}

.hausle-hero-slide-caption strong {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.hausle-hero-slide-caption span {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.hausle-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(3, 38, 23, 0.65);
    backdrop-filter: blur(10px);
}

.hausle-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
}

.hausle-slider-dot.is-active {
    width: 26px;
    background: white;
}

@media (max-width: 900px) {
    .hausle-hero-slider,
    .hausle-hero-placeholder {
        min-height: 360px;
        border-radius: 28px;
    }
}

@media (max-width: 600px) {
    .hausle-hero-slider,
    .hausle-hero-placeholder {
        min-height: 300px;
        border-radius: 24px;
    }

    .hausle-hero-slide-caption {
        left: 16px;
        right: 16px;
        bottom: 18px;
        padding: 14px 16px;
    }

    .hausle-hero-slide-caption strong {
        font-size: 18px;
    }
}


/* Contact Google Maps */

.contact-maps-section {
    background: #f4f7f5;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.contact-map-card {
    overflow: hidden;
    border-radius: 32px;
    background: white;
    border: 1px solid #dbe5df;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.contact-map-info {
    padding: 26px;
}

.contact-map-info span {
    display: inline-block;
    margin-bottom: 10px;
    color: #1aa15f;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.contact-map-info h3 {
    color: #0f2f21;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.contact-map-info p {
    color: #647067;
    line-height: 1.6;
    margin-bottom: 14px;
}

.contact-map-frame {
    width: 100%;
    height: 360px;
    background: #eef3ef;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 950px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-frame {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .contact-map-card {
        border-radius: 24px;
    }

    .contact-map-info {
        padding: 22px;
    }

    .contact-map-info h3 {
        font-size: 26px;
    }

    .contact-map-frame {
        height: 280px;
    }
}