@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── Base ── */
body { background-color: #eef2f9; margin: 0; }

#wrapper {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-family: 'Inter', Arimo, sans-serif;
	font-size: 16px;
}

a { color: #2563eb; text-decoration: none; }

/* ── Header ── */
header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	height: 110px;
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
	border: 1px solid #1e3a8a;
	border-bottom: 4px solid #d97706;
	border-radius: 10px;
	color: white;
	margin-top: 8px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.header-waves { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.header-brand { display: flex; flex-direction: column; }

.header-title {
	font-size: 38px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: white;
	margin: 0;
	line-height: 1.1;
}

.header-subtitle {
	font-size: 12.5px;
	font-weight: 400;
	letter-spacing: 0.38em;
	color: rgba(255,255,255,0.58);
	margin: 0;
	padding-top: 6px;
	border-top: 1px solid rgba(255,255,255,0.2);
	margin-top: 6px;
}

/* ── Navigation ── */
nav { padding: 6px 0; }
nav ul { margin: 0; padding: 0 10px; list-style: none; }
nav ul ul { padding: 2px 0 4px 8px; margin: 2px 0 2px 4px; border-left: 2px solid #dbeafe; }
nav li { list-style: none; margin: 2px 0; padding: 0; }
nav li.nav-sep { margin-top: 10px; padding-top: 10px; border-top: 1px solid #dbeafe; }

nav > ul > li > a {
	display: block; padding: 7px 12px; text-decoration: none;
	font-weight: 600; font-size: 13.5px; border-radius: 7px;
	color: #1e3a8a; background: transparent;
	transition: background .15s, color .15s;
}
nav > ul > li > a:hover { background: #eff6ff; }
nav > ul > li[aria-current="page"] > a { background: #1e3a8a; color: white; font-weight: 700; }
nav > ul > li[aria-current="page"] > a:hover { background: #2563eb; color: white; }

nav > ul > li > ul > li > a {
	display: block; padding: 6px 10px; font-size: 13px; font-weight: 500;
	color: #64748b; border-radius: 6px; background: transparent;
	border-left: 2px solid transparent; text-decoration: none;
	transition: background .15s, border-color .15s, color .15s;
}
nav > ul > li > ul > li > a:hover { background: #eff6ff; color: #1e3a8a; border-left-color: #93c5fd; }
nav > ul > li > ul > li[aria-current] > a { background: #dbeafe; color: #1e3a8a; font-weight: 600; border-left-color: #2563eb; }

/* ── Nav Veranstaltungsleiste ── */
nav .wk-link { display: flex; flex-direction: column; gap: 2px; padding: 7px 10px; }
nav .wk-status { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; line-height: 1; }
nav .wk-name { font-size: 12.5px; font-weight: 500; color: #374151; line-height: 1.35; }
.wk-st-pre     { color: #d97706; }
.wk-st-open    { color: #1e40af; }
.wk-st-closed  { color: #991b1b; }
.wk-st-active  { color: #c2410c; }
.wk-st-results { color: #15803d; }
.wk-st-planned { color: #64748b; }

/* ── Layout ── */
aside {
	width: 210px; float: left;
	padding: 16px 15px 16px 0;
	margin-top: 12px; margin-bottom: 12px;
	background: #ffffff;
	border: 1px solid #dbeafe;
	border-radius: 10px;
}

section {
	width: calc(100% - 222px); float: left;
	padding: 4px 24px 24px;
	margin-top: 12px; margin-left: 12px; margin-bottom: 12px;
	background: #ffffff;
	border: 1px solid #dbeafe;
	border-radius: 10px;
}

.section--padded-top { padding-top: 20px; }

/* ── Footer ── */
footer {
	background: #f0f4fb; border: 1px solid #dbeafe;
	border-radius: 10px; clear: both; font-size: 13px;
	overflow: hidden; margin-bottom: 14px;
}
footer ul { float: left; list-style: none; padding: 0; margin: 12px 14px; }
footer li { display: inline; margin-right: 10px; }
footer a  { color: #1e3a8a; }
footer a:hover { color: #2563eb; }
footer p  { text-align: right; margin-right: 12px; color: #64748b; }

/* ── Gemeinsame Seitenüberschrift ── */
#wkueberschrift h2 {
	font-size: 21px; text-align: center;
	padding: 8px 0 4px; color: #1e3a8a;
	border-bottom: 2px solid #dbeafe; margin-bottom: 20px;
}

/* ── Status-Badge Farben (seitenübergreifend) ── */
.status-pre     { background: #fef3c7; color: #d97706; }
.status-open    { background: #dbeafe; color: #1e40af; }
.status-closed  { background: #fee2e2; color: #991b1b; }
.status-active  { background: #ffedd5; color: #c2410c; }
.status-results { background: #dcfce7; color: #15803d; }
.status-planned { background: #f1f5f9; color: #475569; }

/* Standard-Badge (mit Punkt, für aktuelle-wettkaempfe + Legende) */
.status-badge {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 4px 10px; border-radius: 20px;
	font-size: 12px; font-weight: 600; white-space: nowrap; margin-top: 8px;
}
.status-badge::before {
	content: ''; width: 7px; height: 7px; border-radius: 50%;
	background: currentColor; display: block;
}

/* Badge-Override für index.html (kompakter, kein Punkt) */
.competition-list .status-badge {
	display: inline-block; padding: 3px 9px; font-size: 11px;
	flex-shrink: 0; margin-top: 0;
}
.competition-list .status-badge::before { display: none; }


/* ════════════════════════════════════════════════════════════
   index.html
   ════════════════════════════════════════════════════════════ */

.welcome {
	padding: 16px 20px;
	border-left: 4px solid #1e3a8a;
	background: #f8faff;
	border-radius: 0 8px 8px 0;
	margin-bottom: 24px;
}
.welcome h2 { font-size: 17px; font-weight: 700; color: #1e3a8a; margin: 0 0 6px; }
.welcome p  { font-size: 13.5px; color: #475569; line-height: 1.65; margin: 0; }

.home-section-label {
	font-size: 11px; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.1em; color: #94a3b8; margin: 0 0 10px;
}

.competition-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }

.competition-item {
	display: flex; align-items: center; gap: 14px;
	padding: 11px 14px;
	background: #f8faff; border: 1px solid #e2e8f0;
	border-left: 4px solid #cbd5e1; border-radius: 10px;
	text-decoration: none; cursor: pointer;
	transition: border-color .15s, background .15s;
}
.competition-item:hover { background: #eff6ff; border-color: #93c5fd; border-left-color: #2563eb; }

.comp-info { flex: 1; min-width: 0; }
.comp-name { font-weight: 600; color: #1e3a8a; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.comp-meta { font-size: 12.5px; color: #64748b; margin-top: 2px; }
.comp-arrow { flex-shrink: 0; color: #cbd5e1; font-size: 18px; transition: color .15s, transform .15s; }
.competition-item:hover .comp-arrow { color: #2563eb; transform: translateX(3px); }

.feature-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.feature-tile {
	display: flex; flex-direction: column; align-items: center;
	padding: 18px 12px 16px; background: #f8faff;
	border: 1px solid #e2e8f0; border-radius: 10px;
	text-decoration: none; text-align: center;
	transition: border-color .15s, background .15s;
}
.feature-tile:hover { background: #eff6ff; border-color: #93c5fd; }
.tile-icon {
	width: 40px; height: 40px; background: #dbeafe; border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 9px; color: #1e40af;
}
.tile-title { font-size: 13px; font-weight: 700; color: #1e3a8a; margin-bottom: 3px; }
.tile-desc  { font-size: 12px; color: #64748b; line-height: 1.4; }


/* ════════════════════════════════════════════════════════════
   aktuelle-wettkaempfe.html
   ════════════════════════════════════════════════════════════ */

.page-title {
	font-size: 21px; font-weight: 700; color: #1e3a8a;
	margin: 20px 0 4px; padding-bottom: 10px; border-bottom: 2px solid #dbeafe;
}
.page-intro { font-size: 14px; line-height: 1.7; color: #374151; margin: 12px 0 24px; }
.section-label {
	font-size: 11.5px; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.09em; color: #64748b; margin: 0 0 12px;
}

.competition-grid { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

.competition-card {
	background: #fff; border: 1px solid #dbeafe; border-radius: 12px;
	overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.07);
	display: flex; transition: box-shadow .2s, transform .2s;
}
.competition-card:hover { box-shadow: 0 6px 20px rgba(30,58,138,0.13); transform: translateY(-1px); }

.card-accent { width: 6px; flex-shrink: 0; }
.card-active   .card-accent { background: #2563eb; }
.card-upcoming .card-accent { background: #d97706; }
.card-done     .card-accent { background: #16a34a; }
.card-planned  .card-accent { background: #94a3b8; }

.card-body { flex: 1; padding: 16px 20px; display: flex; align-items: center; gap: 20px; }
.card-info { flex: 1; }
.card-title { font-size: 16px; font-weight: 700; color: #1e3a8a; margin: 0 0 6px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #64748b; }
.card-meta span { display: flex; align-items: center; gap: 4px; }

.card-link {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 8px 16px; background: #1e3a8a; color: white;
	border-radius: 8px; font-size: 13px; font-weight: 600;
	text-decoration: none; white-space: nowrap; transition: background .18s; flex-shrink: 0;
}
.card-link:hover { background: #2563eb; color: white; }

.legend { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }


/* ════════════════════════════════════════════════════════════
   folgende-wettkaempfe.html  &  archiv.html (gemeinsam)
   ════════════════════════════════════════════════════════════ */

.intro {
	font-size: 14px; color: #64748b; line-height: 1.6;
	margin: 0 0 20px; padding: 0;
}


/* ════════════════════════════════════════════════════════════
   folgende-wettkaempfe.html
   ════════════════════════════════════════════════════════════ */

.folgende-entry {
	display: flex; align-items: flex-start; gap: 14px;
	padding: 12px; border-radius: 8px;
	border: 1px solid transparent;
	transition: background .12s, border-color .12s;
}
.folgende-entry + .folgende-entry { border-top: 1px solid #f1f5f9; }
.folgende-entry:hover { background: #f8faff; border-color: #dbeafe; }

.folgende-date {
	font-size: 12.5px; color: #94a3b8;
	min-width: 120px; flex-shrink: 0;
	font-variant-numeric: tabular-nums; padding-top: 3px;
}

.folgende-info { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.folgende-name { font-size: 14px; color: #374151; font-weight: 500; }
.folgende-ort  { font-size: 12.5px; color: #94a3b8; }

.folgende-links { display: flex; gap: 6px; flex-wrap: wrap; flex-shrink: 0; align-items: flex-start; padding-top: 2px; }

.fdoc-link {
	display: inline-flex; align-items: center;
	padding: 4px 10px; border-radius: 6px;
	font-size: 12px; font-weight: 600; text-decoration: none;
	transition: background .12s; white-space: nowrap;
}
.link-au  { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
.link-au:hover  { background: #ffedd5; }
.link-dsv { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.link-dsv:hover { background: #dbeafe; }

.fdoc-na {
	font-size: 12px; color: #cbd5e1; padding: 4px 10px;
	background: #f8fafc; border: 1px solid #e2e8f0;
	border-radius: 6px; white-space: nowrap;
}

.callout {
	margin: 20px 0 0; padding: 12px 16px;
	background: #eff6ff; border: 1px solid #bfdbfe;
	border-radius: 8px; font-size: 14px; color: #1e40af; font-weight: 500;
}


/* ════════════════════════════════════════════════════════════
   archiv.html
   ════════════════════════════════════════════════════════════ */

.archive-year {
	font-size: 11px; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.1em; color: #94a3b8; margin: 22px 0 6px;
	padding-bottom: 6px; border-bottom: 2px solid #e2e8f0;
}
.archive-year:first-of-type { margin-top: 8px; }

.archive-entry {
	display: flex; align-items: center; gap: 14px;
	padding: 10px 12px; border-radius: 8px;
	border: 1px solid transparent;
	transition: background .12s, border-color .12s;
}
.archive-entry:hover { background: #f8faff; border-color: #dbeafe; }

.archive-date { font-size: 12.5px; color: #94a3b8; min-width: 124px; flex-shrink: 0; font-variant-numeric: tabular-nums; }
.archive-name { flex: 1; font-size: 14px; color: #374151; font-weight: 500; min-width: 0; }
.archive-links { display: flex; gap: 6px; flex-shrink: 0; }

.archive-link {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 4px 10px; border-radius: 6px;
	font-size: 12px; font-weight: 600; text-decoration: none;
	transition: background .12s; white-space: nowrap;
}
.archive-link svg { flex-shrink: 0; }
.link-pdf    { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }
.link-pdf:hover    { background: #ffe4e6; color: #be123c; }
.link-online { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.link-online:hover { background: #dbeafe; color: #1e40af; }


/* ════════════════════════════════════════════════════════════
   livetiming.html
   ════════════════════════════════════════════════════════════ */

.live-badge {
	display: inline-flex; align-items: center; gap: 6px;
	background: #fef2f2; color: #dc2626;
	border: 1px solid #fecaca; border-radius: 20px;
	font-size: 11px; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.08em;
	padding: 3px 10px; margin-bottom: 14px;
}
.live-dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: #dc2626; animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0.3; }
}

.event-card {
	display: flex; gap: 20px; align-items: flex-start;
	padding: 18px; border-radius: 10px;
	border: 1px solid #dbeafe; background: #f8faff;
	margin-bottom: 20px;
}
.event-logo {
	flex-shrink: 0; width: 120px;
	display: flex; align-items: center; justify-content: center;
}
.event-logo img {
	max-width: 120px; max-height: 100px;
	width: auto; height: auto; border-radius: 3px; object-fit: contain;
}
.event-info { flex: 1; min-width: 0; }
.event-label {
	font-size: 11px; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.08em;
	color: #94a3b8; margin: 0 0 6px;
}
.event-name { font-size: 16px; font-weight: 700; color: #1e3a8a; margin: 0 0 4px; line-height: 1.3; }
.event-date { font-size: 13.5px; color: #64748b; margin: 0 0 14px; }
.event-link {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 7px 14px; border-radius: 7px;
	background: #1e3a8a; color: white;
	font-size: 13px; font-weight: 600; text-decoration: none;
	transition: background .15s;
}
.event-link:hover { background: #2563eb; color: white; }
.event-link svg { flex-shrink: 0; }

.iframe-wrap { border-radius: 8px; overflow: hidden; border: 1px solid #dbeafe; margin-bottom: 10px; }
.iframe-wrap iframe { display: block; width: 100%; border: none; height: 820px; }

.iframe-fallback { font-size: 13px; color: #64748b; margin: 6px 0 0; text-align: center; }
.iframe-fallback a { color: #2563eb; }
.iframe-fallback a:hover { text-decoration: underline; }

.abschnitt-info {
	background: #f8f9fc;
	border: 1px solid #d0daf0;
	border-radius: 8px;
	padding: 14px 18px;
	margin-bottom: 16px;
}
.abschnitt-title { font-weight: 700; font-size: 14px; color: #1e3a8a; margin-bottom: 10px; }
.abschnitt-zeiten { border-collapse: collapse; width: 100%; font-size: 13px; }
.abschnitt-zeiten td { padding: 3px 0; vertical-align: top; }
.abschnitt-zeiten td:first-child { color: #555; width: 170px; }
.abschnitt-zeiten td:last-child { font-weight: 600; }
.beginn-zeit { color: #dc2626 !important; font-weight: 700 !important; }

.info-box {
	padding: 16px 20px;
	background: #f8faff; border: 1px solid #dbeafe;
	border-left: 4px solid #93c5fd; border-radius: 0 8px 8px 0;
	font-size: 14px; color: #475569; line-height: 1.65;
}


/* ════════════════════════════════════════════════════════════
   ueber.html
   ════════════════════════════════════════════════════════════ */

.prose p { font-size: 14px; color: #374151; line-height: 1.75; margin: 0 0 14px; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: #2563eb; }
.prose a:hover { text-decoration: underline; }


/* ════════════════════════════════════════════════════════════
   kontakt.html
   ════════════════════════════════════════════════════════════ */

.contact-card {
	display: flex; align-items: center; gap: 16px;
	padding: 18px 20px; background: #f8faff;
	border: 1px solid #dbeafe; border-left: 4px solid #1e3a8a;
	border-radius: 0 10px 10px 0; margin-bottom: 20px;
}
.contact-icon {
	flex-shrink: 0; width: 40px; height: 40px;
	background: #dbeafe; border-radius: 10px;
	display: flex; align-items: center; justify-content: center; color: #1e3a8a;
}
.contact-info { min-width: 0; }
.contact-label {
	font-size: 11px; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.08em;
	color: #94a3b8; margin: 0 0 3px;
}
.contact-email { font-size: 16px; font-weight: 600; color: #1e3a8a; margin: 0; }
.contact-email:hover { color: #2563eb; }
.contact-text { font-size: 14px; color: #475569; line-height: 1.65; margin: 0 0 14px; }
.contact-text:last-child { margin-bottom: 0; }


/* ════════════════════════════════════════════════════════════
   impressum.html
   ════════════════════════════════════════════════════════════ */

.impressum-contact {
	padding: 14px 18px; background: #f8faff;
	border-left: 4px solid #1e3a8a; border-radius: 0 8px 8px 0; margin-bottom: 24px;
}
.impressum-contact a { font-size: 13.5px; font-weight: 600; color: #1e3a8a; }
.impressum-contact a:hover { color: #2563eb; }
.impressum-contact p { margin: 6px 0 0; font-size: 13.5px; color: #374151; line-height: 1.65; }

.legal-title {
	font-size: 15px; font-weight: 700; color: #1e3a8a;
	margin: 20px 0 10px; padding-bottom: 6px; border-bottom: 1px solid #dbeafe;
}
.legal-title:first-of-type { margin-top: 0; }
.legal-para { font-size: 13px; font-weight: 700; color: #374151; margin: 14px 0 6px; }
.legal-text { font-size: 13.5px; color: #475569; line-height: 1.65; margin: 0 0 10px; }
.legal-source { font-size: 12px; color: #94a3b8; margin-top: 16px; padding-top: 14px; border-top: 1px solid #f1f5f9; }


/* ════════════════════════════════════════════════════════════
   Datenschutz.html
   ════════════════════════════════════════════════════════════ */

.ds-responsible {
	padding: 14px 18px; background: #f8faff;
	border-left: 4px solid #1e3a8a; border-radius: 0 8px 8px 0;
	margin-bottom: 20px; font-size: 13.5px; color: #374151; line-height: 1.65;
}
.ds-responsible p { margin: 0 0 6px; }
.ds-responsible p:last-child { margin: 0; }

.ds-section { margin-bottom: 6px; }
.ds-section h3 {
	font-size: 14.5px; font-weight: 700; color: #1e3a8a;
	margin: 20px 0 8px; padding-bottom: 6px; border-bottom: 1px solid #dbeafe;
}
.ds-section h4 { font-size: 13px; font-weight: 700; color: #374151; margin: 12px 0 5px; }
.ds-section p  { font-size: 13.5px; color: #475569; line-height: 1.65; margin: 0 0 10px; }
.ds-section ul { margin: 0 0 10px; padding-left: 18px; }
.ds-section ul li { font-size: 13.5px; color: #475569; line-height: 1.65; margin-bottom: 4px; }
.ds-section a { color: #2563eb; }
.ds-section a:hover { text-decoration: underline; }
.ds-source { font-size: 12px; color: #94a3b8; margin-top: 20px; padding-top: 14px; border-top: 1px solid #f1f5f9; }


/* ════════════════════════════════════════════════════════════
   Responsive — Tablet (≤ 768px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

	header { height: auto; padding: 14px 16px; }
	.header-title { font-size: 20px; }
	.header-subtitle { font-size: 10px; }

	aside { float: none; width: 100%; padding: 10px 15px; margin-bottom: 0; border-radius: 10px 10px 0 0; border-bottom: none; }

	nav > ul { display: flex; flex-wrap: wrap; gap: 4px; padding: 6px 10px; }
	nav > ul > li > ul { display: flex; flex-wrap: wrap; gap: 4px; border-left: none; padding: 0; margin: 0; }
	nav li { margin: 0; }
	nav li.nav-sep { margin-top: 0; padding-top: 0; border-top: none; }
	nav > ul > li > a,
	nav > ul > li > ul > li > a { white-space: nowrap; font-size: 12.5px; padding: 5px 9px; border: 1px solid #dbeafe; background: #f0f6ff; color: #1e3a8a; border-radius: 6px; }
	nav > ul > li[aria-current="page"] > a { background: #1e3a8a; color: white; border-color: #1e3a8a; }
	nav > ul > li > ul > li[aria-current] > a { background: #dbeafe; border-left: 2px solid #2563eb; }

	section { float: none; width: 100%; margin-left: 0; margin-top: 0; border-radius: 0 0 10px 10px; border-top: none; }
	.section--padded-top { padding-top: 16px; }

	footer ul { display: flex; flex-wrap: wrap; gap: 6px; float: none; }
	footer li { display: block; margin: 0; }
	footer p  { text-align: left; margin-left: 14px; padding-bottom: 10px; }

	/* index.html */
	.feature-tiles { grid-template-columns: 1fr; }

	/* folgende-wettkaempfe.html */
	.folgende-entry { flex-wrap: wrap; gap: 6px; }
	.folgende-date { min-width: unset; width: 100%; }
	.folgende-info { width: 100%; }
	.folgende-links { width: 100%; }

	/* archiv.html */
	.archive-entry { flex-wrap: wrap; gap: 6px; padding: 10px 8px; }
	.archive-date { min-width: unset; width: 100%; margin-bottom: -2px; }
	.archive-name { width: 100%; }
	.archive-links { width: 100%; }

	/* livetiming.html */
	.event-card { flex-direction: column; gap: 14px; }
	.event-logo { width: 100%; }
	.event-logo img { max-height: 80px; }
	.iframe-wrap iframe { height: 600px; }
	.abschnitt-zeiten td:first-child { width: auto; }

	/* kontakt.html */
	.contact-card { flex-direction: column; align-items: flex-start; gap: 10px; }
}


/* ════════════════════════════════════════════════════════════
   Responsive — Mobil (≤ 480px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

	header { padding: 12px; gap: 10px; }
	.header-title { font-size: 17px; letter-spacing: 0.12em; }
	.header-subtitle { display: none; }

	/* index.html */
	.comp-name { font-size: 13px; }

	/* aktuelle-wettkaempfe.html */
	.card-body { flex-direction: column; align-items: flex-start; gap: 12px; }
	.card-link { width: 100%; justify-content: center; }

	/* archiv.html */
	.archive-name { font-size: 13px; }
	.archive-link { font-size: 11.5px; padding: 4px 8px; }

	/* livetiming.html */
	.iframe-wrap iframe { height: 500px; }
}
