:root {
  --nacht: #08172f;
  --nacht-2: #102546;
  --mint: #8df0c8;
  --mint-dunkel: #147b61;
  --weiss: #ffffff;
  --papier: #f5f8f7;
  --tinte: #14213a;
  --grau: #617084;
  --linie: #cad8d4;
  --koralle: #ff755f;
  --gelb: #ffd65a;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--tinte);
  background: var(--papier);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--koralle); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  position: relative;
  z-index: 10;
  color: var(--weiss);
  background: var(--nacht);
  border-bottom: 1px solid rgba(141, 240, 200, .28);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--weiss);
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand-mark {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--nacht);
  background: var(--mint);
  border: 2px solid var(--weiss);
  border-radius: 50% 50% 8px 50%;
  font-size: 16px;
}
.main-nav { margin-left: auto; scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }
.main-nav ul { display: flex; gap: 23px; padding: 0; margin: 0; list-style: none; }
.main-nav a { color: #dfe9ee; text-decoration: none; font-size: 14px; font-weight: 700; }
.main-nav a:hover { color: var(--mint); }
.search-toggle {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--weiss);
  background: transparent;
  font-size: 0;
}
.search-toggle::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  margin: 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-2px,-1px);
}
.search-toggle::after {
  content: '';
  display: block;
  width: 8px;
  height: 2px;
  margin: -2px auto 0;
  background: currentColor;
  transform: translate(6px,2px) rotate(45deg);
}
.search-panel { display: none; color: var(--tinte); background: var(--mint); }
.search-panel.open { display: block; }
.search-inner { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 24px 0 28px; }
.search-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.search-row input { min-width: 0; padding: 14px 16px; border: 2px solid var(--nacht); border-radius: 4px; background: var(--weiss); }
.search-row button { padding: 0 22px; border: 2px solid var(--nacht); border-radius: 4px; color: var(--weiss); background: var(--nacht); font-weight: 700; }
.search-results { margin-top: 12px; }
.search-results a { display: block; padding: 10px 0; border-bottom: 1px solid rgba(8,23,47,.25); text-decoration: none; font-weight: 700; }
.search-results small { display: block; color: #315448; font-weight: 400; }

.hero { color: var(--weiss); background: var(--nacht); overflow: hidden; }
.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 610px;
  margin: 0 auto;
  padding: 50px 0 62px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.34fr);
  gap: 44px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 18px; color: var(--mint); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.hero h1 { max-width: 11ch; margin: 0; font-size: 4rem; line-height: .98; letter-spacing: 0; }
.hero-lead { max-width: 42ch; margin: 24px 0; color: #dce7ec; font-size: 18px; }
.meta-line { display: flex; flex-wrap: wrap; gap: 8px 17px; color: #c9d4dc; font-size: 13px; font-weight: 700; }
.meta-line span + span::before { content: '•'; margin-right: 17px; color: var(--mint); }
.read-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 27px; color: var(--nacht); background: var(--mint); padding: 12px 17px; border-radius: 4px; text-decoration: none; font-weight: 800; }
.read-link::after { content: '→'; font-size: 21px; }
.hero-media { position: relative; transform: rotate(1.6deg); }
.hero-media::before { content: ''; position: absolute; inset: -12px 20px 18px -16px; border: 2px solid var(--mint); border-radius: 4px; transform: rotate(-3deg); }
.hero-media img { position: relative; aspect-ratio: 3/2; object-fit: cover; border-radius: 4px; box-shadow: 20px 24px 0 var(--koralle); }

.ticker { background: var(--mint); color: var(--nacht); border-bottom: 1px solid #5acaa0; }
.ticker-inner { width: min(var(--max), calc(100% - 40px)); min-height: 50px; margin: 0 auto; display: flex; align-items: center; gap: 22px; overflow: hidden; }
.ticker strong { white-space: nowrap; text-transform: uppercase; font-size: 12px; }
.ticker a { white-space: nowrap; text-decoration-thickness: 1px; text-underline-offset: 3px; font-size: 14px; }

.section { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 72px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 29px; border-bottom: 2px solid var(--nacht); padding-bottom: 13px; }
.section-head h2 { margin: 0; font-size: 34px; line-height: 1.08; }
.section-head p { max-width: 46ch; margin: 0; color: var(--grau); }
.article-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.story-card { grid-column: span 6; min-width: 0; background: var(--weiss); border: 1px solid var(--linie); border-radius: 6px; overflow: hidden; }
.story-card:nth-child(3) { grid-column: span 7; }
.story-card:nth-child(4) { grid-column: span 5; }
.story-card a { text-decoration: none; }
.story-card img { aspect-ratio: 16/10; object-fit: cover; transition: transform .3s ease; }
.story-card:hover img { transform: scale(1.025); }
.story-body { padding: 24px; }
.category { display: inline-block; margin-bottom: 13px; color: var(--mint-dunkel); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.story-card h3 { margin: 0 0 12px; font-size: 26px; line-height: 1.15; }
.story-card p { margin: 0 0 17px; color: var(--grau); }
.card-meta { color: var(--grau); font-size: 12px; font-weight: 700; }

.topic-band { color: var(--weiss); background: var(--nacht-2); }
.topic-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 68px 0; display: grid; grid-template-columns: .7fr 1.3fr; gap: 48px; }
.topic-intro h2 { margin: 0 0 15px; font-size: 39px; line-height: 1.05; }
.topic-intro p { color: #c7d4de; }
.topic-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.topic-list a { min-height: 160px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; color: var(--nacht); background: var(--mint); border-radius: 4px; text-decoration: none; font-weight: 800; }
.topic-list a:nth-child(2) { background: var(--gelb); }
.topic-list a:nth-child(3) { color: var(--weiss); background: var(--koralle); }
.topic-list span { font-size: 27px; }
.topic-list small { font-size: 12px; }

.page-intro { color: var(--weiss); background: var(--nacht); }
.page-intro-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 72px 0 76px; }
.page-intro h1 { max-width: 14ch; margin: 0 0 18px; font-size: clamp(42px, 6vw, 72px); line-height: 1; }
.page-intro p { max-width: 58ch; color: #dce7ec; font-size: 18px; }

.article-hero { padding-bottom: 55px; color: var(--weiss); background: var(--nacht); }
.article-hero-inner { width: min(1040px, calc(100% - 40px)); margin: 0 auto; padding-top: 58px; }
.article-hero h1 { max-width: 15ch; margin: 12px 0 23px; font-size: clamp(42px, 6vw, 76px); line-height: 1; }
.article-hero .excerpt { max-width: 65ch; color: #dbe6ec; font-size: 19px; }
.article-image { width: min(var(--max), calc(100% - 40px)); margin: -1px auto 0; }
.article-image img { aspect-ratio: 16/8.5; object-fit: cover; border-radius: 5px; }
.article-layout { width: min(1040px, calc(100% - 40px)); margin: 0 auto; padding: 60px 0 85px; display: grid; grid-template-columns: 170px minmax(0, 690px); gap: 52px; }
.article-aside { font-size: 13px; color: var(--grau); }
.article-aside strong { display: block; color: var(--tinte); margin-bottom: 8px; }
.article-aside p { margin: 0 0 24px; }
.article-content { min-width: 0; font-size: 18px; line-height: 1.74; }
.article-content > p:first-child { font-size: 22px; line-height: 1.55; }
.article-content h2 { margin: 52px 0 14px; font-size: 34px; line-height: 1.13; }
.article-content h3 { margin: 34px 0 10px; font-size: 24px; line-height: 1.2; }
.article-content h4 { margin: 28px 0 8px; font-size: 18px; }
.article-content ul, .article-content ol { padding-left: 24px; }
.article-content li { margin-bottom: 9px; }
.article-content blockquote { margin: 32px 0; padding: 20px 24px; border-left: 5px solid var(--mint-dunkel); background: #e8f6f0; font-size: 20px; font-weight: 700; }
.article-content table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; }
.article-content th, .article-content td { padding: 12px; border: 1px solid var(--linie); text-align: left; vertical-align: top; }
.article-content th { color: var(--weiss); background: var(--nacht-2); }
.related { padding: 60px 0; background: #dff6ed; }
.related-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.related h2 { margin: 0 0 24px; font-size: 30px; }
.related-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.related-links a { padding: 22px; color: var(--weiss); background: var(--nacht); border-radius: 5px; text-decoration: none; font-weight: 800; }

.site-footer { color: #d7e1e7; background: #050e20; }
.footer-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 50px 0 35px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 34px; }
.footer-inner h2, .footer-inner h3 { color: var(--weiss); margin-top: 0; }
.footer-inner h2 { font-size: 26px; }
.footer-inner h3 { font-size: 15px; }
.footer-inner p { max-width: 38ch; color: #aab9c5; font-size: 14px; }
.footer-inner ul { margin: 0; padding: 0; list-style: none; }
.footer-inner li { margin-bottom: 8px; }
.footer-inner a { color: #d7e1e7; }
.footer-bottom { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 18px 0 24px; border-top: 1px solid #26354b; color: #8190a1; font-size: 12px; }

@media (max-width: 860px) {
  .header-inner { min-height: 68px; flex-wrap: wrap; padding: 12px 0; gap: 14px; }
  .main-nav { order: 3; width: 100%; margin-left: 0; overflow-x: auto; padding-bottom: 3px; }
  .main-nav ul { width: max-content; gap: 18px; }
  .search-toggle { margin-left: auto; }
  .hero-inner { min-height: 0; grid-template-columns: 1fr; padding-top: 44px; }
  .hero h1 { max-width: 13ch; }
  .hero-media { margin: 14px 12px 16px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 10px; }
  .story-card, .story-card:nth-child(3), .story-card:nth-child(4) { grid-column: span 12; }
  .topic-inner { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 25px; }
  .article-aside { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-bottom: 1px solid var(--linie); }
}

@media (max-width: 600px) {
  .header-inner, .hero-inner, .ticker-inner, .section, .topic-inner, .page-intro-inner, .article-hero-inner, .article-image, .article-layout, .related-inner, .footer-inner, .footer-bottom { width: min(100% - 28px, var(--max)); }
  .brand { font-size: 21px; }
  .hero-inner { gap: 24px; padding-bottom: 48px; }
  .hero h1 { font-size: 45px; }
  .hero-media img { box-shadow: 10px 12px 0 var(--koralle); }
  .section { padding: 52px 0; }
  .section-head h2, .topic-intro h2 { font-size: 31px; }
  .story-body { padding: 19px; }
  .story-card h3 { font-size: 23px; }
  .topic-list { grid-template-columns: 1fr; }
  .topic-list a { min-height: 115px; }
  .page-intro h1, .article-hero h1 { font-size: 42px; }
  .article-hero { padding-bottom: 38px; }
  .article-hero-inner { padding-top: 42px; }
  .article-layout { padding-top: 42px; }
  .article-aside { grid-template-columns: 1fr; }
  .article-content { font-size: 17px; }
  .article-content > p:first-child { font-size: 20px; }
  .article-content h2 { font-size: 29px; }
  .article-content table { display: block; overflow-x: auto; }
  .related-links { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .search-row { grid-template-columns: 1fr; }
  .search-row button { min-height: 46px; }
}

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

/* editorial-core-v1 */
.editorial-core {
  --editorial-core-accent: var(--accent, var(--red, var(--primary, currentColor)));
  width: min(calc(100% - 32px), var(--max, var(--max-width, 1180px)));
  margin: clamp(40px, 6vw, 78px) auto;
  padding: clamp(24px, 3vw, 42px) 0;
  border-top: 3px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.editorial-core__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 3vw, 38px);
}
.editorial-core__head p,
.editorial-core__kicker {
  margin: 0 0 6px;
  color: var(--editorial-core-accent);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}
.editorial-core__head h2 {
  margin: 0;
  max-width: 18ch;
  font-size: 3rem;
  line-height: 1;
}
.editorial-core__head > span {
  flex: none;
  padding-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.editorial-core :is(h3, p) {
  overflow-wrap: break-word;
  hyphens: none;
}
.editorial-core a {
  color: inherit;
}
.editorial-core__feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-width: 0;
  margin: 0 0 clamp(24px, 3vw, 38px);
  border: 1px solid currentColor;
  background: rgba(127, 127, 127, 0.06);
}
.editorial-core__feature > a,
.editorial-core__card > a {
  display: block;
  min-width: 0;
  text-decoration: none;
}
.editorial-core__media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
  background: rgba(127, 127, 127, 0.12);
}
.editorial-core__feature .editorial-core__media {
  height: clamp(300px, 34vw, 460px);
}
.editorial-core__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.editorial-core__feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(24px, 3.5vw, 48px);
}
.editorial-core__feature h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.04;
}
.editorial-core__feature-copy > p:not(.editorial-core__kicker) {
  margin: 0 0 22px;
}
.editorial-core__read {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.editorial-core__spotlight,
.editorial-core__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}
.editorial-core__spotlight {
  margin-bottom: clamp(24px, 3vw, 38px);
}
.editorial-core__card {
  min-width: 0;
  margin: 0;
  border-bottom: 1px solid currentColor;
}
.editorial-core__card .editorial-core__media {
  min-height: 0;
  height: clamp(170px, 18vw, 250px);
}
.editorial-core__card-copy {
  padding: 18px 0 22px;
}
.editorial-core__card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}
.editorial-core__card-copy > p:not(.editorial-core__kicker) {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}
.editorial-core__card--compact {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.editorial-core__card--compact .editorial-core__media {
  height: 130px;
}
.editorial-core__card--compact .editorial-core__card-copy {
  padding-top: 0;
}
.editorial-core__card--compact h3 {
  font-size: 1rem;
}
.editorial-core__card--compact .editorial-core__card-copy > p:not(.editorial-core__kicker) {
  display: none;
}
@media (max-width: 900px) {
  .editorial-core__feature {
    grid-template-columns: 1fr;
  }
  .editorial-core__spotlight,
  .editorial-core__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .editorial-core {
    width: min(calc(100% - 24px), var(--max, var(--max-width, 1180px)));
    margin-block: 32px;
    padding-block: 24px;
  }
  .editorial-core__head {
    align-items: start;
  }
  .editorial-core__head h2 {
    font-size: 2rem;
  }
  .editorial-core__head > span {
    white-space: nowrap;
  }
  .editorial-core__feature .editorial-core__media {
    height: min(72vw, 340px);
  }
  .editorial-core__feature-copy {
    padding: 22px;
  }
  .editorial-core__feature h3 {
    font-size: 1.75rem;
  }
  .editorial-core__spotlight,
  .editorial-core__grid {
    grid-template-columns: 1fr;
  }
  .editorial-core__card {
    display: grid;
    grid-template-columns: minmax(110px, 0.72fr) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }
  .editorial-core__card .editorial-core__media {
    height: 122px;
  }
  .editorial-core__card-copy {
    padding-top: 0;
  }
  .editorial-core__card-copy > p:not(.editorial-core__kicker) {
    display: none;
  }
}

/* editorial-diversity-v2 */
.editorial-core--diverse {
  --ec-tint: rgba(127, 127, 127, 0.08);
  --ec-strong-tint: rgba(127, 127, 127, 0.15);
  counter-reset: editorial-card 1;
  gap: var(--ec-gap);
  isolation: isolate;
}
.editorial-core--diverse .editorial-core__media {
  display: block !important;
  overflow: hidden;
  border-radius: var(--ec-radius);
}
.editorial-core--diverse .editorial-core__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--ec-image-position);
}
.editorial-core--diverse .editorial-core__card {
  counter-increment: editorial-card;
}
.editorial-core--diverse .editorial-core__kicker::before {
  content: counter(editorial-card, decimal-leading-zero) " / ";
  opacity: 0.62;
}
.editorial-core--diverse .editorial-core__feature .editorial-core__kicker::before {
  content: "01 / ";
}
.editorial-core--diverse.ec-image-landscape .editorial-core__card .editorial-core__media { aspect-ratio: 16 / 10; }
.editorial-core--diverse.ec-image-portrait .editorial-core__card .editorial-core__media { aspect-ratio: 4 / 5; }
.editorial-core--diverse.ec-image-square .editorial-core__card .editorial-core__media { aspect-ratio: 1; }
.editorial-core--diverse.ec-image-panorama .editorial-core__card .editorial-core__media { aspect-ratio: 2 / 1; }
.editorial-core--diverse.ec-image-soft .editorial-core__media { border-radius: 8px; }
.editorial-core--diverse.ec-image-cut .editorial-core__media { clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 6% 100%, 0 88%); }

.editorial-core--diverse.ec-cards-rules .editorial-core__card { border-top: 1px solid currentColor; border-bottom: 0; padding-top: 12px; }
.editorial-core--diverse.ec-cards-blocks .editorial-core__card { background: var(--ec-tint); border: 0; padding: 12px; }
.editorial-core--diverse.ec-cards-quiet .editorial-core__card { border: 0; }
.editorial-core--diverse.ec-cards-numbered .editorial-core__card { border-left: 4px solid currentColor; border-bottom: 0; padding-left: 14px; }
.editorial-core--diverse.ec-cards-frames .editorial-core__card { border: 1px solid currentColor; padding: 10px; }
.editorial-core--diverse.ec-heading-center .editorial-core__head { align-items: center; text-align: center; flex-direction: column; }
.editorial-core--diverse.ec-heading-center .editorial-core__head h2 { max-width: none; }
.editorial-core--diverse.ec-heading-rail .editorial-core__head { border-left: 8px solid currentColor; padding-left: 18px; }
.editorial-core--diverse.ec-heading-oversized .editorial-core__head h2 { font-size: 3.7rem; max-width: 12ch; }

/* Folio: a calm lead spread followed by an even reading shelf. */
.editorial-core--diverse.ec-layout-folio .editorial-core__feature { grid-template-columns: minmax(0, var(--ec-lead)) minmax(280px, 1fr); }
.editorial-core--diverse.ec-layout-folio .editorial-core__spotlight { grid-template-columns: 1.35fr 0.85fr 0.85fr; }

/* Ledger: section heading acts as a permanent editorial rail. */
.editorial-core--diverse.ec-layout-ledger {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  align-items: start;
}
.editorial-core--diverse.ec-layout-ledger .editorial-core__head { grid-row: 1 / 4; display: block; position: sticky; top: 18px; padding-right: 22px; }
.editorial-core--diverse.ec-layout-ledger .editorial-core__head > span { display: block; margin-top: 22px; }
.editorial-core--diverse.ec-layout-ledger .editorial-core__feature,
.editorial-core--diverse.ec-layout-ledger .editorial-core__spotlight,
.editorial-core--diverse.ec-layout-ledger .editorial-core__grid { grid-column: 2; }

/* Mosaic: large blocks with staggered image proportions. */
.editorial-core--diverse.ec-layout-mosaic .editorial-core__feature { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); }
.editorial-core--diverse.ec-layout-mosaic .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-mosaic .editorial-core__spotlight { grid-template-columns: 1.4fr 0.8fr 0.8fr; align-items: end; }
.editorial-core--diverse.ec-layout-mosaic .editorial-core__spotlight .editorial-core__card:first-child .editorial-core__media { height: 340px; }

/* Dispatch: image-led front page with a readable overlay. */
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature { position: relative; display: block; min-height: 520px; color: white; border: 0; }
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature > a,
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature .editorial-core__media { position: absolute; inset: 0; }
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature-copy { position: relative; z-index: 1; width: min(620px, 74%); min-height: 520px; justify-content: end; background: linear-gradient(90deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.5), transparent); }
.editorial-core--diverse.ec-layout-dispatch .editorial-core__kicker { color: white; }

/* Catalog: text-first lead and compact product-like rows. */
.editorial-core--diverse.ec-layout-catalog .editorial-core__feature { grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr); }
.editorial-core--diverse.ec-layout-catalog .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-catalog .editorial-core__spotlight { grid-template-columns: 1fr; }
.editorial-core--diverse.ec-layout-catalog .editorial-core__spotlight .editorial-core__card { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 20px; }
.editorial-core--diverse.ec-layout-catalog .editorial-core__spotlight .editorial-core__media { height: 120px; }

/* Journal: broad photography and generous article notes. */
.editorial-core--diverse.ec-layout-journal .editorial-core__feature { display: block; max-width: 980px; border: 0; }
.editorial-core--diverse.ec-layout-journal .editorial-core__feature .editorial-core__media { height: 500px; }
.editorial-core--diverse.ec-layout-journal .editorial-core__feature-copy { max-width: 720px; margin: -76px 0 0 auto; position: relative; background: var(--paper, var(--background, white)); border: 1px solid currentColor; }
.editorial-core--diverse.ec-layout-journal .editorial-core__spotlight { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Ribbon: reversed lead with strong horizontal movement. */
.editorial-core--diverse.ec-layout-ribbon .editorial-core__feature { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); }
.editorial-core--diverse.ec-layout-ribbon .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-ribbon .editorial-core__spotlight { display: flex; overflow-x: auto; padding-bottom: 14px; }
.editorial-core--diverse.ec-layout-ribbon .editorial-core__spotlight .editorial-core__card { flex: 0 0 min(380px, 72vw); }

/* Portrait: one tall cover beside a stack of current stories. */
.editorial-core--diverse.ec-layout-portrait {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
}
.editorial-core--diverse.ec-layout-portrait .editorial-core__head,
.editorial-core--diverse.ec-layout-portrait .editorial-core__grid { grid-column: 1 / -1; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__feature { display: block; margin-right: var(--ec-gap); }
.editorial-core--diverse.ec-layout-portrait .editorial-core__feature .editorial-core__media { height: 620px; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__spotlight { grid-template-columns: 1fr; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__spotlight .editorial-core__card { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 16px; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__spotlight .editorial-core__media { height: 120px; }

/* Panorama: cinema-wide lead followed by a dense magazine grid. */
.editorial-core--diverse.ec-layout-panorama .editorial-core__feature { grid-template-columns: 1fr; }
.editorial-core--diverse.ec-layout-panorama .editorial-core__feature .editorial-core__media { height: 420px; }
.editorial-core--diverse.ec-layout-panorama .editorial-core__feature-copy { max-width: 820px; }
.editorial-core--diverse.ec-layout-panorama .editorial-core__spotlight { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Index: images and numbered headlines read like an editorial contents page. */
.editorial-core--diverse.ec-layout-index .editorial-core__feature { border: 0; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; background: transparent; }
.editorial-core--diverse.ec-layout-index .editorial-core__spotlight,
.editorial-core--diverse.ec-layout-index .editorial-core__grid { grid-template-columns: 1fr; gap: 0; }
.editorial-core--diverse.ec-layout-index .editorial-core__card,
.editorial-core--diverse.ec-layout-index .editorial-core__card--compact { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 20px; padding: 15px 0; border-left: 0; border-top: 1px solid currentColor; }
.editorial-core--diverse.ec-layout-index .editorial-core__card .editorial-core__media { height: 110px; }
.editorial-core--diverse.ec-layout-index .editorial-core__card-copy { padding: 0; }

/* Notebook: tactile, offset cards with breathing room. */
.editorial-core--diverse.ec-layout-notebook .editorial-core__feature { max-width: 1040px; margin-left: auto; transform: rotate(-0.35deg); box-shadow: 12px 12px 0 var(--ec-strong-tint); }
.editorial-core--diverse.ec-layout-notebook .editorial-core__spotlight .editorial-core__card:nth-child(2) { transform: translateY(28px); }
.editorial-core--diverse.ec-layout-notebook .editorial-core__grid { margin-top: 36px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Gallery: photography is the main navigation surface. */
.editorial-core--diverse.ec-layout-gallery .editorial-core__feature { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.editorial-core--diverse.ec-layout-gallery .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-gallery .editorial-core__spotlight,
.editorial-core--diverse.ec-layout-gallery .editorial-core__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact { display: block; }
.editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact .editorial-core__media { height: 210px; }
.editorial-core--diverse.ec-layout-gallery .editorial-core__card-copy > p:not(.editorial-core__kicker) { display: none; }

@media (max-width: 900px) {
  .editorial-core--diverse.ec-layout-ledger,
  .editorial-core--diverse.ec-layout-portrait { display: block; }
  .editorial-core--diverse.ec-layout-ledger .editorial-core__head { position: static; }
  .editorial-core--diverse.ec-layout-gallery .editorial-core__spotlight,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .editorial-core--diverse { margin-block: 28px; }
  .editorial-core--diverse .editorial-core__spotlight,
  .editorial-core--diverse .editorial-core__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .editorial-core--diverse .editorial-core__card,
  .editorial-core--diverse .editorial-core__card-copy,
  .editorial-core--diverse .editorial-core__feature-copy {
    min-width: 0;
  }
  .editorial-core--diverse h3 {
    overflow-wrap: break-word;
    hyphens: none;
  }
  .editorial-core--diverse .editorial-core__head h2,
  .editorial-core--diverse.ec-heading-oversized .editorial-core__head h2 { font-size: 2rem; }
  .editorial-core--diverse .editorial-core__head > span { white-space: normal; text-align: right; }
  .editorial-core--diverse .editorial-core__card,
  .editorial-core--diverse .editorial-core__card--compact {
    display: grid;
    grid-template-columns: minmax(112px, 0.72fr) minmax(0, 1fr);
    gap: 14px;
  }
  .editorial-core--diverse .editorial-core__card .editorial-core__media,
  .editorial-core--diverse .editorial-core__card--compact .editorial-core__media { height: 126px; }
  .editorial-core--diverse .editorial-core__card-copy { padding-top: 0; }

  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature { position: relative; display: block; min-height: 520px; color: white; border: 0; }
  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature > a,
  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature .editorial-core__media { position: absolute; inset: 0; height: 100%; }
  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature-copy { position: absolute; z-index: 1; inset: auto 12px 12px; padding: 20px; background: rgba(10, 10, 10, 0.82); color: white; }
  .editorial-core--diverse.ec-mobile-cover .editorial-core__kicker { color: white; }

  .editorial-core--diverse.ec-mobile-split .editorial-core__feature { display: grid; grid-template-columns: 42% 58%; }
  .editorial-core--diverse.ec-mobile-split .editorial-core__feature .editorial-core__media { height: 100%; min-height: 320px; }
  .editorial-core--diverse.ec-mobile-split .editorial-core__feature-copy { padding: 18px; }
  .editorial-core--diverse.ec-mobile-split .editorial-core__feature h3 { font-size: 1.35rem; }

  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature { grid-template-columns: 34% 66%; }
  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature .editorial-core__media { min-height: 360px; height: 100%; }
  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature-copy { padding: 18px; }
  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature h3 { font-size: 1.4rem; }

  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature { display: flex; flex-direction: column; border-width: 5px 0 0; }
  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature > a { order: 2; }
  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature-copy { order: 1; padding: 20px 0; }
  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature .editorial-core__media { height: 290px; }

  .editorial-core--diverse.ec-mobile-magazine .editorial-core__feature { display: block; transform: none; box-shadow: none; border: 0; }
  .editorial-core--diverse.ec-mobile-magazine .editorial-core__feature .editorial-core__media { height: 330px; }
  .editorial-core--diverse.ec-mobile-magazine .editorial-core__feature-copy { position: relative; width: calc(100% - 24px); margin: -68px 0 0 24px; padding: 20px; border: 1px solid currentColor; background: var(--paper, var(--background, white)); }

  .editorial-core--diverse.ec-mobile-tiles .editorial-core__spotlight,
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px; }
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__card,
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__card--compact { display: block; }
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__card .editorial-core__media { height: 150px; }

  .editorial-core--diverse.ec-mobile-stream .editorial-core__feature { display: grid; grid-template-columns: 1fr; border-left: 0; border-right: 0; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__feature .editorial-core__media { height: 230px; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__feature-copy { padding: 20px 0; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__spotlight,
  .editorial-core--diverse.ec-mobile-stream .editorial-core__grid { display: block; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__card,
  .editorial-core--diverse.ec-mobile-stream .editorial-core__card--compact { grid-template-columns: 92px minmax(0, 1fr); padding: 12px 0; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__card .editorial-core__media { height: 82px; }

  .editorial-core--diverse.ec-mobile-stack .editorial-core__feature { grid-template-columns: 1fr; }
  .editorial-core--diverse.ec-mobile-stack .editorial-core__feature .editorial-core__media { height: 300px; }

  .editorial-core--diverse.ec-layout-gallery .editorial-core__card,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact {
    display: block;
  }
  .editorial-core--diverse.ec-layout-gallery .editorial-core__spotlight,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .editorial-core--diverse.ec-layout-gallery .editorial-core__card .editorial-core__media,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact .editorial-core__media {
    height: 158px;
  }
}


/* dslufon-de-digital-werkbank-v1 */
:root { --ink:#10213d; --muted:#5c6a7d; --paper:#f5f2eb; --panel:#fffdf8; --line:#c9c4b8; --accent:#d05a34; --blue:#173d63; }
* { box-sizing:border-box; } body { margin:0; color:var(--ink); background:var(--paper); font-family:Georgia, 'Times New Roman', serif; } a { color:inherit; } .site-header { background:var(--blue); color:#fff; position:sticky; top:0; z-index:5; } .header-inner { max-width:1180px; margin:auto; padding:18px 24px; display:flex; align-items:center; gap:28px; } .brand { font:700 1.15rem Arial,sans-serif; text-decoration:none; letter-spacing:.04em; white-space:nowrap; } .brand-mark { display:inline-grid; place-items:center; width:28px; height:28px; margin-right:8px; border:1px solid #fff; color:#fff; } .main-nav { display:flex; gap:20px; flex:1; flex-wrap:wrap; } .main-nav a,.search-toggle { font:600 .78rem Arial,sans-serif; text-decoration:none; text-transform:uppercase; letter-spacing:.08em; } .search-toggle { color:#fff; border:1px solid rgba(255,255,255,.5); padding:9px 12px; }
.werkbank-hero { max-width:1180px; margin:auto; padding:clamp(60px,9vw,120px) 24px 64px; display:grid; grid-template-columns:minmax(0,1.4fr) minmax(260px,.6fr); gap:60px; } .werkbank-index,.werkbank-kicker { margin:0 0 14px; color:var(--accent); font:700 .72rem Arial,sans-serif; letter-spacing:.12em; text-transform:uppercase; } .werkbank-hero h1 { max-width:760px; margin:0 0 22px; font-size:4rem; line-height:.93; font-weight:400; } .werkbank-hero p:not(.werkbank-index) { max-width:650px; color:var(--muted); font-size:1.2rem; line-height:1.55; } .werkbank-hero__note { align-self:end; padding:24px; border-left:7px solid var(--accent); background:var(--panel); } .werkbank-hero__note span { display:block; margin-bottom:18px; font:700 .7rem Arial,sans-serif; text-transform:uppercase; letter-spacing:.12em; } .werkbank-hero__note a { font-size:1.55rem; line-height:1.1; text-decoration:none; } .werkbank-hero__note p { font-size:.95rem !important; } .werkbank-hero__stats { display:flex; gap:26px; margin-top:34px; font:700 .75rem Arial,sans-serif; text-transform:uppercase; letter-spacing:.08em; } .werkbank-hero__stats strong { display:block; color:var(--accent); font-size:1.5rem; letter-spacing:0; }
.werkbank-map { max-width:1180px; margin:0 auto 40px; padding:0 24px; display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); } .werkbank-map a { min-height:120px; padding:22px; background:var(--panel); text-decoration:none; } .werkbank-map span { display:block; color:var(--accent); font:700 .75rem Arial,sans-serif; } .werkbank-map strong { display:block; margin:12px 0 7px; font-size:1.3rem; font-weight:400; } .werkbank-map small { color:var(--muted); font: .72rem Arial,sans-serif; }
.werkbank-route,.werkbank-index-section { max-width:1180px; margin:0 auto; padding:64px 24px; } .werkbank-route:nth-of-type(odd) { background:rgba(255,253,248,.42); } .werkbank-route__head { display:flex; justify-content:space-between; gap:24px; align-items:end; border-top:1px solid var(--line); padding-top:18px; margin-bottom:28px; } .werkbank-route__head h2,.werkbank-index-section h2 { margin:0 0 8px; font-size:clamp(2rem,4vw,3.6rem); font-weight:400; } .werkbank-route__head p:not(.werkbank-index),.werkbank-index-section header p:not(.werkbank-index) { max-width:560px; margin:0; color:var(--muted); line-height:1.5; } .werkbank-route__head>a { font:700 .75rem Arial,sans-serif; text-transform:uppercase; letter-spacing:.1em; text-decoration:none; color:var(--accent); white-space:nowrap; } .werkbank-lead { max-width:900px; } .werkbank-card { display:grid; grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr); gap:28px; padding:24px 0; border-top:1px solid var(--line); } .werkbank-card img { display:block; width:100%; aspect-ratio:16/10; object-fit:cover; } .werkbank-card h3 { margin:0 0 12px; font-size:clamp(1.5rem,3vw,2.5rem); line-height:1.05; font-weight:400; } .werkbank-card h3 a { text-decoration:none; } .werkbank-card>div>p:not(.werkbank-kicker) { color:var(--muted); line-height:1.5; } .werkbank-more { color:var(--accent); font:700 .75rem Arial,sans-serif; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; } .werkbank-list { display:grid; grid-template-columns:repeat(2,1fr); gap:0 34px; } .werkbank-card--compact { display:block; } .werkbank-card--compact img { aspect-ratio:16/9; margin-bottom:14px; } .werkbank-card--compact h3 { font-size:1.45rem; } .werkbank-card--compact .werkbank-more { display:none; }
.werkbank-index-section { border-top:1px solid var(--line); } .werkbank-index-section ol { list-style:none; padding:0; margin:32px 0 0; display:grid; grid-template-columns:repeat(2,1fr); } .werkbank-index-section li { border-top:1px solid var(--line); } .werkbank-index-section li a { display:block; padding:15px 0; text-decoration:none; } .werkbank-index-section li span { display:block; color:var(--accent); font:700 .68rem Arial,sans-serif; text-transform:uppercase; letter-spacing:.1em; } .werkbank-index-section li strong { display:block; margin-top:5px; font-size:1.12rem; font-weight:400; }
.site-footer { margin-top:40px; background:var(--blue); color:#fff; } .footer-inner { max-width:1180px; margin:auto; padding:48px 24px; display:grid; grid-template-columns:2fr 1fr 1fr; gap:34px; } .footer-inner h2,.footer-inner h3 { margin-top:0; } .footer-inner p,.footer-inner li { color:rgba(255,255,255,.74); line-height:1.5; } .footer-inner ul { padding:0; list-style:none; } .footer-inner a { text-decoration:none; } .footer-bottom { max-width:1180px; margin:auto; padding:16px 24px; border-top:1px solid rgba(255,255,255,.25); color:rgba(255,255,255,.65); font: .72rem Arial,sans-serif; }
.page-intro,.category-header { max-width:1180px; margin:0 auto; padding:64px 24px 34px; border-bottom:1px solid var(--line); } .page-intro h1,.category-header h1 { max-width:760px; margin:0 0 12px; font-size:2.75rem; line-height:1; font-weight:400; } .page-intro p,.category-header p { max-width:620px; color:var(--muted); line-height:1.55; } .section { max-width:1180px; margin:0 auto; padding:44px 24px; } .section-head { display:flex; justify-content:space-between; gap:24px; align-items:end; margin-bottom:24px; border-top:1px solid var(--line); padding-top:16px; } .section-head h2 { margin:0; font-size:2rem; font-weight:400; } .section-head p { margin:0; color:var(--muted); } .article-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; } .story-card { min-width:0; border-top:3px solid var(--accent); background:var(--panel); } .story-card a { display:block; text-decoration:none; } .story-card img { display:block; width:100%; aspect-ratio:16/10; object-fit:cover; } .story-body { padding:18px; } .story-body h3 { margin:8px 0; font-size:1.45rem; line-height:1.08; font-weight:400; } .story-body p { color:var(--muted); line-height:1.5; } .card-meta,.meta-line { color:var(--muted); font: .72rem Arial,sans-serif; } .article-hero { background:var(--blue); color:#fff; } .article-hero-inner { max-width:980px; margin:0 auto; padding:74px 24px 58px; } .article-hero h1 { max-width:860px; margin:16px 0; font-size:clamp(2.4rem,5vw,4.8rem); line-height:.98; font-weight:400; } .article-hero .category { color:#ffc4a9; font:700 .75rem Arial,sans-serif; letter-spacing:.1em; text-transform:uppercase; text-decoration:none; } .article-hero .excerpt { max-width:700px; color:rgba(255,255,255,.8); font-size:1.15rem; line-height:1.55; } .meta-line { display:flex; flex-wrap:wrap; gap:16px; margin-top:24px; color:rgba(255,255,255,.7); } .article-image { max-width:980px; margin:0 auto; padding:28px 24px 0; } .article-image img { display:block; width:100%; max-height:520px; object-fit:cover; } .article-layout { max-width:980px; margin:0 auto; padding:28px 24px 70px; } .article-content { max-width:720px; font-size:1.08rem; line-height:1.72; } .article-content h2 { margin-top:2.2em; font-size:2rem; line-height:1.08; font-weight:400; } .article-content a { color:var(--accent); }
@media (max-width:760px) { .header-inner { padding:14px 16px; gap:14px; align-items:flex-start; } .main-nav { gap:10px 14px; } .main-nav a,.search-toggle { font-size:.64rem; } .werkbank-hero { display:block; padding:58px 16px 42px; } .werkbank-hero h1 { font-size:3.2rem; } .werkbank-hero__note { margin-top:34px; } .werkbank-hero__stats { gap:12px; flex-wrap:wrap; } .werkbank-map { margin:0 16px 24px; padding:0; grid-template-columns:repeat(2,1fr); } .werkbank-map a { min-height:105px; padding:16px; } .werkbank-route,.werkbank-index-section { padding:42px 16px; } .werkbank-route__head { display:block; } .werkbank-route__head>a { display:inline-block; margin-top:16px; } .werkbank-card,.werkbank-list { display:block; } .werkbank-card { padding:20px 0; } .werkbank-card h3 { font-size:1.5rem; } .werkbank-card--compact { display:grid; grid-template-columns:112px minmax(0,1fr); gap:14px; } .werkbank-card--compact img { margin:0; aspect-ratio:1; } .werkbank-card--compact h3 { font-size:1.05rem; } .werkbank-card--compact>div>p:not(.werkbank-kicker),.werkbank-card--compact .werkbank-more { display:none; } .werkbank-index-section ol { display:block; } .footer-inner { display:block; padding:36px 16px; } }
@media (max-width:430px) { .werkbank-hero h1 { font-size:2.55rem; line-height:1; } .werkbank-route__head h2,.werkbank-index-section h2 { font-size:2rem; } .werkbank-card h3 { font-size:1.35rem; } }
