/*
Theme Name: Fussballfantipp
Theme URI: https://fussballfantipp.de
Description: Fanzine-Magazin für Fußball-Tipps & Statistik — von Fans für Fans. Bundesliga & 2. Bundesliga.
Author: Fussballfantipp Redaktion
Version: 1.0.0
Requires at least: 6.8
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: fussballfantipp
*/

/* ============================================================
   Fonts — self-hosted, no CDN
   ============================================================ */
@font-face {
	font-family: 'League Gothic';
	src: url('assets/fonts/league-gothic-400.woff2') format('woff2');
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Asap';
	src: url('assets/fonts/asap-400.woff2') format('woff2');
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Asap';
	src: url('assets/fonts/asap-400-italic.woff2') format('woff2');
	font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
	font-family: 'Asap';
	src: url('assets/fonts/asap-700.woff2') format('woff2');
	font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Asap';
	src: url('assets/fonts/asap-700-italic.woff2') format('woff2');
	font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
	font-family: 'Asap';
	src: url('assets/fonts/asap-900.woff2') format('woff2');
	font-weight: 900; font-style: normal; font-display: swap;
}

/* ============================================================
   Tokens
   ============================================================ */
:root {
	--claret: #721c24;
	--cream:  #f4f1ea;
	--spot:   #ffcc00;
	--ink:    #1a1a1a;
	--wrap:   1180px;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: 'Asap', system-ui, sans-serif;
	background-color: var(--cream);
	color: var(--ink);
	line-height: 1.5;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.fft-display {
	font-family: 'League Gothic', 'Asap', sans-serif;
	letter-spacing: 0.04em;
	font-weight: 400;
	line-height: 0.92;
	text-transform: uppercase;
}

.fft-wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 1.5rem; }
.fft-skip-link { position: absolute; left: -9999px; }
.fft-skip-link:focus { left: 1rem; top: 1rem; z-index: 999; background: var(--spot); color: #000; padding: .5rem 1rem; }

/* Faint dotted fanzine texture behind everything */
.fft-page { position: relative; min-height: 100vh; display: flex; flex-direction: column; }
.fft-page::before {
	content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
	background-image: radial-gradient(var(--ink) 0.5px, transparent 0.5px);
	background-size: 10px 10px; opacity: 0.05;
}
.fft-page > * { position: relative; z-index: 1; }

/* ============================================================
   Header
   ============================================================ */
.fft-header {
	background: var(--claret);
	border-bottom: 4px solid #000;
	color: var(--cream);
	padding: 1.4rem 0;
}
.fft-header__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; }
.fft-brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; }
.fft-logo-mark { display: block; flex: none; }
.fft-brand__word { font-size: clamp(2.4rem, 5vw, 3.4rem); display: inline-flex; align-items: center; gap: .35rem; }
.fft-brand__badge { background: var(--spot); color: #000; padding: 0 .35rem; transform: rotate(-2deg); display: inline-block; }

.fft-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; }
.fft-nav a {
	text-transform: uppercase; font-weight: 900; font-style: italic;
	font-size: .82rem; letter-spacing: -0.02em; text-decoration: none;
	color: var(--cream); transition: color .15s;
}
.fft-nav a:hover, .fft-nav .current-menu-item > a { color: var(--spot); }
.fft-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; }

/* ============================================================
   Shared decorative pieces
   ============================================================ */
.fft-cut { border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.fft-tilt-r { transform: rotate(1deg); }
.fft-tilt-l { transform: rotate(-1deg); }

.fft-section { padding: 3rem 0; }
.fft-section--ink  { background: #000; color: var(--cream); }
.fft-section--cream{ background: var(--cream); }
.fft-section--spot { background: var(--spot); border-top: 4px solid #000; border-bottom: 4px solid #000; position: relative; overflow: hidden; }

.fft-rule { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.fft-rule h1, .fft-rule h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 3rem); }
.fft-rule__bar { flex: 1; height: 4px; background: #000; }

/* Ticket hero */
.fft-ticket {
	border: 3px solid var(--ink); background: var(--claret); color: var(--cream);
	padding: clamp(1.8rem, 4vw, 3rem); display: flex; flex-wrap: wrap; gap: 2.5rem;
	align-items: center; position: relative;
}
.fft-ticket::before, .fft-ticket::after {
	content: ''; position: absolute; width: 30px; height: 30px; top: 50%;
	transform: translateY(-50%); background: var(--cream); border: 3px solid var(--ink); border-radius: 50%;
}
.fft-ticket::before { left: -18px; }
.fft-ticket::after  { right: -18px; }
.fft-ticket__body { flex: 1 1 320px; }
.fft-kicker { background: var(--spot); color: #000; display: inline-block; padding: .15rem .8rem; font-size: 1.3rem; transform: rotate(-1deg); }
.fft-ticket h1, .fft-ticket h2 { font-size: clamp(3rem, 9vw, 6rem); font-style: italic; margin: 1rem 0; }

/* Cornerstone hero image (featured image) — fanzine framed banner crop */
.fft-hero-img { margin: 0 0 1.8rem; border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); background: var(--cream); }
.fft-hero-img img { display: block; width: 100%; height: clamp(220px, 32vw, 360px); object-fit: cover; }

/* Homepage Fan-Ratgeber card thumbnail */
.fft-card__img { margin: 0 0 .9rem; border-bottom: 3px solid var(--ink); overflow: hidden; }
.fft-card__img img { display: block; width: 100%; height: 170px; object-fit: cover; }

/* Masthead — page H1 (main keyword), above the WM story ticket */
.fft-masthead { margin-bottom: 2.2rem; border-bottom: 4px solid var(--ink); padding-bottom: 1.3rem; }
.fft-masthead h1 { font-size: clamp(2.6rem, 7.5vw, 5rem); font-style: italic; line-height: .92; margin: 0; }
.fft-masthead h1 .fft-hi { color: var(--claret); white-space: nowrap; }
.fft-masthead p { font-size: 1.05rem; font-weight: 700; max-width: 62ch; margin: .9rem 0 0; }
.fft-meta { display: flex; flex-wrap: wrap; gap: 2rem; border-block: 2px solid rgba(244,241,234,.3); padding: 1rem 0; margin-bottom: 1.2rem; }
.fft-meta dt { font-size: .7rem; text-transform: uppercase; font-weight: 700; opacity: .7; margin: 0; }
.fft-meta dd { margin: .1rem 0 0; font-size: 1.9rem; }
.fft-meta dd.fft-hi { color: var(--spot); }
.fft-lead { font-size: 1.1rem; font-weight: 700; max-width: 40ch; }
.fft-btn {
	display: inline-block; background: var(--cream); color: #000; padding: .7rem 1.8rem;
	font-size: 1.4rem; text-decoration: none; transition: background .15s;
}
.fft-btn:hover { background: var(--spot); }
.fft-prognose { flex: 0 1 340px; background: var(--cream); color: #000; padding: 1.6rem; }
.fft-prognose__inner { border: 4px solid #000; padding: 1rem; text-align: center; }
.fft-prognose__score { font-size: clamp(4rem, 12vw, 7rem); line-height: .9; }
.fft-prognose hr { border: none; height: 4px; background: #000; margin: .8rem 0; }

/* Spieltag grid */
.fft-fixtures { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); border: 2px solid #000; }
.fft-fixture { display: block; text-decoration: none; color: inherit; padding: 1.4rem; border-right: 2px solid #000; border-bottom: 2px solid #000; transition: background .15s, color .15s; }
.fft-fixture:hover { background: var(--claret); color: var(--cream); }
.fft-fixture__time { font-size: .7rem; font-weight: 900; }
.fft-fixture h3 { font-family: 'League Gothic','Asap',sans-serif; text-transform: uppercase; font-size: 1.7rem; margin: .2rem 0 .6rem; }
.fft-fixture p { font-size: .88rem; font-weight: 500; margin: 0 0 .9rem; }
.fft-fixture__tip { font-family: 'League Gothic','Asap',sans-serif; font-size: 1.2rem; text-transform: uppercase; color: var(--claret); }
.fft-fixture:hover .fft-fixture__tip { color: var(--spot); }

/* Stat panels */
.fft-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.fft-panel { border: 4px solid #000; padding: 1.5rem; position: relative; background: #fff; }
.fft-panel__tag { position: absolute; top: -1.1rem; left: 1.2rem; padding: 0 .8rem; font-family: 'League Gothic','Asap',sans-serif; font-size: 1.6rem; text-transform: uppercase; }
.fft-panel__tag--claret { background: var(--claret); color: var(--cream); }
.fft-panel__tag--spot   { background: var(--spot); color: #000; }
.fft-table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-weight: 900; text-transform: uppercase; font-size: .9rem; }
.fft-table thead th { border-bottom: 4px solid #000; padding: .5rem 0; text-align: left; }
.fft-table td { padding: .65rem 0; border-bottom: 2px solid rgba(0,0,0,.1); }
.fft-form { display: flex; gap: .25rem; justify-content: flex-end; }
.fft-pip { width: 12px; height: 12px; border: 1px solid #000; }
.fft-pip--w { background: #000; }
.fft-pip--d { background: transparent; }
.fft-pip--hot { background: var(--spot); }
.fft-baro { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 2px solid #000; padding-bottom: 1rem; margin-top: 1rem; }
.fft-baro h4 { font-family: 'League Gothic','Asap',sans-serif; font-size: 2rem; text-transform: uppercase; margin: .1rem 0; }
.fft-baro__pct { font-family: 'League Gothic','Asap',sans-serif; font-size: 3rem; line-height: .9; }
.fft-baro small { font-size: .7rem; text-transform: uppercase; opacity: .7; }

/* Ratgeber cards */
.fft-ratgeber-head { text-align: center; margin-bottom: 2.5rem; }
.fft-ratgeber-head h2 { font-size: clamp(2.6rem, 7vw, 4.5rem); font-style: italic; text-decoration: underline; text-decoration-color: var(--spot); text-underline-offset: .12em; margin: 0 0 .6rem; }
.fft-ratgeber-head p { font-weight: 700; font-style: italic; }
.fft-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.fft-card { display: block; border: 2px solid var(--cream); padding: 2rem; text-decoration: none; color: var(--cream); transition: background .15s, color .15s; }
.fft-card:hover { background: var(--spot); color: #000; }
.fft-card h3 { font-family: 'League Gothic','Asap',sans-serif; font-size: 2rem; text-transform: uppercase; margin: 0 0 .8rem; }
.fft-card p { font-size: .82rem; text-transform: uppercase; font-weight: 700; opacity: .8; margin: 0 0 1.2rem; }
.fft-card__more { font-family: 'League Gothic','Asap',sans-serif; font-size: 1.2rem; text-transform: uppercase; }

/* Lexikon band */
.fft-lex-ghost { position: absolute; right: -3rem; top: -1rem; font-family: 'League Gothic','Asap',sans-serif; font-size: 13rem; opacity: .1; font-style: italic; user-select: none; pointer-events: none; }
.fft-lex { display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: center; justify-content: space-between; }
.fft-lex__copy { max-width: 40rem; }
.fft-lex h2 { font-size: clamp(3rem, 8vw, 5rem); font-style: italic; line-height: .95; margin: 0 0 1rem; }
.fft-lex p { font-size: 1.3rem; font-weight: 900; font-style: italic; letter-spacing: -.02em; margin: 0 0 1.4rem; }
.fft-chips { display: flex; flex-wrap: wrap; gap: .8rem; }
.fft-chip { border: 2px solid #000; padding: .3rem .9rem; font-family: 'League Gothic','Asap',sans-serif; font-size: 1.1rem; text-transform: uppercase; }
.fft-lex__cta { background: #000; color: var(--spot); padding: 1rem 2.2rem; font-family: 'League Gothic','Asap',sans-serif; font-size: 1.8rem; text-transform: uppercase; text-decoration: none; border: 4px solid #000; box-shadow: 8px 8px 0 rgba(0,0,0,.2); transition: transform .15s; }
.fft-lex__cta:hover { transform: scale(1.04); }

/* ============================================================
   18+ disclaimer bar — site-specific callout
   ============================================================ */
.fft-disclaimer {
	background: var(--spot); color: #000; border-block: 4px solid #000;
	padding: .7rem 0; font-weight: 900; text-transform: uppercase; font-style: italic;
	letter-spacing: .08em; font-size: .72rem;
}
.fft-disclaimer__inner { display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap; text-align: center; }
.fft-disclaimer svg { flex: none; }
.fft-disclaimer a { color: #000; text-underline-offset: 2px; }

/* ============================================================
   Footer
   ============================================================ */
.fft-footer { background: var(--cream); padding: 3.5rem 0 2.5rem; border-top: 2px solid rgba(0,0,0,.1); }
.fft-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.fft-footer__word { font-family: 'League Gothic','Asap',sans-serif; font-size: 3rem; font-style: italic; }
.fft-footer__brand p { font-weight: 900; text-transform: uppercase; font-size: .82rem; line-height: 1.35; max-width: 38ch; }
.fft-footer h5 { font-family: 'League Gothic','Asap',sans-serif; font-size: 1.5rem; text-transform: uppercase; border-bottom: 2px solid #000; padding-bottom: .3rem; margin: 0 0 1rem; }
.fft-footer ul { list-style: none; margin: 0; padding: 0; }
.fft-footer li { font-weight: 900; text-transform: uppercase; font-style: italic; font-size: .85rem; margin-bottom: .5rem; }
.fft-footer li a { text-decoration: none; }
.fft-footer li a:hover { color: var(--claret); }
.fft-social { display: flex; gap: .8rem; }
.fft-social a { width: 46px; height: 46px; border: 2px solid #000; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: background .15s, color .15s; }
.fft-social a:hover { background: #000; color: var(--cream); }
.fft-footer__base { padding-top: 1.5rem; border-top: 2px solid #000; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-weight: 900; text-transform: uppercase; font-style: italic; font-size: .72rem; letter-spacing: .08em; }

/* ============================================================
   Article / page typography (single + page templates)
   ============================================================ */
.fft-article { padding: 3rem 0; }
.fft-article__head { max-width: 50rem; margin: 0 auto 2rem; }
.fft-article__head h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-style: italic; margin: 0 0 .6rem; }
.fft-article__meta { font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; opacity: .65; }
.fft-prose { max-width: 50rem; margin-inline: auto; font-size: 1.08rem; }
.fft-prose h2 { font-family: 'League Gothic','Asap',sans-serif; font-size: clamp(1.9rem, 4vw, 2.6rem); text-transform: uppercase; margin: 2.2rem 0 .8rem; }
.fft-prose h3 { font-size: 1.4rem; font-weight: 900; margin: 1.6rem 0 .6rem; }
.fft-prose p { margin: 0 0 1.1rem; }
.fft-prose a { color: var(--claret); text-underline-offset: 2px; }
.fft-prose ul, .fft-prose ol { margin: 0 0 1.1rem; padding-left: 1.3rem; }
.fft-prose li { margin-bottom: .4rem; }
.fft-prose img { border: 2px solid var(--ink); margin: 1.4rem 0; }
.fft-prose blockquote { border-left: 5px solid var(--spot); margin: 1.4rem 0; padding: .4rem 0 .4rem 1.2rem; font-style: italic; font-weight: 700; }
.fft-prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; }
.fft-prose th, .fft-prose td { border: 2px solid var(--ink); padding: .5rem .7rem; text-align: left; }
.fft-prose th { background: var(--claret); color: var(--cream); text-transform: uppercase; }

/* FAQ accordion */
.fft-faq { max-width: 50rem; margin: 2rem auto 0; }
.fft-faq details { border: 2px solid var(--ink); margin-bottom: .8rem; background: #fff; }
.fft-faq summary { cursor: pointer; padding: 1rem 1.2rem; font-weight: 900; text-transform: uppercase; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.fft-faq summary::-webkit-details-marker { display: none; }
.fft-faq summary::after { content: '+'; font-family: 'League Gothic','Asap',sans-serif; font-size: 1.6rem; line-height: 1; }
.fft-faq details[open] summary::after { content: '–'; }
.fft-faq details[open] summary { background: var(--spot); }
.fft-faq__body { padding: 0 1.2rem 1.1rem; }

/* In-article FAQ accordion (content-embedded <details>) — claret, clickable boxes */
.fft-prose details {
	border: 2px solid var(--ink);
	border-radius: 4px;
	background: #fff;
	margin: 0 0 .85rem;
	overflow: hidden;
}
.fft-prose details + h2 { margin-top: 2.4rem; }
.fft-prose summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: .9rem 1.15rem;
	font-weight: 800;
	font-size: 1.05rem;
	line-height: 1.3;
	color: var(--claret);
	background: rgba(114, 28, 36, .07);
	transition: background .15s ease, color .15s ease;
}
.fft-prose summary::-webkit-details-marker { display: none; }
.fft-prose summary::after {
	content: '+';
	flex: none;
	font-family: 'League Gothic', 'Asap', sans-serif;
	font-size: 1.7rem;
	line-height: 1;
	color: var(--claret);
	transition: color .15s ease;
}
.fft-prose summary:hover { background: rgba(114, 28, 36, .14); }
.fft-prose details[open] summary {
	background: var(--claret);
	color: var(--cream);
}
.fft-prose details[open] summary::after { content: '\2013'; color: var(--cream); }
.fft-prose details > p {
	margin: 0;
	padding: 1rem 1.15rem 1.1rem;
	line-height: 1.6;
}

/* ---- Stadion-Preis-Leistungs-Index components (own treatments, no stock-callout idiom) ---- */
/* Key-fact strip: claret slab with spot-yellow ticker rule + dl grid (not a tinted Tipp-box) */
.fft-prose .fft-keyfact {
	background: var(--claret);
	color: var(--cream);
	border: 0;
	border-top: 6px solid var(--spot);
	padding: 1.5rem 1.6rem 1.3rem;
	margin: 2rem 0;
}
.fft-prose .fft-keyfact h2 { color: var(--cream); margin: 0 0 1rem; }
.fft-keyfact__grid { display: grid; gap: 1rem 1.6rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin: 0; }
.fft-keyfact__grid div { border-left: 3px solid var(--spot); padding-left: .8rem; }
.fft-keyfact__grid dt { font-size: .82rem; text-transform: uppercase; letter-spacing: .03em; opacity: .82; }
.fft-keyfact__grid dd { margin: .15rem 0 0; font-size: 1.05rem; line-height: 1.4; }
.fft-keyfact__grid dd strong { color: var(--spot); }

/* Data tables: full table on desktop; on phones each row reflows into a stacked
   card (labels via data-label) so everything is visible at a glance — no scroll. */
.fft-prose .fft-tablewrap { margin: 1.4rem 0; }
.fft-prose .fft-tablewrap table { margin: 0; }

/* Slim headline ranking: 4 short columns that wrap, never scroll, fit any screen */
.fft-prose table.fft-rank td, .fft-prose table.fft-rank th { padding: .4rem .6rem; }
.fft-prose table.fft-rank td:nth-child(1), .fft-prose table.fft-rank th:nth-child(1) { width: 3.2rem; text-align: center; }
.fft-prose table.fft-rank td:nth-child(3), .fft-prose table.fft-rank th:nth-child(3) { width: 4rem; text-align: center; }
.fft-prose table.fft-rank td:nth-child(4), .fft-prose table.fft-rank th:nth-child(4) { width: 6rem; text-align: right; white-space: nowrap; }

/* Full detail table: headers may wrap; scroll only if it genuinely overflows (it sits behind a toggle) */
.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) th { white-space: normal; }

/* Full detail table → on phones each row reflows into a stacked card (no scroll) */
@media (max-width: 640px) {
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) thead { position: absolute; left: -9999px; }
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) table,
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) tbody,
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) tr,
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) td { display: block; width: 100%; }
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) tr { border: 2px solid var(--ink); margin-bottom: 1rem; background: #fff; }
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) td { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; border: 0; border-bottom: 1px solid #e2ded3; text-align: right; padding: .5rem .8rem; }
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) td:last-child { border-bottom: 0; }
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) td::before { content: attr(data-label); font-weight: 700; text-transform: uppercase; font-size: .72rem; letter-spacing: .03em; color: var(--claret); text-align: left; }
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) td[data-label="Verein"] { background: var(--claret); color: var(--cream); }
	.fft-prose .fft-tablewrap:not(.fft-tablewrap--slim) td[data-label="Verein"]::before { color: var(--cream); opacity: .8; }
	.fft-prose table.fft-rank td, .fft-prose table.fft-rank th { padding: .4rem .45rem; font-size: .92rem; }
}

/* Full-data toggle — secondary outline button (distinct from the claret embed button) */
.fft-prose details.fft-fulltable { border: 0; margin: 1rem 0 1.6rem; }
.fft-prose details.fft-fulltable > summary { background: #fff; color: var(--claret); border: 2px solid var(--claret); border-radius: 4px; font-size: 1rem; font-weight: 800; padding: .75rem 1.1rem; }
.fft-prose details.fft-fulltable > summary:hover { background: rgba(114,28,36,.06); }
.fft-prose details.fft-fulltable > summary::after { content: '+'; color: var(--claret); }
.fft-prose details.fft-fulltable[open] > summary::after { content: '\2013'; }
.fft-fulltable__body { padding-top: .4rem; }
.fft-fulltable__body p { font-size: .92rem; }

/* Chart figure */
.fft-prose .fft-chart { margin: 1.8rem 0; padding: 1rem; background: var(--cream); border: 2px solid var(--ink); }
.fft-prose .fft-chart figcaption { font-size: .85rem; color: #555; margin-top: .6rem; line-height: 1.45; }

/* gpt-image-2 storytelling infographic — framed fanzine figure */
.fft-prose .fft-infographic { margin: 1.8rem 0; }
.fft-prose .fft-infographic img { width: 100%; height: auto; border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--claret); display: block; }
.fft-prose .fft-infographic figcaption { font-size: .85rem; color: #555; margin-top: .9rem; line-height: 1.45; }

/* Methodology block: bordered ledger, ink heading rule — distinct from the FAQ/keyfact look */
.fft-prose .fft-method { border: 2px solid var(--ink); background: #fff; padding: 1.4rem 1.6rem; margin: 2rem 0; }
.fft-prose .fft-method h2 { margin-top: 0; border-bottom: 3px solid var(--spot); padding-bottom: .4rem; display: inline-block; }
.fft-method__src { font-size: .88rem; color: #444; margin-bottom: 0; }

/* Embed: collapsed behind a prominent claret button; code only on demand */
.fft-prose details.fft-embed { border: 0; background: transparent; max-width: 30rem; }
.fft-prose details.fft-embed > summary {
	background: var(--claret); color: var(--cream);
	border-radius: 4px; font-size: 1.05rem; font-weight: 800;
	padding: .85rem 1.2rem;
}
.fft-prose details.fft-embed > summary:hover { background: #5e161d; }
.fft-prose details.fft-embed > summary::after { content: '+'; color: var(--cream); }
.fft-prose details.fft-embed[open] > summary { border-radius: 4px 4px 0 0; }
.fft-prose details.fft-embed[open] > summary::after { content: '\2013'; }
.fft-embed__body { border: 2px solid var(--claret); border-top: 0; border-radius: 0 0 4px 4px; padding: 1rem 1.15rem 1.15rem; }
.fft-embed__body p { margin: 0 0 .6rem; font-size: .92rem; }
.fft-embed__code { width: 100%; box-sizing: border-box; font-family: 'SFMono-Regular', Menlo, Consolas, monospace; font-size: .76rem; line-height: 1.5; border: 1px solid var(--ink); padding: .6rem; background: #f3f0e8; resize: vertical; }

/* Homepage spotlight band for the Stadion-Index (data flagship) */
.fft-spotlight__inner { display: grid; grid-template-columns: minmax(0,1fr) 1.25fr; gap: 2.4rem; align-items: center; }
.fft-spotlight__media { display: block; border: 4px solid var(--ink); overflow: hidden; line-height: 0; box-shadow: 10px 10px 0 var(--spot); }
.fft-spotlight__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.fft-spotlight__media:hover img { transform: scale(1.04); }
.fft-spotlight__copy .fft-kicker { display: inline-block; background: var(--spot); color: var(--ink); padding: .15rem .6rem; font-size: .95rem; letter-spacing: .04em; }
.fft-spotlight__copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin: .5rem 0 .7rem; line-height: .95; }
.fft-spotlight__copy p { max-width: 40rem; }
.fft-spotlight__copy .fft-btn { margin-top: 1rem; }
@media (max-width: 760px) {
	.fft-spotlight__inner { grid-template-columns: 1fr; gap: 1.4rem; }
	.fft-spotlight__media { box-shadow: 6px 6px 0 var(--spot); }
}

/* Post list (index / archive) */
.fft-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; padding: 1rem 0 0; }
.fft-list__item { border: 2px solid var(--ink); background: #fff; box-shadow: 5px 5px 0 var(--ink); }
.fft-list__item img { border-bottom: 2px solid var(--ink); aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.fft-list__body { padding: 1.2rem; }
.fft-list__body h2 { font-size: 1.5rem; font-style: italic; margin: 0 0 .5rem; }
.fft-list__body h2 a { text-decoration: none; }
.fft-list__body h2 a:hover { color: var(--claret); }
.fft-list__body p { font-size: .92rem; margin: 0 0 .8rem; }
.fft-list__cat { font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; color: var(--claret); }

/* Pagination */
.fft-pagination { display: flex; gap: .6rem; justify-content: center; padding: 2.5rem 0 0; }
.fft-pagination a, .fft-pagination span { border: 2px solid var(--ink); padding: .4rem .9rem; font-weight: 900; text-decoration: none; }
.fft-pagination .current { background: var(--ink); color: var(--cream); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
	.fft-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
	.fft-lex-ghost { display: none; }
	.fft-header__inner { justify-content: center; text-align: center; }
}

/* "Im Fokus" ticket without a prognose box → body spans full width */
.fft-ticket--solo .fft-ticket__body { flex: 1 1 100%; }
