﻿@charset "UTF-8";
/* plus-jakarta-sans-regular - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/plus-jakarta-sans-v12-latin_latin-ext-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-500 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/plus-jakarta-sans-v12-latin_latin-ext-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-800 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/plus-jakarta-sans-v12-latin_latin-ext-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-alternates-regular - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Montserrat Alternates";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-alternates-v18-latin_latin-ext-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-alternates-600 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Montserrat Alternates";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-alternates-v18-latin_latin-ext-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-alternates-700 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Montserrat Alternates";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-alternates-v18-latin_latin-ext-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --c-dk: #1C3D36;
  --c-dk-rgb: 28, 61, 54;
  --c-dk-meta: #7E9489;
  --c-dk-muted: #C6D6CD;
  --c-darkdk: #16302a;
  --c-cm: #A7C4B5;
  --c-cm-rgb: 167, 196, 181;
  --c-ft: #BEFFC7;
  --c-ft-rgb: 190, 255, 199;
  --c-link: #2F6B4F;
  --c-border: #E7ECE9;
  --c-border-lt: #EDF1EF;
  --c-mm: #A9D8B8;
  --c-neu: #9AA0A8;
  --c-bg: #FAFCFB;
  --c-bg-alt: #F3F6F4;
  --c-surface: #FFFFFF;
  --c-text: #1a1a1a;
  --c-text-soft: #5a6560;
  --f-head: "Montserrat Alternates", sans-serif;
  --f-body: "Plus Jakarta Sans", sans-serif;
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 32px;
  --sp-xl: 48px;
  --sp-2xl: 64px;
  --sp-3xl: 80px;
  --sp-small: 0.03em;
  --r-hero: 10px;
  --r-default: 0px;
  --r-story: 8px;
  --ease: .25s cubic-bezier(.25, .46, .45, .94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.5;
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--c-dk);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover {
  color: var(--c-cm);
}

::selection {
  background: var(--c-ft);
  color: var(--c-dk);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--c-dk);
  line-height: 1.12;
}

h1 {
  font-weight: 700;
  font-size: 1.2em;
}

h2, h3 {
  font-weight: 600;
  font-size: 1.2em;
}

.t-h1 {
  font-size: clamp(34px, 5vw, 52px);
}

.t-h2 {
  font-size: clamp(20px, 3vw, 24px);
}

/*
.t-h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
}*/
.t-body {
  font-size: 1rem;
  line-height: 1.65;
}

.t-small {
  font-size: 0.85rem;
  color: var(--c-text-soft);
}

.t-meta {
  font-size: 0.8rem;
  color: var(--c-neu);
}

.t-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 1180px;
}

.wl-section {
  padding: var(--sp-lg) 0;
}
.wl-section:last-of-type {
  padding-bottom: var(--sp-3xl);
}
.wl-section > .container > *:last-child {
  margin-bottom: 0;
}
.wl-section-alt {
  background: var(--c-bg-alt);
}
.wl-section-dk {
  background: var(--c-dk);
  color: #fff;
}
.wl-section-dk h2, .wl-section-dk h3, .wl-section-dk h5 {
  color: #fff;
}

.wl-divider {
  width: 48px;
  height: 4px;
  background: var(--c-dk);
  border-radius: 2px;
  margin-bottom: var(--sp-sm);
}

.wl-sec-head {
  margin-bottom: var(--sp-sm);
}
.wl-sec-head p {
  color: var(--c-text-soft);
  margin-top: var(--sp-xs);
}

@media (max-width: 991.98px) {
  .wl-section {
    padding: var(--sp-2xl) 0;
  }
}
.wl-nav {
  background: var(--c-dk);
  position: sticky;
  top: 0;
  z-index: 1050;
}
.wl-nav .wl-logo-sticky {
  display: none;
}
.wl-nav .wl-logo-default {
  display: block;
}
.wl-nav.is-sticky .wl-logo-default {
  display: none;
}
.wl-nav.is-sticky .wl-logo-sticky {
  display: block;
}
.wl-nav .navbar-brand {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
}
.wl-nav .navbar-brand img {
  height: 36px;
  width: auto;
}
.wl-nav .nav-link {
  color: #E7EEEA;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.015em;
  padding: 0.85rem 1rem !important;
  transition: color var(--ease);
}
.wl-nav .nav-link:hover {
  color: #fff;
}
.wl-nav .nav-link.active {
  color: var(--c-ft);
  font-weight: 700;
}
.wl-nav .nav-link.active::after {
  display: none;
}
@media (max-width: 991.98px) {
  .wl-nav .navbar-collapse {
    padding: var(--sp-sm) 0 var(--sp-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: var(--sp-xs);
  }
  .wl-nav .navbar-nav {
    align-items: center !important;
    gap: 0 !important;
    width: 100%;
  }
  .wl-nav .navbar-brand {
    padding: 0.75rem 0;
    max-width: 75%;
  }
  .wl-nav .navbar-brand img {
    height: 100%;
    width: auto;
  }
  .wl-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem !important;
    font-size: 1rem;
  }
  .wl-nav .nav-item:has(.wl-lang),
  .wl-nav .nav-item:has(.wl-search) {
    justify-content: center;
    padding: var(--sp-xs) 0;
  }
}

.wl-lang {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-cm);
  border-left: 1px solid rgba(167, 196, 181, 0.35);
  padding-left: 24px;
}
.wl-lang a {
  color: var(--c-cm);
  text-decoration: none;
  transition: color var(--ease);
}
.wl-lang a:hover {
  color: #fff;
}
.wl-lang a.act {
  color: #fff;
}
.wl-lang span {
  color: rgba(167, 196, 181, 0.5);
  padding: 0 2px;
}
@media (max-width: 991.98px) {
  .wl-lang {
    border-left: none;
    padding-left: 0;
  }
}

.wl-search {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  width: 36px;
  height: 36px;
  border-radius: var(--r-default);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  cursor: pointer;
}
.wl-search:hover {
  border-color: var(--c-cm);
  color: #fff;
}

.wl-hero {
  background: var(--c-dk);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wl-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--c-cm-rgb), 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.wl-hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-2xl) 0;
}
.wl-hero-inner img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--r-hero);
}
@media (max-width: 991.98px) {
  .wl-hero-inner {
    padding: var(--sp-xl) 0;
  }
}
.wl-hero-text {
  padding-right: var(--sp-lg);
}
.wl-hero-lead {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.6;
  margin: var(--sp-sm) 0 var(--sp-lg);
}
.wl-hero h1 {
  color: #fff;
}

.wl-dhero {
  background: var(--c-dk);
  color: #fff;
  padding: var(--sp-xl) 0;
  position: relative;
  overflow: hidden;
}
.wl-dhero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--c-cm-rgb), 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.wl-dhero > * {
  position: relative;
  z-index: 2;
}
.wl-dhero h1 {
  color: #fff;
  max-width: 840px;
}
.wl-dhero-label {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-cm);
  margin-bottom: var(--sp-sm);
}
.wl-dhero-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin-top: var(--sp-xs);
}
.wl-dhero-meta {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  align-items: center;
  margin-top: var(--sp-sm);
}
.wl-dhero-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.wl-dhero-cta {
  flex-shrink: 0;
}
.wl-dhero-tags {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-sm);
}
.wl-dhero .wl-tts {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.wl-dhero-text {
  max-width: 640px;
}
.wl-dhero .wl-bc-spaced {
  margin-bottom: clamp(var(--sp-md), 3vw, var(--sp-lg));
}

.wl-lhero {
  padding: clamp(var(--sp-xl), 5vw, var(--sp-2xl)) 0 clamp(var(--sp-md), 3vw, var(--sp-lg));
  background: var(--c-bg);
}
.wl-lhero .wl-bc {
  margin-bottom: clamp(var(--sp-md), 3vw, var(--sp-lg));
}
.wl-lhero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.wl-lhero-text {
  max-width: 640px;
}
.wl-lhero-label {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-cm);
  margin-bottom: var(--sp-sm);
}
.wl-lhero-count {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-neu);
  padding-bottom: 6px;
  flex-shrink: 0;
}
.wl-lhero h1 {
  color: var(--c-dk);
}

.wl-bc {
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-sm);
  color: rgba(255, 255, 255, 0.4);
}
.wl-bc a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.wl-bc a:hover {
  color: var(--c-cm);
}
.wl-bc strong,
.wl-bc span:last-child {
  color: rgba(255, 255, 255, 0.7);
}
.wl-bc-lt {
  color: var(--c-neu);
}
.wl-bc-lt a {
  color: var(--c-link);
}
.wl-bc-lt a:hover {
  color: var(--c-dk);
}
.wl-bc-lt strong,
.wl-bc-lt span:last-child {
  color: var(--c-text-soft);
}
.wl-bc-dk {
  color: var(--c-dk-meta);
}
.wl-bc-dk a {
  color: var(--c-mm);
}
.wl-bc-dk a:hover {
  color: var(--c-ft);
}
.wl-bc-dk strong,
.wl-bc-dk span:last-child {
  color: var(--c-dk-muted);
}

.wl-card {
  background: var(--c-surface);
  border-radius: var(--r-story);
  border: solid 4px var(--c-surface);
  overflow: hidden;
  transition: all var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.wl-card:hover {
  transform: translateY(-3px);
  border: solid 4px var(--c-ft);
}
.wl-card:hover .wl-card-img img {
  transform: scale(1.03);
}

.wl-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.wl-card-img .wl-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.wl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wl-card-body {
  padding: var(--sp-md) var(--sp-md) var(--sp-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wl-card-body .wl-card-meta {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: var(--sp-xs);
  flex-wrap: nowrap;
}
.wl-card-body .wl-card-meta .wl-card-category {
  font-family: var(--f-body);
  font-weight: 800; /* Plus Jakarta Sans ExtraBold */
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-dk); /* default: dunkelgrün */
  text-decoration: none;
  transition: color var(--ease);
  line-height: 1;
}
.wl-card-body .wl-card-meta .wl-card-category:hover {
  color: var(--c-mm); /* Mighty Mint on hover */
}
.wl-card-body .wl-card-meta .wl-card-meta-sep {
  font-size: 0.72rem;
  color: var(--c-neu);
  margin: 0 0.6em;
  line-height: 1;
  user-select: none;
  position: relative;
  top: -0.12em;
}
.wl-card-body .wl-tag {
  width: fit-content;
  margin-bottom: var(--sp-sm);
}
.wl-card-body .t-meta {
  margin-bottom: var(--sp-sm);
}
.wl-card-body .wl-card-title {
  margin-bottom: var(--sp-xs);
  flex: 1;
  color: var(--c-dk);
}

.wl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--r-default);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  letter-spacing: var(--sp-small);
  text-transform: uppercase;
}
.wl-btn-primary {
  background: var(--c-dk);
  color: #fff;
}
.wl-btn-primary:hover {
  background: #2a6b5a;
  color: #fff;
}
.wl-btn-secondary {
  background: rgba(var(--c-cm-rgb), 0.2);
  color: var(--c-dk);
}
.wl-btn-secondary:hover {
  background: rgba(var(--c-cm-rgb), 0.35);
}
.wl-btn-cta {
  background: var(--c-ft);
  color: var(--c-dk);
}
.wl-btn-cta:hover {
  background: #a3f0ae;
}
.wl-btn-sm {
  font-size: 0.82rem;
  padding: 7px 16px;
}

.wl-tts {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--c-cm-rgb), 0.2);
  color: var(--c-dk);
  border: none;
  border-radius: var(--r-default);
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--ease);
}
.wl-tts:hover {
  background: rgba(var(--c-cm-rgb), 0.35);
}
.wl-tts.playing {
  background: var(--c-dk);
  color: #fff;
}

.wl-event {
  display: flex;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
  transition: all var(--ease);
  cursor: pointer;
}
.wl-event + .wl-event {
  border-top: 1px solid var(--c-bg-alt);
}
.wl-event:hover {
  padding-left: var(--sp-xs);
}
.wl-event-date {
  background: var(--c-dk);
  color: #fff;
  border-radius: var(--r-default);
  width: 56px;
  min-width: 56px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wl-event-date .day {
  font-family: var(--f-head);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.wl-event-date .mon {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.6;
}

.wl-person {
  text-align: center;
  padding: var(--sp-md);
  cursor: pointer;
}
.wl-person img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-bg-alt);
  margin: 0 auto var(--sp-sm);
  transition: all var(--ease);
}
.wl-person:hover img {
  border-color: var(--c-cm);
}

.wl-map {
  background: var(--c-bg-alt);
  border-radius: var(--r-story);
  padding: var(--sp-2xl);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wl-partners {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  align-items: center;
  justify-content: center;
  padding: var(--sp-md) 0;
}

.wl-partner-logo {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  font-weight: 600;
  transition: all var(--ease);
}
.wl-partner-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.wl-article {
  font-size: 1.05rem;
  line-height: 1.75;
}
.wl-article p {
  margin-bottom: var(--sp-md);
}
.wl-article h2 {
  font-size: 1.25rem;
  margin: var(--sp-xl) 0 var(--sp-sm);
}
.wl-article blockquote {
  border-left: 3px solid var(--c-ft);
  padding-left: var(--sp-lg);
  margin: var(--sp-xl) 0;
}
.wl-article blockquote p {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--c-dk);
  letter-spacing: -0.01em;
  margin: 0;
}
.wl-article blockquote p::before {
  content: "„";
}
.wl-article blockquote p::after {
  content: "“";
}
.wl-article blockquote cite {
  display: block;
  margin-top: var(--sp-sm);
  font-style: normal;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-link);
}
.wl-article ul, .wl-article ol {
  padding-left: var(--sp-md);
  margin-bottom: var(--sp-md);
  list-style: revert;
}
.wl-article ul li, .wl-article ol li {
  margin-bottom: var(--sp-xs);
}

.wl-sidebar .wl-widget {
  background: var(--c-bg-alt);
  border-radius: var(--r-story);
  padding: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.wl-sidebar .wl-widget:last-child {
  margin-bottom: 0;
}
.wl-sidebar .wl-widget h5 {
  font-size: 0.88rem;
  margin-bottom: var(--sp-sm);
}

.wl-filters {
  display: flex;
  gap: var(--sp-xs);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.wl-filter {
  color: var(--c-dk);
  border: solid var(--c-dk) 1px;
  border-radius: var(--r-default);
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  font-family: var(--f-body);
}
.wl-filter:hover, .wl-filter.active {
  background: var(--c-dk);
  color: #fff;
}

@keyframes wlFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wl-fade-in {
  animation: wlFade 0.3s ease forwards;
}

.wl-stagger > * {
  opacity: 0;
  animation: wlFade 0.4s ease forwards;
}
.wl-stagger > *:nth-child(1) {
  animation-delay: 0s;
}
.wl-stagger > *:nth-child(2) {
  animation-delay: 0.07s;
}
.wl-stagger > *:nth-child(3) {
  animation-delay: 0.14s;
}
.wl-stagger > *:nth-child(4) {
  animation-delay: 0.21s;
}
.wl-stagger > *:nth-child(5) {
  animation-delay: 0.28s;
}
.wl-stagger > *:nth-child(6) {
  animation-delay: 0.35s;
}
.wl-stagger > *:nth-child(7) {
  animation-delay: 0.42s;
}
.wl-stagger > *:nth-child(8) {
  animation-delay: 0.49s;
}
.wl-stagger > *:nth-child(9) {
  animation-delay: 0.56s;
}
.wl-stagger > *:nth-child(10) {
  animation-delay: 0.63s;
}
.wl-stagger > *:nth-child(11) {
  animation-delay: 0.7s;
}
.wl-stagger > *:nth-child(12) {
  animation-delay: 0.77s;
}

.wl-job-item {
  background: var(--c-surface);
  border-radius: var(--r-story);
  padding: var(--sp-md) var(--sp-lg);
  margin-bottom: var(--sp-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  cursor: pointer;
  transition: background var(--ease);
}
.wl-job-item:hover {
  background: var(--c-bg-alt);
}

.wl-pagination .page-link {
  border-radius: var(--r-default) !important;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dk);
  border: none;
  background: var(--c-bg-alt);
  font-weight: 600;
}
.wl-pagination .page-link:hover {
  background: var(--c-cm);
  color: var(--c-dk);
}
.wl-pagination .page-item.active .page-link {
  background: var(--c-dk);
  border-color: var(--c-dk);
  color: #fff;
}

#wl-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--c-dk-rgb), 0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
#wl-search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.wl-search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: 0 var(--sp-md);
  position: relative;
}

.wl-search-overlay-input {
  display: flex;
  border-radius: var(--r-default);
  overflow: hidden;
}
.wl-search-overlay-input input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-family: var(--f-body);
  outline: none;
}
.wl-search-overlay-input button[type=submit] {
  background: var(--c-dk);
  border: none;
  color: #fff;
  padding: 0 24px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--ease);
}
.wl-search-overlay-input button[type=submit]:hover {
  background: #2a6b5a;
}

[data-search-close] {
  position: absolute;
  top: -52px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--ease);
}
[data-search-close]:hover {
  color: #fff;
}

.wl-nl-sidebar {
  border: 1px solid var(--c-border);
  border-radius: var(--r-default);
  overflow: hidden;
  background: var(--c-surface);
}
.wl-nl-sidebar-img {
  position: relative;
  height: 138px;
  background: var(--c-dk);
  overflow: hidden;
}
.wl-nl-sidebar-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wl-nl-sidebar-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 48, 42, 0.05) 40%, rgba(22, 48, 42, 0.78) 100%);
}
.wl-nl-sidebar-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 11px;
  z-index: 2;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}
.wl-nl-sidebar-body {
  padding: 16px 20px 20px;
}
.wl-nl-sidebar-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--c-text-soft);
  font-weight: 500;
  margin: 0 0 13px;
}
.wl-nl-sidebar-input {
  display: block;
  width: 100%;
  border: 1px solid #D5E0DA;
  border-radius: var(--r-default);
  padding: 11px 12px;
  font-size: 0.875rem;
  font-family: var(--f-body);
  background: #fff;
  color: var(--c-dk);
  outline: none;
  margin-bottom: 11px;
  transition: border-color var(--ease);
}
.wl-nl-sidebar-input:focus {
  border-color: var(--c-dk);
}
.wl-nl-sidebar-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 11px;
}
.wl-nl-sidebar-consent input[type=checkbox] {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--c-dk);
}
.wl-nl-sidebar-consent span {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--c-text-soft);
  font-weight: 500;
}
.wl-nl-sidebar-consent a {
  color: var(--c-link);
  font-weight: 700;
  text-decoration: underline;
}
.wl-nl-sidebar-submit {
  width: 100%;
  justify-content: center;
}

.wl-swiper {
  padding: 0 var(--sp-xl);
  max-width: 660px;
}
.wl-swiper .swiper-button-prev,
.wl-swiper .swiper-button-next {
  color: rgba(255, 255, 255, 0.4);
}
.wl-swiper .swiper-button-prev svg,
.wl-swiper .swiper-button-next svg {
  width: 50%;
  height: 50%;
}
.wl-swiper .swiper-button-prev:hover,
.wl-swiper .swiper-button-next:hover {
  color: #fff;
}
.wl-swiper .swiper-button-prev::after,
.wl-swiper .swiper-button-next::after {
  font-size: 1rem;
}

.wl-highlight {
  background: var(--c-dk);
  border-radius: var(--r-story);
  overflow: hidden;
  color: #fff;
  transition: all var(--ease);
}
.wl-highlight h3, .wl-highlight h4 {
  color: #fff;
}
.wl-highlight p {
  color: rgba(255, 255, 255, 0.65);
}
.wl-highlight-img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}
.wl-highlight-right {
  display: flex;
  flex-direction: column;
  padding: var(--sp-md) var(--sp-xl);
}
.wl-highlight-body {
  flex: 1;
}
.wl-highlight-parts {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 calc(var(--sp-xl) * -1);
  padding: var(--sp-md) var(--sp-xl) 0;
}
.wl-highlight-part {
  padding-top: var(--sp-sm);
}
.wl-highlight-part:first-child {
  padding-right: var(--sp-md);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.wl-highlight-part:last-child {
  padding-left: var(--sp-md);
}
.wl-highlight-part img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-story);
  margin-bottom: var(--sp-sm);
}
.wl-highlight-part h4 {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}
.wl-highlight-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.wl-pod {
  display: flex;
  align-items: stretch;
  gap: var(--sp-md);
  background: var(--c-surface);
  border-radius: 0;
  padding: var(--sp-md);
  transition: all var(--ease);
  height: 100%;
}
.wl-pod:hover {
  background: var(--c-bg-alt);
}
.wl-pod:hover .wl-pod-play img {
  transform: scale(1.04);
}
.wl-pod-play {
  width: 80px;
  min-width: 80px;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.wl-pod-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}
.wl-pod-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.wl-pod-label {
  color: var(--c-neu);
}
.wl-pod-title {
  flex: 1;
  margin-bottom: 0;
}
.wl-pod-meta {
  margin-top: auto;
}

.wl-player {
  background: var(--c-dk);
  border-radius: var(--r-story);
  padding: var(--sp-lg);
  color: #fff;
  margin-bottom: var(--sp-xl);
}
.wl-player-bar {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  height: 6px;
  flex: 1;
}
.wl-player-bar-progress {
  background: var(--c-cm);
  height: 100%;
  border-radius: 4px;
  transition: width 0.1s linear;
}
.wl-player-time {
  font-size: 0.75rem;
  opacity: 0.4;
}

/* -- PODCAST CARDS (Startseite) -------------------------------- */
.wl-pod-card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--ease);
  /* -- Hover ------------------------------------------------- */
}
.wl-pod-card-body-top {
  padding: var(--sp-md) var(--sp-md) var(--sp-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}
.wl-pod-card-title {
  color: var(--c-dk);
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wl-pod-card-cat {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-dk);
  text-decoration: none;
  transition: color var(--ease);
  line-height: 1;
}
.wl-pod-card-cat:hover {
  color: rgb(11.9550561798, 26.0449438202, 23.0561797753);
}
.wl-pod-card-cover-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  padding: var(--sp-md) var(--sp-md) 0;
  transition: padding var(--ease);
}
.wl-pod-card-cover {
  width: 100%;
  object-fit: cover;
  border-radius: var(--r-container);
  display: block;
  transition: transform var(--ease);
}
.wl-pod-card-body {
  padding: var(--sp-sm) var(--sp-md) var(--sp-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wl-pod-card-meta {
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: var(--sp-xs);
}
.wl-pod-card-teaser {
  line-height: 1.55;
  margin: 0;
}
.wl-pod-card-overlay {
  padding: 0 var(--sp-md) var(--sp-md);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
}
.wl-pod-card:hover .wl-pod-card-cover-wrap {
  padding: var(--sp-xs) var(--sp-xs) 0;
}
.wl-pod-card:hover .wl-pod-card-cover {
  transform: scale(0.8);
}
.wl-pod-card:hover .wl-pod-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.wl-card-meta-sep {
  color: var(--c-neu);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  user-select: none;
}

.wl-toptopic .wl-toptopic-main {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wl-toptopic .wl-toptopic-main .wl-toptopic-img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--r-story);
  display: block;
}
.wl-toptopic .wl-toptopic-main .wl-toptopic-body {
  padding: var(--sp-md) 0 0;
}
.wl-toptopic .wl-toptopic-main .wl-toptopic-body .wl-toptopic-title {
  color: #fff;
  margin: var(--sp-sm) 0 var(--sp-sm);
}
.wl-toptopic .wl-toptopic-main .wl-toptopic-body .wl-toptopic-teaser {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--sp-md);
}
.wl-toptopic .wl-toptopic-parts {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wl-toptopic .wl-toptopic-parts .wl-toptopic-part {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wl-toptopic .wl-toptopic-parts .wl-toptopic-part-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--r-story);
  display: block;
  transition: opacity var(--ease);
}
.wl-toptopic .wl-toptopic-parts .wl-toptopic-part-img:hover {
  opacity: 0.85;
}
.wl-toptopic .wl-toptopic-parts .wl-toptopic-part-body {
  padding: var(--sp-sm) 0 0;
}
.wl-toptopic .wl-toptopic-parts .wl-toptopic-part-body .wl-toptopic-part-title {
  color: #fff;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.2;
  margin: var(--sp-xs) 0 var(--sp-xs);
  transition: color var(--ease);
}
.wl-toptopic .wl-toptopic-parts .wl-toptopic-part-body .wl-toptopic-part-teaser {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wl-toptopic .wl-toptopic-parts .wl-toptopic-part a:hover .wl-toptopic-part-title {
  color: var(--c-cm);
}

/* -- TRENNLINIEN im TopTopic ----------------------------------- */
/* Vertikal: zwischen linker und rechter Spalte */
@media (min-width: 992px) {
  .wl-toptopic-parts {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: var(--sp-lg);
  }
}
/* Horizontal: zwischen den beiden rechten Artikeln */
.wl-toptopic-part + .wl-toptopic-part {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--sp-md);
  margin-top: 0; /* mb-4 im Template entfernen, padding übernimmt den Abstand */
}

.wl-dhero-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mm);
  margin-bottom: var(--sp-sm);
}

.wl-dhero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-top: var(--sp-xs);
}

.wl-section-label-accent {
  color: var(--c-cm);
  margin-bottom: var(--sp-md);
}

.wl-section-featured-partners {
  background: var(--c-bg-alt);
  padding-bottom: var(--sp-lg);
}

.wl-featured-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--c-dk);
  border-radius: var(--r-container);
  padding: var(--sp-lg);
  min-height: 190px;
  text-decoration: none;
  transition: all var(--ease);
}
.wl-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(var(--c-dk-rgb), 0.2);
}
.wl-featured-card-mono {
  width: 64px;
  height: 64px;
  border-radius: var(--r-ui);
  background: rgba(var(--c-ft-rgb), 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--c-ft);
  overflow: hidden;
}
.wl-featured-card-mono img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.wl-featured-card-footer {
  margin-top: auto;
}
.wl-featured-card-meta {
  color: var(--c-mm);
  display: block;
  margin-bottom: 6px;
}
.wl-featured-card-title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.wl-institution-index {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}
@media (max-width: 991.98px) {
  .wl-institution-index {
    grid-template-columns: 1fr;
  }
}

.wl-filter-rail {
  position: sticky;
  top: calc(var(--sp-lg) + 60px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}
@media (max-width: 991.98px) {
  .wl-filter-rail {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--sp-md);
  }
}

.wl-filter-rail-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wl-filter-rail-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-neu);
  margin-bottom: var(--sp-xs);
}

.wl-filter-rail-item {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: var(--r-ui);
  color: var(--c-text-soft);
  text-decoration: none;
  transition: all var(--ease);
}
.wl-filter-rail-item:hover {
  background: var(--c-bg-alt);
  color: var(--c-dk);
}
.wl-filter-rail-item.active {
  background: var(--c-dk);
  color: #fff;
}

.wl-institution-list-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--sp-sm);
  font-size: 0.88rem;
}

.wl-institution-count {
  font-family: var(--f-head);
  font-weight: 600;
  color: var(--c-dk);
}
.wl-institution-count strong {
  font-weight: 700;
}

.wl-alpha-group {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin: var(--sp-md) 0 var(--sp-xs);
}

.wl-alpha-letter {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-mm);
  width: 30px;
  flex-shrink: 0;
}

.wl-alpha-line {
  flex: 1;
  height: 1px;
  background: var(--c-bg-alt);
}

.wl-institution-row {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-sm) var(--sp-md);
  border: 1px solid #EDF1EF;
  border-radius: var(--r-container);
  background: var(--c-surface);
  text-decoration: none;
  margin-bottom: var(--sp-xs);
  transition: all var(--ease);
}
.wl-institution-row:hover {
  border-color: var(--c-cm);
  background: var(--c-bg);
}
.wl-institution-row:hover .wl-institution-row-arrow {
  transform: translateX(3px);
}
.wl-institution-row-mono {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: var(--r-ui);
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-dk);
  overflow: hidden;
}
.wl-institution-row-mono img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.wl-institution-row-body {
  flex: 1;
  min-width: 0;
}
.wl-institution-row-name {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-dk);
  margin: 0 0 4px;
}
.wl-institution-row-meta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
@media (max-width: 575.98px) {
  .wl-institution-row-meta {
    display: none;
  }
}
.wl-institution-row-type {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cm);
}
.wl-institution-row-arrow {
  flex-shrink: 0;
  color: var(--c-dk);
  font-size: 1.1rem;
  transition: transform var(--ease);
}

.wl-institution-empty {
  padding: var(--sp-3xl) var(--sp-lg);
  text-align: center;
  color: var(--c-neu);
}
.wl-institution-empty i {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--sp-sm);
}

.wl-section-cta-banner {
  padding: clamp(var(--sp-xl), 6vw, var(--sp-2xl)) 0;
}

.wl-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.wl-cta-banner-text {
  max-width: 600px;
}
.wl-cta-banner-text h2 {
  color: #fff;
}
.wl-cta-banner-text p {
  color: var(--c-cm);
  margin: var(--sp-xs) 0 0;
}

.wl-dhero-masthead {
  padding-bottom: 0;
}

.wl-masthead {
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
  padding-bottom: var(--sp-xl);
}

.wl-masthead-logo {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  border-radius: var(--r-ui);
  background: rgba(var(--c-ft-rgb), 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--c-ft);
  overflow: hidden;
}
.wl-masthead-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.wl-masthead-meta {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-mm);
  margin-bottom: var(--sp-xs);
}

.wl-masthead-lede {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin-top: var(--sp-sm);
}

.wl-section-about {
  padding-bottom: var(--sp-lg);
}

.wl-about-label {
  color: var(--c-neu);
  margin-bottom: var(--sp-md);
}

.wl-section-articles-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-sm);
}

.wl-articles-all {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--c-cm);
}
.wl-articles-all:hover {
  color: var(--c-dk);
}

.wl-article-rows {
  display: flex;
  flex-direction: column;
}

.wl-article-row {
  position: relative;
  display: flex;
  gap: var(--sp-md);
  align-items: center;
  padding: var(--sp-md) 0;
  border-bottom: 1px solid #EDF1EF;
  transition: background var(--ease);
}
.wl-article-row:hover .wl-article-row-keyline {
  transform: scaleX(1);
}
.wl-article-row:hover .wl-article-row-title {
  color: #16302A;
}

.wl-article-row-img {
  flex-shrink: 0;
  width: 150px;
  height: 96px;
  border-radius: var(--r-ui);
  overflow: hidden;
  background: var(--c-bg-alt);
  position: relative;
  display: block;
}
.wl-article-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.wl-article-row-img:hover img {
  transform: scale(1.06);
}
@media (max-width: 575.98px) {
  .wl-article-row-img {
    display: none;
  }
}

.wl-article-row-keyline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--c-ft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.wl-article-row-body {
  flex: 1;
  min-width: 0;
}

.wl-article-row-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-xs);
}

.wl-article-row-cat {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cm);
  position: relative;
  z-index: 2;
}
.wl-article-row-cat:hover {
  color: var(--c-dk);
  text-decoration: underline;
}

.wl-article-row-dot {
  color: #C9D2CD;
  font-weight: 700;
  position: relative;
  top: -1px;
}

.wl-article-row-title {
  display: block;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--c-dk);
  margin-bottom: 6px;
  text-decoration: none;
  transition: color 0.2s;
}
.wl-article-row-title::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wl-article-row-teaser {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #7A857F;
  margin: 0;
  max-width: 560px;
}

.wl-article-row-arrow {
  flex-shrink: 0;
  color: var(--c-dk);
  font-size: 1.1rem;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.wl-section-contact-cta {
  padding: clamp(var(--sp-xl), 6vw, var(--sp-2xl)) 0;
}

.wl-contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.wl-contact-cta-label {
  color: var(--c-mm);
  margin-bottom: var(--sp-xs);
}
.wl-contact-cta h2 {
  color: #fff;
}
.wl-contact-cta-email {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  display: block;
}
.wl-contact-cta-email:hover {
  color: var(--c-cm);
}

.wl-footer {
  background: var(--c-darkdk);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--sp-2xl) 0 var(--sp-lg);
}
.wl-footer img.wl-footer-logo {
  max-width: 150px;
}
.wl-footer h5 {
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: var(--sp-sm);
}
.wl-footer a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}
.wl-footer a:hover {
  color: var(--c-cm);
}
.wl-footer-b {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--sp-md);
  margin-top: var(--sp-xl);
  font-size: 0.78rem;
}

.wl-ev-featured-wrap {
  padding: 0 0 var(--sp-lg);
  background: var(--c-bg);
}

.wl-ev-featured {
  position: relative;
  display: block;
  border-radius: var(--r-hero);
  overflow: hidden;
  min-height: clamp(320px, 42vw, 440px);
  background: var(--c-dk);
  text-decoration: none;
}
.wl-ev-featured:hover .wl-ev-featured-img {
  transform: scale(1.04);
}
.wl-ev-featured:hover .wl-ev-keyline {
  transform: scaleX(1);
}
.wl-ev-featured:hover .wl-ev-featured-title {
  color: rgba(255, 255, 255, 0.85);
}
.wl-ev-featured-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.wl-ev-featured-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 48, 42, 0.05) 0%, rgba(22, 48, 42, 0.34) 45%, rgba(22, 48, 42, 0.9) 100%);
}
.wl-ev-featured-body {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: clamp(var(--sp-md), 3vw, var(--sp-xl));
  max-width: 760px;
  z-index: 2;
}
.wl-ev-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-sm);
}
.wl-ev-featured-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ft);
}
.wl-ev-featured-when {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(214, 228, 220, 0.9);
}
.wl-ev-featured-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.1rem);
  line-height: 1.12;
  color: #fff;
  margin: 0 0 var(--sp-sm);
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.wl-ev-badge {
  position: absolute;
  top: var(--sp-md);
  left: var(--sp-md);
  border-radius: var(--r-default);
  text-align: center;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  min-width: 52px;
}
.wl-ev-badge-sm {
  padding: 7px 11px;
  min-width: 46px;
}
.wl-ev-badge-sm .wl-ev-badge-day {
  font-size: 1.2rem;
}
.wl-ev-badge-sm .wl-ev-badge-mon {
  font-size: 0.56rem;
  margin-top: 2px;
}
.wl-ev-badge-sm .wl-ev-badge-end {
  font-size: 0.56rem;
  margin-top: 3px;
  padding-top: 3px;
}
.wl-ev-badge-flash {
  background: var(--c-ft);
}
.wl-ev-badge-flash .wl-ev-badge-day {
  color: #16302A;
}
.wl-ev-badge-flash .wl-ev-badge-mon {
  color: var(--c-dk);
}
.wl-ev-badge-flash .wl-ev-badge-end {
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  color: var(--c-dk);
}
.wl-ev-badge-dark {
  background: var(--c-dk);
}
.wl-ev-badge-dark .wl-ev-badge-day {
  color: #fff;
}
.wl-ev-badge-dark .wl-ev-badge-mon {
  color: var(--c-mm);
}
.wl-ev-badge-dark .wl-ev-badge-end {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--c-mm);
}
.wl-ev-badge-day {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
}
.wl-ev-badge-mon {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 3px;
  text-transform: uppercase;
}
.wl-ev-badge-end {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  padding-top: 4px;
  width: 100%;
  text-align: center;
}

.wl-ev-keyline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--c-ft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}

.wl-ev-index {
  background: var(--c-bg);
}

.wl-ev-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}
@media (max-width: 991.98px) {
  .wl-ev-layout {
    grid-template-columns: 1fr;
  }
}

.wl-ev-grid-col {
  min-width: 0;
}
.wl-ev-grid-col .wl-ev-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
  flex-wrap: wrap;
}
.wl-ev-grid-col .wl-ev-grid-count {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-dk);
}
.wl-ev-grid-col .wl-ev-grid-count strong {
  font-weight: 700;
}

.wl-ev-view-toggle {
  display: inline-flex;
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-default);
  overflow: hidden;
}
.wl-ev-view-toggle a {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--c-text-soft);
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.wl-ev-view-toggle a + a {
  border-left: 1px solid var(--c-border-lt);
}
.wl-ev-view-toggle a:hover {
  background: var(--c-bg-alt);
}
.wl-ev-view-toggle a.active {
  background: var(--c-dk);
  color: #fff;
}

.wl-ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
@media (max-width: 1199.98px) {
  .wl-ev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .wl-ev-grid {
    grid-template-columns: 1fr;
  }
}

.wl-ev-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-story);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.wl-ev-card:hover {
  border-color: var(--c-cm);
}
.wl-ev-card:hover .wl-ev-card-img img {
  transform: scale(1.06);
}
.wl-ev-card:hover .wl-ev-keyline {
  transform: scaleX(1);
}
.wl-ev-card:hover .wl-ev-card-title {
  color: #16302A;
}
.wl-ev-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-bg-alt);
  position: relative;
  flex-shrink: 0;
}
.wl-ev-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.wl-ev-card-placeholder {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #EAF1ED 0 12px, #E1EAE5 12px 24px);
}
.wl-ev-card-body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  flex: 1;
}
.wl-ev-card-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.wl-ev-card-format {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cm);
}
.wl-ev-card-title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.26;
  color: var(--c-dk);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.wl-ev-card-teaser {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #7A857F;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wl-ev-card-loc {
  margin-top: auto;
  padding-top: 4px;
}

.wl-ev-cal-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wl-ev-cal-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-default);
  color: var(--c-dk);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--ease);
}
.wl-ev-cal-nav-btn:hover {
  background: var(--c-bg-alt);
}
.wl-ev-cal-nav-label {
  min-width: 124px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--c-dk);
}

.wl-ev-calendar {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 760px) {
  .wl-ev-calendar {
    margin: 0 calc(var(--sp-md) * -1);
  }
}

.wl-ev-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-story);
  overflow: hidden;
  min-width: 680px;
}

.wl-ev-cal-wd {
  padding: 11px 12px;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-neu);
  background: var(--c-bg-alt);
  border-right: 1px solid var(--c-border-lt);
}
.wl-ev-cal-wd:last-child {
  border-right: none;
}

.wl-ev-cal-cell {
  min-height: 120px;
  padding: 8px;
  border-right: 1px solid var(--c-border-lt);
  border-top: 1px solid var(--c-border-lt);
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  overflow: hidden;
}
.wl-ev-cal-cell:nth-child(7n) {
  border-right: none;
}
.wl-ev-cal-cell-empty {
  background: var(--c-bg-alt);
  opacity: 0.5;
}
.wl-ev-cal-cell-today {
  background: rgba(var(--c-ft-rgb), 0.08);
}
.wl-ev-cal-cell-today .wl-ev-cal-day {
  background: var(--c-dk);
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wl-ev-cal-day {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-dk);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.wl-ev-cal-chip {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--c-dk);
  background: rgba(var(--c-cm-rgb), 0.2);
  padding: 3px 6px;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  transition: background var(--ease);
}
.wl-ev-cal-chip:hover {
  background: #D6E6DC;
}
.wl-ev-cal-chip-multi {
  background: rgba(var(--c-dk-rgb), 0.12);
}
.wl-ev-cal-chip-multi:has(.bi-arrow-right) {
  opacity: 0.65;
}

.wl-ev-cal-more {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-neu);
  padding: 2px 6px;
}

.wl-ev-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: #7A857F;
  font-size: 0.82rem;
  font-weight: 600;
}
.wl-ev-loc-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.wl-ev-dot {
  color: #C9D2CD;
  font-weight: 700;
  position: relative;
  top: -1px;
}

.wl-ev-empty {
  padding: var(--sp-3xl) var(--sp-lg);
  text-align: center;
  color: var(--c-neu);
}
.wl-ev-empty i {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--sp-sm);
}
.wl-ev-empty p {
  margin: 0;
}

.wl-ev-masthead {
  background: var(--c-dk);
  padding: clamp(var(--sp-md), 3vw, var(--sp-lg)) 0 clamp(var(--sp-lg), 4vw, var(--sp-xl));
}
.wl-ev-masthead-tags {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-sm);
}
.wl-ev-masthead-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(1.875rem, 5vw, 2.875rem);
  line-height: 1.07;
  color: #fff;
  margin: 0;
  letter-spacing: -0.015em;
  max-width: 840px;
}
.wl-ev-masthead-lede {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.5;
  color: #BFD3CA;
  letter-spacing: 0.01em;
  margin: var(--sp-sm) 0 0;
  max-width: 680px;
}

.wl-ev-mode-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: var(--r-default);
}
.wl-ev-mode-tag-vor-ort {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.wl-ev-mode-tag-online {
  background: var(--c-ft);
  color: #16302A;
}
.wl-ev-mode-tag-hybrid {
  background: var(--c-ft);
  color: #16302A;
}

.wl-ev-series {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-mm);
}

.wl-ev-hero-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 600px;
  overflow: hidden;
  background: var(--c-dk);
}
.wl-ev-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wl-ev-hero-img .wl-ev-keyline {
  transform: scaleX(1);
  height: 5px;
}
.wl-ev-hero-img-copyright {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 3px;
}

.wl-ev-body {
  padding: clamp(var(--sp-lg), 4vw, var(--sp-xl)) 0 var(--sp-sm);
}
.wl-ev-body-inner {
  max-width: 780px;
}

.wl-ev-map-section {
  padding: var(--sp-sm) 0 var(--sp-xs);
}

.wl-ev-address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #7A857F;
  margin-bottom: var(--sp-sm);
}

.wl-ev-map-placeholder {
  border-radius: var(--r-story);
  overflow: hidden;
  height: 230px;
  background: repeating-linear-gradient(135deg, #EAF1ED 0 14px, #E1EAE5 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-xs);
  color: #7A857F;
}
.wl-ev-map-placeholder i {
  font-size: 2rem;
  opacity: 0.3;
}
.wl-ev-map-placeholder span {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.5;
}

.wl-ev-online-box {
  border-radius: var(--r-story);
  border: 1px solid #CFE3D7;
  background: #F4F7F5;
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.wl-ev-online-box i {
  font-size: 1.4rem;
  color: var(--c-cm);
  flex-shrink: 0;
}
.wl-ev-online-box-label {
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cm);
  margin-bottom: 3px;
}
.wl-ev-online-box-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-dk);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wl-ev-online-box-link:hover {
  color: var(--c-cm);
}

.wl-ev-tags-share {
  margin: var(--sp-sm) 0;
}
.wl-ev-tags-share .container {
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-lg) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.wl-ev-section-label {
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-neu);
  margin-bottom: var(--sp-xs);
}

.wl-ev-registration {
  background: var(--c-dk);
  padding: clamp(var(--sp-lg), 4vw, var(--sp-xl)) 0;
}
.wl-ev-registration-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.wl-ev-registration-inner h2 {
  color: #fff;
}
@media (max-width: 575.98px) {
  .wl-ev-registration-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.wl-ev-related-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-sm);
}

.wl-facts-strip .container {
  border-bottom: 1px solid var(--c-border);
}

.wl-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .wl-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wl-facts-grid > .wl-fact:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 575.98px) {
  .wl-facts-grid {
    grid-template-columns: 1fr;
  }
  .wl-facts-grid > .wl-fact {
    border-right: none !important;
    border-bottom: 1px solid var(--c-border);
  }
  .wl-facts-grid > .wl-fact:last-child {
    border-bottom: none;
  }
}

.wl-fact {
  padding: var(--sp-md) var(--sp-lg);
  border-right: 1px solid var(--c-border-lt);
}
.wl-fact:last-child {
  border-right: none;
}

.wl-fact-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-neu);
  margin-bottom: 6px;
}

.wl-fact-value {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--c-dk);
  line-height: 1.4;
}
.wl-fact-value a {
  color: var(--c-link);
  font-weight: 700;
  text-decoration: none;
}
.wl-fact-value a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wl-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2F6B4F;
  background: #EAF1ED;
  padding: 7px 12px;
  border-radius: var(--r-default);
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.wl-tag:hover {
  background: var(--c-dk);
  color: #fff;
}

.wl-share-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 11px;
  border: 1px solid #D5E0DA;
  border-radius: var(--r-default);
  color: #2B3A35;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.wl-share-btn:hover {
  border-color: var(--c-dk);
  background: #F4F7F5;
  color: #2B3A35;
}

.wl-badge-eigen {
  background: var(--c-ft);
  color: var(--c-dk);
}

.wl-badge-editorial {
  background: rgba(255, 255, 255, 0.1);
  color: #DCE7E1;
}

.wl-badge-partner {
  background: rgba(var(--c-dk-rgb), 0.08);
  color: var(--c-text-soft);
}

.wl-badge-partner-dk {
  background: rgba(255, 255, 255, 0.1);
  color: #DCE7E1;
}

.wl-badge-ticket, .wl-badge-online {
  background: var(--c-ft);
  color: var(--c-dk);
}

.wl-art-masthead {
  padding-bottom: clamp(var(--sp-lg), 4vw, var(--sp-xl));
}
.wl-art-masthead h1 {
  max-width: 880px;
}

.wl-art-badges {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-sm);
}

.wl-art-ad-flag {
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(231, 238, 234, 0.3);
  color: #E7EEEA;
}

.wl-art-kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-mm);
  margin-bottom: var(--sp-xs);
  text-decoration: none;
}
.wl-art-kicker:hover {
  color: var(--c-ft);
}

.wl-art-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(1.875rem, 4.4vw, 2.625rem);
  line-height: 1.08;
  color: #fff;
  margin: 0;
  letter-spacing: -0.015em;
  max-width: 880px;
}

.wl-art-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.5;
  color: #BFD3CA;
  letter-spacing: 0.01em;
  font-weight: 500;
  margin: var(--sp-sm) 0 0;
  max-width: 720px;
}

.wl-art-byline {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: clamp(var(--sp-md), 3vw, var(--sp-lg));
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-cm);
}
.wl-art-byline-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.wl-art-byline-link:hover .wl-art-byline-name {
  text-decoration: underline;
}
.wl-art-byline-link img {
  width: 40px;
  height: 40px;
  border-radius: var(--r-story);
  object-fit: cover;
}
.wl-art-byline-mono {
  width: 40px;
  height: 40px;
  border-radius: var(--r-story);
  background: rgba(190, 255, 199, 0.16);
  color: var(--c-ft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.wl-art-byline-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
}

.wl-art-dot {
  color: rgba(167, 196, 181, 0.45);
  font-weight: 700;
}

.wl-art-tts {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(var(--sp-md), 3vw, var(--sp-lg));
  padding: 12px 16px;
  border-radius: var(--r-default);
  background: rgba(190, 255, 199, 0.08);
  border: 1px solid rgba(190, 255, 199, 0.22);
  max-width: 520px;
}
.wl-art-tts-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--r-default);
  border: none;
  background: var(--c-ft);
  color: #16302A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  transition: background var(--ease);
}
.wl-art-tts-btn:hover {
  background: #a3f0ae;
}
.wl-art-tts-body {
  flex: 1;
  min-width: 0;
}
.wl-art-tts-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 7px;
}
.wl-art-tts-label {
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ft);
}
.wl-art-tts-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-cm);
}
.wl-art-tts-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(167, 196, 181, 0.3);
  overflow: hidden;
}
.wl-art-tts-bar-progress {
  width: 0%;
  height: 100%;
  background: var(--c-ft);
  transition: width 0.1s linear;
}

.wl-art-hero-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 560px;
  overflow: hidden;
  background: var(--c-dk);
}
.wl-art-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wl-art-hero-img .wl-ev-keyline {
  transform: scaleX(1);
}

.wl-art-hero-caption {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  color: #7A857F;
  margin-top: var(--sp-xs);
}

.wl-art-body-section {
  padding-top: clamp(var(--sp-lg), 4vw, var(--sp-xl));
}

.wl-art-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: var(--sp-2xl);
  align-items: start;
}
@media (max-width: 999.98px) {
  .wl-art-grid {
    grid-template-columns: 1fr;
  }
}

.wl-art-main {
  min-width: 0;
}

.wl-art-teaser {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--c-text-soft);
  margin-bottom: var(--sp-lg);
}

.wl-art-tags-block {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--c-border);
}

.wl-art-share-block {
  margin-top: var(--sp-md);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.wl-art-aside {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  position: sticky;
  top: 24px;
}
@media (max-width: 999.98px) {
  .wl-art-aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .wl-art-aside > * {
    flex: 1 1 280px;
  }
}

.wl-art-widget {
  border: 1px solid var(--c-border);
  border-radius: var(--r-default);
  padding: var(--sp-md);
  background: var(--c-surface);
}

.wl-art-related {
  padding-top: 0;
}

.wl-ad {
  border: 1px solid var(--c-border);
  border-radius: var(--r-default);
  background: var(--c-surface);
  overflow: hidden;
}
.wl-ad-label {
  padding: 10px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-neu);
}
.wl-ad a {
  display: block;
}
.wl-ad img {
  width: 100%;
  display: block;
}

.wl-author-box-label {
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-neu);
  margin-bottom: var(--sp-sm);
}
.wl-author-box-head {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 13px;
  text-decoration: none;
}
.wl-author-box-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--r-story);
  object-fit: cover;
}
.wl-author-box-avatar-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-alt);
  color: var(--c-dk);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.25rem;
}
.wl-author-box-name {
  display: block;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.2;
  color: var(--c-dk);
}
.wl-author-box-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-text-soft);
  margin-top: 3px;
}
.wl-author-box-bio {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--c-text-soft);
  font-weight: 500;
}
.wl-author-box-bio p {
  margin: 0 0 10px;
}
.wl-author-box-bio p:last-child {
  margin-bottom: 0;
}
.wl-author-box-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-link);
  text-decoration: none;
}
.wl-author-box-cta:hover {
  color: var(--c-dk);
}
