/* =========================================================================
   BC VORWÄRTS BIELEFELD – DESIGN-SYSTEM
   GeneratePress Child Theme · Boxclub-Ästhetik: dunkel, rot, kantig
   =========================================================================
   Inhalt:
   01  Schriften (@font-face, lokal gehostet)
   02  Design-Tokens (CSS Custom Properties)
   03  Basis & Typografie
   04  Layout-Helfer (Container, Full-Bleed, Sektionen)
   05  Komponenten (Buttons, Kicker, Boxen, Tabellen)
   06  Header & Navigation
   07  Seitenkopf (Unterseiten-Hero)
   08  Startseiten-Hero & Sektionen
   09  Karten (News, Personen, Kämpfer)
   10  Trainingszeiten & Termin-Tabellen
   11  Sponsoren & Partner
   12  Blog/News-Archiv & Einzelbeiträge
   13  Footer
   14  Responsive & Feinschliff
   ========================================================================= */

/* -------------------------------------------------------------------------
   01 SCHRIFTEN – lokal im Theme, DSGVO-konform (kein Google-CDN)
   ------------------------------------------------------------------------- */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/oswald-v57-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/oswald-v57-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/oswald-v57-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/inter-v20-latin_latin-ext-700.woff2') format('woff2');
}

/* -------------------------------------------------------------------------
   02 DESIGN-TOKENS
   ------------------------------------------------------------------------- */
:root {
	/* Farben */
	--bcv-red: #C71A1A;          /* Vereinsrot (aus dem alten Auftritt übernommen) */
	--bcv-red-dark: #A01313;
	--bcv-red-deep: #7E0D0D;
	--bcv-black: #0E1013;        /* Header, Footer, Hero */
	--bcv-anthracite: #1A1D22;   /* dunkle Sektionen, Karten auf dunklem Grund */
	--bcv-steel: #2A2E35;        /* Linien/Borders auf dunklem Grund */
	--bcv-paper: #F7F6F3;        /* alternierende helle Sektionen */
	--bcv-white: #FFFFFF;
	--bcv-text: #23262B;
	--bcv-text-muted: #686E76;
	--bcv-text-inverse: #F2F1EE;
	--bcv-text-inverse-muted: #9BA1A8;
	--bcv-line: #E5E3DD;

	/* Typografie */
	--bcv-font-display: 'Oswald', 'Arial Narrow', sans-serif;
	--bcv-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Abstände & Maße */
	--bcv-container: 1200px;
	--bcv-gutter: 24px;
	--bcv-section-y: clamp(56px, 9vw, 104px);
	--bcv-radius: 3px;           /* bewusst kantig – Boxsport, keine Spielwiese */

	/* Effekte */
	--bcv-shadow: 0 14px 40px -18px rgba(14, 16, 19, 0.35);
	--bcv-transition: 180ms cubic-bezier(0.3, 0.6, 0.3, 1);
}

/* -------------------------------------------------------------------------
   03 BASIS & TYPOGRAFIE
   ------------------------------------------------------------------------- */
html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--bcv-font-body);
	font-size: 17px;
	line-height: 1.7;
	color: var(--bcv-text);
	background: var(--bcv-white);
	overflow-x: clip; /* nötig für Full-Bleed-Sektionen */
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.entry-title {
	font-family: var(--bcv-font-display);
	font-weight: 600;
	line-height: 1.12;
	text-transform: uppercase;
	letter-spacing: 0.015em;
	color: inherit;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.4em; }

a {
	color: var(--bcv-red);
	text-decoration: none;
	transition: color var(--bcv-transition);
}

a:hover,
a:focus {
	color: var(--bcv-red-dark);
}

::selection {
	background: var(--bcv-red);
	color: #fff;
}

/* Sichtbarer Fokus für Tastaturnutzung */
a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--bcv-red);
	outline-offset: 2px;
}

/* -------------------------------------------------------------------------
   04 LAYOUT-HELFER
   ------------------------------------------------------------------------- */
.bcv-container {
	max-width: var(--bcv-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--bcv-gutter);
	padding-right: var(--bcv-gutter);
}

/* Sektion über die volle Viewport-Breite ziehen –
   funktioniert unabhängig von Container-Einstellungen */
.bcv-full {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.bcv-section {
	padding-top: var(--bcv-section-y);
	padding-bottom: var(--bcv-section-y);
}

.bcv-section--paper { background: var(--bcv-paper); }

.bcv-section--dark {
	background:
		linear-gradient(160deg, rgba(199, 26, 26, 0.07), transparent 45%),
		var(--bcv-black);
	color: var(--bcv-text-inverse);
}

.bcv-section--dark h2,
.bcv-section--dark h3 { color: #fff; }

.bcv-section--red {
	background:
		linear-gradient(120deg, var(--bcv-red-deep), var(--bcv-red) 70%);
	color: #fff;
}

.bcv-section--red h2 { color: #fff; }

/* Kopfbereich einer Sektion: Kicker + Überschrift + optionaler Link */
.bcv-section__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: clamp(28px, 4vw, 48px);
}

.bcv-section__head h2 { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   05 KOMPONENTEN
   ------------------------------------------------------------------------- */

/* Kicker: kleine rote Überzeile mit Balken */
.bcv-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--bcv-font-display);
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bcv-red);
	margin-bottom: 12px;
}

.bcv-kicker::before {
	content: '';
	width: 28px;
	height: 3px;
	background: var(--bcv-red);
	flex: none;
}

.bcv-section--dark .bcv-kicker { color: #FF6B6B; }
.bcv-section--dark .bcv-kicker::before { background: var(--bcv-red); }

/* Buttons */
.bcv-btn,
.bcv-btn:visited {
	display: inline-block;
	font-family: var(--bcv-font-display);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	background: var(--bcv-red);
	padding: 14px 30px;
	border: 2px solid var(--bcv-red);
	border-radius: var(--bcv-radius);
	transition: background var(--bcv-transition), border-color var(--bcv-transition), transform var(--bcv-transition);
}

.bcv-btn:hover,
.bcv-btn:focus {
	color: #fff;
	background: var(--bcv-red-dark);
	border-color: var(--bcv-red-dark);
	transform: translateY(-2px);
}

.bcv-btn--ghost,
.bcv-btn--ghost:visited {
	background: transparent;
	color: var(--bcv-text);
	border-color: currentColor;
}

.bcv-btn--ghost:hover,
.bcv-btn--ghost:focus {
	background: var(--bcv-text);
	color: #fff;
	border-color: var(--bcv-text);
}

.bcv-section--dark .bcv-btn--ghost,
.bcv-section--dark .bcv-btn--ghost:visited,
.bcv-hero .bcv-btn--ghost,
.bcv-hero .bcv-btn--ghost:visited {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
	background: transparent;
}

.bcv-section--dark .bcv-btn--ghost:hover,
.bcv-hero .bcv-btn--ghost:hover {
	background: #fff;
	color: var(--bcv-black);
	border-color: #fff;
}

/* Hinweis-/Infobox (z. B. Probetraining, Ferien) */
.bcv-notice {
	background: var(--bcv-paper);
	border-left: 4px solid var(--bcv-red);
	border-radius: var(--bcv-radius);
	padding: 22px 26px;
	margin: 28px 0;
}

.bcv-notice > :last-child { margin-bottom: 0; }

/* Tabellen (Gewichtsklassen, Altersklassen, Termine, Trainingszeiten) */
.entry-content table,
.bcv-table {
	width: 100%;
	border-collapse: collapse;
	margin: 28px 0;
	font-size: 0.97rem;
	background: #fff;
	box-shadow: 0 0 0 1px var(--bcv-line);
	border-radius: var(--bcv-radius);
	overflow: hidden;
}

.entry-content table th,
.bcv-table th {
	font-family: var(--bcv-font-display);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.84rem;
	text-align: left;
	background: var(--bcv-black);
	color: #fff;
	padding: 13px 16px;
	border: 0;
}

.entry-content table td,
.bcv-table td {
	padding: 12px 16px;
	border: 0;
	border-top: 1px solid var(--bcv-line);
}

.entry-content table tr:nth-child(even) td,
.bcv-table tr:nth-child(even) td {
	background: var(--bcv-paper);
}

/* Tabellen auf schmalen Screens horizontal scrollbar machen */
.bcv-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Akzent-Liste (z. B. Vereins-Fakten) */
.entry-content ul:not([class]) li::marker {
	color: var(--bcv-red);
}

/* -------------------------------------------------------------------------
   06 HEADER & NAVIGATION
   ------------------------------------------------------------------------- */
#masthead.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--bcv-black);
	border-bottom: 3px solid var(--bcv-red);
	transition: box-shadow var(--bcv-transition);
}

#masthead.bcv-scrolled {
	box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.55);
}

#masthead .inside-header {
	padding: 14px var(--bcv-gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

/* Logo / Seitentitel – wir nutzen das Wappen, der Schriftzug entfällt */
.site-header .site-logo img {
	max-height: 60px;
	width: auto;
	transition: max-height var(--bcv-transition);
}

#masthead.bcv-scrolled .site-logo img { max-height: 48px; }

/* Schriftzug-Titel und Tagline ausblenden – das Logo trägt die Marke */
.site-header .main-title,
.site-header .site-description {
	display: none;
}

/* Hauptnavigation */
.main-navigation,
.main-navigation .main-nav ul {
	background: transparent;
}

.main-navigation .main-nav ul li a {
	font-family: var(--bcv-font-display);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--bcv-text-inverse);
	line-height: 60px;
	padding: 0 14px;
	position: relative;
	transition: color var(--bcv-transition);
}

.main-navigation .main-nav ul li a::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 12px;
	height: 2px;
	background: var(--bcv-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--bcv-transition);
}

.main-navigation .main-nav ul li a:hover::after,
.main-navigation .main-nav ul li[class*='current-menu-'] > a::after {
	transform: scaleX(1);
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li:focus-within > a,
.main-navigation .main-nav ul li[class*='current-menu-'] > a {
	color: #fff;
	background: transparent;
}

/* Dropdowns */
.main-navigation ul ul {
	background: var(--bcv-anthracite);
	box-shadow: var(--bcv-shadow);
	border-top: 3px solid var(--bcv-red);
	width: 240px;
}

.main-navigation .main-nav ul ul li a {
	line-height: 1.4;
	padding: 12px 18px;
	font-size: 0.88rem;
	color: var(--bcv-text-inverse);
}

.main-navigation .main-nav ul ul li a::after { content: none; }

.main-navigation .main-nav ul ul li:hover > a,
.main-navigation .main-nav ul ul li[class*='current-menu-'] > a {
	background: rgba(199, 26, 26, 0.18);
	color: #fff;
}

/* Dropdown-Pfeile */
.main-navigation .main-nav ul li.menu-item-has-children > a .dropdown-menu-toggle {
	padding-left: 6px;
	color: var(--bcv-text-inverse-muted);
}

/* Mobile Menü-Button (Burger) – als klar sichtbares rotes Kästchen mit
   weißem Icon und „Menü“-Label. Hohe Spezifität (#masthead) nötig, sonst
   überschreibt GeneratePress die Farbe und der Burger ist dunkel auf
   dunklem Header (= unsichtbar). */
#masthead .menu-toggle,
#masthead .menu-toggle:hover,
#masthead .menu-toggle:focus {
	color: #fff;
	background: var(--bcv-red);
	border-radius: var(--bcv-radius);
	padding: 10px 16px;
	font-family: var(--bcv-font-display);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

#masthead .menu-toggle:hover,
#masthead .menu-toggle:focus {
	background: var(--bcv-red-dark);
}

/* Icon größer + sichtbar (SVG erbt currentColor = weiß) */
#masthead .menu-toggle .gp-icon {
	font-size: 1.45rem;
	line-height: 1;
}

/* „Menü“-Label neben dem Icon */
#masthead .menu-toggle::after {
	content: "Menü";
	margin-left: 9px;
	font-size: 0.95rem;
	vertical-align: middle;
}

/* Mobiles ausgeklapptes Menü */
@media (max-width: 768px) {
	.main-navigation .main-nav ul li a {
		line-height: 1.4;
		padding: 14px 20px;
	}

	.main-navigation .main-nav ul li a::after { content: none; }

	nav.main-navigation.toggled .main-nav > ul,
	.main-navigation .main-nav ul {
		background: var(--bcv-black);
	}

	.main-navigation .main-nav ul li {
		border-bottom: 1px solid var(--bcv-steel);
	}

	.main-navigation ul ul {
		width: 100%;
		box-shadow: none;
		border-top: 0;
		background: var(--bcv-anthracite);
	}
}

/* -------------------------------------------------------------------------
   07 SEITENKOPF (alle Unterseiten) – wird per Hook ausgegeben
   ------------------------------------------------------------------------- */
.bcv-page-header {
	background:
		linear-gradient(120deg, rgba(199, 26, 26, 0.16), transparent 55%),
		repeating-linear-gradient(-55deg, transparent 0 18px, rgba(255, 255, 255, 0.018) 18px 19px),
		var(--bcv-black);
	color: #fff;
	padding: clamp(44px, 7vw, 84px) 0;
	border-bottom: 4px solid var(--bcv-red);
}

.bcv-page-header__kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--bcv-font-display);
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #FF6B6B;
	margin-bottom: 10px;
}

.bcv-page-header__kicker::before {
	content: '';
	width: 28px;
	height: 3px;
	background: var(--bcv-red);
}

.bcv-page-header h1 {
	color: #fff;
	margin: 0;
}

.bcv-page-header__meta {
	margin-top: 14px;
	color: var(--bcv-text-inverse-muted);
	font-size: 0.95rem;
}

/* -------------------------------------------------------------------------
   08 STARTSEITEN-HERO & SEKTIONEN
   ------------------------------------------------------------------------- */
.bcv-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 600px;
	padding: 80px 0;
	background:
		linear-gradient(100deg, rgba(10, 11, 13, 0.94) 30%, rgba(10, 11, 13, 0.55) 70%, rgba(126, 13, 13, 0.45)),
		var(--bcv-hero-image, none) center / cover no-repeat,
		var(--bcv-black);
	color: #fff;
	overflow: hidden;
}

/* Rote Diagonale als Markenzeichen */
.bcv-hero::after {
	content: '';
	position: absolute;
	right: -8%;
	top: -20%;
	width: 38%;
	height: 150%;
	background: linear-gradient(120deg, transparent 48%, rgba(199, 26, 26, 0.22) 48.5%, rgba(199, 26, 26, 0.05));
	pointer-events: none;
}

.bcv-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.bcv-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--bcv-font-display);
	font-weight: 600;
	font-size: clamp(0.85rem, 1.4vw, 1rem);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bcv-text-inverse);
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 8px 16px;
	margin-bottom: 22px;
}

.bcv-hero__kicker strong { color: #FF6B6B; font-weight: 600; }

.bcv-hero h1 {
	font-size: clamp(2.6rem, 6.4vw, 4.6rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.35em;
}

.bcv-hero h1 em {
	font-style: normal;
	color: var(--bcv-red);
	-webkit-text-stroke: 0;
}

.bcv-hero__text {
	font-size: clamp(1.02rem, 1.6vw, 1.2rem);
	color: var(--bcv-text-inverse);
	max-width: 56ch;
	margin-bottom: 34px;
}

.bcv-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* Zahlen-/Fakten-Band (z. B. seit 1925, Trainer, Trainingstage) */
.bcv-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1px;
	background: var(--bcv-steel);
	border: 1px solid var(--bcv-steel);
}

.bcv-stat {
	background: var(--bcv-anthracite);
	padding: 28px 24px;
	text-align: center;
}

.bcv-stat__value {
	font-family: var(--bcv-font-display);
	font-size: clamp(2rem, 4vw, 2.9rem);
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.bcv-stat__value em {
	font-style: normal;
	color: var(--bcv-red);
}

.bcv-stat__label {
	margin-top: 8px;
	font-size: 0.86rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bcv-text-inverse-muted);
}

/* Zweispalter Text + Bild */
.bcv-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.bcv-split__media img {
	width: 100%;
	height: auto;
	border-radius: var(--bcv-radius);
	box-shadow: var(--bcv-shadow);
}

@media (max-width: 860px) {
	.bcv-split { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   09 KARTEN
   ------------------------------------------------------------------------- */
.bcv-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 28px;
}

.bcv-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--bcv-line);
	border-top: 3px solid transparent;
	border-radius: var(--bcv-radius);
	overflow: hidden;
	transition: transform var(--bcv-transition), box-shadow var(--bcv-transition), border-color var(--bcv-transition);
}

.bcv-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--bcv-shadow);
	border-top-color: var(--bcv-red);
}

.bcv-card__body {
	padding: 26px 26px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.bcv-card__meta {
	font-family: var(--bcv-font-display);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bcv-red);
	margin-bottom: 10px;
}

.bcv-card h3 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.bcv-card h3 a { color: var(--bcv-text); }
.bcv-card h3 a:hover { color: var(--bcv-red); }

.bcv-card p {
	color: var(--bcv-text-muted);
	font-size: 0.96rem;
	margin-bottom: 0;
}

/* Personen-Karten (Trainer, Vorstand) */
.bcv-person-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 24px;
}

.bcv-person {
	background: #fff;
	border: 1px solid var(--bcv-line);
	border-radius: var(--bcv-radius);
	padding: 28px 24px 24px;
	text-align: center;
	transition: transform var(--bcv-transition), box-shadow var(--bcv-transition);
}

.bcv-person:hover {
	transform: translateY(-4px);
	box-shadow: var(--bcv-shadow);
}

.bcv-section--dark .bcv-person,
.bcv-section--paper .bcv-person { background: #fff; }

.bcv-person__avatar {
	width: 96px;
	height: 96px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: var(--bcv-paper);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--bcv-font-display);
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--bcv-red);
	border: 3px solid var(--bcv-red);
	overflow: hidden;
}

.bcv-person__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.bcv-person h3 {
	font-size: 1.18rem;
	margin-bottom: 4px;
}

.bcv-person__role {
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bcv-red);
	font-weight: 600;
	font-family: var(--bcv-font-display);
}

.bcv-person p {
	color: var(--bcv-text-muted);
	font-size: 0.93rem;
	margin: 10px 0 0;
}

/* Kämpfer-Karten – dunkel, plakativ */
.bcv-fighter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 24px;
}

.bcv-fighter {
	position: relative;
	background:
		linear-gradient(165deg, var(--bcv-anthracite), var(--bcv-black) 80%);
	border: 1px solid var(--bcv-steel);
	border-radius: var(--bcv-radius);
	padding: 28px 24px;
	color: var(--bcv-text-inverse);
	overflow: hidden;
	transition: transform var(--bcv-transition), border-color var(--bcv-transition);
}

.bcv-fighter::before {
	content: '';
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--bcv-red);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform var(--bcv-transition);
}

.bcv-fighter:hover {
	transform: translateY(-4px);
	border-color: var(--bcv-red);
}

.bcv-fighter:hover::before { transform: scaleY(1); }

.bcv-fighter h3 {
	color: #fff;
	font-size: 1.3rem;
	margin-bottom: 6px;
}

.bcv-fighter__class {
	font-family: var(--bcv-font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #FF6B6B;
}

.bcv-fighter p {
	color: var(--bcv-text-inverse-muted);
	font-size: 0.93rem;
	margin: 12px 0 0;
}

/* -------------------------------------------------------------------------
   10 TRAININGSZEITEN
   ------------------------------------------------------------------------- */
.bcv-schedule {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.bcv-slot {
	background: #fff;
	border: 1px solid var(--bcv-line);
	border-left: 4px solid var(--bcv-red);
	border-radius: var(--bcv-radius);
	padding: 24px 26px;
}

.bcv-section--dark .bcv-slot {
	background: var(--bcv-anthracite);
	border-color: var(--bcv-steel);
	border-left-color: var(--bcv-red);
}

.bcv-slot__day {
	font-family: var(--bcv-font-display);
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.bcv-section--dark .bcv-slot__day { color: #fff; }

.bcv-slot__time {
	font-family: var(--bcv-font-display);
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--bcv-red);
	margin: 6px 0 4px;
}

.bcv-section--dark .bcv-slot__time { color: #FF6B6B; }

.bcv-slot__group {
	font-size: 0.92rem;
	color: var(--bcv-text-muted);
}

.bcv-section--dark .bcv-slot__group { color: var(--bcv-text-inverse-muted); }

/* -------------------------------------------------------------------------
   11 SPONSOREN & PARTNER
   ------------------------------------------------------------------------- */
.bcv-sponsors {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 20px;
	align-items: stretch;
}

.bcv-sponsor {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--bcv-line);
	border-radius: var(--bcv-radius);
	padding: 26px 22px;
	min-height: 110px;
	transition: transform var(--bcv-transition), box-shadow var(--bcv-transition);
}

.bcv-sponsor:hover {
	transform: translateY(-3px);
	box-shadow: var(--bcv-shadow);
}

.bcv-sponsor img {
	max-height: 56px;
	width: auto;
	max-width: 100%;
	filter: grayscale(1);
	opacity: 0.75;
	transition: filter var(--bcv-transition), opacity var(--bcv-transition);
}

.bcv-sponsor:hover img {
	filter: grayscale(0);
	opacity: 1;
}

/* Text-Fallback, falls (noch) kein Logo hochgeladen ist */
.bcv-sponsor span {
	font-family: var(--bcv-font-display);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--bcv-text-muted);
	text-align: center;
	font-size: 0.95rem;
}

/* -------------------------------------------------------------------------
   12 BLOG / NEWS-ARCHIV & EINZELBEITRÄGE (natives GP-Markup)
   ------------------------------------------------------------------------- */

/* Archiv als Karten-Raster */
.blog .site-main,
.archive .site-main,
.search-results .site-main {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}

.blog .site-main > *:not(article),
.archive .site-main > *:not(article),
.search-results .site-main > *:not(article) {
	grid-column: 1 / -1;
}

.blog article.post,
.archive article.post,
.search-results article {
	background: #fff;
	border: 1px solid var(--bcv-line);
	border-top: 3px solid transparent;
	border-radius: var(--bcv-radius);
	margin: 0;
	transition: transform var(--bcv-transition), box-shadow var(--bcv-transition), border-color var(--bcv-transition);
}

.blog article.post:hover,
.archive article.post:hover {
	transform: translateY(-4px);
	box-shadow: var(--bcv-shadow);
	border-top-color: var(--bcv-red);
}

.separate-containers .inside-article {
	padding: 28px;
}

.blog .entry-title,
.archive .entry-title,
.search-results .entry-title {
	font-size: 1.3rem;
	margin-bottom: 10px;
}

.blog .entry-title a,
.archive .entry-title a {
	color: var(--bcv-text);
}

.blog .entry-title a:hover,
.archive .entry-title a:hover {
	color: var(--bcv-red);
}

.entry-meta {
	font-family: var(--bcv-font-display);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bcv-red);
}

.entry-meta a { color: inherit; }

/* "Weiterlesen"-Link */
.read-more,
a.read-more {
	font-family: var(--bcv-font-display);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Beitragsbilder */
.post-image { margin: 0; }
.post-image img { width: 100%; height: auto; display: block; }

/* Pagination */
.paging-navigation {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 20px;
}

.paging-navigation .page-numbers {
	font-family: var(--bcv-font-display);
	font-weight: 600;
	padding: 10px 16px;
	border: 1px solid var(--bcv-line);
	border-radius: var(--bcv-radius);
	color: var(--bcv-text);
}

.paging-navigation .page-numbers.current,
.paging-navigation .page-numbers:hover {
	background: var(--bcv-red);
	border-color: var(--bcv-red);
	color: #fff;
}

/* Einzelbeitrag: Inhalt auf Lesebreite – zentriert (margin:auto), sonst
   verschieben sich linksbündige Inhalte und die Full-Bleed-Sektionen
   (.bcv-full) rechnen ihren Ausbruch falsch und ziehen nach links. */
.single .entry-content,
.page .entry-content {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

/* Inhalte zentriert auf Seiten ohne eigene Sektionen */
.single .inside-article,
.page:not(.bcv-fullwidth-page) .inside-article {
	margin-left: auto;
	margin-right: auto;
}

/* Beitrags-Navigation (vorheriger/nächster) */
.post-navigation {
	border-top: 1px solid var(--bcv-line);
	padding-top: 24px;
	margin-top: 40px;
}

/* -------------------------------------------------------------------------
   13 FOOTER
   ------------------------------------------------------------------------- */
.bcv-footer {
	background: var(--bcv-black);
	color: var(--bcv-text-inverse-muted);
	border-top: 4px solid var(--bcv-red);
	padding: clamp(48px, 7vw, 80px) 0 0;
	font-size: 0.95rem;
}

.bcv-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: clamp(28px, 4vw, 56px);
	padding-bottom: 48px;
}

@media (max-width: 980px) {
	.bcv-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
	.bcv-footer__grid { grid-template-columns: 1fr; }
}

.bcv-footer h3 {
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.1em;
	margin-bottom: 18px;
}

.bcv-footer__brand {
	font-family: var(--bcv-font-display);
	font-weight: 700;
	font-size: 1.4rem;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 14px;
}

.bcv-footer__brand em {
	font-style: normal;
	color: var(--bcv-red);
}

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

.bcv-footer ul li {
	margin-bottom: 9px;
}

.bcv-footer a {
	color: var(--bcv-text-inverse-muted);
}

.bcv-footer a:hover {
	color: #fff;
}

.bcv-footer address {
	font-style: normal;
	line-height: 1.8;
}

/* Untere Leiste (Copyright) */
.bcv-footer__bottom {
	border-top: 1px solid var(--bcv-steel);
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	align-items: center;
	justify-content: space-between;
	font-size: 0.85rem;
}

.bcv-footer__bottom a { color: var(--bcv-text-inverse-muted); }
.bcv-footer__bottom a:hover { color: #fff; }

/* GP-eigene Footer-Leiste ausblenden – ersetzt durch .bcv-footer */
.site-footer .site-info { display: none; }

/* -------------------------------------------------------------------------
   14 RESPONSIVE & FEINSCHLIFF
   ------------------------------------------------------------------------- */

/* GP-Außenabstände harmonisieren */
.separate-containers .site-main {
	margin: clamp(32px, 5vw, 56px) 0;
}

.separate-containers .inside-article,
.one-container .inside-article {
	background: transparent;
}

/* Startseite: Inhalt beginnt bündig unter dem Header und endet bündig am
   Footer. .separate-containers sitzt auf dem <body> selbst – daher
   body.home (nicht als Nachfahre) verwenden, sonst greift die Regel nicht
   und es bleibt ein 28px-Padding (weißer Abstand) ober-/unterhalb. */
.home.page .site-main,
.bcv-flush .site-main {
	margin-top: 0;
	margin-bottom: 0;
}

body.home .inside-article,
.bcv-flush .inside-article {
	padding-top: 0;
	padding-bottom: 0;
}

/* Suchfeld */
input[type='search'],
input[type='text'],
input[type='email'],
textarea {
	border: 1px solid var(--bcv-line);
	border-radius: var(--bcv-radius);
	padding: 12px 14px;
	font-family: var(--bcv-font-body);
}

input:focus,
textarea:focus {
	border-color: var(--bcv-red);
	outline: none;
	box-shadow: 0 0 0 3px rgba(199, 26, 26, 0.15);
}

/* Zurück-nach-oben (GP-Option) */
.generate-back-to-top {
	background: var(--bcv-red);
	border-radius: var(--bcv-radius);
}

.generate-back-to-top:hover {
	background: var(--bcv-red-dark);
}

/* Bewegung reduzieren, wenn gewünscht */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* Native Gutenberg-Tabellen auf schmalen Screens horizontal scrollbar machen */
.entry-content .wp-block-table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Kicker auch auf generisch dunklen Flächen (Inline --bcv-black) aufhellen –
   sichert den Kontrast über die .bcv-section--dark-Regel hinaus ab */
[style*='--bcv-black'] .bcv-kicker {
	color: #FF6B6B;
}

/* Sehr schmale Smartphones: Raster einspaltig, damit nichts überläuft
   (die minmax-Untergrenzen von 230–300px wären sonst breiter als der Viewport) */
@media (max-width: 480px) {
	.bcv-cards,
	.bcv-fighter-grid,
	.bcv-person-grid,
	.bcv-schedule,
	.blog .site-main,
	.archive .site-main,
	.search-results .site-main {
		grid-template-columns: 1fr;
	}

	.bcv-sponsors {
		grid-template-columns: 1fr 1fr;
	}
}

/* Mobil-Feinschliff: Hero kompakter, Schrift sicher umbruchfrei,
   Buttons volle Breite (bessere Touch-Ziele) */
@media (max-width: 600px) {
	.bcv-hero {
		min-height: 520px;
	}

	.bcv-hero h1 {
		font-size: clamp(2rem, 8.5vw, 2.7rem);
	}

	.bcv-hero__text {
		font-size: 1rem;
	}

	.bcv-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.bcv-hero__actions .bcv-btn {
		text-align: center;
	}

	.bcv-section__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.bcv-page-header h1 {
		font-size: clamp(1.8rem, 8vw, 2.4rem);
	}
}

/* Druckansicht: Navigation/Hero ausblenden */
@media print {
	#masthead,
	.bcv-footer,
	.bcv-hero__actions { display: none; }
}
