/*
Theme Name: ABD Artistique
Theme URI: https://artistique-billard.de/
Author: Artistique-Billard Deutschland e.V.
Description: Dark-Mode-WordPress-Theme für den Artistique-Billard Deutschland e.V. mit Turnieren, Spielern und passwortgeschützten Dokumenten.
Version: 1.4.6
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: abd-artistique
*/

:root {
  color-scheme: dark;
  --green: #2182aa;
  --green-dark: #0b5274;
  --red: #e5252a;
  --yellow: #f2cf3a;
  --ink: #f7fafc;
  --muted: #a9c3d0;
  --line: #24475b;
  --paper: #06131c;
  --surface: #0c1d28;
  --soft: #0b2635;
  --white: #fff;
  --shadow: 0 24px 65px rgba(0, 0, 0, .28);
  --wrap: min(1180px, calc(100% - 48px));
}

[data-theme="light"] {
  color-scheme: light;
  --green: #176f96;
  --green-dark: #0b5274;
  --red: #cf1f25;
  --yellow: #d8ad16;
  --ink: #102532;
  --muted: #587180;
  --line: #d5e3ea;
  --paper: #f9fcfd;
  --surface: #fff;
  --soft: #eaf5f9;
  --shadow: 0 24px 65px rgba(11, 82, 116, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body, .site-header, .content-card, .nav-card, .player-card, .document-card, .art-figure, .logo-card { transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
p { color: var(--muted); line-height: 1.8; }
em { color: var(--red); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.wrap { width: var(--wrap); margin-inline: auto; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }

.eyebrow { color: var(--green); display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 11px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 9px; height: 9px; border: 3px solid var(--red); border-radius: 50%; flex: 0 0 auto; }
.text-link { color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 14px 20px; border: 2px solid var(--green); border-radius: 999px; background: var(--green); color: #fff; font-size: 12px; font-weight: 850; box-shadow: 0 8px 22px rgba(33, 130, 170, .2); }
.button:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-1px); }
.button.outline { background: transparent; border-color: var(--red); color: #ff9b9b; box-shadow: none; }
.button.outline:hover { background: rgba(255, 48, 48, .08); color: var(--red); }
.button.small { padding: 11px 17px; }

.site-header { height: 98px; display: flex; align-items: center; gap: 30px; padding: 0 max(24px, calc((100vw - 1180px) / 2)); position: sticky; top: 0; z-index: 100; background: rgba(6, 19, 28, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
[data-theme="light"] .site-header { background: rgba(255, 255, 255, .95); }
.site-header::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 6%; height: 2px; background: var(--red); }
.brand { display: flex; align-items: center; gap: 13px; margin-right: auto; }
.brand img { width: 128px; height: 75px; padding: 3px; border-radius: 10px; background: #fff; object-fit: contain; }
.brand span { max-width: 76px; color: var(--muted); font-size: 9px; font-weight: 850; line-height: 1.25; letter-spacing: .15em; text-transform: uppercase; }
.main-nav, .main-nav ul { display: flex; align-items: center; gap: 18px; margin: 0; padding: 0; list-style: none; }
.main-nav a { position: relative; display: block; padding: 40px 0; color: var(--muted); font-size: 12px; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 25px; height: 2px; background: var(--red); transition: right .2s ease; }
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after, .main-nav .current-menu-item a::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--ink); font-size: 19px; cursor: pointer; }
.wp-mobile-menu { display: none; position: relative; z-index: 120; }
.wp-mobile-menu summary { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; list-style: none; }
.wp-mobile-menu summary::-webkit-details-marker { display: none; }
.wp-mobile-menu[open] summary { border-color: var(--yellow); color: var(--yellow); }
.wp-mobile-menu > div { min-width: 230px; position: absolute; right: 0; top: calc(100% + 12px); display: flex; flex-direction: column; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); box-shadow: var(--shadow); }
.wp-mobile-menu a { padding: 12px 13px; border-radius: 7px; color: var(--muted); font-size: 13px; font-weight: 700; }
.wp-mobile-menu a:hover { background: var(--soft); color: var(--ink); }

.home-hero { min-height: 790px; padding: 72px max(24px, calc((100vw - 1180px) / 2)) 78px; display: grid; grid-template-columns: .96fr 1.04fr; gap: 74px; align-items: center; overflow: hidden; position: relative; background: radial-gradient(circle at 88% 8%, rgba(229, 37, 42, .13), transparent 24%), radial-gradient(circle at 74% 62%, rgba(33, 130, 170, .22), transparent 34%), linear-gradient(135deg, var(--paper), var(--soft)); }
.home-hero::before, .home-hero::after { content: ""; position: absolute; right: -7vw; top: -34vw; width: 48vw; height: 48vw; min-width: 520px; min-height: 520px; border: 4px solid var(--green); border-left-color: transparent; border-top-color: transparent; border-radius: 0 0 52% 0; opacity: .12; pointer-events: none; }
.home-hero::after { top: calc(-34vw + 16px); right: calc(-7vw + 16px); }
.hero-copy, .brand-visual { position: relative; z-index: 2; }
.hero-copy h1, .page-hero h1 { margin: 0 0 28px; font-size: clamp(58px, 6vw, 90px); line-height: .94; letter-spacing: -.06em; font-weight: 850; }
.hero-copy > p { max-width: 650px; font-size: 18px; }
.actions { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.hero-facts { display: flex; gap: 30px; margin-top: 46px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.hero-facts b { margin-right: 5px; color: var(--red); font-size: 16px; }
.brand-visual { display: grid; gap: 20px; }
.logo-card, .art-figure { padding: 18px 21px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.logo-card { transform: rotate(1deg); }
.logo-card > span { display: block; margin: 0 0 5px 3px; color: var(--green); font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.logo-card img { display: block; width: 100%; padding: 4px; background: #fff; border-radius: 12px; }
.art-figure { transform: none; }
.figure-meta, .figure-caption { display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.figure-meta b { color: var(--red); font-size: 18px; }
.point-badge { padding: 7px 11px; border: 1px solid #7d3030; border-radius: 999px; background: #261212; color: #ff9b9b; font-weight: 800; }
[data-theme="light"] .point-badge { background: #fff0f0; color: #b50000; border-color: #ffc6c6; }
.art-table { aspect-ratio: 5 / 3; position: relative; margin: 18px 0; overflow: hidden; background: #07131b; border: 0; box-shadow: 0 16px 32px rgba(0, 0, 0, .24); }
.ball { width: 22px; height: 22px; position: absolute; z-index: 6; border-radius: 50%; box-shadow: inset -4px -5px 7px rgba(0, 0, 0, .2), 0 4px 8px rgba(0, 0, 0, .28); }
.ball.white { right: 13%; top: 7%; background: #fff; }
.ball.red { left: 12%; bottom: 8%; background: var(--red); }
.ball.yellow { left: 12%; bottom: 1%; background: var(--yellow); border: 1px solid #d3aa18; }
.limit { width: 13px; height: 13px; position: absolute; right: 24%; bottom: 23%; z-index: 4; border: 3px solid var(--red); border-radius: 50%; background: #fff; }
.figure-path { position: absolute; z-index: 3; border-color: #f7fafc; border-style: solid; }
.path-a { right: 11%; top: 10%; width: 16%; height: 72%; border-width: 0 4px 4px 0; border-radius: 0 0 100% 0; }
.path-b { left: 14%; right: 23%; bottom: 6%; height: 24%; border-width: 0 0 4px; border-radius: 0 0 65% 0; transform: skewX(-18deg); }
.cue-line { width: 60px; height: 4px; position: absolute; right: 11%; top: 1%; z-index: 5; background: var(--yellow); transform: rotate(82deg); transform-origin: right; }
.figure-caption strong { font-size: 13px; letter-spacing: 0; text-transform: none; }
.figure-caption span { color: var(--muted); font-size: 9px; }
.figure-switcher { isolation: isolate; }
.original-figure-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.figure-shuffle { display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--muted); font: 800 10px/1 inherit; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.figure-shuffle:hover, .figure-shuffle:focus-visible { border-color: var(--yellow); color: var(--yellow); outline: none; }
.figure-shuffle span { font-size: 16px; line-height: 0; }
.figure-switcher .figure-caption { min-height: 30px; }

.section { padding: 100px 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.section h2 { margin: 0; font-size: clamp(40px, 4.6vw, 66px); line-height: 1; letter-spacing: -.055em; }
.mission { position: relative; overflow: hidden; background: #081a25; border-block: 1px solid var(--line); }
[data-theme="light"] .mission { background: #fff; }
.quick-links { background: linear-gradient(180deg, var(--paper), var(--soft)); }
.card-grid { display: grid; gap: 14px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 35px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.nav-card, .content-card { min-height: 270px; padding: 26px; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); }
.card-grid.four .nav-card { border-width: 0 1px 0 0; }
.card-grid.four .nav-card:last-child { border-right: 0; }
.nav-card:hover { background: var(--soft); box-shadow: inset 0 5px 0 var(--red); }
.nav-card b { color: var(--red); font-size: 10px; }
.nav-card h3 { margin: 38px 0 12px; font-size: 27px; }
.nav-card p { font-size: 13px; line-height: 1.6; }
.nav-card > span { margin-top: auto; color: var(--green); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.latest { overflow: hidden; position: relative; background: radial-gradient(circle at 17% 50%, rgba(242, 207, 58, .12), transparent 24%), linear-gradient(135deg, #071824, #0b5274); }
.latest-grid { align-items: center; }
.latest h2 { margin-bottom: 24px; color: #fff; }
.latest p { color: #c4d7cc; }
.score-disc { aspect-ratio: 1; max-width: 430px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 4px solid var(--yellow); border-radius: 50%; background: radial-gradient(circle, #0c1d28 0 37%, #081822 38% 58%, #0c1d28 59%); box-shadow: var(--shadow); }
.score-disc span { color: #b9d3c4; font-size: 10px; letter-spacing: .18em; }
.score-disc strong { margin: 14px 0; color: var(--yellow); font: italic 82px Georgia, serif; }
.score-disc p { margin: 0; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.facebook-section { padding-top: 0; background: linear-gradient(180deg, var(--soft), var(--paper)); }
.facebook-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding: 38px 42px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(135deg, var(--surface), var(--soft)); box-shadow: var(--shadow); }
.facebook-mark { width: 78px; height: 78px; display: grid; place-items: center; border-radius: 50%; background: #1877f2; color: #fff; font: 800 54px/1 Arial, sans-serif; box-shadow: 0 0 0 9px rgba(24, 119, 242, .12); }
.facebook-card .eyebrow { margin-bottom: 10px; }
.facebook-card h2 { margin: 0 0 11px; font-size: clamp(30px, 3.4vw, 48px); }
.facebook-card p { max-width: 690px; margin: 0; }
.facebook-card .privacy-note { margin-top: 11px; color: var(--muted); font-size: 11px; }
.facebook-card > .button { white-space: nowrap; }

.page-hero { padding: 104px 0 92px; overflow: hidden; position: relative; background: radial-gradient(circle at 82% 28%, rgba(33, 130, 170, .18), transparent 28%), linear-gradient(135deg, var(--paper), var(--soft)); border-bottom: 1px solid var(--line); }
.page-hero.compact { padding-block: 78px; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { max-width: 880px; }
.page-hero p { max-width: 740px; font-size: 18px; }
.page-hero img { width: 350px; position: absolute; right: 0; top: -48px; padding: 4px; opacity: .09; border-radius: 18px; background: #fff; mix-blend-mode: screen; pointer-events: none; }
[data-theme="light"] .page-hero img { opacity: .055; mix-blend-mode: multiply; }
.entry-content { max-width: 920px; font-size: 17px; }
.entry-content h2 { margin: 2em 0 .6em; font-size: clamp(30px, 4vw, 48px); }
.entry-content h3 { margin-top: 2em; font-size: 26px; }
.entry-content a:not(.button):not(.text-link) { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 13px; }
.entry-content th, .entry-content td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.entry-content th { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

.event-entry { display: grid; grid-template-columns: 150px 1fr; gap: 0; padding: 64px 0; border-bottom: 1px solid var(--line); }
.event-year { color: var(--red); font: italic 46px Georgia, serif; }
.event-entry h2 { margin-bottom: 18px; font-size: 48px; }
.event-entry p { max-width: 820px; }
.player-grid, .document-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.player-card, .document-card { min-height: 230px; padding: 24px; display: flex; flex-direction: column; position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; }
.player-card .index, .document-card .index { color: var(--muted); font-size: 10px; }
.country, .doc-type { position: absolute; right: 22px; top: 20px; padding: 4px 7px; border-radius: 5px; background: #12384b; color: #d2edf7; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.player-card h2, .document-card h2 { margin: auto 0 8px; font-size: 26px; letter-spacing: -.04em; }
.player-card p { margin: 0; }
.rank, .doc-open { margin-top: 18px; color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.document-card.locked { border-color: #5b3333; }
.empty-state { grid-column: 1 / -1; padding: 30px; border: 1px dashed var(--line); border-radius: 14px; text-align: center; }
.document-card.locked .doc-type, .document-card.locked .doc-open { color: #ff8585; background: #2a1515; }
.document-notice { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 30px; padding: 22px 25px; border: 1px solid #5b3333; border-left: 5px solid var(--red); border-radius: 14px; background: #1d1111; }
.document-notice b { color: #ff9b9b; }
.document-notice span { max-width: 660px; color: #cbb8b8; font-size: 13px; line-height: 1.5; }
.abd-password-form { max-width: 650px; padding: 35px; background: var(--surface); border: 1px solid #5b3333; border-radius: 18px; }
.abd-password-form h2 { margin-top: 0; }
.abd-password-form div { display: flex; gap: 10px; }
.abd-password-form input { flex: 1; min-width: 0; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink); font: inherit; }
.abd-password-form button { padding: 14px 19px; border: 0; border-radius: 10px; background: var(--green); color: #fff; font-weight: 850; cursor: pointer; }
.document-gate { display: grid; grid-template-columns: auto 1fr; gap: 26px 30px; max-width: 850px; margin: 0 auto; padding: 48px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, var(--surface), #07141d); box-shadow: var(--shadow); }
.lock-disc { grid-row: 1 / 3; width: 74px; height: 74px; display: grid; place-items: center; border-radius: 50%; background: var(--green); font-size: 27px; box-shadow: 0 0 0 9px rgba(33, 130, 170, .16); }
.document-gate .eyebrow { margin-bottom: 12px; }
.document-gate h2 { margin: 0 0 8px; font-size: 39px; }
.document-gate > div > p { margin: 0; }
.document-gate form { grid-column: 2; }
.document-gate label { display: block; margin-bottom: 9px; color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.document-gate form > div { display: flex; }
.document-gate input { min-width: 0; flex: 1; padding: 15px 16px; border: 1px solid var(--line); border-right: 0; border-radius: 8px 0 0 8px; background: var(--paper); color: var(--ink); font: inherit; outline: none; }
.document-gate input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(242, 207, 58, .12); }
.document-gate button { padding: 0 20px; border: 0; border-radius: 0 8px 8px 0; background: var(--red); color: #fff; font-weight: 850; cursor: pointer; }
.form-error { margin: 10px 0 0; color: #ff9b9b; font-size: 12px; }
.protected-link { display: flex; justify-content: space-between; gap: 22px; margin: 25px 0 0; padding: 20px 22px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); font-size: 12px; }
.protected-link a { color: var(--yellow); font-weight: 800; }
.chronology-page .entry-content { max-width: 1060px; }
.chronology-lead { max-width: 800px; padding-bottom: 38px; border-bottom: 1px solid var(--line); font-size: 19px; }
.wp-chronology { position: relative; }
.wp-chronology::before { content: ""; position: absolute; left: 168px; top: 0; bottom: 0; width: 1px; background: linear-gradient(var(--yellow), var(--red), var(--green)); }
.wp-chronology section { display: grid; grid-template-columns: 168px 1fr; border-bottom: 1px solid var(--line); }
.wp-chronology section > header { padding: 52px 34px 45px 0; display: flex; flex-direction: column; gap: 8px; position: relative; }
.wp-chronology section > header::after { content: ""; position: absolute; right: -6px; top: 60px; width: 11px; height: 11px; border-radius: 50%; background: var(--paper); border: 3px solid var(--yellow); z-index: 1; }
.wp-chronology header span { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.wp-chronology header strong { color: var(--yellow); font: italic 25px Georgia, serif; }
.wp-chronology section > div { padding: 34px 0 34px 56px; }
.wp-chronology h3 { display: inline-block; min-width: 110px; margin: 20px 24px 20px 0; vertical-align: top; color: var(--ink); font-size: 13px; }
.wp-chronology h3 + p { display: inline-block; width: calc(100% - 144px); margin: 15px 0 25px; vertical-align: top; font-size: 15px; }
.chronology-sources { margin-top: 70px; padding: 42px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(135deg, var(--surface), var(--soft)); }
.chronology-sources h2 { margin-top: 0; }
.chronology-sources ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.chronology-sources li a { display: block; padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; text-decoration: none !important; }

.site-footer { padding: 60px max(24px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 45px; overflow: hidden; position: relative; background: linear-gradient(135deg, #030b10, #06131c 64%, #0b5274); color: #fff; }
.footer-brand { width: max-content; max-width: 100%; display: flex; align-items: center; gap: 15px; padding: 10px 14px; border-radius: 16px; background: #fff; color: #0b5274; }
.footer-brand img { width: 170px; height: 99px; object-fit: contain; }
.footer-brand strong { max-width: 120px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; color: #bad2c4; font-size: 12px; }
.footer-nav a:hover { color: #fff; }
.site-footer > small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, .18); color: #a4c2b1; font-size: 10px; }

@media (max-width: 1050px) {
  .main-nav { display: none; }
  .wp-mobile-menu { display: block; }
  .home-hero { grid-template-columns: 1fr; }
  .brand-visual { max-width: 700px; }
  .split { grid-template-columns: 1fr; }
  .card-grid.four { grid-template-columns: 1fr 1fr; }
  .card-grid.four .nav-card:nth-child(2) { border-right: 0; }
  .card-grid.four .nav-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .player-grid, .document-grid, .card-grid.three { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .facebook-card { grid-template-columns: auto 1fr; }
  .facebook-card > .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 680px) {
  :root { --wrap: min(100% - 32px, 1180px); }
  .site-header { height: 76px; padding-inline: 16px; gap: 9px; }
  .brand img { width: 90px; height: 52px; }
  .brand span { display: none; }
  .header-actions .button { display: none; }
  .home-hero { min-height: 0; padding: 55px 16px 65px; }
  .home-hero::before, .home-hero::after { min-width: 360px; min-height: 360px; }
  .hero-copy h1, .page-hero h1 { font-size: 47px; }
  .hero-copy > p, .page-hero p { font-size: 16px; }
  .actions { align-items: stretch; flex-direction: column; }
  .hero-facts { align-items: flex-start; flex-direction: column; gap: 12px; }
  .art-table { border-width: 14px; }
  .section { padding: 70px 0; }
  .card-grid.four, .player-grid, .document-grid, .card-grid.three { grid-template-columns: 1fr; }
  .card-grid.four .nav-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .score-disc { width: 270px; justify-self: center; }
  .score-disc strong { font-size: 58px; }
  .event-entry { grid-template-columns: 1fr; gap: 15px; padding: 45px 0; }
  .event-year { font-size: 32px; }
  .event-entry h2 { font-size: 36px; }
  .page-hero img { width: 250px; right: -100px; top: -15px; }
  .document-notice { align-items: flex-start; flex-direction: column; }
  .abd-password-form div { flex-direction: column; }
  .wp-mobile-menu summary { padding: 9px 11px; font-size: 10px; }
  .wp-mobile-menu > div { right: -50px; }
  .facebook-card { grid-template-columns: 1fr; padding: 29px 22px; }
  .facebook-mark { width: 62px; height: 62px; font-size: 43px; }
  .facebook-card > .button { grid-column: 1; justify-self: stretch; }
  .document-gate { grid-template-columns: 1fr; padding: 30px 22px; }
  .lock-disc { grid-row: auto; }
  .document-gate form { grid-column: 1 / -1; }
  .document-gate form > div { flex-direction: column; gap: 10px; }
  .document-gate input { border: 1px solid var(--line); border-radius: 8px; }
  .document-gate button { min-height: 48px; border-radius: 8px; }
  .protected-link { align-items: flex-start; flex-direction: column; }
  .wp-chronology::before { left: 0; }
  .wp-chronology section { grid-template-columns: 1fr; padding-left: 26px; }
  .wp-chronology section > header { padding: 38px 0 8px; }
  .wp-chronology section > header::after { left: -31px; right: auto; top: 45px; }
  .wp-chronology section > div { padding: 0 0 30px; }
  .wp-chronology h3, .wp-chronology h3 + p { display: block; width: auto; }
  .wp-chronology h3 { margin-bottom: 8px; }
  .chronology-sources { padding: 28px 22px; }
  .chronology-sources ul { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; padding: 45px 24px; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { width: 130px; height: 76px; }
  .site-footer > small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
