:root{--bg:#080907;--bg-soft:#11140f;--panel:#171b13;--panel-light:#24291c;--text:#f3ead7;--muted:#fff;--line:rgba(243,234,215,.13);--accent:#c79a3b;--red:#8d2e25;--blue:#315d91}*{box-sizing:border-box;margin:0;padding:0}body{font-family:Roboto,Arial,sans-serif;background:radial-gradient(circle at 18% 8%,rgba(199,154,59,.08),transparent 28%),var(--bg);color:var(--text);line-height:1.65}a{color:inherit;text-decoration:none}.container{width:min(1280px,calc(100% - 48px));margin:0 auto}.site-header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(8,9,7,.92);backdrop-filter:blur(14px)}.header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:32px}.brand{display:flex;align-items:center;gap:18px}.brand-mark{width:46px;height:46px;border:2px solid var(--accent);border-radius:4px;display:grid;place-items:center;font-family:Oswald,sans-serif;font-weight:900;color:var(--accent);background:linear-gradient(145deg,rgba(199,154,59,.16),rgba(0,0,0,.55))}.eyebrow{    padding-top: 100px;display:block;color:var(--accent);font-size:20px;font-weight:900;letter-spacing:.36em;text-transform:uppercase}.brand-title,h1,h2,h3{font-family:Oswald,sans-serif;text-transform:uppercase}.brand-title{font-size:22px;font-weight:900;letter-spacing:.12em}.nav{display:flex;gap:24px;color:#d8cfb8;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.18em}.nav a:hover{color:var(--accent)}

/* ==========================================
   HERO / TITELBILD
========================================== */

.hero{
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    min-height:clamp(560px,52vw,900px);
  
    background: url("../img/titelbild/titelbild.png") center center / cover no-repeat;

    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
}

.hero:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:180px;
    background:linear-gradient(to top,var(--bg),transparent);
}

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
    width:min(1800px,calc(100% - 80px));
    margin:0 auto;
    padding:96px 0;
}
.hero h1{font-size:clamp(56px,8vw,118px);line-height:.9;font-weight:900;letter-spacing:-.045em;margin:22px 0;text-shadow:0 16px 60px #000}.hero-lead{max-width:760px;color:#fff;font-size:21px;margin-bottom:34px}
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;border-top:1px solid #fff;border-bottom:1px solid #fff;padding:22px 0;
margin-bottom:34px}.stat-value{display:block;font-family:Oswald,sans-serif;font-size:32px;font-weight:900}
.stat-label{display:block;color:#fff;font-size:11px;font-weight:900;letter-spacing:.16em;text-transform:uppercase}.btn{display:inline-flex;min-height:54px;align-items:center;justify-content:center;padding:0 30px;background:var(--accent);color:#120f08;font-weight:900;text-transform:uppercase;letter-spacing:.13em;border-radius:3px}.btn.secondary{background:transparent;color:var(--text);border:1px solid var(--line)}
.briefing-card,.card{
	background: linear-gradient(180deg,rgba(36,41,28,.94),rgba(17,20,15,.94));
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
	margin: 20px 0;
	font-size: 2 rem;
}


.nav{
    display:flex;
    align-items:center;
    gap:22px;
}

.nav-dropdown{
    position:relative;
}

.dropdown-toggle{
    display:block;
}

.dropdown-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:260px;

    display:none;

    background:#181d22;

    border:1px solid #363d44;

    border-top:3px solid #d99a1d;

    box-shadow:0 12px 25px rgba(0,0,0,.35);

    z-index:999;

}

.dropdown-menu a{

    display:block;

    padding:12px 18px;

    color:#d9d9d9;

    text-decoration:none;

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:.2s;

}

.dropdown-menu a:last-child{
    border-bottom:none;
}

.dropdown-menu a:hover{

    background:#232a31;

    color:#fff;

    padding-left:24px;

}

.nav-dropdown:hover .dropdown-menu{

    display:block;

}


.dropdown-toggle::after{

    content:"▼";

    font-size:9px;

    margin-left:8px;

    color:#d99a1d;

}

@media (max-width: 980px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #070907;
        padding: 20px;
        flex-direction: column;
        gap: 14px;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .nav.is-open {
        display: flex;
    }
}

	
.section{padding:92px 0;}
.section-head{max-width:850px;margin-bottom:42px}
.section h2{font-size:clamp(38px,5vw,72px);line-height:1;margin:14px 0 22px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}.card h3{color: #fff;font-size:28px;margin-bottom:14px}.card p,
.section p{color:var(--muted)}.faction-card{min-height:230px}.faction-card.allies{border-left:5px solid var(--blue)}.faction-card.axis{border-left:5px solid var(--red)}.content-body figure.image{margin:24px 0}.content-body figure.image img,.content-body img{max-width:100%;height:auto;border-radius:8px}.site-footer{padding:40px 0;border-top:1px solid var(--line);color:var(--muted);background:#050604}.admin-body{background:#0b0d09}.admin-wrap{width:min(1180px,calc(100% - 40px));margin:40px auto}.admin-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.admin-panel{background:#151911;border:1px solid var(--line);border-radius:10px;padding:24px;margin-bottom:24px}.admin-table{width:100%;border-collapse:collapse}.admin-table th,.admin-table td{padding:12px;border-bottom:1px solid var(--line);text-align:left}.form-row{margin-bottom:18px}.form-row label{display:block;margin-bottom:7px;color:var(--accent);font-weight:900}.input,textarea{width:100%;padding:12px;background:#090b08;color:var(--text);border:1px solid var(--line);border-radius:6px}.login-box{width:min(460px,calc(100% - 30px));margin:100px auto}@media (max-width:850px){
    .hero-grid,
    .grid-2,
    .grid-3{
        grid-template-columns:1fr;
    }

    .hero-grid{
        width:calc(100% - 40px);
        padding:60px 0;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .nav{
        flex-wrap:wrap;
    }

    .hero{
        min-height:520px;
        background-position:center center;
    }
}

h1 { color:#fff;}

/* CKEditor backend: Mindesthöhe */
.ck-editor__editable,
.ck-content {
    min-height: 400px;
}

/* Frontend-Ausgabe von CKEditor-Bildern */
.content figure.image,
.cms-content figure.image,
.front-content figure.image,
.article-body figure.image {
    margin: 24px 0;
}
.content figure.image img,
.cms-content figure.image img,
.front-content figure.image img,
.article-body figure.image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Admin-Frontend-Bearbeitung: Stift-Icon direkt an Sektionen */
.editable-section,
.editable-section-inner {
    position: relative;
}
.edit-pencil {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 20;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(243,234,215,.28);
    background: rgba(8,9,7,.88);
    color: var(--accent);
    font-size: 19px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.edit-pencil:hover {
    background: var(--accent);
    color: #120f08;
}
.edit-pencil-card {
    top: 12px;
    right: 12px;
}
.editable-section:hover {
    outline: 1px dashed rgba(199,154,59,.45);
    outline-offset: -8px;
}

.image-rotator {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    overflow: hidden;
}

.image-rotator img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.image-rotator img.active {
    opacity: 1;
}

#event-banner {
    width: 100%;
    height: 800px;
    background-size: cover;
    background-position: center;
    transition: opacity 2s ease-in-out;
}

#handbuch-banner{
    background-image: url('../img/page/handbuch.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 600px;
}

#rekrutierung-banner{
    background-image: url('../img/rekrutierung.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 600px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.overview-card {
    background: linear-gradient(180deg, rgba(36, 41, 28, .94), rgba(17, 20, 15, .94));
    border: 1px solid rgba(120, 120, 120, 0.25);
    border-bottom: 3px solid #2f7d32;
    padding: 18px;
}

.overview-title {
    display: block;
    color: #cfcfcf;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

ul {
  list-style-type: none;
  padding-left: 10px 5px 0 0; /* Optional: Entfernt den Standard-Einzug der Liste */
  margin: 0;
  
}



/* ==========================
   Tabellen (CMS)
========================== */
/* ================================
   TABLE VERSION 1
   Militärisch: Stahl / Olivgrün
================================ */

.military-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.04), rgba(0,0,0,.35)),
        #1d2418;
    border: 1px solid #4b5338;
    border-radius: 14px;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.05),
        0 12px 28px rgba(0,0,0,.45);
}

.military-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    background: #202719;
    color: #ddd8c7;
    font-family: Arial, Helvetica, sans-serif;
    border: 1px solid #3c432d;
}

.military-table thead {
    background:
        linear-gradient(#4b5237, #303622);
    border-bottom: 2px solid #8b7a42;
}

.military-table th {
    padding: 14px 16px;
    color: #f1e7c2;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-right: 1px solid rgba(255,255,255,.08);
    white-space: nowrap;
}

.military-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #39402b;
    border-right: 1px solid rgba(255,255,255,.06);
    font-size: 14px;
    vertical-align: middle;
}

.military-table tbody tr {
    background: linear-gradient(90deg, #202719, #252c1d);
    transition: background .2s ease;
}

.military-table tbody tr:nth-child(even) {
    background: linear-gradient(90deg, #252c1d, #202719);
}

.military-table tbody tr:hover {
    background: #343f27;
}

.military-table td:first-child {
    color: #ffffff;
}

.military-table .table-img {
    width: 78px;
    height: 48px;
    object-fit: cover;
    border: 1px solid #535b3c;
    border-radius: 4px;
    background: #111;
}

.military-table .nation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.military-table .flag {
    font-size: 22px;
}

.military-table .rating {
    color: #d8b64c;
    letter-spacing: 2px;
    white-space: nowrap;
}

.military-table caption {
    caption-side: top;
    padding: 0 0 12px;
    color: #d8c17a;
    font-size: 1.35rem;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* ===========================================
   TABLE VERSION 2
   Battlefield / Call of Duty Style
=========================================== */

.bf-table-container{
    width:100%;
    overflow-x:auto;
    margin:30px 0;
    border-radius:12px;
    background:#13171d;
    border:1px solid #2f3945;
    box-shadow:
        0 15px 35px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.04);
}

.bf-table{
    width:100%;
    min-width:1000px;
    border-collapse:collapse;
    font-family:"Segoe UI",Arial,sans-serif;
    color:#d9dde2;
    background:#171c22;
}

.bf-table thead{
    background:
        linear-gradient(#2b3641,#1b2229);
}

.bf-table th{
    padding:18px;
    color:#ffffff;
    text-transform:uppercase;
    font-size:.78rem;
    letter-spacing:1.4px;
    font-weight:700;
    border-bottom:2px solid #4d6478;
    border-right:1px solid rgba(255,255,255,.05);
    white-space:nowrap;
}

.bf-table td{
    padding:16px 18px;
    border-bottom:1px solid #252d36;
    border-right:1px solid rgba(255,255,255,.04);
    vertical-align:middle;
}

.bf-table tbody tr{
    transition:.25s;
}

.bf-table tbody tr:nth-child(odd){
    background:#181d23;
}

.bf-table tbody tr:nth-child(even){
    background:#1d242c;
}

.bf-table tbody tr:hover{
    background:#24384c;
}

.bf-table tbody tr:hover td{
    color:#ffffff;
}

.bf-thumb{
    width:90px;
    height:52px;
    object-fit:cover;
    border-radius:6px;
    border:1px solid #394654;
    box-shadow:0 0 12px rgba(0,0,0,.35);
}

.bf-unit{
    font-weight:700;
    color:#ffffff;
    font-size:15px;
}

.bf-country{
    display:flex;
    align-items:center;
    gap:10px;
}

.bf-country img{
    width:22px;
    height:16px;
}

.bf-type{
    color:#9fb0c2;
}

.bf-stat{
    position:relative;
    min-width:110px;
}

.bf-stat span{
    position:relative;
    z-index:2;
    font-weight:600;
}

.bf-bar{
    position:absolute;
    left:0;
    bottom:3px;
    height:5px;
    border-radius:4px;
    background:#ffcf5b;
    opacity:.85;
}

.bf-stars{
    color:#ffc941;
    letter-spacing:2px;
    font-size:17px;
}

.bf-table caption{
    padding:18px;
    background:#101419;
    color:#ffffff;
    font-size:1.3rem;
    text-transform:uppercase;
    font-weight:700;
    text-align:left;
    letter-spacing:1px;
    border-bottom:1px solid #2d3843;
}

/* Scrollbar */

.bf-table-container::-webkit-scrollbar{
    height:10px;
}

.bf-table-container::-webkit-scrollbar-track{
    background:#161b21;
}

.bf-table-container::-webkit-scrollbar-thumb{
    background:#455261;
    border-radius:10px;
}

/* Responsive */

@media(max-width:900px){

    .bf-table{
        min-width:850px;
    }

}

.responsive-img {
  display: block;
  max-width: 100%;
  height: auto;
}

ol{
	padding-left: 20px;
}

/* =========================================================
   WWII Online CMS v14 Navigation
   Farbwirkung: dunkles CMS-v14-Militärschema, Messing-Akzent,
   Karten-/Metalloptik, Dropdownfähig, responsive.
   ========================================================= */

:root {
  --cms14-bg: #10130d;
  --cms14-bg-soft: #171c12;
  --cms14-panel: #202719;
  --cms14-panel-2: #2a3320;
  --cms14-border: #4f5a38;
  --cms14-border-soft: rgba(191, 164, 94, .28);
  --cms14-text: #e4dec0;
  --cms14-muted: #a9a178;
  --cms14-accent: #c6a45a;
  --cms14-accent-2: #8b6f35;
  --cms14-hover: #39452a;
  --cms14-danger-line: #7d2f25;
  --cms14-black: rgba(0, 0, 0, .72);
  --cms14-shadow: 0 12px 32px rgba(0, 0, 0, .48);
}

.cms14-nav-wrap,
.cms14-nav-wrap * {
  box-sizing: border-box;
}

.cms14-nav-wrap {
  position: relative;
  z-index: 9000;
  font-family: Arial, Helvetica, sans-serif;
}

.cms14-nav-bar {
  position: sticky;
  top: 0;
  z-index: 9002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 0 22px;
  color: var(--cms14-text);
  background:
    linear-gradient(90deg, rgba(125, 47, 37, .34), transparent 14%, transparent 86%, rgba(125, 47, 37, .22)),
    linear-gradient(180deg, #22291a 0%, #12160f 100%);
  border-bottom: 1px solid var(--cms14-border);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .45);
}

.cms14-nav-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cms14-accent), transparent);
  opacity: .72;
}

.cms14-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--cms14-text);
  text-decoration: none;
}

.cms14-brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  color: #15180f;
  background: radial-gradient(circle at 35% 25%, #f0d486, var(--cms14-accent) 50%, var(--cms14-accent-2));
  border: 1px solid rgba(0, 0, 0, .55);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.08), 0 2px 8px rgba(0,0,0,.45);
  clip-path: polygon(50% 0%, 61% 32%, 95% 35%, 68% 55%, 79% 90%, 50% 68%, 21% 90%, 32% 55%, 5% 35%, 39% 32%);
}

.cms14-brand-text {
  display: grid;
  line-height: 1.1;
}

.cms14-brand-text strong {
  font-size: 1.05rem;
  letter-spacing: .16em;
  color: #f4e7bd;
  text-shadow: 0 1px 0 rgba(0,0,0,.8);
  white-space: nowrap;
}

.cms14-brand-text small {
  margin-top: 4px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cms14-muted);
  white-space: nowrap;
}

.cms14-menu-toggle {
  display: none;
  width: 50px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0 11px;
  border: 1px solid var(--cms14-border-soft);
  border-radius: 3px;
  cursor: pointer;
  background: linear-gradient(180deg, #313a25, #171c12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 3px 12px rgba(0,0,0,.38);
}

.cms14-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  margin: 5px 0;
  background: var(--cms14-accent);
  border-radius: 2px;
  transition: transform .24s ease, opacity .24s ease;
}

.cms14-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.cms14-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.cms14-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.cms14-main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.cms14-nav-list,
.cms14-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cms14-nav-list {
  display: flex;
  align-items: stretch;
  gap: 4px;
}

.cms14-nav-item {
  position: relative;
}

.cms14-nav-item > a,
.cms14-dropdown-toggle {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  color: var(--cms14-text);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  font: 700 .88rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: .045em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.cms14-nav-item > a:hover,
.cms14-nav-item > a:focus,
.cms14-dropdown-toggle:hover,
.cms14-dropdown-toggle:focus,
.cms14-nav-item.is-open > .cms14-dropdown-toggle {
  color: #fff5cf;
  background: linear-gradient(180deg, rgba(198, 164, 90, .18), rgba(57, 69, 42, .48));
  border-color: var(--cms14-border-soft);
  outline: none;
}

.cms14-caret {
  color: var(--cms14-accent);
  transition: transform .22s ease;
}

.cms14-nav-item.is-open .cms14-caret {
  transform: rotate(180deg);
}

.cms14-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 245px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.035) 0 25%, transparent 25% 50%, rgba(255,255,255,.02) 50% 75%, transparent 75%),
    linear-gradient(180deg, var(--cms14-panel-2), var(--cms14-bg-soft));
  background-size: 18px 18px, auto;
  border: 1px solid var(--cms14-border);
  border-top: 2px solid var(--cms14-accent);
  box-shadow: var(--cms14-shadow);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.cms14-nav-item.is-open > .cms14-dropdown-menu,
.cms14-nav-item:hover > .cms14-dropdown-menu,
.cms14-nav-item:focus-within > .cms14-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cms14-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  color: var(--cms14-text);
  text-decoration: none;
  border: 1px solid rgba(198, 164, 90, .12);
  background: rgba(0,0,0,.18);
  font-size: .92rem;
  line-height: 1.2;
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.cms14-dropdown-menu li + li {
  margin-top: 5px;
}

.cms14-dropdown-menu a:hover,
.cms14-dropdown-menu a:focus {
  color: #fff7d8;
  background: rgba(57, 69, 42, .72);
  border-color: var(--cms14-accent);
  transform: translateX(3px);
  outline: none;
}

.cms14-login-link > a {
  color: #fff3c5;
  border-color: rgba(198, 164, 90, .30);
  background: linear-gradient(180deg, rgba(198,164,90,.18), rgba(0,0,0,.12));
}

.cms14-nav-backdrop {
  display: none;
}

body.cms14-nav-open {
  overflow: hidden;
}

@media (max-width: 1060px) {
  .cms14-menu-toggle {
    display: block;
  }

  .cms14-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: block;
    background: var(--cms14-black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
  }

  .cms14-nav-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .cms14-main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9001;
    width: min(390px, 88vw);
    height: 100vh;
    align-items: stretch;
    justify-content: flex-start;
    padding: 92px 16px 22px;
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform .28s ease;
    background:
      linear-gradient(90deg, rgba(125, 47, 37, .22), transparent 28%),
      linear-gradient(135deg, rgba(255,255,255,.035) 0 25%, transparent 25% 50%, rgba(255,255,255,.02) 50% 75%, transparent 75%),
      linear-gradient(180deg, var(--cms14-panel), var(--cms14-bg));
    background-size: auto, 18px 18px, auto;
    border-left: 2px solid var(--cms14-border);
    box-shadow: -12px 0 28px rgba(0,0,0,.55);
  }

  .cms14-main-nav.is-active {
    transform: translateX(0);
  }

  .cms14-nav-list {
    width: 100%;
    display: block;
  }

  .cms14-nav-item {
    margin: 0 0 8px;
  }

  .cms14-nav-item > a,
  .cms14-dropdown-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 0 14px;
    background: rgba(0,0,0,.20);
    border-color: rgba(198,164,90,.18);
  }

  .cms14-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 12px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    border: 0;
    border-left: 2px solid var(--cms14-accent-2);
    box-shadow: none;
    background: transparent;
    transition: max-height .26s ease, padding .26s ease, margin .26s ease;
  }

  .cms14-nav-item.is-open > .cms14-dropdown-menu {
    max-height: 520px;
    margin-top: 7px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .cms14-dropdown-menu a {
    min-height: 42px;
    background: rgba(0,0,0,.16);
  }
}

@media (max-width: 560px) {
  .cms14-nav-bar {
    min-height: 66px;
    padding: 0 14px;
  }

  .cms14-brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .cms14-brand-text strong {
    font-size: .9rem;
    letter-spacing: .11em;
  }

  .cms14-brand-text small {
    font-size: .62rem;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cms14-menu-toggle {
    width: 46px;
    height: 40px;
  }

  .cms14-main-nav {
    padding-top: 82px;
  }
}
.site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

@media (max-width: 800px) {
    .cms14-ppo-table-header {
        padding: 28px 24px;
    }

    .cms14-ppo-table {
        min-width: 1500px;
    }

    .cms14-ppo-table th,
    .cms14-ppo-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .cms14-ppo-table img {
        width: 110px;
        height: 66px;
    }
}


/* --- HAUPT-BOX --- */
.military-info-box {
    /* Farbvariablen exakt aus dem Screenshot gepickt */
    --bg-dark: #121619;
    --border-color: #2b3135;
    --accent-gold: #9d8d64;
    --text-gray: #a1a6aa;
    
    background-color: var(--bg-dark);
    border: 3px solid var(--border-color);
    border-radius: 4px;
    width: 100%; /* Nutzt die volle Breite des Eltern-DIVs */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 8px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    font-family: 'Oswald', sans-serif;
    box-sizing: border-box;
}

/* --- HEADER --- */
.mib-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #1a1e21;
    border-bottom: 2px solid var(--border-color);
    height: 48px;
}

.mib-header-title {
    display: flex;
    align-items: center;
    padding-left: 16px;
    gap: 12px;
}

.mib-header-title h2 {
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Stern-Icon links oben */
.mib-icon-star {
    color: var(--accent-gold);
    font-size: 32px !important;
    font-variation-settings: 'FILL' 0; /* Nicht ausgefüllter Stern */
}

/* Schräge Warnstreifen im Header */
.mib-header-stripes {
    width: 140px;
    background: linear-gradient(
        125deg,
        transparent 35%,
        var(--accent-gold) 35%,
        var(--accent-gold) 50%,
        transparent 50%,
        transparent 85%,
        var(--accent-gold) 85%,
        var(--accent-gold) 100%
    );
    background-size: 18px 26px;
    opacity: 0.45;
}

/* --- CONTENT --- */
.mib-body {
    display: flex;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 22px;
}

/* Großes Info-Icon links */
.mib-icon-info {
    color: var(--accent-gold);
    font-size: 54px !important;
    opacity: 0.65;
    margin-top: -2px;
    user-select: none;
}

/* Textformatierung */
.mib-text-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mib-text-content h3 {
    color: var(--accent-gold);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
}

.mib-text-content p {
    color: var(--text-gray);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Optimierung für sehr kleine Bildschirme */
@media (max-width: 480px) {
    .mib-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .mib-header-stripes {
        display: none; /* Versteckt die Streifen auf Handys für mehr Platz */
    }
}

																				[id] {
    scroll-margin-top: 80px; /* Ersetze 80px durch die tatsächliche Höhe deiner Navigation */
}	

/* ==========================================
   WQHD (2560x1440) / 32 Zoll
========================================== */

@media (min-width: 2400px) and (max-width: 3199px) {

    .hero{
        min-height: 760px;
        background-position: center center;
    }

    .hero-grid{
        width: min(1800px, calc(100% - 120px));
        padding: 110px 0;
    }

    .hero h1{
        font-size: clamp(72px, 5vw, 110px);
    }

    .hero-lead{
        max-width: 820px;
        font-size: 22px;
    }

}


/* ==========================================
   4K UHD (3840x2160)
========================================== */

@media (min-width: 3200px) {

    .hero{
        min-height: 900px;
        background-position: center center;
    }

    .hero-grid{
        width: min(2000px, calc(100% - 160px));
        padding: 120px 0;
    }

    .hero h1{
        font-size: 118px;
    }

    .hero-lead{
        max-width: 900px;
        font-size: 24px;
    }

}
				
.flugzeugbild {
    background: #90D5FF;
    padding: 20px;
}

.orange {
	display:block;
    color: orange;
    text-decoration: none;
	font-weight: Bold;
}

.orange:hover {
    color: yellow;
    text-decoration: underline;
}


.warning{margin-top:16px;padding:12px 14px;border-left:4px solid #ff0000;background:rgba(154,81,72,.12);color:#f0d1cb}



.pt-lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    z-index:99999;

    justify-content:center;
    align-items:center;
    flex-direction:column;

    padding:30px;
}

.pt-lightbox.active{
    display:flex;
}

.pt-lightbox img{

    max-width:90vw;
    max-height:85vh;

    border-radius:10px;

    box-shadow:0 25px 60px rgba(0,0,0,.6);

    background:#222;
}

.pt-lightbox-close{

    position:absolute;

    top:20px;
    right:30px;

    font-size:46px;

    color:#fff;

    cursor:pointer;

    user-select:none;
}

#ptLightboxCaption{

    margin-top:18px;

    color:#ddd;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:.08em;
}

.pt-lightbox-image{
    cursor:zoom-in;
}



.rdp-article {
  background: #11140f;
  color: #e8e0c8;
  padding: 32px;
  border: 1px solid #5a4a24;
  border-radius: 14px;
  font-family: Arial, sans-serif;
  line-height: 1.65;
}

.rdp-article h2,
.rdp-article h3 {
  color: #d6a832;
  margin-top: 0;
}

.rdp-article h2 {
  font-size: 2rem;
  border-bottom: 2px solid #d6a832;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.rdp-article h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.rdp-article p {
  margin: 0 0 18px;
}

.rdp-article strong {
  color: #ffffff;
}

.rdp-article hr {
  border: 0;
  border-top: 1px solid #5a4a24;
  margin: 32px 0;
}

.rdp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.rdp-card {
  background: #1a1f17;
  border: 1px solid #4c4327;
  border-left: 5px solid #d6a832;
  padding: 18px;
  border-radius: 10px;
}

.rdp-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.rdp-card p {
  margin-bottom: 0;
}

.rdp-warning,
.rdp-info-box {
  padding: 16px;
  border-radius: 10px;
  margin: 22px 0;
}

.rdp-warning {
  background: #26210f;
  border: 1px solid #d6a832;
  color: #fff2c2;
}

.rdp-info-box {
  background: #171b14;
  border-left: 5px solid #d6a832;
  border-top: 1px solid #4c4327;
  border-right: 1px solid #4c4327;
  border-bottom: 1px solid #4c4327;
}

.rdp-steps {
  counter-reset: step;
  padding-left: 0;
  list-style: none;
}

.rdp-steps li {
  counter-increment: step;
  background: #181c15;
  margin-bottom: 12px;
  padding: 14px 14px 14px 54px;
  border-radius: 8px;
  position: relative;
  border: 1px solid #3b3520;
}

.rdp-steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  background: #d6a832;
  color: #111;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
}

.rdp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.rdp-table th,
.rdp-table td {
  border: 1px solid #4c4327;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.rdp-table th {
  background: #2a250f;
  color: #d6a832;
}

.rdp-table td {
  background: #171b14;
}

.rdp-flow {
  background: #0d0f0b;
  border: 1px dashed #d6a832;
  padding: 18px;
  border-radius: 10px;
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.rdp-flow span {
  color: #d6a832;
}

.rdp-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  margin: 28px 0;
}

.rdp-image-box {
  margin: 24px 0;
  background: #171b14;
  border: 1px solid #5a4a24;
  border-radius: 12px;
  overflow: hidden;
}

.rdp-image-grid .rdp-image-box {
  margin: 0;
}

.rdp-image-box img,
.responsive-img {

  height: auto;
  display: block;
}

.rdp-image-box2{
	width: 68px;
  height: auto;
  display: block;
	
}

.rdp-image-box figcaption {
  padding: 12px 14px;
  background: #1f241b;
  color: #d8d0b8;
  font-size: 0.95rem;
  line-height: 1.45;
}

.rdp-list {
  margin: 0 0 24px 0;
  padding-left: 22px;
}

.rdp-list li {
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .rdp-article {
    padding: 20px;
  }

  .rdp-article h2 {
    font-size: 1.5rem;
  }

  .rdp-article h3 {
    font-size: 1.25rem;
  }

  .rdp-grid,
  .rdp-image-grid {
    grid-template-columns: 1fr;
  }

  .rdp-table {
    font-size: 0.9rem;
  }
}

/* =========================================================
   EINHEITEN-GRID: AXIS UND ALLIES
   Gemeinsame Darstellung für axis.php und alliierte.php
   ========================================================= */
.cms-tabs {
    margin: 40px 0;
}

.main-tabs,
.sub-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.main-tab,
.sub-tab {
    border: 1px solid rgba(255, 255, 255, .15);
    background: #1d211b;
    color: #ddd;
    padding: 10px 16px;
    cursor: pointer;
}

.main-tab.active,
.sub-tab.active {
    background: #6f5a2c;
    color: #fff;
}

.main-panel,
.sub-panel {
    display: none;
}

.main-panel.active,
.sub-panel.active {
    display: block;
}

.unit-category-header {
    margin: 20px 0;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 18px;
    align-items: stretch;
}

.unit-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #151812;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 14px;
}

.unit-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.unit-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    cursor: zoom-in;
    user-select: none;
    -webkit-user-drag: none;
}

.unit-image-placeholder {
    color: #888;
    font-size: 13px;
}

.unit-content {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.unit-content h3 {
    margin: 0 0 6px;
    overflow-wrap: anywhere;
}

.unit-role {
    color: #c9b27c;
    margin-bottom: 12px;
}

.unit-facts {
    display: grid;
    grid-template-columns: minmax(90px, 110px) minmax(0, 1fr);
    gap: 6px 10px;
}

.unit-facts dt {
    color: #999;
}

.unit-facts dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.unit-badges {
    margin-top: auto;
    padding-top: 12px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    margin-right: 6px;
    background: #333;
}

.badge.premium {
    background: #7a5d22;
}

.badge.hero {
    background: #007d00;
}

.unit-description {
    padding-top: 10px;
}

/* Der Rechtsklick wird direkt am Bild behandelt; kein Overlay im Grid. */
img[data-watermark-download] {
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 640px) {
    .unit-grid {
        grid-template-columns: 1fr;
    }

    .unit-facts {
        grid-template-columns: 1fr;
    }

    .unit-facts dt {
        margin-top: 6px;
        font-weight: 700;
    }
}


/* === V15 ALLIES/AXIS UNIT COMPONENTS === */
.cms-tabs {
    margin: 40px 0;
}

.main-tabs,
.sub-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.main-tab,
.sub-tab {
    border: 1px solid rgba(255,255,255,.15);
    background: #1d211b;
    color: #ddd;
    padding: 10px 16px;
    cursor: pointer;
}

.main-tab.active,
.sub-tab.active {
    background: #6f5a2c;
    color: #fff;
}

.main-panel,
.sub-panel {
    display: none;
}

.main-panel.active,
.sub-panel.active {
    display: block;
}

.unit-category-header {
    margin: 20px 0;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.unit-card {
    background: #151812;
    border: 1px solid rgba(255,255,255,.12);
    padding: 14px;
}

.unit-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background:#fff;
    background-attachment:fixed;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.unit-image img {
   
    height: 100%;
    object-fit: cover;
}

.unit-image-placeholder {
    color: #888;
    font-size: 13px;
}

.unit-content h3 {
    margin: 0 0 6px;
}

.unit-role {
    color: #c9b27c;
    margin-bottom: 12px;
}

.unit-facts {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 6px 10px;
}

.unit-facts dt {
    color: #999;
}

.unit-facts dd {
    margin: 0;
}

.unit-badges {
    margin-top: 12px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    margin-right: 6px;
    background: #333;
}

.badge.premium {
    background: #7a5d22;
}

.badge.hero {
    background: #007d00;
}

.unit-description{
    padding-top: 10px;
}


/* === WWIIOnline CMS v15: konsolidiertes Einheiten-Grid === */
.unit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
    gap: clamp(14px, 2vw, 22px);
    align-items: stretch;
}
.unit-card { min-width: 0; height: 100%; display: flex; flex-direction: column; }
.unit-image { aspect-ratio: 16 / 10; display: grid; place-items: center; overflow: hidden; }
.unit-image img, .unit-card .responsive-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pt-lightbox-image { cursor: zoom-in; user-select: none; -webkit-user-drag: none; }
body.lightbox-open { overflow: hidden; }
.pt-lightbox { padding: clamp(18px, 4vw, 54px); }
#ptLightboxImage { max-width: min(94vw, 1600px); max-height: 86vh; object-fit: contain; }
@media (max-width: 680px) { .unit-grid { grid-template-columns: 1fr; } }


/* ============================================================
   WWIIOnline CMS v15.1 – vollständige Einheitenbilder im Grid
   Diese Regeln stehen bewusst am Dateiende und überschreiben
   ältere, doppelte Grid-Regeln.
============================================================ */
.unit-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)) !important;
    align-items: stretch !important;
}

.unit-card {
    min-width: 0 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.unit-card .unit-image {
    width: 100% !important;
    height: clamp(220px, 22vw, 300px) !important;
    min-height: 220px !important;
    aspect-ratio: auto !important;
    padding: 10px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    background-attachment: initial !important;
}

.unit-card .unit-image > img,
.unit-card .unit-image > .responsive-img,
.unit-card img.pt-lightbox-image {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    flex: 0 1 auto !important;
}

@media (max-width: 680px) {
    .unit-card .unit-image {
        height: clamp(230px, 68vw, 360px) !important;
    }
}


/* ============================================================
   WWIIOnline CMS v15.2 – Suche, Vergleich, Galerie
============================================================ */
.unit-tools{display:grid;grid-template-columns:minmax(240px,2fr) repeat(2,minmax(150px,1fr)) auto auto;gap:12px;align-items:end;margin:18px 0 22px;padding:16px;border:1px solid rgba(255,255,255,.13);background:rgba(15,20,17,.92);border-radius:8px;position:sticky;top:76px;z-index:40;backdrop-filter:blur(8px)}
.unit-tools label{display:grid;gap:6px;color:var(--muted);font-size:.82rem;text-transform:uppercase;letter-spacing:.06em}.unit-tools input,.unit-tools select{min-height:42px;border:1px solid rgba(255,255,255,.18);border-radius:5px;background:#101510;color:#fff;padding:8px 10px}.unit-tools .btn{min-height:42px}.unit-compare-open span{display:inline-grid;place-items:center;min-width:24px;height:24px;margin-left:6px;border-radius:50%;background:rgba(0,0,0,.35)}
.unit-card{position:relative}.unit-card[hidden]{display:none!important}.unit-compare-select{position:absolute;top:10px;right:10px;z-index:12;display:flex;align-items:center;gap:5px;padding:5px 8px;border-radius:4px;background:rgba(0,0,0,.72);color:#fff;font-size:.75rem;line-height:1}.unit-compare-select input{accent-color:#c8a65a}.unit-card.is-compare-selected{outline:2px solid #c8a65a;outline-offset:2px}.unit-empty-state{grid-column:1/-1;padding:30px;text-align:center;color:var(--muted);border:1px dashed rgba(255,255,255,.2)}
.unit-compare-dialog{width:min(1100px,94vw);max-height:90vh;border:1px solid rgba(255,255,255,.2);border-radius:8px;background:#151a16;color:#eee;padding:24px}.unit-compare-dialog::backdrop{background:rgba(0,0,0,.82)}.unit-compare-close{position:absolute;right:12px;top:10px;border:0;background:transparent;color:#fff;font-size:2rem}.unit-compare-table{width:100%;border-collapse:collapse}.unit-compare-table th,.unit-compare-table td{padding:10px;border:1px solid rgba(255,255,255,.12);vertical-align:top}.unit-compare-table th{background:rgba(255,255,255,.06);text-align:left}
.pt-lightbox-toolbar{position:absolute;top:18px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:4}.pt-lightbox-toolbar button{border:1px solid rgba(255,255,255,.3);background:rgba(15,15,15,.8);color:#fff;padding:8px 12px;border-radius:4px}.pt-lightbox img.is-zoomed{max-width:none;max-height:none;cursor:zoom-out;transform:scale(1.65);transform-origin:center}.pt-lightbox img{transition:transform .2s ease}.pt-lightbox-caption{pointer-events:none}
.admin-stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px;margin:16px 0}.admin-stat{padding:16px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);border-radius:6px}.admin-stat strong{display:block;font-size:1.7rem}.download-top-list{display:grid;gap:8px}.download-top-list li{display:flex;justify-content:space-between;gap:20px;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.1)}
@media(max-width:980px){.unit-tools{grid-template-columns:1fr 1fr;top:62px}.unit-search{grid-column:1/-1}}@media(max-width:620px){.unit-tools{grid-template-columns:1fr;position:static}.unit-search{grid-column:auto}.pt-lightbox-toolbar{top:auto;bottom:20px}}


/* ============================================================
   WWIIOnline CMS v15.2.1 – sichtbarer Einheitenvergleich
============================================================ */
.unit-compare-select {
    position: static !important;
    display: flex !important;
    width: fit-content;
    margin: 10px 0 0;
    padding: 7px 10px;
    border: 1px solid rgba(200,166,90,.45);
    border-radius: 5px;
    background: rgba(0,0,0,.34);
    color: #fff;
    cursor: pointer;
}
.unit-card.is-compare-selected {
    outline: 3px solid #c8a65a;
    outline-offset: 3px;
}
.unit-compare-tray {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 3000;
    width: min(760px, calc(100vw - 28px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(200,166,90,.7);
    border-radius: 8px;
    background: rgba(15,20,17,.97);
    box-shadow: 0 14px 45px rgba(0,0,0,.55);
}
.unit-compare-tray[hidden] { display: none !important; }
.unit-compare-tray__text { display: grid; gap: 3px; }
.unit-compare-tray__text span { color: var(--muted); font-size: .9rem; }
.unit-compare-tray__actions { display: flex; gap: 10px; }
.unit-compare-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 12px;
    margin: 0 0 18px;
}
.unit-compare-summary__item {
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
}
.unit-compare-summary__item img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    background: #fff;
}
@media (max-width: 680px) {
    .unit-compare-tray { align-items: stretch; flex-direction: column; }
    .unit-compare-tray__actions { display: grid; grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   WWIIOnline CMS v15.2.2 – Downloadstatistik im Adminbereich
============================================================ */
.admin-panel__heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 16px;
}
.admin-panel__heading p,
.admin-empty-state {
    color: var(--muted);
}
.admin-action-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.admin-action-row form { margin: 0; }
.admin-download-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 24px;
}
.download-top-list,
.download-recent-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
}
.download-top-list { padding-left: 24px; }
.download-top-list li,
.download-recent-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.download-top-list span,
.download-recent-list span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.download-recent-list { list-style: none; }
.download-recent-list time {
    color: var(--muted);
    white-space: nowrap;
    font-size: .9rem;
}
@media (max-width: 760px) {
    .admin-panel__heading { flex-direction: column; }
    .admin-download-columns { grid-template-columns: 1fr; }
}

/* v15.2.3: Statusanzeige der datenbankbasierten Downloadstatistik */
.admin-db-status {
    margin: 0 0 16px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 6px;
    background: rgba(255,255,255,.04);
}
.admin-db-status.is-ok { border-color: rgba(90,180,110,.55); }
.admin-db-status.is-error { border-color: rgba(210,80,80,.65); }

/* ============================================================
   WWII ONLINE CMS v15.4 – MODERNES ADMIN-BACKEND
============================================================ */
.admin-body,
.admin-login-body {
    --admin-bg: #0b0f0d;
    --admin-surface: #121815;
    --admin-surface-2: #18201c;
    --admin-surface-3: #202a25;
    --admin-border: rgba(220, 228, 215, .12);
    --admin-border-strong: rgba(220, 228, 215, .22);
    --admin-text: #eef2ec;
    --admin-muted: #9da89f;
    --admin-accent: #d5b56e;
    --admin-accent-strong: #f0ce7d;
    --admin-green: #72bd82;
    --admin-red: #db7168;
    --admin-blue: #72a4d8;
    margin: 0;
    color: var(--admin-text);
    background:
        radial-gradient(circle at 80% -10%, rgba(113, 132, 91, .16), transparent 36rem),
        var(--admin-bg);
    font-family: Roboto, Arial, sans-serif;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 22px 16px;
    border-right: 1px solid var(--admin-border);
    background: rgba(12, 17, 14, .96);
    backdrop-filter: blur(18px);
    z-index: 1100;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 8px 24px;
    color: var(--admin-text);
    text-decoration: none;
    border-bottom: 1px solid var(--admin-border);
}

.admin-brand__mark {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(213, 181, 110, .5);
    border-radius: 12px;
    color: #15160f;
    background: linear-gradient(145deg, #f0ce7d, #9c7d3f);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .28);
    font-family: Oswald, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.admin-brand strong,
.admin-brand small { display: block; }
.admin-brand strong { font-family: Oswald, sans-serif; letter-spacing: .08em; }
.admin-brand small { margin-top: 3px; color: var(--admin-muted); font-size: .75rem; }

.admin-nav { display: grid; gap: 5px; padding: 22px 0; }
.admin-nav__label {
    padding: 16px 12px 6px;
    color: #6f7c73;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.admin-nav__link {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #b7c0b9;
    text-decoration: none;
    font-weight: 700;
    transition: .18s ease;
}
.admin-nav__link > span:first-child { width: 20px; color: #77877b; text-align: center; }
.admin-nav__link:hover { color: #fff; background: rgba(255,255,255,.05); }
.admin-nav__link.is-active {
    color: #fff;
    border-color: rgba(213, 181, 110, .25);
    background: linear-gradient(90deg, rgba(213,181,110,.16), rgba(213,181,110,.04));
}
.admin-nav__link.is-active > span:first-child { color: var(--admin-accent-strong); }

.admin-sidebar__footer { margin-top: auto; display: grid; gap: 10px; }
.admin-version-card {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--admin-border);
    border-radius: 9px;
    background: rgba(255,255,255,.025);
    color: var(--admin-muted);
    font-size: .76rem;
}
.admin-version-card strong { color: var(--admin-accent-strong); }
.admin-logout { padding: 11px 12px; border-radius: 8px; color: #d7aaa6; text-align: center; text-decoration: none; font-weight: 700; }
.admin-logout:hover { background: rgba(219,113,104,.1); }

.admin-workspace { min-width: 0; }
.admin-toolbar {
    position: sticky;
    top: 0;
    z-index: 900;
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px clamp(20px, 3vw, 42px);
    border-bottom: 1px solid var(--admin-border);
    background: rgba(11, 15, 13, .88);
    backdrop-filter: blur(18px);
}
.admin-toolbar h1 { margin: 1px 0 0; font-family: Oswald, sans-serif; font-size: clamp(1.45rem, 2vw, 2rem); }
.admin-toolbar__eyebrow,
.admin-kicker { color: var(--admin-accent); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.admin-toolbar__actions { margin-left: auto; display: flex; gap: 9px; }
.admin-menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--admin-border); border-radius: 8px; color: #fff; background: var(--admin-surface-2); font-size: 1.25rem; }

.admin-content { width: min(100%, 1520px); margin: 0 auto; padding: clamp(22px, 3vw, 42px); }
.admin-content h2 { margin: 0; font-family: Oswald, sans-serif; color: #fff; }
.admin-content p { color: var(--admin-muted); }

.admin-hero,
.admin-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
}
.admin-hero {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--admin-border);
    border-radius: 16px;
    background:
        linear-gradient(120deg, rgba(213,181,110,.11), transparent 55%),
        var(--admin-surface);
}
.admin-hero h2,
.admin-page-heading h2 { margin: 6px 0 8px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.admin-hero p,
.admin-page-heading p { margin: 0; }
.admin-hero__actions,
.admin-page-heading__actions { display: flex; flex-wrap: wrap; gap: 9px; }
.admin-page-heading { align-items: center; padding: 4px 0 8px; }

.admin-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 22px;
}
.admin-overview-card {
    position: relative;
    display: grid;
    min-height: 150px;
    padding: 20px;
    border: 1px solid var(--admin-border);
    border-radius: 13px;
    color: var(--admin-text);
    background: var(--admin-surface);
    text-decoration: none;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.admin-overview-card:not(.is-static):hover { transform: translateY(-3px); border-color: rgba(213,181,110,.38); background: var(--admin-surface-2); }
.admin-overview-card__icon { position: absolute; right: 18px; top: 14px; color: rgba(213,181,110,.28); font-size: 2rem; }
.admin-overview-card > span:not(.admin-overview-card__icon) { color: var(--admin-muted); font-weight: 700; }
.admin-overview-card strong { align-self: end; font-family: Oswald, sans-serif; font-size: 2.45rem; line-height: 1; }
.admin-overview-card small { margin-top: 5px; color: var(--admin-accent); }

.admin-dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr); gap: 18px; }
.admin-card {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--admin-border);
    border-radius: 13px;
    background: var(--admin-surface);
    box-shadow: 0 14px 45px rgba(0,0,0,.14);
}
.admin-card--wide { grid-row: span 2; }
.admin-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.admin-card__header h2 { margin-top: 5px; font-size: 1.5rem; }
.admin-card__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.admin-card__actions form { margin: 0; }
.admin-muted { margin: -5px 0 16px; color: var(--admin-muted); }

.admin-status,
.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border: 1px solid var(--admin-border);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    white-space: nowrap;
}
.admin-status.is-ok,
.admin-badge.is-active,
.admin-badge.is-published { color: #9ce0aa; border-color: rgba(114,189,130,.35); background: rgba(114,189,130,.09); }
.admin-status.is-error,
.admin-badge.is-inactive { color: #eca29b; border-color: rgba(219,113,104,.35); background: rgba(219,113,104,.09); }
.admin-badge.is-draft { color: #e1c98e; border-color: rgba(213,181,110,.35); background: rgba(213,181,110,.09); }
.admin-badge.is-axis { color: #eda39d; border-color: rgba(219,113,104,.35); background: rgba(219,113,104,.09); }
.admin-badge.is-allies { color: #9fc8ee; border-color: rgba(114,164,216,.35); background: rgba(114,164,216,.09); }

.admin-stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 14px 0; }
.admin-stat { min-width: 0; padding: 15px; border: 1px solid var(--admin-border); border-radius: 10px; background: rgba(255,255,255,.025); }
.admin-stat span { display: block; color: var(--admin-muted); font-size: .75rem; }
.admin-stat strong { display: block; margin-top: 5px; font-family: Oswald, sans-serif; font-size: 1.55rem; }

.admin-ranking-list,
.admin-activity-list { list-style: none; display: grid; gap: 0; margin: 0; padding: 0; }
.admin-ranking-list { counter-reset: adminrank; }
.admin-ranking-list li,
.admin-activity-list li { min-width: 0; display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--admin-border); }
.admin-ranking-list li:last-child,
.admin-activity-list li:last-child { border-bottom: 0; }
.admin-ranking-list li::before { counter-increment: adminrank; content: counter(adminrank, decimal-leading-zero); color: #66736a; font-family: Oswald, sans-serif; }
.admin-ranking-list li span,
.admin-activity-list li span { min-width: 0; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-ranking-list strong { color: var(--admin-accent-strong); }
.admin-activity-list time { color: var(--admin-muted); font-size: .75rem; white-space: nowrap; }

.admin-table-toolbar { display: flex; align-items: flex-end; gap: 14px; margin-bottom: 16px; }
.admin-table-toolbar--filters { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(160px, .35fr) minmax(150px, .3fr) auto; }
.admin-search,
.admin-filter-select { display: grid; gap: 6px; color: var(--admin-muted); font-size: .72rem; font-weight: 800; }
.admin-record-count { margin-left: auto; padding: 11px 12px; color: var(--admin-muted); white-space: nowrap; }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--admin-border); border-radius: 10px; }
.admin-table { width: 100%; border-collapse: collapse; background: rgba(4,7,5,.18); }
.admin-table th { padding: 12px 14px; color: #87938b; background: rgba(255,255,255,.025); font-size: .68rem; letter-spacing: .08em; text-align: left; text-transform: uppercase; }
.admin-table td { padding: 13px 14px; border-top: 1px solid var(--admin-border); color: #dce2dd; vertical-align: middle; }
.admin-table tbody tr { transition: background .15s ease; }
.admin-table tbody tr:hover { background: rgba(255,255,255,.025); }
.admin-table__actions { text-align: right !important; }
.admin-table td.admin-table__actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 7px; }
.admin-table td.admin-table__actions form { margin: 0; }
.admin-table code { color: #b8c6bb; }
.admin-table-subline { display: block; margin-top: 3px; color: var(--admin-muted); }
.admin-sort-badge { display: inline-grid; place-items: center; min-width: 34px; height: 28px; padding: 0 7px; border: 1px solid var(--admin-border); border-radius: 7px; color: var(--admin-accent); background: rgba(255,255,255,.025); font-family: Oswald, sans-serif; }
.admin-empty-state { padding: 28px; border: 1px dashed var(--admin-border-strong); border-radius: 10px; color: var(--admin-muted); text-align: center; }

.admin-unit-cell { display: flex; align-items: center; gap: 12px; min-width: 240px; }
.admin-unit-cell img,
.admin-unit-cell__placeholder { flex: 0 0 56px; width: 56px; height: 48px; object-fit: contain; border: 1px solid var(--admin-border); border-radius: 7px; background: #edf0ea; }
.admin-unit-cell__placeholder { display: grid; place-items: center; color: #7d886f; }
.admin-unit-cell strong,
.admin-unit-cell small { display: block; }
.admin-unit-cell small { margin-top: 4px; color: var(--admin-muted); }

.admin-form-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 340px); align-items: start; gap: 18px; }
.admin-form-main { display: grid; gap: 18px; min-width: 0; }
.admin-form-sidebar { min-width: 0; }
.admin-card--sticky { position: sticky; top: 108px; }
.admin-form-grid { display: grid; gap: 15px; }
.admin-form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-form-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-field { min-width: 0; display: grid; gap: 7px; color: var(--admin-muted); font-size: .76rem; font-weight: 800; }
.admin-field > span { color: #b9c3bb; }
.admin-field small { color: #738078; font-weight: 400; }
.admin-field--wide { grid-column: span 2; }
.admin-field--full { grid-column: 1 / -1; }
.admin-body .input,
.admin-body textarea,
.admin-body select,
.admin-login-body .input {
    width: 100%;
    min-height: 43px;
    padding: 10px 12px;
    border: 1px solid var(--admin-border-strong);
    border-radius: 8px;
    color: var(--admin-text);
    background: #0b100d;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.admin-body textarea { resize: vertical; }
.admin-body .input:focus,
.admin-body textarea:focus,
.admin-body select:focus,
.admin-login-body .input:focus { border-color: rgba(213,181,110,.68); box-shadow: 0 0 0 3px rgba(213,181,110,.1); }
.admin-toggle-list { display: grid; gap: 8px; margin: 14px 0 18px; }
.admin-toggle-list label { display: flex; align-items: flex-start; gap: 10px; padding: 11px; border: 1px solid var(--admin-border); border-radius: 8px; background: rgba(255,255,255,.02); cursor: pointer; }
.admin-toggle-list input { margin-top: 3px; accent-color: var(--admin-accent); }
.admin-toggle-list strong,
.admin-toggle-list small { display: block; }
.admin-toggle-list small { margin-top: 2px; color: var(--admin-muted); }
.admin-save-button { width: 100%; justify-content: center; margin-top: 5px; }
.admin-image-preview { display: grid; place-items: center; min-height: 180px; margin-bottom: 15px; padding: 12px; border: 1px solid var(--admin-border); border-radius: 10px; background: #eef0eb; }
.admin-image-preview img { max-width: 100%; max-height: 210px; object-fit: contain; }
.admin-meta-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 18px; padding: 11px 13px; border: 1px solid var(--admin-border); border-radius: 8px; color: var(--admin-muted); background: rgba(255,255,255,.02); }
.admin-meta-strip strong { color: var(--admin-text); }
.admin-danger-zone { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; padding: 18px 20px; border: 1px solid rgba(219,113,104,.35); border-radius: 11px; background: rgba(219,113,104,.06); }
.admin-danger-zone p { margin: 4px 0 0; }

.admin-body .btn,
.admin-login-body .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 9px 14px; border: 1px solid rgba(213,181,110,.4); border-radius: 8px; color: #17170f; background: linear-gradient(145deg, #e3c477, #ad8b47); font-weight: 900; text-decoration: none; cursor: pointer; }
.admin-body .btn:hover,
.admin-login-body .btn:hover { filter: brightness(1.08); }
.admin-body .btn.secondary { color: #dfe5df; border-color: var(--admin-border-strong); background: rgba(255,255,255,.04); }
.admin-body .btn.ghost { color: #aeb8b0; border-color: transparent; background: transparent; }
.admin-body .btn.danger { color: #f2c1bd; border-color: rgba(219,113,104,.35); background: rgba(219,113,104,.1); }
.admin-body .btn.small { min-height: 33px; padding: 6px 10px; font-size: .76rem; }

.admin-login-body { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.admin-login-shell { width: min(100%, 1000px); display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; border: 1px solid var(--admin-border); border-radius: 18px; background: var(--admin-surface); box-shadow: 0 35px 100px rgba(0,0,0,.42); }
.admin-login-brand { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 570px; padding: clamp(35px, 6vw, 70px); background: linear-gradient(130deg, rgba(213,181,110,.13), transparent 58%), #101712; }
.admin-login-brand .admin-brand__mark { margin-bottom: 30px; }
.admin-login-brand h1 { max-width: 520px; margin: 10px 0; font-family: Oswald, sans-serif; font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: .98; }
.admin-login-brand p { max-width: 500px; color: var(--admin-muted); line-height: 1.7; }
.admin-login-brand small { margin-top: 30px; color: var(--admin-accent); }
.admin-login-card { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 55px); }
.admin-login-card h2 { margin: 7px 0 26px; font-family: Oswald, sans-serif; font-size: 2rem; }
.admin-login-card form { display: grid; gap: 16px; }
.admin-login-error { padding: 10px 12px; border: 1px solid rgba(219,113,104,.35); border-radius: 8px; color: #f0aaa3; background: rgba(219,113,104,.08); }
.admin-login-back { margin-top: 22px; color: var(--admin-muted); text-align: center; text-decoration: none; }

.is-select-filter-hidden { display: none !important; }

@media (max-width: 1180px) {
    .admin-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-dashboard-grid { grid-template-columns: 1fr; }
    .admin-card--wide { grid-row: auto; }
    .admin-form-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: fixed; left: 0; transform: translateX(-105%); width: min(86vw, 290px); transition: transform .2s ease; box-shadow: 25px 0 70px rgba(0,0,0,.45); }
    .admin-shell.is-menu-open .admin-sidebar { transform: translateX(0); }
    .admin-menu-toggle { display: inline-grid; place-items: center; }
    .admin-form-layout { grid-template-columns: 1fr; }
    .admin-card--sticky { position: static; }
    .admin-table-toolbar--filters { grid-template-columns: 1fr 1fr; }
    .admin-search { grid-column: 1 / -1; }
    .admin-record-count { margin-left: 0; }
}

@media (max-width: 720px) {
    .admin-toolbar { min-height: 76px; padding: 12px 16px; }
    .admin-toolbar__actions .btn.secondary { display: none; }
    .admin-content { padding: 20px 14px 35px; }
    .admin-hero,
    .admin-page-heading { align-items: flex-start; flex-direction: column; }
    .admin-overview-grid { grid-template-columns: 1fr 1fr; }
    .admin-stats-grid { grid-template-columns: 1fr 1fr; }
    .admin-form-grid--2,
    .admin-form-grid--3 { grid-template-columns: 1fr; }
    .admin-field--wide { grid-column: auto; }
    .admin-table-toolbar,
    .admin-table-toolbar--filters { display: grid; grid-template-columns: 1fr; align-items: stretch; }
    .admin-search { grid-column: auto; }
    .admin-record-count { padding-left: 0; }
    .admin-danger-zone { align-items: flex-start; flex-direction: column; }
    .admin-login-shell { grid-template-columns: 1fr; }
    .admin-login-brand { min-height: auto; padding: 34px; }
    .admin-login-brand h1 { font-size: 2.6rem; }
}

@media (max-width: 460px) {
    .admin-overview-grid,
    .admin-stats-grid { grid-template-columns: 1fr; }
    .admin-toolbar__actions .btn { padding-inline: 10px; }
}


/* ============================================================
   WWII Online CMS v15.4.1 – Units Backend
============================================================ */
.admin-toolbar { grid-template-columns: auto 1fr; }
.admin-toolbar__actions { display: none !important; }

.admin-unit-browser { padding: 0; overflow: hidden; }
.admin-unit-browser__topbar {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(170px, 220px) auto;
    gap: 14px;
    align-items: end;
    padding: 20px;
    border-bottom: 1px solid var(--admin-border);
}
.admin-search--wide { min-width: 0; }
.admin-nation-tabs {
    display: flex;
    gap: 8px;
    padding: 14px 20px;
    overflow-x: auto;
    border-bottom: 1px solid var(--admin-border);
    background: rgba(255,255,255,.015);
}
.admin-nation-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid var(--admin-border);
    border-radius: 9px;
    color: var(--admin-muted);
    background: rgba(255,255,255,.025);
    font: inherit;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}
.admin-nation-tab strong {
    display: inline-grid;
    place-items: center;
    min-width: 25px;
    min-height: 25px;
    padding: 2px 6px;
    border-radius: 999px;
    color: var(--admin-text);
    background: rgba(255,255,255,.07);
    font-size: .75rem;
}
.admin-nation-tab:hover,
.admin-nation-tab.is-active {
    color: #1c1b12;
    border-color: rgba(213,181,110,.75);
    background: linear-gradient(145deg, #e3c477, #ad8b47);
}
.admin-nation-tab.is-active strong { color: #1c1b12; background: rgba(0,0,0,.12); }

.admin-unit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 18px;
    padding: 20px;
}
.admin-unit-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--admin-border);
    border-radius: 13px;
    background: rgba(255,255,255,.025);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.admin-unit-card:hover {
    transform: translateY(-2px);
    border-color: rgba(213,181,110,.42);
    box-shadow: 0 16px 38px rgba(0,0,0,.22);
}
.admin-unit-card[hidden] { display: none !important; }
.admin-unit-card__image {
    position: relative;
    display: grid;
    place-items: center;
    height: 190px;
    padding: 12px;
    overflow: hidden;
    background: #eef0eb;
}
.admin-unit-card__image img { width: 100%; height: 100%; object-fit: contain; }
.admin-unit-card__placeholder { font-size: 3rem; color: #818981; }
.admin-unit-card__status { position: absolute; top: 10px; right: 10px; }
.admin-unit-card__body { padding: 16px; }
.admin-unit-card__nation { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--admin-accent); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.admin-unit-card__nation small { color: var(--admin-muted); }
.admin-unit-card h3 { margin: 8px 0 5px; font-family: Oswald, sans-serif; font-size: 1.35rem; line-height: 1.12; }
.admin-unit-card__body > p { min-height: 38px; margin: 0; color: var(--admin-muted); font-size: .86rem; line-height: 1.45; }
.admin-unit-card__facts { display: grid; gap: 8px; margin: 14px 0 0; }
.admin-unit-card__facts div { display: grid; grid-template-columns: 90px 1fr; gap: 8px; padding-top: 8px; border-top: 1px solid var(--admin-border); }
.admin-unit-card__facts dt { color: var(--admin-muted); font-size: .72rem; text-transform: uppercase; }
.admin-unit-card__facts dd { margin: 0; font-size: .82rem; }
.admin-unit-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-top: 1px solid var(--admin-border); color: var(--admin-muted); font-size: .76rem; }
.admin-unit-browser > .admin-empty-state { margin: 0 20px 20px; }
.admin-field small { display: block; margin-top: 5px; color: var(--admin-muted); font-size: .75rem; font-weight: 400; }

@media (max-width: 780px) {
    .admin-unit-browser__topbar { grid-template-columns: 1fr; align-items: stretch; }
    .admin-record-count { margin-left: 0; }
    .admin-unit-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 235px), 1fr)); padding: 14px; }
    .admin-nation-tabs { padding-inline: 14px; }
}

/* ============================================================
   WWII Online CMS v15.4.2 – Admin-Einheiten nach Kategorien
============================================================ */
.admin-unit-catalog {
    display: grid;
    gap: 30px;
    padding: 20px;
}

.admin-unit-nation-section {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--admin-border);
    border-radius: 14px;
    background: rgba(255,255,255,.018);
}

.admin-unit-nation-section[hidden],
.admin-unit-category[hidden] {
    display: none !important;
}

.admin-unit-nation-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--admin-border);
    background: linear-gradient(135deg, rgba(213,181,110,.13), rgba(255,255,255,.015));
}

.admin-unit-nation-heading h3 {
    margin: 3px 0 0;
    font-family: Oswald, sans-serif;
    font-size: 1.55rem;
}

.admin-unit-nation-heading > strong {
    color: var(--admin-muted);
    font-size: .82rem;
}

.admin-unit-category {
    padding: 0 0 8px;
}

.admin-unit-category + .admin-unit-category {
    border-top: 1px solid var(--admin-border);
}

.admin-unit-category__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px 0;
}

.admin-unit-category__heading h4 {
    margin: 0;
    color: var(--admin-accent);
    font-family: Oswald, sans-serif;
    font-size: 1.25rem;
    letter-spacing: .02em;
}

.admin-unit-category__heading span {
    color: var(--admin-muted);
    font-size: .78rem;
}

.admin-unit-category .admin-unit-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 265px), 1fr));
    padding-top: 14px;
}

.admin-unit-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.admin-unit-card__image {
    width: 100%;
    height: auto;
    min-height: 230px;
    aspect-ratio: 4 / 3;
    padding: 16px;
    overflow: hidden;
}

.admin-unit-card__image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.admin-unit-card__body {
    flex: 1 1 auto;
}

@media (max-width: 780px) {
    .admin-unit-catalog { padding: 14px; gap: 20px; }
    .admin-unit-nation-heading,
    .admin-unit-category__heading { align-items: flex-start; }
    .admin-unit-card__image { min-height: 210px; }
}

/* ============================================================
   WWIIOnline CMS v15.5 – Medienverwaltung
============================================================ */
.admin-notice{padding:14px 16px;margin:0 0 18px;border-radius:12px;font-weight:700}.admin-notice--success{background:#e8f6ee;color:#17643a;border:1px solid #b7dfc8}.admin-notice--error{background:#fff0f0;color:#8b2020;border:1px solid #efbcbc}
.media-upload-form{display:grid;grid-template-columns:minmax(180px,240px) 1fr auto;gap:18px;align-items:end}.media-dropzone{position:relative;min-height:140px;border:2px dashed #b7bdc7;border-radius:16px;background:#f7f8fa;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:18px;cursor:pointer;transition:.2s ease}.media-dropzone:hover,.media-dropzone.is-dragover{border-color:#9a7b39;background:#fffaf0;transform:translateY(-1px)}.media-dropzone input{position:absolute;inset:0;opacity:0;cursor:pointer}.media-dropzone__icon{font-size:32px;line-height:1;color:#9a7b39}.media-dropzone strong{font-size:15px;margin-top:5px}.media-dropzone small{color:#69717e;margin-top:4px}.media-dropzone__filename{margin-top:8px;font-size:12px;font-weight:700;color:#49515d}.media-dropzone--compact{min-height:125px;margin-top:12px}
.admin-card__header--responsive{gap:18px;flex-wrap:wrap}.admin-toolbar-fields{display:flex;gap:10px;flex-wrap:wrap}.admin-toolbar-fields .input{min-width:210px}
.media-library-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:18px}.media-library-card{min-width:0;border:1px solid #dfe2e7;border-radius:16px;background:#fff;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 5px 18px rgba(20,27,38,.06)}.media-library-card__preview{height:190px;border:0;background:#eef0f3;padding:12px;cursor:zoom-in}.media-library-card__preview img{width:100%;height:100%;object-fit:contain}.media-library-card__body{padding:14px;display:grid;gap:5px;min-width:0}.media-library-card__body strong{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.media-library-card__body span{color:#7e632b;font-weight:700;font-size:13px}.media-library-card__body small{color:#727986}.media-library-card__actions{margin-top:auto;padding:0 14px 14px;display:flex;gap:8px;align-items:center}.media-library-card__actions form{margin-left:auto}.btn.small{padding:8px 10px;font-size:12px}.admin-empty-state{text-align:center;padding:34px;color:#6d7480}
.media-preview-modal[hidden]{display:none}.media-preview-modal{position:fixed;inset:0;z-index:3000;display:grid;place-items:center;padding:30px}.media-preview-modal__backdrop{position:absolute;inset:0;border:0;background:rgba(6,9,14,.86)}.media-preview-modal__content{position:relative;z-index:1;max-width:min(1100px,94vw);max-height:92vh;background:#171b21;border:1px solid rgba(255,255,255,.15);border-radius:18px;padding:18px;display:grid;gap:12px;color:#fff}.media-preview-modal__content img{max-width:100%;max-height:78vh;object-fit:contain}.media-preview-modal__close{position:absolute;right:10px;top:10px;width:40px;height:40px;border-radius:50%;border:0;background:rgba(0,0,0,.72);color:#fff;font-size:26px;cursor:pointer}.media-preview-modal__content strong{text-align:center;word-break:break-all}
@media(max-width:900px){.media-upload-form{grid-template-columns:1fr}.media-upload-form .btn{width:100%}.admin-toolbar-fields{width:100%}.admin-toolbar-fields .input{flex:1;min-width:180px}}

/* ============================================================
   CMS v15.6.1 – Responsive Frontseite / Hero-Überlappung
   ============================================================ */
html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

img,
video,
iframe,
svg {
    max-width: 100%;
}

/* Der bisherige globale Innenabstand verschob auch Überschriften
   außerhalb des Titelbildes. Abstände werden nun je Sektion gesetzt. */
.eyebrow {
    padding-top: 0 !important;
    max-width: 100%;
    overflow-wrap: anywhere;
}

#home {
    display: flow-root;
    width: 100%;
    min-width: 0;
}

.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: clamp(560px, 48vw, 900px);
    padding-block: clamp(56px, 7vw, 112px);
    overflow: hidden;
    background-image: url("../img/titelbild/titelbild.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(4, 6, 4, .88) 0%, rgba(4, 6, 4, .58) 43%, rgba(4, 6, 4, .18) 72%, rgba(4, 6, 4, .38) 100%),
        linear-gradient(180deg, rgba(4, 6, 4, .18), rgba(4, 6, 4, .12));
    pointer-events: none;
}

.hero::after {
    z-index: -1;
    height: clamp(80px, 12vw, 180px);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - clamp(32px, 6vw, 96px)));
    min-width: 0;
    margin-inline: auto;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.hero-grid > * {
    min-width: 0;
}

.hero h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 7vw, 7.375rem);
    line-height: .92;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.hero-lead {
    max-width: 46rem;
    font-size: clamp(1rem, 1.4vw, 1.3125rem);
    overflow-wrap: anywhere;
}

.hero .briefing-card {
    width: 100%;
    max-width: 34rem;
    justify-self: end;
    margin: 0;
    padding: clamp(20px, 2.4vw, 32px);
    overflow-wrap: anywhere;
}

.stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 2vw, 18px);
}

.stats > div {
    min-width: 0;
}

.stat-value,
.stat-label {
    overflow-wrap: anywhere;
}

/* Der Folgeabschnitt bleibt immer vollständig unter dem Titelbild. */
.hero + .section,
#home > .section {
    position: relative;
    z-index: 2;
    clear: both;
    margin-top: 0 !important;
}

.section {
    width: 100%;
    min-width: 0;
    padding-block: clamp(54px, 7vw, 92px);
    overflow: clip;
	  padding-top: 150px;
}

.section .container,
.custom-front-section .container {
    min-width: 0;
}

.grid-2,
.grid-3 {
    align-items: stretch;
}

.grid-2 > *,
.grid-3 > * {
    min-width: 0;
}

.card,
.briefing-card {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.content-body {
    min-width: 0;
}

.content-body table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.content-body iframe,
.content-body video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

/* Startseiten-Banner nicht mehr mit starren 600–800 px Höhen. */
#event-banner,
#handbuch-banner,
#rekrutierung-banner {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 7;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1060px) {
    .hero {
        min-height: auto;
        padding-block: clamp(54px, 9vw, 88px);
        background-position: 58% center;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        width: min(760px, calc(100% - 40px));
        gap: 28px;
    }

    .hero .briefing-card {
        justify-self: stretch;
        max-width: none;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1280px);
    }

    .hero {
        padding-block: 48px 64px;
        background-position: 62% center;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(4, 6, 4, .92), rgba(4, 6, 4, .64));
    }

    .hero-grid {
        width: calc(100% - 28px);
    }

    .hero h1 {
        margin-block: 14px 20px;
        font-size: clamp(2.45rem, 13vw, 4.5rem);
    }

    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-block: 18px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .card,
    .briefing-card {
        padding: 20px;
    }

    .section-head {
        margin-bottom: 28px;
    }

    #event-banner,
    #handbuch-banner,
    #rekrutierung-banner {
        aspect-ratio: 4 / 3;
        background-size: contain;
        background-color: #0d100c;
    }
}

@media (max-width: 420px) {
    .container,
    .hero-grid {
        width: calc(100% - 20px);
    }

    .hero {
        padding-block: 38px 54px;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 14vw, 3.35rem);
    }

    .eyebrow {
        font-size: .78rem;
        letter-spacing: .2em;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .card,
    .briefing-card {
        padding: 16px;
        border-radius: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ============================================================
   v15.6.2 – neue Headernavigation, bestehende Kategorien
   ============================================================ */

:root {
    --cms-header-height: 116px;
    --cms-header-red: #d10b0b;
    --cms-header-gold: #d2aa4b;
    --cms-header-text: #e9e4d4;
}

.cms14-nav-wrap {
    position: fixed !important;
    inset: 0 0 auto 0;
    z-index: 9999;
    font-family: "Oswald", Arial, sans-serif;
}

.cms14-nav-bar {
    min-height: var(--cms-header-height);
    padding: 0 clamp(22px, 3vw, 48px);
    gap: clamp(24px, 3vw, 54px);
    background:
        radial-gradient(circle at 18% -80%, rgba(255,255,255,.07), transparent 38%),
        linear-gradient(180deg, #090b0a 0%, #050606 100%);
    border: 0;
    border-bottom: 3px solid var(--cms-header-red);
    box-shadow: 0 10px 30px rgba(0,0,0,.58);
}

.cms14-nav-bar::after {
    display: none;
}

.cms14-brand {
    flex: 0 1 360px;
    min-width: 230px;
    max-width: 360px;
    padding: 12px 0;
}

.cms14-brand-logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 91px;
    object-fit: contain;
    object-position: left center;
    filter: contrast(1.04) brightness(1.08);
}

.cms14-brand-mark,
.cms14-brand-text {
    display: none !important;
}

.cms14-main-nav {
    flex: 1 1 auto;
}

.cms14-nav-list {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(1px, .35vw, 7px);
}

.cms14-nav-item > a,
.cms14-dropdown-toggle {
    min-height: 52px;
    padding: 0 clamp(8px, .8vw, 14px);
    border: 0;
    border-radius: 0;
    color: var(--cms-header-text);
    background: transparent;
    font: 700 clamp(.74rem, .79vw, .91rem)/1 "Oswald", Arial, sans-serif;
    letter-spacing: .055em;
    white-space: nowrap;
}

.cms14-nav-item > a::after,
.cms14-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 2px;
    height: 2px;
    background: var(--cms-header-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.cms14-nav-item > a:hover,
.cms14-nav-item > a:focus,
.cms14-dropdown-toggle:hover,
.cms14-dropdown-toggle:focus,
.cms14-nav-item.is-open > .cms14-dropdown-toggle {
    color: #fff;
    background: transparent;
    border-color: transparent;
}

.cms14-nav-item > a:hover::after,
.cms14-nav-item > a:focus::after,
.cms14-dropdown-toggle:hover::after,
.cms14-dropdown-toggle:focus::after,
.cms14-nav-item.is-open > .cms14-dropdown-toggle::after {
    transform: scaleX(1);
}

.cms14-caret {
    color: var(--cms-header-gold);
    font-size: .8em;
}

.cms14-login-link > a {
    min-height: 48px;
    margin-left: 6px;
    padding-inline: 18px;
    color: #f4e2ad;
    border: 1px solid rgba(210,170,75,.62);
    border-radius: 3px;
    background: linear-gradient(180deg, rgba(210,170,75,.12), rgba(0,0,0,.05));
}

.cms14-login-link > a::after {
    display: none;
}

.cms14-login-link > a:hover,
.cms14-login-link > a:focus {
    color: #fff3ca;
    border-color: var(--cms-header-gold);
    background: rgba(210,170,75,.13);
}

.cms14-dropdown-menu {
    top: calc(100% + 2px);
    min-width: 260px;
    padding: 9px;
    border: 1px solid rgba(210,170,75,.35);
    border-top: 3px solid var(--cms-header-gold);
    background:
        linear-gradient(180deg, rgba(17,19,17,.99), rgba(7,8,7,.99));
}

.cms14-dropdown-menu a {
    color: #e7e1d2;
    border-color: rgba(210,170,75,.11);
    background: rgba(255,255,255,.018);
    font-family: "Roboto", Arial, sans-serif;
}

.cms14-dropdown-menu a:hover,
.cms14-dropdown-menu a:focus {
    color: #fff;
    border-color: rgba(210,170,75,.6);
    background: rgba(210,170,75,.11);
}

/* Titelbild beginnt zuverlässig unter der roten Headerlinie:
   50 px Abstand auf Desktop, kleinere Abstände auf mobilen Geräten. */
#home {
    padding-top: var(--cms-header-height);
}

#home > .hero:first-child {
    padding-top: 50px !important;
}

/* Die gewünschte schlichte Statistikleiste bleibt erhalten. */
.hero .stats {
    position: relative;
    margin-top: clamp(30px, 4vw, 48px);
    padding: clamp(22px, 2.5vw, 30px) 0;
    border-top: 1px solid rgba(255,255,255,.78);
    border-bottom: 1px solid rgba(255,255,255,.78);
    background: transparent;
    box-shadow: none;
}

.hero .stats > div {
    padding-inline: clamp(10px, 2.2vw, 30px);
    border-right: 1px solid rgba(255,255,255,.22);
}

.hero .stats > div:last-child {
    border-right: 0;
}

.hero .stat-value {
    color: #fff5d9;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 700;
}

.hero .stat-label {
    color: #fff;
    font-size: .73rem;
    letter-spacing: .13em;
}

@media (max-width: 1230px) {
    :root { --cms-header-height: 94px; }

    .cms14-nav-bar {
        min-height: var(--cms-header-height);
    }

    .cms14-brand {
        flex-basis: 292px;
        max-width: 292px;
    }

    .cms14-nav-item > a,
    .cms14-dropdown-toggle {
        font-size: .73rem;
        padding-inline: 8px;
    }
}

@media (max-width: 1060px) {
    :root { --cms-header-height: 82px; }

    .cms14-nav-bar {
        min-height: var(--cms-header-height);
        padding-inline: 18px;
    }

    .cms14-brand {
        flex-basis: min(300px, calc(100vw - 100px));
        max-width: 300px;
        min-width: 0;
        padding-block: 9px;
    }

    .cms14-brand-logo {
        max-height: 62px;
    }

    .cms14-menu-toggle {
        display: block;
        border-color: rgba(210,170,75,.42);
        background: #0c0e0c;
    }

    .cms14-main-nav {
        padding-top: calc(var(--cms-header-height) + 18px);
        background: linear-gradient(180deg, #111410, #050605);
        border-left-color: rgba(210,170,75,.5);
    }

    .cms14-nav-item > a,
    .cms14-dropdown-toggle {
        font-size: .92rem;
    }

    #home > .hero:first-child {
        padding-top: 36px !important;
    }
}

@media (max-width: 560px) {
    :root { --cms-header-height: 72px; }

    .cms14-nav-bar {
        min-height: var(--cms-header-height);
        padding-inline: 12px;
    }

    .cms14-brand {
        max-width: 235px;
    }

    .cms14-brand-logo {
        max-height: 51px;
    }

    #home > .hero:first-child {
        padding-top: 26px !important;
    }

    .hero .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero .stats > div:nth-child(2) {
        border-right: 0;
    }

    .hero .stats > div:nth-child(-n+2) {
        padding-bottom: 17px;
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .hero .stats > div:nth-child(n+3) {
        padding-top: 17px;
    }
}


/* ============================================================
   v15.6.3 – originales, vom Benutzer vorgegebenes Headerlogo
   ============================================================ */
.cms14-brand {
    flex-basis: 384px;
    max-width: 384px;
}

.cms14-brand-logo {
    width: 384px;
    max-width: 100%;
    height: auto;
    max-height: 91px;
    object-fit: contain;
    object-position: left center;
    filter: none !important;
}

@media (max-width: 1230px) {
    .cms14-brand {
        flex-basis: 310px;
        max-width: 310px;
    }
}

@media (max-width: 1060px) {
    .cms14-brand {
        flex-basis: min(300px, calc(100vw - 100px));
        max-width: 300px;
    }

    .cms14-brand-logo {
        width: 100%;
        max-height: 71px;
    }
}

@media (max-width: 560px) {
    .cms14-brand {
        max-width: 245px;
    }

    .cms14-brand-logo {
        max-height: 58px;
    }
}


/* ============================================================
   WWII Online CMS v15.6.4 – Frontseite nach verbindlicher Vorlage
   ============================================================ */

:root {
    --cms-header-height: 116px;
    --cms-header-red: #d00000;
    --cms-gold: #d9ad42;
    --cms-cream: #fff2d1;
}

/* Transparentes Logo – der Header selbst liefert den schwarzen Hintergrund. */
.cms14-brand {
    flex: 0 1 384px;
    max-width: 384px;
    padding-block: 12px;
}

.cms14-brand-logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 88px;
    object-fit: contain;
    object-position: left center;
    filter: none !important;
}

/* Sprungziele berücksichtigen den feststehenden Header. */
.anchor-target {
    display: block;
    position: relative;
    top: calc(-1 * var(--cms-header-height));
    height: 0;
    visibility: hidden;
    pointer-events: none;
    scroll-margin-top: calc(var(--cms-header-height) + 18px);
}

/* Der Hauptbereich beginnt exakt unter der roten Headerlinie. */
#home {
    padding-top: var(--cms-header-height);
}

/* Titelbild */
#home > .hero:first-child,
.hero {
    position: relative;
    isolation: isolate;
    display: block;
    width: 100%;
    min-height: calc(100svh - var(--cms-header-height));
    padding: 0 !important;
    overflow: hidden;
    background:
        url("../img/titelbild/titelbild.png") center center / cover no-repeat;
}

/* Überlagerungen schaffen links Lesbarkeit und unten einen sauberen Abschluss. */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg,
            rgba(2, 4, 3, .94) 0%,
            rgba(2, 4, 3, .78) 32%,
            rgba(2, 4, 3, .24) 65%,
            rgba(2, 4, 3, .14) 100%),
        linear-gradient(180deg,
            rgba(2, 3, 2, .10) 0%,
            rgba(2, 3, 2, .05) 55%,
            rgba(2, 3, 2, .78) 100%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .86));
    pointer-events: none;
}

.hero-shell {
    width: min(1280px, calc(100% - clamp(40px, 8vw, 150px)));
    min-height: calc(100svh - var(--cms-header-height));
    margin-inline: auto;
    padding: clamp(70px, 8vh, 104px) 0 clamp(38px, 5vh, 58px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(48px, 8vh, 84px);
}

.hero-copy {
    width: min(830px, 68%);
    min-width: 0;
}

.hero .eyebrow {
    display: block;
    margin: 0 0 clamp(14px, 2vh, 22px);
    color: var(--cms-gold);
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(.88rem, 1.25vw, 1.18rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 830px;
    margin: 0 0 clamp(20px, 3vh, 34px);
    color: #fff;
    font-family: "Oswald", Arial, sans-serif;
    font-size: clamp(4rem, 7.25vw, 7.25rem);
    font-weight: 700;
    line-height: .96;
    letter-spacing: -.035em;
    text-transform: uppercase;
    text-wrap: balance;
    overflow-wrap: normal;
    text-shadow: 0 8px 26px rgba(0, 0, 0, .78);
}

.hero-lead {
    width: min(720px, 100%);
    margin: 0;
    color: #fff;
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.32rem);
    font-weight: 400;
    line-height: 1.62;
    text-shadow: 0 3px 12px #000;
}

.hero-lead p:last-child {
    margin-bottom: 0;
}

/* Schlichte Statistikleiste wie in der Vorlage. */
.hero .stats {
    width: 100%;
    margin: 0;
    padding: clamp(24px, 3vh, 34px) 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.72);
    border-bottom: 1px solid rgba(255,255,255,.72);
    background: rgba(0,0,0,.14);
    box-shadow: none;
    backdrop-filter: blur(1px);
}

.hero .stats > div {
    min-width: 0;
    padding: 0 clamp(16px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,.22);
}

.hero .stats > div:last-child {
    border-right: 0;
}

.hero .stat-value {
    color: var(--cms-cream);
    font-family: "Oswald", Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1;
    text-transform: none;
}

.hero .stat-label {
    margin-top: 10px;
    color: #fff;
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(.66rem, .8vw, .79rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .13em;
    text-transform: uppercase;
}

/* Die erste reguläre Sektion kann das Titelbild nicht mehr überlappen. */
.hero + .anchor-target,
.hero + .section,
#home > .section {
    clear: both;
    position: relative;
    z-index: 2;
}

/* Desktop mit geringerer Höhe */
@media (max-height: 800px) and (min-width: 1061px) {
    .hero-shell {
        padding-top: 54px;
        padding-bottom: 30px;
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 6.5vw, 6rem);
    }

    .hero .stats {
        padding-block: 20px;
    }
}

@media (max-width: 1230px) {
    :root {
        --cms-header-height: 94px;
    }

    .cms14-brand {
        flex-basis: 300px;
        max-width: 300px;
    }

    .hero-shell {
        width: min(1080px, calc(100% - 56px));
    }

    .hero-copy {
        width: min(760px, 72%);
    }
}

@media (max-width: 1060px) {
    :root {
        --cms-header-height: 82px;
    }

    .cms14-brand {
        flex-basis: min(300px, calc(100vw - 100px));
        max-width: 300px;
        padding-block: 8px;
    }

    .cms14-brand-logo {
        max-height: 62px;
    }

    #home > .hero:first-child,
    .hero {
        min-height: calc(100svh - var(--cms-header-height));
        background-position: 59% center;
    }

    .hero-shell {
        width: min(820px, calc(100% - 40px));
        min-height: calc(100svh - var(--cms-header-height));
        padding-top: clamp(46px, 7vh, 72px);
    }

    .hero-copy {
        width: min(680px, 88%);
    }

    .hero::before {
        background:
            linear-gradient(90deg, rgba(2,4,3,.94), rgba(2,4,3,.58)),
            linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78));
    }
}

@media (max-width: 720px) {
    .hero-shell {
        width: calc(100% - 28px);
        padding: 40px 0 28px;
        gap: 42px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(3rem, 13vw, 5rem);
        line-height: .94;
    }

    .hero-lead {
        max-width: 42rem;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0;
    }

    .hero .stats > div {
        padding: 22px 16px;
    }

    .hero .stats > div:nth-child(2) {
        border-right: 0;
    }

    .hero .stats > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.22);
    }

    .hero .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --cms-header-height: 72px;
    }

    .cms14-brand {
        max-width: 240px;
    }

    .cms14-brand-logo {
        max-height: 52px;
    }

    #home > .hero:first-child,
    .hero,
    .hero-shell {
        min-height: calc(100svh - var(--cms-header-height));
    }

    .hero {
        background-position: 64% center;
    }

    .hero-shell {
        width: calc(100% - 20px);
        padding-top: 30px;
    }

    .hero .eyebrow {
        letter-spacing: .20em;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 14vw, 3.7rem);
    }

    .hero .stats > div {
        padding: 18px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}


/* ============================================================
   WWII Online CMS v15.6.5 – Designkorrekturen
   ============================================================ */

/* Keine roten Trennlinien mehr. */
.cms14-nav-bar,
.cms14-nav-wrap,
.site-header {
    border-bottom: 0 !important;
}

.cms14-nav-bar::before,
.cms14-nav-bar::after,
.cms14-nav-wrap::before,
.cms14-nav-wrap::after {
    background: none !important;
    border: 0 !important;
}

/* Logo vollständig transparent und ohne weiße Randflächen. */
.cms14-brand {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.cms14-brand-logo {
    display: block;
    width: 100%;
    height: auto;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    filter: none !important;
}

/* Hero-Inhalt folgt dem vorgegebenen Aufbau:
   Beschreibung, danach genau 20px Abstand bis zur oberen weißen Linie. */
.hero-shell {
    justify-content: flex-start !important;
    gap: 0 !important;
}

.hero-copy {
    margin-bottom: 20px !important;
}

.hero .stats {
    margin-top: 0 !important;
}

/* Die Statistiktexte stehen innerhalb des Bereichs direkt unter der oberen Linie. */
.hero .stats {
    padding-top: clamp(24px, 3vh, 34px) !important;
}

/* Hero füllt weiterhin die sichtbare Höhe. */
.hero-shell {
    min-height: calc(100svh - var(--cms-header-height));
}

@media (max-width: 720px) {
    .hero-copy {
        margin-bottom: 20px !important;
    }
}


/* ============================================================
   WWII Online CMS v15.6.6 – Emblemposition und Hero-Abstände
   ============================================================ */

/* Der Textblock bleibt klar links und kollidiert nicht mit dem Emblem. */
.hero-copy {
    width: min(790px, 57%) !important;
    max-width: 790px;
}

/* Die Statistikleiste bleibt 20 px unterhalb des Beschreibungstextes. */
.hero-copy {
    margin-bottom: 20px !important;
}

.hero .stats {
    margin-top: 0 !important;
}

/* Titelbildausrichtung passend zur finalen Desktopansicht. */
.hero,
#home > .hero:first-child {
    background-position: center center !important;
}

@media (max-width: 1230px) {
    .hero-copy {
        width: min(720px, 64%) !important;
    }
}

@media (max-width: 1060px) {
    .hero-copy {
        width: min(680px, 82%) !important;
    }

    .hero,
    #home > .hero:first-child {
        background-position: 62% center !important;
    }
}

@media (max-width: 720px) {
    .hero-copy {
        width: 100% !important;
    }

    .hero,
    #home > .hero:first-child {
        background-position: 68% center !important;
    }
}


/* ============================================================
   WWII Online CMS v15.6.7 – Hero-Positionierung und Live-Slugs
   ============================================================ */

/* Der markierte Inhaltsbereich sitzt kompakt und vollständig im sichtbaren
   Hero. Überschrift, Beschreibung und Statistikleiste bilden eine Einheit. */
.hero-shell {
    width: min(1240px, calc(100% - clamp(36px, 7vw, 120px))) !important;
    min-height: calc(100svh - var(--cms-header-height)) !important;
    margin-inline: auto !important;
    padding-top: clamp(42px, 5.5vh, 66px) !important;
    padding-bottom: clamp(30px, 4vh, 46px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 0 !important;
}

.hero-copy {
    width: min(720px, 58%) !important;
    max-width: 720px !important;
    margin: 0 0 20px !important;
    position: relative;
    z-index: 3;
}

.hero .eyebrow {
    margin-bottom: 12px !important;
}

.hero h1 {
    max-width: 720px !important;
    margin-bottom: 18px !important;
    font-size: clamp(3.4rem, 5.8vw, 6.25rem) !important;
    line-height: .94 !important;
}

.hero-lead {
    width: min(650px, 100%) !important;
    font-size: clamp(.98rem, 1.18vw, 1.2rem) !important;
    line-height: 1.55 !important;
}

.hero .stats {
    width: min(100%, 1020px) !important;
    margin: 0 !important;
    padding: 22px 0 !important;
    position: relative;
    z-index: 3;
}

/* Das Emblem liegt im Titelbild rechts außerhalb des Textbereichs.
   Die dunkle Lesbarkeitsmaske endet früher, damit das Emblem sichtbar bleibt. */
.hero::before {
    background:
        linear-gradient(90deg,
            rgba(2,4,3,.95) 0%,
            rgba(2,4,3,.78) 28%,
            rgba(2,4,3,.34) 50%,
            rgba(2,4,3,.08) 69%,
            rgba(2,4,3,.02) 100%),
        linear-gradient(180deg,
            rgba(2,3,2,.08) 0%,
            rgba(2,3,2,.04) 56%,
            rgba(2,3,2,.76) 100%) !important;
}

@media (max-height: 820px) and (min-width: 1061px) {
    .hero-shell {
        padding-top: 34px !important;
        padding-bottom: 24px !important;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 5.1vw, 5.35rem) !important;
        margin-bottom: 14px !important;
    }

    .hero-copy {
        margin-bottom: 20px !important;
    }

    .hero .stats {
        padding-block: 18px !important;
    }
}

@media (max-width: 1230px) {
    .hero-copy {
        width: min(690px, 65%) !important;
    }
}

@media (max-width: 1060px) {
    .hero-shell {
        width: min(840px, calc(100% - 36px)) !important;
        padding-top: 42px !important;
    }

    .hero-copy {
        width: min(670px, 84%) !important;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 9vw, 5.4rem) !important;
    }
}

@media (max-width: 720px) {
    .hero-shell {
        width: calc(100% - 26px) !important;
        padding-top: 32px !important;
    }

    .hero-copy {
        width: 100% !important;
        max-width: none !important;
    }

    .hero h1 {
        max-width: 11ch !important;
        font-size: clamp(2.8rem, 13vw, 4.8rem) !important;
    }

    .hero .stats {
        width: 100% !important;
    }
}

/* Frontend-Sprachumschalter DE/EN ----------------------------------------- */
.cms14-language-item {
    display: flex;
    align-items: center;
}

.cms14-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 5px;
    background: rgba(0,0,0,.2);
}

.cms14-language-switcher > span {
    color: rgba(255,255,255,.35);
}

.cms14-language-button {
    appearance: none;
    border: 0;
    padding: 2px 4px;
    background: transparent;
    color: rgba(255,255,255,.68);
    font: inherit;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    cursor: pointer;
}

.cms14-language-button:hover,
.cms14-language-button:focus-visible,
.cms14-language-button.is-active {
    color: #fff;
}

.cms14-language-button.is-active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cms-google-translate-element,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-balloon-frame,
#goog-gt-tt {
    display: none !important;
}

body {
    top: 0 !important;
}

@media (max-width: 1060px) {
    .cms14-language-item {
        width: 100%;
        padding: 8px 0;
    }
}


/* Admin translation status, CMS 16.1.3 */
.translation-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 28px;
    padding: 2px 6px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 6px;
    background: rgba(255,255,255,.06);
    font-size: 22px;
    line-height: 1;
    cursor: help;
}
.translation-inline-form { display: inline-flex; margin: 0; }

/* ============================================================
   CMS 16.2.0 responsive hotfix – Header, Startseite, mobile Inhalte
   ============================================================ */
:root { --cms-mobile-breakpoint: 1480px; }

html { overflow-x: hidden; scroll-padding-top: calc(var(--cms-header-height) + 18px); }
body { width: 100%; overflow-x: clip; }
img, video, iframe, svg { max-width: 100%; }

/* Alle Seiten beginnen unter dem feststehenden Header. */
body > main:not(#home) { padding-top: var(--cms-header-height); }
.anchor-target { display:block; position:relative; top:calc(-1 * var(--cms-header-height) - 12px); visibility:hidden; }

/* Der Header darf nie breiter als der Viewport werden. */
.cms14-nav-wrap, .cms14-nav-bar { width:100%; max-width:100vw; }
.cms14-nav-bar { display:flex; align-items:center; justify-content:space-between; }
.cms14-brand { min-width:0; }
.cms14-nav-item > a, .cms14-dropdown-toggle { position:relative; }
.cms14-menu-toggle { position:relative; z-index:9003; }

/* Bei der großen Anzahl an Menüpunkten wird bereits auf normalen Notebooks
   auf das vollständige Hamburger-Menü umgeschaltet. */
@media (max-width: 1480px) {
  :root { --cms-header-height: 82px; }

  .cms14-nav-bar { min-height:var(--cms-header-height); padding-inline:18px; }
  .cms14-brand { flex:0 1 min(300px, calc(100vw - 92px)); max-width:300px; padding-block:8px; }
  .cms14-brand-logo { width:100%; max-height:64px; }
  .cms14-menu-toggle { display:block !important; }

  .cms14-nav-backdrop {
    position:fixed; inset:0; z-index:9000; display:block;
    background:rgba(0,0,0,.76); opacity:0; visibility:hidden;
    pointer-events:none; transition:opacity .24s ease, visibility .24s ease;
  }
  .cms14-nav-backdrop.is-active { opacity:1; visibility:visible; pointer-events:auto; }

  .cms14-main-nav {
    position:fixed; top:0; right:0; z-index:9002;
    display:block; width:min(410px, 92vw); height:100dvh;
    padding:calc(var(--cms-header-height) + 20px) 16px 28px;
    overflow-x:hidden; overflow-y:auto; overscroll-behavior:contain;
    transform:translateX(105%); transition:transform .28s ease;
    background:linear-gradient(180deg,#111410,#050605);
    border-left:2px solid rgba(210,170,75,.5);
    box-shadow:-12px 0 28px rgba(0,0,0,.55);
  }
  .cms14-main-nav.is-active { transform:translateX(0); }
  .cms14-nav-list { display:block; width:100%; }
  .cms14-nav-item { width:100%; margin:0 0 8px; }
  .cms14-nav-item > a, .cms14-dropdown-toggle {
    width:100%; min-height:48px; justify-content:space-between;
    padding:0 14px; font-size:.92rem; white-space:normal; text-align:left;
    background:rgba(255,255,255,.025); border:1px solid rgba(210,170,75,.18);
  }
  .cms14-nav-item > a::after, .cms14-dropdown-toggle::after { display:none; }

  /* Dropdowns öffnen mobil ausschließlich per Klick, nicht durch Hover. */
  .cms14-dropdown-menu,
  .cms14-nav-item:hover > .cms14-dropdown-menu,
  .cms14-nav-item:focus-within > .cms14-dropdown-menu {
    position:static; width:100%; min-width:0; max-height:0;
    margin:0; padding:0 0 0 12px; overflow:hidden;
    opacity:1; visibility:visible; transform:none; pointer-events:none;
    border:0; border-left:2px solid var(--cms-header-gold);
    box-shadow:none; background:transparent;
    transition:max-height .26s ease, margin .26s ease, padding .26s ease;
  }
  .cms14-nav-item.is-open > .cms14-dropdown-menu {
    max-height:700px; margin-top:7px; padding-top:2px; padding-bottom:2px;
    pointer-events:auto;
  }
  .cms14-dropdown-menu a { white-space:normal; }
  .cms14-language-item { width:100%; padding:6px 0; }
  .cms14-language-switcher { width:100%; justify-content:center; min-height:44px; }
}

@media (min-width: 1481px) {
  .cms14-menu-toggle, .cms14-nav-backdrop { display:none !important; }
  .cms14-main-nav { transform:none !important; }
}

/* Startseite: stabile Abstände und skalierende Typografie. */
#home { width:100%; padding-top:var(--cms-header-height); }
#home > .hero:first-child { padding-top:0 !important; }
.hero { min-height:clamp(620px, calc(100svh - var(--cms-header-height)), 930px); }
.hero-shell {
  width:min(1240px, calc(100% - 48px)) !important;
  min-height:calc(100svh - var(--cms-header-height)) !important;
  padding-block:clamp(42px,7vh,82px) clamp(34px,6vh,64px) !important;
  justify-content:center !important;
}
.hero-copy { width:min(720px, 62%) !important; }
.hero .eyebrow { padding-top:0 !important; }
.hero h1 { overflow-wrap:anywhere; }

@media (max-width: 980px) {
  .container { width:min(100% - 32px, 1280px); }
  .section { padding:64px 0; }
  .section-head { margin-bottom:28px; }
  .hero { background-position:64% center !important; }
  .hero-shell { width:calc(100% - 32px) !important; justify-content:flex-end !important; }
  .hero-copy { width:min(680px, 88%) !important; }
  .hero h1 { font-size:clamp(3rem, 10vw, 5.5rem) !important; }
  #event-banner, #handbuch-banner, #rekrutierung-banner {
    height:auto !important; min-height:clamp(260px, 55vw, 540px) !important;
    background-size:cover; background-position:center;
  }
}

@media (max-width: 720px) {
  :root { --cms-header-height:72px; }
  .cms14-nav-bar { min-height:var(--cms-header-height); padding-inline:12px; }
  .cms14-brand { flex-basis:min(245px, calc(100vw - 78px)); max-width:245px; }
  .cms14-brand-logo { max-height:56px; }
  .cms14-menu-toggle { width:44px; height:40px; padding-inline:10px; }

  .container { width:calc(100% - 24px); }
  .section { padding:48px 0; }
  .section h2 { font-size:clamp(2rem, 10vw, 3.3rem); }
  .card, .briefing-card { padding:18px; margin:14px 0; }
  .card h3 { font-size:clamp(1.45rem, 7vw, 2rem); }

  .hero { min-height:calc(100svh - var(--cms-header-height)); background-position:61% center !important; }
  .hero-shell { width:calc(100% - 24px) !important; min-height:calc(100svh - var(--cms-header-height)) !important; padding-block:28px !important; }
  .hero-copy { width:100% !important; margin-bottom:18px !important; }
  .hero h1 { max-width:10ch !important; font-size:clamp(2.65rem, 14vw, 4.2rem) !important; }
  .hero-lead { font-size:1rem !important; }
  .hero .stats { grid-template-columns:repeat(2,minmax(0,1fr)); padding:16px 0 !important; }
  .hero .stats > div { padding-inline:8px; }
  .stat-value { font-size:26px; }
  .stat-label { font-size:.65rem; letter-spacing:.09em; }

  .grid-2, .grid-3 { grid-template-columns:minmax(0,1fr); gap:16px; }
  .overview-grid { grid-template-columns:minmax(0,1fr); }
  .content-body { overflow-wrap:anywhere; }
  .content-body table { min-width:680px; }
  .content-body:has(> table) { overflow-x:auto; -webkit-overflow-scrolling:touch; }
}

@media (max-width: 420px) {
  .cms14-brand { max-width:205px; }
  .cms14-main-nav { width:94vw; padding-inline:12px; }
  .hero h1 { font-size:clamp(2.35rem, 14vw, 3.5rem) !important; }
  .hero .stats { gap:0; }
}
