/*
Theme Name:   bleisure Traveller
Theme URI:    https://bleisuretraveller.com
Author:       bleisure Traveller
Author URI:   https://bleisuretraveller.com
Description:  Editorial WordPress-Theme für das Magazin "bleisure Traveller" – Startseite mit dynamischem Hero-Mosaik (Kategorie "hero"), Kategorie-Grids, Team-Sektion, Feature-Banner und Newsletter. Voll responsive, mit frei anlegbaren Menüs.
Version:      1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain:  bleisure
Tags:         blog, news, magazine, one-column, three-columns, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ══════════════════════════════════════════════════════════
   RESET & TOKENS
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0a0a0a;
  --white:      #ffffff;
  --off-white:  #f5f3ee;
  --gray-l:     #e5e3de;
  --gray-m:     #888880;
  --gray-d:     #333330;
  --magenta:    #c8005a;
  --teal:       #006b62;
  --teal-bg:    #e6f2f0;

  --h:  'Oswald', 'Arial Narrow', sans-serif;
  --s:  'Playfair Display', Georgia, serif;
  --b:  'Inter', system-ui, sans-serif;
  --j:  'Jost', system-ui, sans-serif;
  --max: 1200px;
  --article-max: 740px;
  --gap: 24px;
}

html { -webkit-text-size-adjust: 100%; }
body { font-family: var(--h); color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--black); color: var(--white); padding: 12px 20px; }
.skip-link:focus { left: 0; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.site-header { background: var(--white); border-bottom: 2px solid var(--black); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 32px; height: 76px; }
.site-logo { flex-shrink: 0; display: flex; flex-direction: column; }
.site-logo img.custom-logo { max-height: 56px; width: auto; }
.logo-top  { font-family: var(--b); font-weight: 200; font-size: 20px; letter-spacing: 2.5px; line-height: 1; }
.logo-rule { display: block; height: 2px; background: var(--black); margin: 3px 0; }
.logo-main { font-family: var(--s); font-weight: 900; font-size: 30px; line-height: 1; }
.logo-sub  { font-family: var(--b); font-size: 9px; font-style: italic; letter-spacing: 2px; color: var(--gray-m); }

.menu-toggle {
  display: none; background: none; border: 2px solid var(--black); cursor: pointer;
  width: 44px; height: 40px; align-items: center; justify-content: center; flex-shrink: 0;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--black); position: relative; transition: transform .2s, opacity .2s;
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after  { position: absolute; top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.menu-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); top: 0; }

.main-navigation { flex: 1; }
.main-nav { display: flex; list-style: none; flex-wrap: wrap; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex; align-items: center; gap: 4px; height: 76px; padding: 0 14px;
  font-family: var(--h); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  transition: color .2s; white-space: nowrap;
}
.main-nav li.menu-item-has-children > a::after { content: '▾'; font-size: 9px; opacity: .5; }
.main-nav > li > a:hover, .main-nav > li:hover > a, .main-nav > li.current-menu-item > a { color: var(--magenta); }

.main-nav .sub-menu {
  display: none; position: absolute; top: 100%; left: 0; background: var(--white);
  border-top: 2px solid var(--black); border-bottom: 1px solid var(--gray-l);
  list-style: none; min-width: 220px; z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.main-nav .sub-menu.wide { min-width: 300px; }
.main-nav > li:hover > .sub-menu, .main-nav > li.sfhover > .sub-menu { display: block; }
.main-nav .sub-menu li { border-bottom: 1px solid var(--gray-l); }
.main-nav .sub-menu li:last-child { border-bottom: none; }
.main-nav .sub-menu li a {
  display: block; padding: 11px 20px; font-family: var(--h); font-weight: 600; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--black); transition: color .15s, background .15s;
}
.main-nav .sub-menu li a:hover { color: var(--magenta); background: var(--off-white); }
.main-nav .sub-menu .dd-desc {
  display: block; font-family: var(--b); font-weight: 400; font-size: 10px; letter-spacing: 0;
  text-transform: none; color: var(--gray-m); margin-top: 2px; line-height: 1.4;
}

.search-wrap { position: relative; display: flex; align-items: center; }
.search-toggle { background: none; border: none; cursor: pointer; padding: 8px; display: flex; align-items: center; color: var(--black); transition: color .2s; }
.search-toggle:hover { color: var(--magenta); }
.search-toggle svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.search-form { display: flex; align-items: center; position: absolute; right: 36px; top: 50%; transform: translateY(-50%); overflow: hidden; width: 0; transition: width .3s ease; background: var(--white); }
.search-wrap.open .search-form { width: 220px; }
.search-form input { width: 100%; border: none; border-bottom: 2px solid var(--black); padding: 4px 8px; font-family: var(--b); font-size: 12px; letter-spacing: 1px; background: transparent; outline: none; }
.search-form input::placeholder { color: var(--gray-m); }

/* ══════════════════════════════════════════════════════════
   HERO MOSAIK (Kategorie "hero")
   ══════════════════════════════════════════════════════════ */
.hero { max-width: var(--max); margin: 40px auto 0; display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 2fr 1.8fr 2fr; height: 105vh; min-height: 700px; background: var(--off-white); gap: 5px; border: 3px solid var(--black); }
.hero-img-main { grid-column: 1; overflow: hidden; }
.hero-img-2 { grid-column: 2; grid-row: 1; overflow: hidden; }
.hero-img-3 { grid-column: 3; grid-row: 1; overflow: hidden; }
.hero-img-4 { grid-column: 1; grid-row: 3; overflow: hidden; }
.hero-img-5 { grid-column: 2; grid-row: 3; overflow: hidden; }
.hero-img-6 { grid-column: 3; grid-row: 3; overflow: hidden; }
.hero-img-main, .hero-img-2, .hero-img-3, .hero-img-4, .hero-img-5, .hero-img-6 { position: relative; }
.hero-img-main img, .hero-img-2 img, .hero-img-3 img, .hero-img-4 img, .hero-img-5 img, .hero-img-6 img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.hero-img-main:hover img, .hero-img-2:hover img, .hero-img-3:hover img, .hero-img-4:hover img, .hero-img-5:hover img, .hero-img-6:hover img { transform: scale(1.03); }

.hero-img-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 16px 14px; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%); pointer-events: none; }
.hero-img-cat { display: block; font-family: var(--h); font-weight: 600; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 5px; }
.hero-img-cat.dest    { color: rgba(255,255,255,.65); }
.hero-img-cat.work    { color: #4ecdc4; }
.hero-img-cat.dossier { color: #ff6f9c; }
.hero-img-title { font-family: var(--h); font-weight: 700; font-size: 24px; line-height: 1.08; text-transform: uppercase; color: var(--white); }
.hero-img-main .hero-img-title { font-size: 24px; }
.hero-img-main .hero-img-cat   { font-size: 10px; }

.hero-links { grid-column: 1; grid-row: 2; display: flex; flex-direction: column; justify-content: space-between; padding: 16px 20px 32px; }
.hero-link-item { flex: 1; display: flex; align-items: center; border-top: 1px solid var(--gray-l); }
.hero-link-item:last-child { border-bottom: 1px solid var(--gray-l); }
.hero-link-item a { display: block; transition: opacity .2s; }
.hero-link-item a:hover { opacity: .6; }
.hero-link-cat { display: block; font-family: var(--h); font-weight: 600; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 3px; }
.hero-link-cat.dest    { color: var(--gray-m); }
.hero-link-cat.work    { color: var(--gray-d); }
.hero-link-cat.dossier { color: var(--magenta); }
.hero-link-cat.news    { color: var(--gray-d); }
.hero-link-title { font-family: var(--h); font-weight: 700; font-size: 16px; line-height: 1.15; text-transform: uppercase; color: var(--black); }

.hero-text { grid-column: 2 / 4; grid-row: 2; display: flex; align-items: flex-end; justify-content: space-between; padding: 20px 28px 32px; gap: 20px; }
.hero-text h1 { font-family: "Playfair Display", Georgia, serif; font-weight: 700; font-size: clamp(32px, 5.2vw, 74px); line-height: .95; letter-spacing: -1px; color: var(--black); }
.hero-text-meta { max-width: 200px; text-align: right; font-size: 16px; color: var(--gray-d); line-height: 1.65; padding-bottom: 6px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   SECTIONS & CARDS
   ══════════════════════════════════════════════════════════ */
.section { max-width: var(--max); margin: 0 auto; padding: 62px 24px; }
.section-hd { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.section-hd h2 { font-family: var(--h); font-weight: 300; font-size: 26px; letter-spacing: 3px; text-transform: uppercase; white-space: nowrap; }
.hd-rule { flex: 1; height: 1px; background: var(--black); }
.see-all { font-family: var(--h); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; color: var(--gray-m); }
.see-all:hover { color: var(--black); }

.card-img { overflow: hidden; margin-bottom: 14px; background: var(--gray-l); }
.card-img img { width: 100%; object-fit: cover; transition: transform .4s ease; }
.card-img:hover img { transform: scale(1.04); }
.card-cat { font-family: var(--h); font-weight: 600; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; display: block; padding: 0 14px; }
.card-cat.dest    { color: var(--black); }
.card-cat.work    { color: var(--teal); }
.card-cat.dossier { color: var(--magenta); }
.card-cat.news    { color: var(--gray-d); }
.card-title { font-family: var(--h); font-weight: 700; font-size: 22px; line-height: 1.08; text-transform: uppercase; margin-bottom: 8px; padding: 0 14px; }
.card-title.lg { font-size: 34px; }
.card-title.sm { font-size: 17px; }
.card-teaser { font-family: var(--j); font-weight: 400; font-size: 16px; color: var(--gray-d); line-height: 1.3; padding: 0 14px; }
.card-meta { margin-top: 10px; font-size: 11px; color: var(--gray-m); padding: 0 14px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 5px; row-gap: 40px; }
.grid-3 .card-img img { aspect-ratio: 3/2; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px 20px; row-gap: 32px; }
.grid-4 .card-img img { aspect-ratio: 3/2; }
.empty-note { font-family: var(--b); font-size: 13px; color: var(--gray-m); padding: 0 14px; }

/* ══════════════════════════════════════════════════════════
   TEAM SECTION
   ══════════════════════════════════════════════════════════ */
.team-section { background: var(--off-white); padding: 56px 24px; border-top: 3px solid var(--black); border-bottom: 3px solid var(--black); }
.team-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.team-statement { color: var(--black); align-self: center; }
.team-statement-inner { display: flex; gap: 16px; align-items: flex-start; }
.team-statement-text { padding-left: 20px; }
.team-statement h2 { font-family: var(--h); font-weight: 700; font-size: 26px; text-transform: uppercase; line-height: 1.15; margin-bottom: 14px; }
.team-statement p { font-family: var(--b); font-size: 15px; color: var(--gray-d); line-height: 1.6; }
.pq-mark { font-family: var(--h); font-weight: 700; font-size: 66px; line-height: 0; letter-spacing: -6px; flex-shrink: 0; color: transparent; -webkit-text-stroke: 2.5px var(--black); }

.team-editors-wrap { position: relative; overflow: hidden; }
.team-editors { display: flex; flex-direction: row; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scroll-behavior: smooth; }
.team-editors::-webkit-scrollbar { height: 3px; }
.team-editors::-webkit-scrollbar-track { background: var(--gray-l); }
.team-editors::-webkit-scrollbar-thumb { background: var(--black); }

.scroll-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 2px solid var(--black); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; font-size: 20px; line-height: 1; transition: opacity .25s, background .2s; }
.scroll-btn:hover { background: var(--off-white); }
.scroll-btn.hidden { opacity: 0; pointer-events: none; }
.scroll-btn-left { left: 8px; }
.scroll-btn-right { right: 8px; }

.editor-card { flex: 0 0 300px; border: 2px solid var(--black); scroll-snap-align: start; background: var(--white); }
.editor-card-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 16px 0 0; margin-left: 16px; border-bottom: 4px solid var(--black); gap: 12px; }
.editor-card img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; margin-bottom: -30px; border: 5px solid var(--white); }
.editor-name { font-family: var(--h); font-weight: 700; font-size: 20px; line-height: 0.5; text-transform: lowercase; color: var(--black); flex: 1; }
.editor-role { font-family: var(--h); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--magenta); margin-bottom: 8px; display: block; }
.editor-card-body { padding: 16px; margin-top: 16px; }
.editor-bio { font-family: var(--h); font-weight: 400; font-size: 14px; line-height: 1.6; color: var(--black); }
.editor-bio p + p { margin-top: 12px; }
.editor-card-all { display: flex; align-items: center; justify-content: center; border: 2px solid var(--black); background: var(--off-white); flex: 0 0 300px; scroll-snap-align: start; font-family: var(--h); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 1px; color: var(--black); transition: background .2s, color .2s; }
.editor-card-all:hover { background: var(--black); color: var(--white); }

/* ══════════════════════════════════════════════════════════
   FEATURE BANNER
   ══════════════════════════════════════════════════════════ */
.feat-banner { position: relative; height: 480px; overflow: hidden; }
.feat-banner img { width: 100%; height: 100%; object-fit: cover; }
.feat-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.08) 60%); }
.feat-banner-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; max-width: calc(var(--max) + 48px); margin: 0 auto; }
.feat-headline { font-family: var(--h); font-weight: 700; font-size: 40px; text-transform: uppercase; line-height: .93; color: var(--white); margin-bottom: 12px; }
.feat-sub { font-size: 18px; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 20px; }
.feat-banner-content .read-more { display: inline-block; font-family: var(--h); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); border-bottom: 2px solid var(--white); padding-bottom: 2px; }

hr.thick { border: none; border-top: 2px solid var(--black); }

/* ══════════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════════ */
.newsletter { background: #dce8f0; padding: 56px 24px; text-align: center; border-bottom: 3px solid var(--black); border-top: 3px solid var(--black); }
.newsletter h2 { font-family: var(--h); font-weight: 700; font-size: clamp(24px, 3vw, 38px); text-transform: uppercase; letter-spacing: 2px; color: var(--black); margin-bottom: 8px; }
.newsletter p { font-size: 16px; color: var(--gray-d); max-width: 460px; margin: 0 auto 28px; }
.nl-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.nl-input { flex: 1; min-width: 180px; padding: 13px 16px; background: var(--white); border: 1px solid #aac4d8; color: var(--black); font-family: var(--b); font-size: 13px; outline: none; }
.nl-input::placeholder { color: var(--gray-m); }
.nl-btn { padding: 13px 22px; background: var(--magenta); color: var(--white); font-family: var(--h); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; }

/* ══════════════════════════════════════════════════════════
   PARTNER + FOOTER
   ══════════════════════════════════════════════════════════ */
.partner-section { border-top: 1px solid var(--gray-l); border-bottom: 1px solid var(--gray-l); padding: 36px 24px; }
.partner-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.partner-label { font-family: var(--h); font-weight: 700; font-size: 18px; letter-spacing: 2px; text-transform: uppercase; color: var(--black); }
.partner-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.partner-logos a { display: flex; align-items: center; justify-content: center; width: 200px; height: 70px; opacity: .7; transition: opacity .2s; }
.partner-logos a:hover { opacity: 1; }
.partner-logos img { width: 100%; height: 100%; object-fit: contain; }

.site-footer { background: var(--black); padding: 48px 24px 28px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-logo .logo-top, .footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-rule  { background: var(--white); }
.footer-logo .logo-sub   { color: rgba(255,255,255,.35); }
.ft-group h3 { font-family: var(--h); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.ft-group ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ft-group a  { font-family: var(--h); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.68); }
.ft-group a:hover { color: var(--white); }
.ft-nl h3 { font-family: var(--h); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.ft-nl p  { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 14px; line-height: 1.6; }
.ft-nl .nl-form { max-width: 100%; }
.footer-bottom { max-width: var(--max); margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 11px; color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════════════════
   ARTIKELSEITE (single.php)
   ══════════════════════════════════════════════════════════ */
.breadcrumb-bar { background: var(--off-white); padding: 12px 24px; border-bottom: 1px solid var(--gray-l); }
.breadcrumb { max-width: var(--max); margin: 0 auto; }
.breadcrumb ol { list-style: none; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 11px; font-family: var(--b); color: var(--gray-m); }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: '/'; margin-right: 0; }
.breadcrumb a { color: var(--gray-m); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb [aria-current] { color: var(--black); font-weight: 500; }

.article-header { max-width: var(--max); margin: 0 auto; padding: 52px 24px 0; display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.cat-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--h); font-weight: 600; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; padding: 4px 12px; margin-bottom: 20px; }
.cat-label.dest    { background: var(--black); color: var(--white); }
.cat-label.dossier { background: var(--magenta); color: var(--white); }
.cat-label.work    { background: var(--teal); color: var(--white); }
.cat-label.news    { background: var(--gray-d); color: var(--white); }

.article-title { font-family: var(--h); font-weight: 700; font-size: clamp(32px, 5.5vw, 72px); line-height: .95; text-transform: uppercase; letter-spacing: -1.5px; margin-bottom: 18px; }
.article-deck { font-family: var(--h); font-size: clamp(16px, 1.8vw, 20px); font-weight: 400; line-height: 1.45; color: var(--gray-d); margin-bottom: 28px; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--gray-m); padding: 20px 0; border-top: 1px solid var(--gray-l); border-bottom: 1px solid var(--gray-l); font-family: var(--b); }
.meta-author { display: flex; align-items: center; gap: 10px; }
.meta-author img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.meta-author-name { font-weight: 500; color: var(--black); font-size: 12px; }
.meta-tags .tag + .tag { margin-left: 4px; }

.toc { background: var(--off-white); padding: 24px; border-left: 3px solid var(--black); }
.toc h2 { font-family: var(--h); font-weight: 700; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px; }
.toc ol { padding-left: 16px; list-style: decimal; font-size: 13px; display: flex; flex-direction: column; gap: 8px; font-family: var(--b); }
.toc a { color: var(--gray-d); }
.toc a:hover { color: var(--black); }

.article-hero { margin-top: 40px; }
.article-hero img { width: 100%; max-height: 560px; object-fit: cover; }
.hero-caption { max-width: var(--max); margin: 10px auto 0; padding: 0 24px; font-size: 11px; color: var(--gray-m); font-style: italic; font-family: var(--b); }

.article-body { max-width: var(--article-max); margin: 0 auto; padding: 48px 24px; font-family: var(--b); }
.article-body p { font-size: 16px; line-height: 1.75; }
.article-body p + p { margin-top: 1.5em; }
.article-body > p:first-of-type::first-letter, .drop-cap::first-letter { font-family: var(--h); font-weight: 700; font-size: 5.2em; float: left; line-height: .8; margin-right: 8px; margin-top: 4px; text-transform: uppercase; color: var(--black); }
.article-body h2 { font-family: var(--h); font-weight: 700; font-size: 26px; text-transform: uppercase; letter-spacing: .5px; margin-top: 40px; margin-bottom: 16px; padding-top: 20px; border-top: 2px solid var(--black); }
.article-body h3 { font-family: var(--h); font-weight: 700; font-size: 18px; text-transform: uppercase; margin-top: 28px; margin-bottom: 10px; }
.article-body ul, .article-body ol { margin: 1.2em 0 1.2em 1.4em; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body a { text-decoration: underline; text-underline-offset: 2px; }

.article-body blockquote, .pullquote { margin: 40px -60px; padding: 32px 60px 32px 40px; border-left: 4px solid var(--black); background: var(--off-white); }
.article-body blockquote p, .pullquote p { font-family: var(--h); font-weight: 400; font-size: clamp(18px, 2vw, 22px); line-height: 1.42; color: var(--black); }
.article-body blockquote cite, .pullquote cite { display: block; margin-top: 12px; font-size: 12px; font-style: italic; color: var(--gray-m); }

.body-img { margin: 36px -60px; }
.body-img img { width: 100%; max-height: 480px; object-fit: cover; }
.body-img figcaption { padding: 8px 60px 0; font-size: 11px; color: var(--gray-m); font-style: italic; }

.tag { display: inline-block; font-family: var(--h); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 2px 8px; border: 1px solid currentColor; margin-right: 6px; }
.tag.dest    { color: var(--black); }
.tag.work    { color: var(--teal); }
.tag.dossier { color: var(--magenta); }
.tag.news    { color: var(--gray-d); }

.author-box { margin-top: 56px; padding: 28px 0 0; border-top: 2px solid var(--black); display: flex; gap: 20px; align-items: flex-start; }
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box-name { font-family: var(--h); font-weight: 700; font-size: 16px; text-transform: uppercase; margin-bottom: 4px; }
.author-box-bio { font-size: 13px; color: var(--gray-d); line-height: 1.6; }
.author-box-link { display: inline-block; margin-top: 8px; font-family: var(--h); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--magenta); border-bottom: 1px solid var(--magenta); }

.related { background: var(--off-white); padding: 52px 24px; border-top: 2px solid var(--black); }
.related-inner { max-width: var(--max); margin: 0 auto; }
.related-hd { font-family: var(--h); font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; display: flex; align-items: center; gap: 16px; }
.related-hd::after { content: ''; flex: 1; height: 1px; background: var(--black); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rel-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 12px; background: var(--gray-l); }
.rel-card-cat { font-family: var(--h); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--magenta); margin-bottom: 4px; }
.rel-card-title { font-family: var(--h); font-size: 18px; font-weight: 700; text-transform: uppercase; line-height: 1.1; }

/* Standardseiten (page.php, archive, search, 404) */
.page-header-basic { max-width: var(--max); margin: 0 auto; padding: 52px 24px 24px; border-bottom: 1px solid var(--gray-l); }
.page-header-basic h1 { font-family: var(--h); font-weight: 700; font-size: clamp(28px, 4vw, 48px); text-transform: uppercase; }
.page-content-basic { max-width: var(--article-max); margin: 0 auto; padding: 40px 24px; font-family: var(--b); font-size: 16px; line-height: 1.75; }
.page-content-basic p + p { margin-top: 1.4em; }
.pagination { max-width: var(--max); margin: 0 auto; padding: 0 24px 60px; display: flex; gap: 12px; font-family: var(--h); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--gray-l); }
.pagination .current { background: var(--black); color: var(--white); border-color: var(--black); }
.pagination .dots { padding: 8px 4px; border: none; }

.archive-description { font-family: var(--b); font-size: 15px; color: var(--gray-d); line-height: 1.6; margin-top: 14px; max-width: 60ch; }
.error-404-header h1 { color: var(--magenta); }

.page-content-basic .read-more,
.page-content-basic + .section .read-more { display: inline-block; font-family: var(--h); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--black); border-bottom: 2px solid var(--black); padding-bottom: 2px; margin-top: 8px; }

.search-form-inline { position: static; width: auto; display: flex; gap: 10px; margin: 20px 0; max-width: 420px; }
.search-form-inline input { flex: 1; border: 1px solid var(--gray-l); border-bottom: 2px solid var(--black); padding: 10px 12px; font-family: var(--b); font-size: 14px; background: var(--white); }
.search-form-inline button { font-family: var(--h); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 0 18px; background: var(--black); color: var(--white); border: none; cursor: pointer; }

/* ── KOMMENTARE ── */
.comments-area { max-width: var(--article-max); margin: 0 auto; padding: 40px 24px 60px; }
.comments-title { font-family: var(--h); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--black); }
.comment-list { list-style: none; }
.comment-list .children { list-style: none; margin-left: 32px; }
.comment-body { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--gray-l); }
.comment-author .avatar { border-radius: 50%; }
.comment-author .fn { font-family: var(--h); font-weight: 600; font-style: normal; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
.comment-metadata { font-size: 11px; color: var(--gray-m); margin-bottom: 6px; }
.comment-content p { font-size: 14px; line-height: 1.7; color: var(--gray-d); }
.comment-reply-link { font-family: var(--h); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--magenta); border-bottom: 1px solid var(--magenta); margin-top: 6px; display: inline-block; }
.no-comments { color: var(--gray-m); font-size: 14px; margin-bottom: 20px; }

.comment-respond { margin-top: 32px; }
.comment-reply-title { font-family: var(--h); font-weight: 700; font-size: 16px; text-transform: uppercase; margin-bottom: 16px; }
.comment-form p { margin-bottom: 14px; }
.comment-form label { display: block; font-family: var(--h); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea { width: 100%; border: 1px solid var(--gray-l); border-bottom: 2px solid var(--black); padding: 10px 12px; font-family: var(--b); font-size: 14px; background: var(--white); }
.comment-form .form-submit input[type="submit"] { font-family: var(--h); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; padding: 12px 28px; background: var(--black); color: var(--white); border: none; cursor: pointer; }
.comment-form .form-submit input[type="submit"]:hover { background: var(--magenta); }

body.nav-open { overflow: hidden; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .team-inner { grid-template-columns: 1fr; gap: 40px; }
  .article-header { grid-template-columns: 1fr; }
  .toc { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .hero-img-main { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 16/10; }
  .hero-img-2 { grid-column: 1; grid-row: 2; aspect-ratio: 4/3; }
  .hero-img-3 { grid-column: 2; grid-row: 2; aspect-ratio: 4/3; }
  .hero-links { grid-column: 1 / 3; grid-row: 3; padding: 16px 20px; }
  .hero-text { grid-column: 1 / 3; grid-row: 4; flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
  .hero-text-meta { text-align: left; max-width: 100%; }
  .hero-img-4 { grid-column: 1; grid-row: 5; aspect-ratio: 4/3; }
  .hero-img-5 { grid-column: 2; grid-row: 5; aspect-ratio: 4/3; }
  .hero-img-6 { grid-column: 1 / 3; grid-row: 6; aspect-ratio: 16/9; }
}

/*
 * Die "bleed"-Elemente im Artikeltext (Pullquotes, eingebettete Bilder)
 * ragen per negativem Margin (-60px je Seite) über die 740px breite
 * Textspalte hinaus. Das funktioniert nur, solange links/rechts davon
 * mindestens 60px Weißraum vorhanden ist – also erst ab einer
 * Fensterbreite von 740px (Spalte) + 2 × 60px (Bleed) = 860px.
 * Darunter (u. a. auf allen gängigen Tablets im Hoch- und Querformat,
 * ~780–860px) würde der Bleed sonst seitlich abgeschnitten. Deshalb
 * eigener Breakpoint bei 900px, unabhängig vom Nav-Umbruch bei 780px.
 */
@media (max-width: 900px) {
  .article-body blockquote, .pullquote, .body-img { margin-left: 0; margin-right: 0; padding-left: 20px; padding-right: 20px; }
  .body-img figcaption { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 780px) {
  .header-inner { height: 64px; gap: 16px; }
  .menu-toggle { display: flex; }
  .main-navigation { position: fixed; inset: 64px 0 0 0; background: var(--white); transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; z-index: 150; flex: none; }
  .main-navigation.is-open { transform: translateX(0); }
  .main-nav { flex-direction: column; }
  .main-nav > li > a { height: auto; padding: 16px 24px; border-bottom: 1px solid var(--gray-l); justify-content: space-between; }
  .main-nav .sub-menu { display: none; position: static; border: none; box-shadow: none; background: var(--off-white); }
  .main-nav li.sub-menu-open > .sub-menu { display: block; }
  .main-nav .sub-menu li a { padding: 12px 36px; }
  .logo-main { font-size: 24px; }
  .logo-top { font-size: 16px; }

  .article-body > p:first-of-type::fi