/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --red-600: #DC2626;
    --red-700: #B91C1C;
    --red-800: #991B1B;
    --red-900: #7F1D1D;
    --red-50: #FEF2F2;
    --red-100: #FEE2E2;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --nav-height: 80px;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--red-700);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 10000;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gray-900);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--red-600);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-top: 0.75rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav--transparent {
    background: transparent;
}

.nav--solid {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav--solid .nav__logo-text { color: var(--gray-900); }
.nav--solid .nav__link { color: var(--gray-700); }
.nav--solid .nav__link:hover { color: var(--red-600); }
.nav--solid .nav__link--active { color: var(--red-600) !important; background: rgba(220, 38, 38, 0.08); }
.nav--solid .nav__cta { background: var(--red-600); color: var(--white); }
.nav--solid .hamburger span { background: var(--gray-900); }

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    background: var(--white);
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav__logo-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray-400);
    display: block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav__link:focus-visible {
    outline: 2px solid var(--red-600);
    outline-offset: 2px;
}

.nav__link--active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.15);
}

.nav__cta {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--red-600);
    background: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: all 0.2s;
    margin-left: 0.5rem;
}

.nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-900);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--red-600);
}

.mobile-menu a:focus-visible {
    outline: 2px solid var(--red-600);
    outline-offset: 4px;
}

.mobile-menu__cta {
    margin-top: 1rem;
    display: inline-block;
    background: var(--red-600);
    color: white !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    font-weight: 600;
    padding: 1rem 2rem !important;
    border-radius: 8px;
    text-align: center;
    border-bottom: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gray-900);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--gray-900) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 40%, var(--gray-900) 100%);
    z-index: 2;
}

/* Diagonal red accent stripe */
.hero__stripe {
    position: absolute;
    top: -20%;
    right: -5%;
    width: 35%;
    height: 140%;
    background: var(--red-600);
    transform: skewX(-12deg);
    opacity: 0.12;
    z-index: 1;
}

.hero__stripe--2 {
    right: 8%;
    width: 3px;
    opacity: 0.3;
}

/* Dot pattern */
.hero__dots {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(220, 38, 38, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: var(--nav-height);
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #FCA5A5;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease both;
}

.hero__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red-600);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    color: var(--white);
    line-height: 0.95;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero__title span {
    color: var(--red-600);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-400);
    max-width: 520px;
    margin-top: 1.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__social {
    margin-top: 1.5rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero__social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.hero__social-link:hover {
    color: #ffffff;
}

.hero__social-link svg {
    flex-shrink: 0;
}

.btn {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn--primary {
    background: var(--red-600);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--red-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.hero__stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
}

.hero__stat-number span {
    color: var(--red-600);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: bounce 2s infinite 1.5s;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-500), transparent);
}

.hero__watermark {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 340px;
    opacity: 0.06;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   MITMACHEN (SEARCH WIDGET)
   ============================================ */
.mitmachen {
    padding: 5rem 2rem;
    background: var(--white);
    position: relative;
}

.mitmachen__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.mitmachen__card {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.mitmachen__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent 70%);
    pointer-events: none;
}

.mitmachen__text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
}

.mitmachen__text h2 span {
    color: var(--red-600);
}

.mitmachen__text p {
    color: var(--gray-400);
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.mitmachen__form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.form-group input:not([type="checkbox"]),
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.2s;
    appearance: none;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.4rem;
    vertical-align: middle;
    cursor: pointer;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red-600);
    background: rgba(220, 38, 38, 0.05);
}

.form-group input:not([type="checkbox"])::placeholder {
    color: var(--gray-500);
}

.form-group select option {
    background: var(--gray-900);
    color: var(--white);
}

.btn--search {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news {
    padding: 5rem 2rem;
    background: var(--gray-50);
}

.news__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.news__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.news-card:focus-visible {
    outline: 2px solid var(--red-600);
    outline-offset: 4px;
}

.news-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-card__image {
    aspect-ratio: 16/10;
    background: var(--gray-200);
    position: relative;
    overflow: hidden;
}

.news-card--featured .news-card__image {
    aspect-ratio: auto;
    min-height: 320px;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card__image-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--gray-400);
}

.news-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--red-600);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-card__body {
    padding: 1.5rem;
}

.news-card--featured .news-card__body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card__date {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
    text-transform: uppercase;
    line-height: 1.15;
}

.news-card--featured .news-card__title {
    font-size: 2.25rem;
}

.news-card__excerpt {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-600);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1.25rem;
    transition: gap 0.2s;
}

.news-card__link:hover {
    gap: 0.75rem;
}

.link--all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-600);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.2s;
}

.link--all:hover {
    gap: 0.75rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: calc(var(--nav-height) + 3rem) 2rem 2rem;
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header--hero {
    padding: calc(var(--nav-height) + 3rem) 2rem 2rem;
}

.page-header__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.page-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header__inner h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    margin: 0 0 0.5rem;
}

.page-header__inner p {
    color: var(--gray-300);
    font-size: 1.1rem;
    margin: 0;
}

.page-header__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.page-header__back:hover {
    color: var(--white);
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.filter-bar__item {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-bar__item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.filter-bar__item--active {
    background: var(--red-600);
    color: var(--white);
}

/* ============================================
   SECTION (GENERIC)
   ============================================ */
.section {
    padding: 3rem 2rem;
}

.section__inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* ============================================
   NEWS LIST
   ============================================ */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

/* ============================================
   PAGE LINKS & PROSE
   ============================================ */
.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.prose {
    line-height: 1.7;
    color: var(--gray-700);
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gray-900);
    margin: 2rem 0 1rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p {
    margin: 0 0 1rem;
}

.prose ul, .prose ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.prose a {
    color: var(--red-600);
    text-decoration: underline;
}

/* ============================================
   MEMBERSHIP FEES
   ============================================ */
.fees__title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gray-900);
    margin-top: 3rem;
    text-transform: uppercase;
}

.fees__subtitle {
    color: var(--gray-500);
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}

.fees__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.fee-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fee-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fee-card--highlight {
    background: var(--red-50);
    border-color: var(--red-200, #FECACA);
}

.fee-card__label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.fee-card--highlight .fee-card__label {
    color: var(--red-800);
}

.fee-card__price {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--gray-900);
}

.fee-card--highlight .fee-card__price {
    color: var(--red-700);
}

.fee-card__currency {
    font-size: 1.75rem;
    vertical-align: super;
}

.fee-card__period {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .fees__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .fees__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .fee-card {
        padding: 1.25rem 1rem;
    }

    .fee-card__price {
        font-size: 2.5rem;
    }
}

/* ============================================
   SPORTANGEBOTE / SECTIONS
   ============================================ */
.sections {
    padding: 5rem 2rem;
    background: var(--white);
}

.sections__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.sections__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-items: center;
}

.sections__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   VEREIN TILES (light illustrated cards)
   ============================================ */
.verein-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.verein-tile {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verein-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.verein-tile:focus-visible {
    outline: 2px solid var(--red-600);
    outline-offset: 4px;
}

.verein-tile__illustration {
    aspect-ratio: 10/7;
    overflow: hidden;
}

.verein-tile__illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.verein-tile:hover .verein-tile__illustration img {
    transform: scale(1.03);
}

.verein-tile__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.verein-tile__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.verein-tile__desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    flex: 1;
}

.verein-tile__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--red-600);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.2s ease;
}

.verein-tile:hover .verein-tile__link {
    gap: 0.7rem;
}

.section-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 500px;
}

.section-card:focus-visible {
    outline: 2px solid var(--red-600);
    outline-offset: 4px;
}

.section-card__bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.section-card__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-card:hover .section-card__bg {
    transform: scale(1.05);
}

.section-card__bg--gymwelt {
    background: linear-gradient(160deg, #1a1a2e 0%, var(--red-900) 100%);
}

.section-card__bg--faustball {
    background: linear-gradient(160deg, #1a1a2e 0%, #2d1810 100%);
}

.section-card__bg--kinderturnen {
    background: linear-gradient(160deg, #1a1a2e 0%, #1e1a10 100%);
}

.section-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    z-index: 1;
}

.section-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    z-index: 2;
}

.section-card__icon {
    width: 48px;
    height: 48px;
    background: var(--red-600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.section-card__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    text-transform: uppercase;
}

.section-card__desc {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.section-card__arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(8px);
}

.section-card:hover .section-card__arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TERMINE (UPCOMING EVENTS)
   ============================================ */
.events {
    padding: 5rem 2rem;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08), transparent 70%);
}

.events__inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.events .section-title {
    color: var(--white);
}

.events .section-subtitle {
    color: var(--gray-500);
}

.events__list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.event-row {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.event-row:hover {
    padding-left: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.event-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.event-row__date {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--red-600);
}

.event-row__title {
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
}

.event-row__location {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.event-row__arrow {
    color: var(--gray-600);
    transition: all 0.2s;
}

.event-row:hover .event-row__arrow {
    color: var(--red-600);
    transform: translateX(4px);
}

/* ============================================
   TRAININGSZEITEN PREVIEW
   ============================================ */
.schedule {
    padding: 5rem 2rem;
    background: var(--white);
}

.schedule__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.schedule__days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.day-card {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.day-card:hover {
    border-color: var(--red-600);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.day-card__header {
    background: var(--gray-50);
    padding: 0.875rem 1.25rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-900);
    text-transform: uppercase;
    border-bottom: 1px solid var(--gray-200);
}

.day-card__items {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.day-card__item {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.day-card__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.day-card__time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--red-600);
}

.day-card__name {
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-top: 0.125rem;
    font-weight: 500;
}

.schedule__irregular {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.schedule__irregular a {
    color: var(--red-600);
    text-decoration: none;
    font-weight: 500;
}

.schedule__irregular a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer__logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    margin-bottom: 1rem;
}

.footer__brand h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
}

.footer__brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    line-height: 1.6;
}

.footer__brand-chairman {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.footer__brand-chairman strong {
    color: var(--gray-300);
}

.footer__brand-chairman a {
    color: var(--red-600);
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer__col a {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color 0.2s;
}

.footer__col a:hover {
    color: var(--red-600);
}

.footer__social-link {
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
}

.footer__social-link svg {
    flex-shrink: 0;
}

.footer__bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    color: var(--gray-600);
    font-size: 0.8rem;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    color: var(--gray-600);
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer__legal a:hover {
    color: var(--gray-400);
}

/* ============================================
   INNER PAGE SECTIONS (generic wrapper)
   ============================================ */
/* Note: .section__inner base styles (max-width, margin) are defined
   in the SECTION (GENERIC) block above (line ~932). The parent .section
   already provides padding. No extra padding needed here. */

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.section__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gray-900);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--red-600);
}

.section__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-600);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.2s;
}

.section__link:hover {
    gap: 0.75rem;
}

/* ============================================
   CONTENT PAGES (generic)
   ============================================ */
.content-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 3rem) 2rem 5rem;
}

.content-page h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gray-900);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.content-page h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--gray-900);
    text-transform: uppercase;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-page h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-page p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* ============================================
   PERSON CARDS (leaders/trainers)
   ============================================ */
.person-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.person-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.person-card__image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--red-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.person-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-card__image-placeholder {
    width: 64px;
    height: 64px;
    color: var(--gray-400);
}

.person-card__body {
    padding: 1.25rem;
}

.person-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gray-900);
    text-transform: uppercase;
}

.person-card__groups {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    line-height: 1.4;
}

.person-card__address {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.person-card__address img,
.person-card__contact-img {
    display: block;
    height: 17px;
    width: auto;
    max-width: none;
}

.person-card__contact {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

/* ============================================
   LEADERS GRID
   ============================================ */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* ============================================
   SECTION LOGO BANNER (e.g. Gymwelt)
   ============================================ */
.section-logo-banner {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    background: var(--white);
    overflow: hidden;
}

.section-logo-banner__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-logo-banner__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 180px;
    background: radial-gradient(ellipse, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.section-logo-banner__img {
    max-width: 280px;
    height: auto;
    position: relative;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.06));
    animation: logoReveal 0.6s ease-out both;
}

.section-logo-banner__rule {
    width: 60px;
    height: 3px;
    background: var(--red-600);
    border-radius: 2px;
    margin-top: 1.5rem;
    animation: ruleExpand 0.5s ease-out 0.3s both;
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ruleExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .section-logo-banner__img {
        max-width: 220px;
    }
    .section-logo-banner {
        padding: 2rem 1.5rem 1.5rem;
    }
}

/* ============================================
   GROUPS GRID & CARDS
   ============================================ */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 400px));
    gap: 1.5rem;
    justify-content: center;
}

.group-overview-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.group-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.group-overview-card__image {
    aspect-ratio: 16/10;
    background: var(--gray-200);
    overflow: hidden;
}

.group-overview-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group-overview-card__body {
    padding: 1.25rem;
}

.group-overview-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
}

.group-overview-card__body h3 a {
    color: var(--gray-900);
    text-decoration: none;
}

.group-overview-card__body h3 a:hover {
    color: var(--red-600);
}

.group-overview-card__times {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.group-overview-card__time {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.group-overview-card__time small {
    color: var(--gray-400);
}

.group-overview-card__leaders {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   GROUP DETAIL
   ============================================ */
.group-detail__image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    max-width: 550px;
}

.group-detail__image img {
    width: 100%;
    height: auto;
}

.group-detail__description {
    margin-bottom: 2rem;
}

.group-detail__leaders,
.group-detail__schedule {
    margin-bottom: 0;
}

.group-detail__leaders .section-title {
    margin-bottom: 1rem;
}

.group-detail__leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.training-times-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.training-time-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: 10px;
}

.training-time-item__day {
    font-weight: 600;
    min-width: 100px;
    color: var(--gray-900);
}

.training-time-item__time {
    color: var(--gray-700);
}

.training-time-item__comment {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.section--alt .training-time-item {
    background: var(--white);
}

/* ============================================
   SCHEDULE (DAY CARDS) — legacy, used on homepage
   ============================================ */
.day-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.day-cards-grid--full {
    grid-template-columns: 1fr;
}

.day-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--red-600);
}

.day-card__entries {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day-card__entry {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.day-card__entry:last-child {
    border-bottom: none;
}

.day-card__group {
    font-weight: 500;
    color: var(--gray-900);
}

.day-card__group a {
    color: inherit;
    text-decoration: none;
}

.day-card__group a:hover {
    color: var(--red-600);
}

.day-card__comment {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   SCHEDULE PAGE (Trainingsangebot)
   ============================================ */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.schedule-day {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.schedule-day:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--gray-300);
}

.schedule-day__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--gray-900);
}

.schedule-day__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.schedule-day__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--red-600);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0 0.5rem;
}

.schedule-day__entries {
    display: flex;
    flex-direction: column;
}

.schedule-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.schedule-entry:last-child {
    border-bottom: none;
}

.schedule-entry:hover {
    background: var(--gray-50);
}

.schedule-entry:hover .schedule-entry__group {
    color: var(--red-600);
}

.schedule-entry:hover .schedule-entry__arrow {
    color: var(--red-600);
    opacity: 1;
    transform: translateX(0);
}

.schedule-entry__time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red-600);
    min-width: 100px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.schedule-entry__details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.schedule-entry__group {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: color 0.15s;
}

.schedule-entry__comment {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.3;
}

.schedule-entry__arrow {
    flex-shrink: 0;
    color: var(--gray-300);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
}

/* Irregular schedule variant */
.schedule-day--irregular .schedule-day__header {
    background: var(--gray-700);
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-entry__time {
        min-width: 85px;
        font-size: 0.8rem;
    }
}

/* ============================================
   EVENTS LIST
   ============================================ */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.events-list .event-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}

.events-list .event-row__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    text-align: center;
}

.events-list .event-row__day {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    color: var(--red-600);
}

.events-list .event-row__month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-500);
}

.events-list .event-row__year {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.events-list .event-row__body {
    flex: 1;
}

.events-list .event-row__title {
    color: var(--gray-900);
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0;
}

.events-list .event-row__body p {
    margin: 0;
}

.events-list .event-row__enddate {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* ============================================
   FAUSTBALL SECTION
   ============================================ */

/* Section variant with subtle background */
.section--alt {
    background: var(--gray-50);
}

/* Faustball page: tighter section spacing */
.faustball-page > .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Team Photo Section */
.faustball-teamphoto {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    max-width: 600px;
}

.faustball-teamphoto img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quick Navigation Cards */
.faustball-quicknav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.faustball-quicknav__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.faustball-quicknav__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--red-600);
}

.faustball-quicknav__card:hover .faustball-quicknav__icon {
    background: var(--red-600);
    color: var(--white);
}

.faustball-quicknav__icon {
    width: 56px;
    height: 56px;
    background: var(--red-50);
    color: var(--red-600);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.faustball-quicknav__card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gray-900);
    text-transform: uppercase;
    margin: 0 0 0.25rem;
}

.faustball-quicknav__card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Info Grid (contacts + training side by side) */
.detail-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}


/* Overview grid: Intro + Live Table side by side */
.faustball-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.faustball-overview-intro p {
    color: var(--gray-600);
    line-height: 1.7;
}

.faustball-overview-intro p strong {
    color: var(--gray-900);
}

.faustball-overview-table {
    min-width: 0;
}

.faustball-livetable-season {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
    margin: 0 0 0.75rem;
}

.faustball-livetable-loading {
    padding: 2rem;
    text-align: center;
    color: var(--gray-400);
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.faustball-livetable-link {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.faustball-livetable-link a {
    color: var(--red-600);
    text-decoration: none;
}

.faustball-livetable-link a:hover {
    text-decoration: underline;
}

/* Team page styles */
.faustball-team .team-photo {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0 2rem;
}

.faustball-team h2 {
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--red-600);
}

/* Page links override for dark text context */
.faustball-team .page-links .btn--outline,
.faustball-archive .page-links .btn--outline,
.page-links .btn--outline {
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.faustball-team .page-links .btn--outline:hover,
.faustball-archive .page-links .btn--outline:hover,
.page-links .btn--outline:hover {
    color: var(--red-600);
    border-color: var(--red-600);
    background: var(--red-50);
}

/* Archive section styles */
.faustball-archive .archive-section {
    margin-bottom: 3rem;
}

.faustball-archive .archive-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gray-900);
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--red-600);
}

.faustball-archive .archive-section > p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.faustball-archive .archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.faustball-archive .archive-item {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    margin: 0;
}

.faustball-archive .archive-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.faustball-archive .archive-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.faustball-archive .archive-item figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Season filter (tables page) */
.faustball-season-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.faustball-season-filter__item {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.faustball-season-filter__item:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.faustball-season-filter__item--active {
    background: var(--red-600);
    color: var(--white);
}

.faustball-season-filter__item--active:hover {
    background: var(--red-700);
    color: var(--white);
}

/* Tables styling */
.faustball-tables table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.faustball-tables table thead {
    background: var(--gray-900);
    color: var(--white);
}

.faustball-tables table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faustball-tables table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.faustball-tables table tbody tr:hover {
    background: var(--gray-50);
}

.faustball-tables table tbody tr:last-child td {
    border-bottom: none;
}

.faustball-tables table tfoot td {
    padding: 0.75rem 1rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.faustball-tables table tbody tr.highlight {
    background: var(--red-50, #fef2f2);
    font-weight: 600;
}

.faustball-tables table tbody tr.highlight:hover {
    background: var(--red-100, #fee2e2);
}

.faustball-tables .table-source {
    text-align: right;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.faustball-tables .table-source a {
    color: var(--gray-500);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faustball-tables {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .faustball-tables table {
        min-width: 600px;
    }
    .faustball-tables table th,
    .faustball-tables table td {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Group photo in CMS content */
.faustball-group-photo {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

/* ============================================
   GALLERY GRID & CARDS
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.gallery-card__image {
    aspect-ratio: 16/10;
    background: var(--gray-200);
    overflow: hidden;
}

.gallery-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card__body {
    padding: 1rem;
}

.gallery-card__title {
    font-weight: 600;
    margin: 0;
}

.gallery-card__count {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
    display: block;
}

.gallery-card__date {
    font-size: 0.8rem;
    color: var(--gray-400);
    display: block;
}

/* Lightbox grid */
.lightbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.lightbox-grid__item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.lightbox-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.lightbox-grid__item:hover img {
    transform: scale(1.05);
}

.lightbox-grid__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 0.8rem;
}

/* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    flex-direction: column;
}

.lightbox-overlay__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.lightbox-overlay__img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-overlay__nav {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.lightbox-overlay__prev,
.lightbox-overlay__next {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    user-select: none;
}

.lightbox-overlay__caption {
    color: white;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* ============================================
   ARTICLE DETAIL
   ============================================ */
.article {
    padding-bottom: 3rem;
}

.article__inner {
    max-width: 800px;
    margin: 0 auto;
}

.article__header {
    margin-bottom: 2rem;
}

.article__category {
    display: inline-block;
    background: var(--red-600);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.article__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0 0 0.5rem;
}

.article__date {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.article__image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.article__image img {
    width: 100%;
    height: auto;
}

.article__content {
    line-height: 1.7;
    color: var(--gray-700);
}

.article__footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

/* ============================================
   SEARCH WIDGET
   ============================================ */
.search-widget {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.search-widget form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.search-widget label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.search-widget select,
.search-widget input[type="number"] {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
}

.search-no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-500);
}

/* ============================================
   BUTTON VARIANTS (additions)
   ============================================ */
.btn--secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.btn--secondary:hover {
    background: var(--gray-300);
}

.btn--danger {
    background: var(--red-600);
    color: var(--white);
}

.btn--danger:hover {
    background: var(--red-700);
}

.btn--sm {
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-fieldset {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-fieldset legend {
    font-weight: 600;
    padding: 0 0.5rem;
}

.form-image-preview img {
    max-width: 200px;
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* ============================================
   LOGIN
   ============================================ */
.login-box {
    max-width: 400px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
}

.login-error {
    color: var(--red-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ============================================
   ADMIN EXTRAS
   ============================================ */
.admin-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    border-left: 4px solid var(--gray-300);
}

.admin-stat-card--red { border-left-color: var(--red-600); }
.admin-stat-card--blue { border-left-color: #3b82f6; }
.admin-stat-card--green { border-left-color: #22c55e; }
.admin-stat-card--purple { border-left-color: #8b5cf6; }
.admin-stat-card--orange { border-left-color: #f59e0b; }
.admin-stat-card--teal { border-left-color: #14b8a6; }

.admin-stat-card__value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gray-900);
}

.admin-stat-card__label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.admin-stat-card__link {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--red-600);
}

.admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.admin-section {
    margin-bottom: 2rem;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.admin-gallery-item {
    text-align: center;
}

.admin-gallery-item img {
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.admin-table__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.admin-table__actions form {
    display: inline;
}

/* ============================================
   ERROR PAGE
   ============================================ */
.error-page {
    text-align: center;
    padding: 5rem 2rem;
}

.error-page h1 {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--red-600);
    margin: 0;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    list-style: none;
}

.pagination__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.2s;
}

.pagination__item:hover {
    border-color: var(--red-600);
    color: var(--red-600);
}

.pagination__item--active {
    background: var(--red-600);
    border-color: var(--red-600);
    color: var(--white);
}

.pagination__item--active:hover {
    background: var(--red-700);
    border-color: var(--red-700);
    color: var(--white);
}

.pagination__item--disabled {
    color: var(--gray-300);
    border-color: var(--gray-100);
    pointer-events: none;
}

/* ============================================
   ALERTS / FLASH MESSAGES
   ============================================ */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.alert--success {
    background: #F0FDF4;
    border-color: #BBF7D0;
    color: #166534;
}

.alert--error {
    background: var(--red-50);
    border-color: var(--red-100);
    color: var(--red-800);
}

.alert--info {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #1E40AF;
}

/* ============================================
   ADMIN LAYOUT
   ============================================ */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 100;
}

.admin-topbar__brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.admin-topbar__logout {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

.admin-topbar__logout:hover {
    color: var(--white);
}

.admin-sidebar {
    width: 240px;
    background: var(--gray-800);
    padding-top: 56px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
}

.admin-sidebar__nav {
    padding: 1rem 0;
    list-style: none;
}

.admin-sidebar__link {
    display: block;
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: all 0.2s;
}

.admin-sidebar__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.admin-sidebar__link--active {
    color: var(--white);
    background: rgba(220, 38, 38, 0.15);
    border-right: 3px solid var(--red-600);
}

.admin-content {
    flex: 1;
    margin-left: 240px;
    padding: calc(56px + 2rem) 2rem 2rem;
    background: var(--gray-50);
    min-height: 100vh;
}

.admin-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
}

.admin-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    margin-bottom: 1.25rem;
    transition: border-color 0.2s;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: var(--red-600);
}

.admin-content .form-group label {
    color: var(--gray-700);
}

.admin-content .form-group input:not([type="checkbox"]),
.admin-content .form-group textarea,
.admin-content .form-group select {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-800);
}

.admin-content .form-group input:not([type="checkbox"]):focus,
.admin-content .form-group textarea:focus,
.admin-content .form-group select:focus {
    background: var(--white);
    border-color: var(--red-600);
}

.admin-content .form-group input:not([type="checkbox"])::placeholder {
    color: var(--gray-400);
}

.admin-content .form-group select option {
    background: var(--white);
    color: var(--gray-800);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.admin-table th {
    background: var(--gray-50);
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.admin-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: var(--gray-50);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .sections__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sections__grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .verein-tiles {
        grid-template-columns: 1fr 1fr;
    }

    .schedule__days {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-card--featured {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .faustball-quicknav {
        grid-template-columns: 1fr 1fr;
    }

    .detail-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faustball-overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hero__stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .hero__watermark {
        width: 180px;
        height: 180px;
        right: -20px;
        opacity: 0.03;
    }

    .mitmachen__card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .news__grid {
        grid-template-columns: 1fr;
    }

    .news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .sections__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .section-card {
        aspect-ratio: 3/4;
    }

    .verein-tiles {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .event-row {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .event-row__arrow { display: none; }

    .schedule__days {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

    .admin-sidebar {
        display: none;
    }

    .admin-content {
        margin-left: 0;
    }

    .faustball-quicknav {
        grid-template-columns: 1fr;
    }

    .faustball-archive .archive-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faustball-season-filter {
        gap: 0.35rem;
    }

    .faustball-season-filter__item {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Reduce horizontal padding from 2rem (32px) to 1rem (16px)
       on small screens — saves 32px total, giving ~9.7% more content width */
    .section {
        padding: 2rem 1rem;
    }

    .page-header {
        padding: calc(var(--nav-height) + 2rem) 1rem 1.5rem;
    }

    .page-header--hero {
        padding: calc(var(--nav-height) + 2rem) 1rem 1.5rem;
    }

    .nav__inner {
        padding: 0 1rem;
    }

    .hero__content {
        padding: 0 1rem;
        padding-top: var(--nav-height);
    }

    .mitmachen {
        padding: 3rem 1rem;
    }

    .mitmachen__card {
        padding: 1.25rem;
    }

    .news {
        padding: 3rem 1rem;
    }

    .sections {
        padding: 3rem 1rem;
    }

    .events {
        padding: 3rem 1rem;
    }

    .schedule {
        padding: 3rem 1rem;
    }

    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .mobile-menu {
        padding: 6rem 1.25rem 2rem;
    }

    .section-logo-banner {
        padding: 2rem 1rem 1.5rem;
    }

    .error-page {
        padding: 3rem 1rem;
    }

    /* Fix grid columns too wide for small screens */
    .news-list {
        grid-template-columns: 1fr;
    }

    .groups-grid {
        grid-template-columns: 1fr;
    }

    .faustball-archive .archive-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive font sizes for fixed values */
    .page-header__inner h1 {
        font-size: clamp(1.75rem, 7vw, 3rem);
    }

    .error-page h1 {
        font-size: clamp(3rem, 12vw, 6rem);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .nav,
    .skip-link,
    .footer,
    .page-header__back,
    .filter-bar,
    .pagination,
    .btn,
    .search-widget {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    .page-header {
        background: none;
        color: #000;
        padding: 0;
    }

    .section__inner {
        max-width: 100%;
        padding: 0;
    }

    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    a[href^="/"]:after,
    a[href^="#"]:after {
        content: "";
    }
}
