/* ============================================================
   FONTS
   ============================================================ */

@font-face {
  font-family: RM Neue;
  src: url(assets/fonts/RMNeue-Regular.woff2) format("woff2"),
       url(assets/fonts/RMNeue-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: RM Neue;
  src: url(assets/fonts/RMNeue-Bold.woff2) format("woff2"),
       url(assets/fonts/RMNeue-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
    /* Farben */
    --color-green-dark:   #1E3228;
    --color-green-mid:    #243B2E;
    --color-green-light:  #2E4A38;
    --color-cream:        #f5e9d3;
    --color-cream-mid:    #EDE8DC;
    --color-white:        #FFFFFF;
    --color-black:        #0E0E0E;
    --color-red:          #DC2F1A;
    --color-red-hover:    #C02615;
    --color-text:         #1A1A1A;
    --color-text-muted:   #555550;

    /* Typografie */
    --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body:    'Barlow', 'Helvetica Neue', sans-serif;

    /* Abstände */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  2rem;
    --space-lg:  4rem;
    --space-xl:  6rem;
    --space-xxl: 8rem;

    /* Layout */
    --container-max: 100%;
    --container-pad: clamp(1.25rem, 5vw, 4rem);

    /* Übergänge */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.25s var(--ease);
}

/* ============================================================
   TAILWIND BASE RESET
   ============================================================ */

*,
::before,
::after {
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
}

::before,
::after {
  --tw-content: "";
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: RM Neue, sans-serif;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, pre, samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
               Liberation Mono, Courier New, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: initial;
}

sub { bottom: -0.25em; }
sup { top: -0.5em; }

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
  background-color: initial;
  background-image: none;
}

:-moz-focusring { outline: auto; }
:-moz-ui-invalid { box-shadow: none; }

progress { vertical-align: initial; }

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration { -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary { display: list-item; }

blockquote, dd, dl, figure,
h1, h2, h3, h4, h5, h6,
hr, p, pre {
  margin: 0;
}

fieldset { margin: 0; }
fieldset, legend { padding: 0; }

menu, ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

textarea { resize: vertical; }

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

[role=button], button { cursor: pointer; }
:disabled { cursor: default; }

audio, canvas, embed, iframe, img, object, svg, video {
  display: block;
  vertical-align: middle;
}

img, video {
  max-width: 100%;
  height: auto;
}

.dp-block{display:block}
.site-header {
    position: fixed;
    background: transparent;                /* anfangs transparent */
    transition: background var(--transition), box-shadow var(--transition);
	z-index:1000;
}

/* Beim Scrollen → dunkler Hintergrund */
.site-header.is-scrolled {
    background: var(--color-green-dark);
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
	width:100%;
	min-height: 110px;
}
.hero-sub{width:60%; display:inline-block}
.hero-sub p{font-size:2rem;font-weight:600;line-height: 2.0rem; padding:0px 10px 0}
/* Navigation */
.main-nav { margin-left: var(--space-xxl);padding-top:36px }

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
	
}

.main-nav .nav-list li {padding: 0.5rem 1.25rem;}

.main-nav .nav-list a {
    display: block;
    
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color:  var(--color-cream);
    padding-bottom:1rem;
    transition: color var(--transition), background var(--transition);
	border-bottom:1px solid transparent;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list .current-menu-item a {
    color: #a1b394;
   
}
.position-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
/* ── Header CTA Button — fix rechts ── */
.header-cta {
    position: fixed;
    right: 0;
    top: 160px;
    z-index: 100;
    width: 100px;
    color: var(--color-white);
    font-size: 0.85rem;
}

.header-cta a {
    display: block;
    text-decoration: none;
}

/* Text — weiß im Hero, schwarz außerhalb */
.header-cta span {
    display: block;
    padding-right:5px;
    color: rgb(151 173 152);
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
}

/* Außerhalb Hero — Text schwarz */
body:not(.has-hero) .header-cta span,
.is-scrolled ~ * .header-cta span {
    color: rgb(151 173 152);
	text-shadow: 1px 1px #333 ;
    
}

.button-cta {
    background: var(--color-red);
    position: relative;
    min-height: 80px;
    /* ← mehr Rundung links */
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-cta img {
    position: relative;
    top: auto;
    left: auto;
}

.button-cta:hover {
    background: var(--color-red-hover);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiles Menü */
.mobile-menu {
    background: var(--color-green-mid);
    padding: var(--space-md) var(--container-pad) var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu[hidden] { display: none; }

.mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: var(--space-md); }
.mobile-nav-list a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-mobile-cta {
    background: var(--color-red);
    color: var(--color-white);
    padding: 0.8rem 1.75rem;
    border-radius: 2rem;
    font-weight: 600;
}

/* ============================================================
   TAILWIND CSS VARIABLES (reset for all elements)
   ============================================================ */

*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

::-webkit-backdrop { /* same variables as above */ }
::backdrop { /* same variables as above */ }



/* ============================================================
   CONTAINER
   ============================================================ */

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (min-width: 768px) {
  .container { max-width: 768px; }
  
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media (min-width: 1536px) {
  .container { max-width: 1536px; }
}


/* ============================================================
   ENTRY CONTENT (Prose/Blog Styles)
   ============================================================ */

.entry-title {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  max-width: 40rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
  --tw-text-opacity: 1;
  color: rgb(23 23 23 / var(--tw-text-opacity));
}

.entry-content {
  color: var(--tw-prose-body);
  max-width: 65ch;
}

/* --- Prose token variables --- */
.entry-content {
  --tw-prose-body: #404040;
  --tw-prose-headings: #171717;
  --tw-prose-lead: #525252;
  --tw-prose-links: #171717;
  --tw-prose-bold: #171717;
  --tw-prose-counters: #737373;
  --tw-prose-bullets: #d4d4d4;
  --tw-prose-hr: #e5e5e5;
  --tw-prose-quotes: #171717;
  --tw-prose-quote-borders: #e5e5e5;
  --tw-prose-captions: #737373;
  --tw-prose-code: #171717;
  --tw-prose-pre-code: #e5e5e5;
  --tw-prose-pre-bg: #262626;
  --tw-prose-th-borders: #d4d4d4;
  --tw-prose-td-borders: #e5e5e5;
  --tw-prose-invert-body: #d4d4d4;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #a3a3a3;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #a3a3a3;
  --tw-prose-invert-bullets: #525252;
  --tw-prose-invert-hr: #404040;
  --tw-prose-invert-quotes: #f5f5f5;
  --tw-prose-invert-quote-borders: #404040;
  --tw-prose-invert-captions: #a3a3a3;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d4d4d4;
  --tw-prose-invert-pre-bg: rgba(0, 0, 0, 0.5);
  --tw-prose-invert-th-borders: #525252;
  --tw-prose-invert-td-borders: #404040;
  font-size: 1rem;
  line-height: 1.75;
  max-width: none;
}

/* Alignment helpers */
.entry-content > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.entry-content > .alignwide { max-width: 60rem; }
.entry-content > .alignfull { max-width: none; }

/* Links */
.entry-content :is(:where(a):not(:where([class~=not-prose] *))) {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity));
}

/* Lead */
.entry-content :where([class~=lead]):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

/* Links */
.entry-content :where(a):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}

/* Bold */
.entry-content :where(strong):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}

/* Paragraphs */
.entry-content :where(p):not(:where([class~=not-prose] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

/* Headings */
.entry-content :where(h1):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.889em;
  line-height: 1.111;
}

.entry-content :where(h2):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.333;
}

.entry-content :where(h3):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.entry-content :where(h4):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

/* Lists */
.entry-content :where(ol):not(:where([class~=not-prose] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.entry-content :where(ul):not(:where([class~=not-prose] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.entry-content :where(li):not(:where([class~=not-prose] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.entry-content :where(ol > li):not(:where([class~=not-prose] *)) { padding-left: 0.375em; }
.entry-content :where(ul > li):not(:where([class~=not-prose] *)) { padding-left: 0.375em; }

.entry-content :where(ol > li):not(:where([class~=not-prose] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}

.entry-content :where(ul > li):not(:where([class~=not-prose] *))::marker {
  color: var(--tw-prose-bullets);
}

/* Blockquote */
.entry-content :where(blockquote):not(:where([class~=not-prose] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C" "\201D" "\2018" "\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}

.entry-content :where(blockquote p:first-of-type):not(:where([class~=not-prose] *))::before {
  content: open-quote;
}

.entry-content :where(blockquote p:last-of-type):not(:where([class~=not-prose] *))::after {
  content: close-quote;
}

/* HR */
.entry-content :where(hr):not(:where([class~=not-prose] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

/* Code */
.entry-content :where(code):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}

.entry-content :where(code):not(:where([class~=not-prose] *))::before { content: "`"; }
.entry-content :where(code):not(:where([class~=not-prose] *))::after  { content: "`"; }

/* Pre */
.entry-content :where(pre):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.714;
  margin-top: 1.714em;
  margin-bottom: 1.714em;
  border-radius: 0.375rem;
  padding: 0.857em 1.143em;
}

.entry-content :where(pre code):not(:where([class~=not-prose] *)) {
  background-color: initial;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.entry-content :where(pre code):not(:where([class~=not-prose] *))::before { content: none; }
.entry-content :where(pre code):not(:where([class~=not-prose] *))::after  { content: none; }

/* Images & figures */
.entry-content :where(img):not(:where([class~=not-prose] *))      { margin-top: 2em; margin-bottom: 2em; }
.entry-content :where(video):not(:where([class~=not-prose] *))    { margin-top: 2em; margin-bottom: 2em; }
.entry-content :where(figure):not(:where([class~=not-prose] *))   { margin-top: 2em; margin-bottom: 2em; }
.entry-content :where(figure > *):not(:where([class~=not-prose] *)) { margin-top: 0; margin-bottom: 0; }

.entry-content :where(figcaption):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.429;
  margin-top: 0.857em;
}

/* Tables */
.entry-content :where(table):not(:where([class~=not-prose] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.714;
}

.entry-content :where(thead):not(:where([class~=not-prose] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.entry-content :where(thead th):not(:where([class~=not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.571em;
  padding-bottom: 0.571em;
  padding-left: 0.571em;
}

.entry-content :where(tbody tr):not(:where([class~=not-prose] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.entry-content :where(tbody tr:last-child):not(:where([class~=not-prose] *)) {
  border-bottom-width: 0;
}

.entry-content :where(tbody td, tfoot td):not(:where([class~=not-prose] *)) {
  padding: 0.571em;
  vertical-align: initial;
}

.entry-content :where(tfoot):not(:where([class~=not-prose] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.entry-content :where(tfoot td):not(:where([class~=not-prose] *)) {
  vertical-align: top;
}
/* ─────────────────────────────────────────────
   8. Footer
───────────────────────────────────────────── */
.site-footer {
    background: var(--color-green-dark);
    color: var(--color-white);
}
/*
		Header-Bild Inhalt
*/
.inhalt-breit{width:60%}

/* ─────────────────────────────────────────────
   HEROSLIDER — Hintergrundvideo + Slogan
   → An das Ende der style.css anhängen
───────────────────────────────────────────── */

.heroslider {
    position: relative;
    width: 100%;
    height: 100svh;           /* volle Bildschirmhöhe */
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-green-dark); /* Fallback wenn kein Video */
}

/* ── Video ── */
.heroslider__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.heroslider__video {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Video füllt den ganzen Bereich */
    object-position: center;
    display: block;
}

/* ── Overlay (verdunkelt das Video) ── */
.heroslider__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(20, 40, 28, 0.55) 0%,
        rgba(20, 40, 28, 0.70) 60%,
        rgba(20, 40, 28, 0.85) 100%
    );
}

/* ── Inhalt ── */
.heroslider__inner {
    position: relative;
    z-index: 2;
    padding-top: 350px;        /* Header-Höhe kompensieren */
    padding-bottom: var(--space-xl);
    width: 100%;
}

.heroslider__content {
    max-width: 800px;
}

/* ── Titel ── */
.heroslider__title {
   
    line-height: 1.0;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.1em;
}

/* Erste Zeile — weiß */
.heroslider__title-part1, .hero h1, .hero .hero-sub{
    color: var(--color-cream);
    display: block;
}

/* Zweite Zeile — gedämpft (grünlich-weiß) */
.heroslider__title-part2 {
    color: rgb(151 173 155 / 90%);
    display: block;
}

/* ── Untertitel ── */
.heroslider__sub {
    font-size: clamp(1.25rem, 2vw, 1.1rem);
    font-weight: 400;
    color: var(--color-cream);
    line-height: 1.6;
    
    
}

/* ── CTA Button ── */
.heroslider__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 2rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.heroslider__cta:hover {
    background: var(--color-red-hover);
    transform: translateY(-2px);
}

/* ── Scroll-Indikator ── */
.heroslider__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.heroslider__scroll span {
    display: block;
    width: 1.5px;
    height: 48px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.heroslider__scroll span::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    animation: scroll-line 1.8s ease-in-out infinite;
}
.heroslider__video {
    animation: video-slow none; /* kein eigenes keyframe nötig */
    filter: none;

    /* Video verlangsamen über CSS-Transform-Animation */
    transform-origin: center center;
    animation: video-zoom 30s linear infinite alternate;
}

@keyframes video-zoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
}
@keyframes scroll-line {
    0%   { top: -100%; }
    100% { top: 100%; }
}
/* ============================================================
   NEWS LAYOUT — Zweispaltig
   → Ersetzt den bisherigen News-CSS Block in style.css
   ============================================================ */

/* ─────────────────────────────────────────────
   NEWS HERO
───────────────────────────────────────────── */
.news-hero {
    position: relative;
    min-height: 520px;
    background: var(--color-green-dark);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 110px;
}

.news-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 25, 20, 0.80) 0%,
        rgba(15, 25, 20, 0.50) 100%
    );
}

.news-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
    padding-block: 4rem;
}

.news-hero__titel h1 {
    
    text-transform: uppercase;
    color: rgb(255 251 243 / var(--tw-text-opacity));
    line-height: 0.95;
    margin: 0;
}

.news-hero__featured {
    display: flex;
    flex-direction: column;
    gap: 2rem;
	width:500px; padding-left:40px; float:right;
}



.news-hero__card {
    position: relative;
    display: block;          /* ← kein grid mehr */
    text-decoration: none;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16 / 9;   /* ← Bild-Verhältnis */
}

/* Bild füllt die ganze Karte */
.news-hero__card-bild {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.news-hero__card-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-hero__card:hover .news-hero__card-bild img {
    transform: scale(1.04);
}

/* Dunkler Gradient über dem Bild */
.news-hero__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 20, 15, 0.90) 0%,
        rgba(10, 20, 15, 0.30) 60%,
        transparent 100%
    );
    z-index: 1;
}

/* Text über dem Bild unten */
.news-hero__card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 2;
}

.news-hero__card-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
    margin: 0 0 0.3rem;
    text-transform: uppercase;
}

.news-hero__card-meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    max-width: none;
}


/* ─────────────────────────────────────────────
   ZWEISPALTIGES LAYOUT
───────────────────────────────────────────── */
.news-layout {
    display: grid;
    grid-template-columns: 1fr 380px;   /* Links breit, rechts Sidebar */
    gap: 4rem;
    padding-block: 4rem;
    align-items: start;
}

/* ─────────────────────────────────────────────
   SEKTIONS-TITEL (beide Spalten)
───────────────────────────────────────────── */
.news-sektion__titel {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-black);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.news-sektion__titel::after {
    content: '•';
    color: var(--color-red);
    font-size: 1.2rem;
    line-height: 1;
}
/* Kategorie-Archiv — Header immer dunkel */
body.category #masthead .site-header,
body.category #masthead {
    background: var(--color-green-dark) !important;
	width: 100%;
}

/* ─────────────────────────────────────────────
   LINKE SPALTE — News Reihen (Bild + Text)
───────────────────────────────────────────── */
.news-reihe {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
   
}

.news-reihe:last-of-type {
    border-bottom: none;
}

.news-reihe__bild-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    flex-shrink: 0;
    border-radius: 2px;
}

.news-reihe__bild {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-reihe__bild-wrap:hover .news-reihe__bild {
    transform: scale(1.04);
}

.news-reihe__inhalt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}
.news-reihe__inhalt p{ font-size:0.95rem}
.news-reihe__titel {
    
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.news-reihe__titel a {
    
    text-decoration: none;
}

.news-reihe__titel a:hover {
    color: #a1b394;
}

.news-reihe__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
    max-width: none;
}

.news-reihe__meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.news-reihe__auszug {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wp-block-separator {
    border: none;
    border-top: 1px solid #ccc;
	margin-bottom:1rem;
}

/* ─────────────────────────────────────────────
   RECHTE SPALTE — Monthly Recap (kleine Karten)
───────────────────────────────────────────── */
.news-sektion--rechts {
    position: sticky;
    top: 130px;   /* unter dem fixierten Header bleiben */
}

.recap-karte {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-cream-mid);
    align-items: center;
}

.recap-karte:last-of-type {
    border-bottom: none;
}

.recap-karte__bild-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 2px;
    flex-shrink: 0;
}

.recap-karte__bild {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.recap-karte__bild-wrap:hover .recap-karte__bild {
    transform: scale(1.06);
}

.recap-karte__inhalt {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.recap-karte__titel {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.recap-karte__titel a {
    color: var(--color-black);
    text-decoration: none;
}

.recap-karte__titel a:hover {
    color: var(--color-green-dark);
    text-decoration: underline;
}

.recap-karte__datum,
.recap-karte__kategorie {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.recap-karte__datum::before {
    content: '📅';
    font-size: 0.7rem;
}

.recap-karte__kategorie a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.recap-karte__kategorie::before {
    content: '📁';
    font-size: 0.7rem;
}


/* ─────────────────────────────────────────────
   PAGINATION
───────────────────────────────────────────── */
.news-pagination {
    display: flex;
    justify-content: center;    /* ← mittig */
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-green-dark);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-green-dark);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
    background: var(--color-green-dark);
    color: var(--color-white);
}

.news-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    color: var(--color-text-muted);
}


/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .news-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-sektion--rechts {
        position: static;
        border-top: 2px solid var(--color-cream-mid);
        padding-top: 2rem;
    }
}

@media (max-width: 768px) {
    .news-hero {
        min-height: 400px;
        padding-top: 80px;
    }

    .news-hero__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-block: 2rem;
    }

    .news-hero__titel h1 { font-size: 3rem; }

    .news-reihe {
        grid-template-columns: 1fr;
    }

    .news-reihe__bild-wrap {
        aspect-ratio: 16/9;
    }

    .news-hero__featured { display: none; }
}



/* ─────────────────────────────────────────────
   NEWS SINGLE — Einzelbeitrag
───────────────────────────────────────────── */
.news-single__hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: var(--color-green-dark);
    padding-top: 110px;
}

.news-single__hero-bild {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.news-single__hero-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-single__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 30, 20, 0.90) 0%,
        rgba(15, 30, 20, 0.40) 60%,
        rgba(15, 30, 20, 0.20) 100%
    );
    z-index: 1;
}

.news-single__hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
    padding-top: 2rem;
}

.news-single__kategorie {
    margin-bottom: 0.75rem;
}

.news-single__kategorie a {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(255,255,255,0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    text-decoration: none;
}

.news-single__titel {
        
    text-transform: uppercase;
    line-height: 1.0;
    color: rgb(255 251 243 / var(--tw-text-opacity));
    margin-bottom: 0.75rem;
    max-width: 20ch;
}

.news-single__meta {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    max-width: none;
}

/* Inhalt */
.news-single__inhalt {
    padding-block: var(--space-xl);
    max-width: 1200px;
}

.news-single__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.news-single__text p { margin-bottom: 1.5rem; }
.news-single__text h2,
.news-single__text h3 { margin-top: 2rem; margin-bottom: 1rem; }
.news-single__text img { max-width: 100%; height: auto; margin-block: 2rem; border-radius: 4px; }
.news-single__text ul,
.news-single__text ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.news-single__text li { margin-bottom: 0.4rem; }

/* Navigation */
.news-single__nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-cream-mid);
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.news-single__nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-green-dark);
    text-decoration: none;
    max-width: 45%;
    line-height: 1.4;
}

.news-single__nav-link:hover { text-decoration: underline; }
.news-single__nav-link--next { text-align: right; margin-left: auto; }

.news-single__zurueck { margin-top: 1rem; }


/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Hero */
    .news-hero { min-height: 400px; padding-top: 80px; }
    .news-hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-block: 2rem;
    }
    .news-hero__titel h1 { font-size: 3rem; }
    .news-hero__card { grid-template-columns: 120px 1fr; }

    /* Grid */
    .news-grid { grid-template-columns: 1fr; }

    /* Single */
    .news-single__hero { min-height: 320px; padding-top: 80px; }
    .news-single__titel { font-size: 2rem; }
    .news-single__nav { flex-direction: column; }
    .news-single__nav-link--next { text-align: left; margin-left: 0; }
}

@media (max-width: 480px) {
    .news-hero__featured { display: none; }
}
.big-text h3{font-size:3.25rem; text-transform:uppercase;margin-bottom:0}
/* ============================================================
   TAILWIND UTILITY CLASSES
   ============================================================ */

/* --- Layout / Display --- */
.sr-only        { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.visible        { visibility: visible; }
.invisible      { visibility: hidden; }
.fixed          { position: fixed; }
.absolute       { position: absolute; }
.relative       { position: relative; }
.block          { display: block; }
.inline-block   { display: inline-block; }
.inline         { display: inline; }
.flex           { display: flex; }
.inline-flex    { display: inline-flex; }
.grid           { display: grid; }
.hidden         { display: none; }
.inhalt			{padding:16px; display:inline-block}
/* --- Positioning --- */
.-top-\[55px\]  { top: -55px; }
.bottom-1       { bottom: 0.25rem; }
.right-2        { right: 0.5rem; }
.-top-14        { top: -3.5rem; }
.left-4         { left: 1rem; }
.bottom-8       { bottom: 2rem; }
.top-0          { top: 0; }
.left-0         { left: 0; }
.bottom-\[50px\] { bottom: 50px; }
.top-1\/2       { top: 50%; }
.top-\[60\%\]   { top: 60%; }
.bottom-6       { bottom: 1.5rem; }
.-top-32        { top: -8rem; }
.bottom-10      { bottom: 2.5rem; }
.bottom-30      { bottom: 30px; }
.bottom-100      { bottom: 100px; }
.left-1\/2      { left: 50%; }
.bottom-0       { bottom: 0; }
.top-\[56px\]   { top: 56px; }
.left-\[86px\]  { left: 86px; }
.left-\[75px\]  { left: 75px; }
.right-0        { right: 0; }
.top-14         { top: 3.5rem; }

/* --- Z-Index --- */
.z-50  { z-index: 50; }
.z-40  { z-index: 40; }
.z-20  { z-index: 20; }
.z-10  { z-index: 10; }
.z-\[1\] { z-index: 1; }
.-z-10 { z-index: -10; }

/* --- Order / Grid helpers --- */
.order-1         { order: 1; }
.order-2         { order: 2; }
.col-span-12     { grid-column: span 12 / span 12; }
.col-span-6      { grid-column: span 6 / span 6; }
.col-span-3      { grid-column: span 3 / span 3; }
.col-span-2      { grid-column: span 2 / span 2; }
.col-span-1      { grid-column: span 1 / span 1; }
.col-start-1     { grid-column-start: 1; }
.row-start-1     { grid-row-start: 1; }
.row-start-2     { grid-row-start: 2; }
.row-start-3     { grid-row-start: 3; }
.row-start-4     { grid-row-start: 4; }
.row-start-5     { grid-row-start: 5; }
.row-start-6     { grid-row-start: 6; }
.row-start-7     { grid-row-start: 7; }

/* --- Margin --- */
.mx-auto         { margin-left: auto; margin-right: auto; }
.my-0            { margin-top: 0; margin-bottom: 0; }
.my-\[10px\]     { margin-top: 10px; margin-bottom: 10px; }
.my-8            { margin-top: 2rem; margin-bottom: 2rem; }
.my-10           { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.mx-10           { margin-left: 2.5rem; margin-right: 2.5rem; }
.mx-4            { margin-left: 1rem; margin-right: 1rem; }
.mb-2            { margin-bottom: 0.5rem; }
.mb-4            { margin-bottom: 1rem; }
.mb-5            { margin-bottom: 1.25rem; }
.mb-6            { margin-bottom: 1.5rem; }
.mb-8            { margin-bottom: 2rem; }
.mb-9            { margin-bottom: 2.25rem; }
.mb-10           { margin-bottom: 2.5rem; }
.mb-12           { margin-bottom: 3rem; }
.mb-16           { margin-bottom: 4rem; }
.mb-20           { margin-bottom: 5rem; }
.mb-0            { margin-bottom: 0; }
.-mb-5           { margin-bottom: -1.25rem; }
.mb-\[0\.6rem\]  { margin-bottom: 0.6rem; }
.mb-\[40px\]     { margin-bottom: 40px; }
.mb-\[100px\]    { margin-bottom: 100px; }
.mt-2            { margin-top: 0.5rem; }
.mt-4            { margin-top: 1rem; }
.mt-5            { margin-top: 1.25rem; }
.mt-6            { margin-top: 1.5rem; }
.mt-10           { margin-top: 2.5rem; }
.mt-12           { margin-top: 3rem; }
.mt-14           { margin-top: 3.5rem; }
.mt-20           { margin-top: 5rem; }
.mt-auto         { margin-top: auto; }
.-mt-14          { margin-top: -3.5rem; }
.-mt-\[5px\]     { margin-top: -5px; }
.mt-\[2px\]      { margin-top: 2px; }
.mt-\[6px\]      { margin-top: 6px; }
.mt-\[40px\]     { margin-top: 40px; }
.ml-3            { margin-left: 0.75rem; }
.ml-4            { margin-left: 1rem; }
.ml-6            { margin-left: 2rem; }
.mt-12           { margin-left: 3rem; }
.ml-\[9px\]      { margin-left: 9px; }
.mr-2            { margin-right: 0.5rem; }
.mr-4            { margin-right: 1rem; }
.mr-10           { margin-right: 2.5rem; }
.mr-20           { margin-right: 5rem; }
.mr-\[10px\]     { margin-right: 10px; }

/* --- Sizing --- */
.h-screen        { height: 100vh; }
.h-full          { height: 100%; }
.h-auto          { height: auto; }
.h-0             { height: 0; }
.h-0\.5          { height: 0.125rem; }
.h-12            { height: 3rem; }
.h-14            { height: 3.5rem; }
.h-64            { height: 16rem; }
.h-\[20px\]      { height: 20px; }
.h-\[40px\]      { height: 40px; }
.h-\[40\%\]      { height: 40%; }
.h-\[65px\]      { height: 65px; }
.h-\[100vh\]      { height: 100vh; }
.h-\[350px\]     { height: 350px; }
.max-h-full      { max-height: 100%; }
.max-h-0         { max-height: 0; }
.min-h-\[6rem\]  { min-height: 6rem; }
.min-h-\[400px\] { min-height: 400px; }

.w-screen        { width: 100vw; }
.w-auto          { width: auto; }
.w-full          { width: 100%; }
.w-5             { width: 1.25rem; }
.w-6             { width: 1.5rem; }
.w-12            { width: 3rem; }
.w-14            { width: 3.5rem; }
.w-20            { width: 5rem; }
.w-\[2px\]       { width: 2px; }
.w-\[15px\]      { width: 15px; }
.w-\[20px\]      { width: 20px; }
.w-\[25px\]      { width: 25px; }
.w-\[40px\]      { width: 40px; }
.w-\[50px\]      { width: 50px; }
.w-\[90px\]      { width: 90px; }
.w-\[70px\]      { width: 70px; }
.w-\[150px\]     { width: 150px; }
.w-\[172px\]     { width: 172px; }
.max-w-xs        { max-width: 20rem; }
.max-w-sm        { max-width: 24rem; }
.max-w-lg        { max-width: 32rem; }
.max-w-3xl       { max-width: 48rem; }
.max-w-prose     { max-width: 65ch; }
.max-w-large	 { max-width: 75%; }
.max-w-full      { max-width: 100%; }
.max-w-\[30px\]  { max-width: 30px; }
.max-w-\[100px\] { max-width: 100px; }
.max-w-\[200px\] { max-width: 200px; }
.max-w-\[14ch\]  { max-width: 14ch; }
.max-w-\[30ch\]  { max-width: 30ch; }
.max-w-\[34ch\]  { max-width: 34ch; }
.max-w-\[35ch\]  { max-width: 35ch; }
.max-w-\[47ch\]  { max-width: 47ch; }
.max-w-\[50ch\]  { max-width: 50ch; }
.max-w-\[55ch\]  { max-width: 55ch; }
.max-w-\[94ch\]  { max-width: 94ch; }
.max-w-\[100ch\] { max-width: 100ch; }
.max-w-\[600px\] { max-width: 600px; }
.max-w-\[768px\] { max-width: 768px; }
.max-w-\[90\%\]  { max-width: 90%; }
.max-w-\[15rem\] { max-width: 15rem; }
.max-w-\[30rem\] { max-width: 30rem; }
.max-w-\[38rem\] { max-width: 38rem; }

/* --- Transform --- */
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
             rotate(var(--tw-rotate))
             skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
             scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
             rotate(var(--tw-rotate))
             skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
             scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-125 {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
             rotate(var(--tw-rotate))
             skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
             scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* --- Cursor --- */
.cursor-pointer { cursor: pointer; }
.resize         { resize: both; }

/* --- Grid Templates --- */
.grid-cols-1  { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-6  { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.grid-cols-\[1\.5fr_1fr_15px\] { grid-template-columns: 1.5fr 1fr 15px; }

/* --- Flexbox --- */
.flex-row         { flex-direction: row; }
.flex-col         { flex-direction: column; }
.place-content-center { place-content: center; }
.place-content-end    { place-content: end; }
.content-center   { align-content: center; }
.items-start      { align-items: flex-start; }
.items-end        { align-items: flex-end; }
.items-center     { align-items: center; }
.justify-end      { justify-content: flex-end; }
.justify-center   { justify-content: center; }
.justify-between  { justify-content: space-between; }
.self-start       { align-self: flex-start; }
.self-center      { align-self: center; }

/* --- Gap --- */
.gap-1       { gap: 0.25rem; }
.gap-2       { gap: 0.5rem; }
.gap-4       { gap: 1rem; }
.gap-6       { gap: 1.5rem; }
.gap-10      { gap: 2.5rem; }
.gap-\[0\]   { gap: 0; }
.gap-\[2px\] { gap: 2px; }
.gap-\[20px\]{ gap: 20px; }
.gap-x-4     { column-gap: 1rem; }
.gap-x-5     { column-gap: 1.25rem; }
.gap-x-10    { column-gap: 2.5rem; }
.gap-y-2     { row-gap: 0.5rem; }
.gap-y-3     { row-gap: 0.75rem; }
.gap-y-4     { row-gap: 1rem; }
.gap-y-8     { row-gap: 2rem; }

/* Space helpers */
.space-y-1 > :not([hidden]) ~ :not([hidden])   { margin-top: 0.25rem; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem; }

/* --- Overflow --- */
.overflow-hidden   { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }
.overflow-x-scroll { overflow-x: scroll; }
.scroll-smooth     { scroll-behavior: smooth; }

/* --- Text utilities --- */
.whitespace-nowrap { white-space: nowrap; }
.break-words       { overflow-wrap: break-word; }
.hyphens-auto      { -webkit-hyphens: auto; hyphens: auto; }

/* --- Border --- */
.rounded-full { border-radius: 9999px; }
.rounded-md   { border-radius: 0.375rem; }
.border       { border-width: 1px; }
.border-2     { border-width: 2px; }
.border-b     { border-bottom-width: 1px; }
.border-b-2   { border-bottom-width: 2px; }
.border-t     { border-top-width: 1px; }
.border-t-2   { border-top-width: 2px; }
.border-l     { border-left-width: 1px; }
.border-l-2   { border-left-width: 2px; }
.border-r     { border-right-width: 1px; }
.border-r-2   { border-right-width: 2px; }

.border-beige     { --tw-border-opacity: 1; border-color: rgb(255 251 243 / var(--tw-border-opacity)); }
.border-darkGreen { --tw-border-opacity: 1; border-color: rgb(44 57 44 / var(--tw-border-opacity)); }
.border-darkGrey  { --tw-border-opacity: 1; border-color: rgb(142 142 142 / var(--tw-border-opacity)); }

/* --- Background --- */
.bg-transparent   { background-color: initial; }
.bg-darkGreen     { --tw-bg-opacity: 1; background-color: rgb(44 57 44 / var(--tw-bg-opacity)); }
.bg-lightGreen    { --tw-bg-opacity: 1; background-color: rgb(151 173 152 / var(--tw-bg-opacity)); }
.bg-brightGreen   { --tw-bg-opacity: 1; background-color: rgb(214 234 220 / var(--tw-bg-opacity)); }
.bg-background    { --tw-bg-opacity: 1; background-color: rgb(255 255 255 / var(--tw-bg-opacity)); }
.bg-beige         { --tw-bg-opacity: 1; background-color: rgb(255 251 243 / var(--tw-bg-opacity)); }
.bg-ctaColor      { --tw-bg-opacity: 1; background-color: rgb(230 39 55 / var(--tw-bg-opacity)); }
.bg-darkBeige     { --tw-bg-opacity: 1; background-color: rgb(234 222 198 / var(--tw-bg-opacity)); }
.bg-lightBeige    { --tw-bg-opacity: 1; background-color: rgb(240 229 206 / var(--tw-bg-opacity)); }
.bg-superBrightGreen { background-color: #eaece1; }
.bg-color-beige      { background-color: #fffaf3; }
.bg-color-darkbeige  { background-color: #eadec6; }
.bg-color-darkBeige  { --tw-bg-opacity: 1; background-color: rgb(234 222 198 / var(--tw-bg-opacity)); }
.bg-grey             { background-color: #a7a7a7; }
.bg-darkGrey         { background-color: #8e8e8e; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-\[\#000000\] { --tw-gradient-from: #000; --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-beige        { --tw-gradient-from: #fffbf3; --tw-gradient-to: rgba(255,251,243,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-transparent    { --tw-gradient-to: transparent; }

/* --- Object fit --- */
.object-cover  { object-fit: cover; }
.object-center { object-position: center; }

/* --- Padding --- */
.p-2    { padding: 0.5rem; }
.p-4    { padding: 1rem; }
.p-10   { padding: 2.5rem; }
.px-0   { padding-left: 0; padding-right: 0; }
.px-2   { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4   { padding-left: 1rem; padding-right: 1rem; }
.px-6   { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10  { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-\[30px\]   { padding-left: 30px; padding-right: 30px; }
.px-\[100vw\]  { padding-left: 100vw; padding-right: 100vw; }
.py-0   { padding-top: 0; padding-bottom: 0; }
.py-1   { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2   { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4   { padding-top: 1rem; padding-bottom: 1rem; }
.py-10  { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-14  { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16  { padding-top: 4rem; padding-bottom: 4rem; }
.py-20  { padding-top: 5rem; padding-bottom: 5rem; }
.py-40  { padding-top: 10rem; padding-bottom: 10rem; }
.py-\[2px\]  { padding-top: 2px; padding-bottom: 2px; }
.pb-0   { padding-bottom: 0; }
.pb-1   { padding-bottom: 0.25rem; }
.pb-2   { padding-bottom: 0.5rem; }
.pb-4   { padding-bottom: 1rem; }
.pb-5   { padding-bottom: 1.25rem; }
.pb-6   { padding-bottom: 1.5rem; }
.pb-10  { padding-bottom: 2.5rem; }
.pb-12  { padding-bottom: 3rem; }
.pb-14  { padding-bottom: 3.5rem; }
.pb-16  { padding-bottom: 4rem; }
.pb-20  { padding-bottom: 5rem; }
.pb-24  { padding-bottom: 6rem; }
.pb-\[11px\]  { padding-bottom: 11px; }
.pb-\[50px\]  { padding-bottom: 50px; }
.pt-0   { padding-top: 0; }
.pt-3   { padding-top: 0.75rem; }
.pt-4   { padding-top: 1rem; }
.pt-5   { padding-top: 1.25rem; }
.pt-6   { padding-top: 1.5rem; }
.pt-10  { padding-top: 2.5rem; }
.pt-12  { padding-top: 3rem; }
.pt-14  { padding-top: 3.5rem; }
.pt-20  { padding-top: 5rem; }
.pt-24  { padding-top: 6rem; }
.pt-\[7px\]  { padding-top: 7px; }
.pt-\[10px\] { padding-top: 10px; }
.pl-2   { padding-left: 0.5rem; }
.pl-4   { padding-left: 1rem; }
.pr-2   { padding-right: 0.5rem; }

/* --- Typography --- */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.font-sans    { font-family: RM Neue, sans-serif; }
.font-normal  { font-weight: 400; }
.font-bold    { font-weight: 700; }
.uppercase    { text-transform: uppercase; }
.normal-case  { text-transform: none; }
.tabular-nums { --tw-numeric-spacing: tabular-nums; font-variant-numeric: tabular-nums; }
.underline    { text-decoration-line: underline; }
.underline-offset-4 { text-underline-offset: 4px; }

.text-xs   { font-size: 0.75rem; line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-base label{font-size: 14px;line-height: 1.2;}
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem; line-height: 2rem; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl  { font-size: 3.75rem; line-height: 1; }
.text-\[0\.8em\] { font-size: 0.8em; }

.leading-\[1\.3em\] { line-height: 1.3em; }
.tracking-wide      { letter-spacing: 0.025em; }
.tracking-wider     { letter-spacing: 0.05em; }

/* Text colors */
.text-beige      { --tw-text-opacity: 1; color: rgb(255 251 243 / var(--tw-text-opacity)); }
.text-darkGreen  { --tw-text-opacity: 1; color: rgb(44 57 44 / var(--tw-text-opacity)); }
.text-foreground { --tw-text-opacity: 1; color: rgb(64 64 64 / var(--tw-text-opacity)); }
.text-darkGrey   { --tw-text-opacity: 1; color: rgb(142 142 142 / var(--tw-text-opacity)); }
.text-brightGreen{ --tw-text-opacity: 1; color: rgb(214 234 220 / var(--tw-text-opacity)); }
.text-white      { --tw-text-opacity: 1; color: rgb(255 255 255 / var(--tw-text-opacity)); }
.text-ctaColor   { --tw-text-opacity: 1; color: rgb(230 39 55 / var(--tw-text-opacity)); }

/* --- Opacity --- */
.opacity-0  { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

/* --- Filter --- */
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
          var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert)
          var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

/* --- Transitions --- */
.transition-all    { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 0.15s; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 0.15s; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 0.15s; }
.duration-300  { transition-duration: 0.3s; }
.duration-500  { transition-duration: 0.5s; }
.duration-1000 { transition-duration: 1s; }
.ease-in-out   { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Fade transition */
.fade-content.fade-transition {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}


/* ============================================================
   GLOBAL ELEMENT STYLES
   ============================================================ */

h1, h2, h3, h4, h5, h6 { font-weight: 700; }

h1, h2 {
  margin-bottom: 1.25rem;
  font-size: 1.875rem;
  line-height: 1.25;
  text-transform: uppercase;
}
h4{font-size:1.75rem}

@media (min-width: 768px) {
  h1, h2 { margin-bottom: 3rem; font-size: 3rem; line-height: 1; }
}
@media (min-width: 1024px) {
  h1, h2 { font-size: 3.75rem; }
}
@media (min-width: 1280px) {
  h1, h2 { font-size: 4.5rem; }
}
@media (min-width: 1536px) {
  h1, h2 { font-size: 5rem; }
  .bottom-150 {bottom: 20px;}
  .inhalt-breit {width: 80%;}
  .hero-sub {
    width: 60%;
    
}
}

h3 {
  margin-bottom: 1.25rem;
  font-size: 1.875rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  h3 { font-size: 2.25rem; }
}

p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (min-width: 768px) {
  p { font-size: 1.25rem; line-height: 1.75rem; }
}

section {
  display: block;
  scroll-margin-top: 3.5rem;
  padding: 0;
}

@media (min-width: 768px) {
  section { scroll-margin-top: 5rem; }
}

hr {
  --tw-text-opacity: 1;
  color: rgb(44 57 44 / var(--tw-text-opacity));
}

ul { list-style-type: none; }


/* ============================================================
   LISTS: building & process sections
   ============================================================ */

.building ul li,
.process ul li {
  margin-left: 1.3em;
}

.building ul li::before,
.process ul li::before {
  position: absolute;
  margin-left: -1.2em;
  content: "—";
}

footer ul li,
nav ul li {
  margin-left: 0;
}

footer ul li::before,
nav ul li::before {
  display: none;
}


/* ============================================================
   LINKS & FOCUS STATES
   ============================================================ */

a:focus-visible {
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(230 39 55 / var(--tw-border-opacity));
}

a:focus { outline: none; }

.calltoaction:focus-visible,
a.calltoaction:focus-visible {
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(44 57 44 / var(--tw-border-opacity));
}


/* ============================================================
   BUTTONS
   ============================================================ */

button { font-weight: 700; }

/* Dark button */
.button--dark,
a.button--dark {
  display: inline-block;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(44 57 44 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(44 57 44 / var(--tw-bg-opacity));
  padding: 8px 22px 9px;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 251 243 / var(--tw-text-opacity));
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.button--dark:hover,
a.button--dark:hover {
  
 
  background-color: rgb(255 251 243);
  color: rgb(44 57 44);
}

@media (min-width: 1024px) {
  .button--dark, a.button--dark { padding: 10px 30px 11px; font-size: 1.25rem; }
}

/* Bright button */
.button--bright,
a.button--bright {
  display: inline-block;
  border-radius: 9999px;
  border-width: 2px;
  border-color: rgb(255 251 243);
  background-color: rgb(255 251 243);
  padding: 8px 22px 9px;
  font-size: 1rem;
  color: rgb(44 57 44);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.button--bright:hover,
a.button--bright:hover {
  transform: scale(1.1);
  background-color: transparent;
  color: rgb(255 251 243);
}

@media (min-width: 1024px) {
  .button--bright, a.button--bright { padding: 10px 30px 11px; font-size: 1.25rem; }
}

/* Outline bright */
a.button--outline-bright {
  display: inline-block;
  border-radius: 9999px;
  border-width: 2px;
  border-color: rgb(255 251 243);
  background-color: transparent;
  padding: 8px 22px 9px;
  font-size: 1rem;
  color: rgb(255 251 243);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

a.button--outline-bright:hover {
  transform: scale(1.1);
  background-color: rgb(255 251 243);
  color: rgb(44 57 44);
}

@media (min-width: 1024px) {
  a.button--outline-bright { padding: 10px 30px 11px; font-size: 1.25rem; }
}

/* Outline dark */
.button--outline-dark,
a.button--outline-dark {
  display: inline-block;
  align-items: center;  
  border-radius: 9999px;
  border-width: 2px;
  border-color: rgb(44 57 44);
  background-color: transparent;
  padding: 8px 22px 9px;
  font-size: 1rem;
  color: rgb(44 57 44);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.button--outline-dark:hover,
a.button--outline-dark:hover {
  
  background-color: rgb(44 57 44);
  color: rgb(255 251 243);
  transform: translateX(-50%) scale(1.1);
  transform-origin: center center;
}

@media (min-width: 1024px) {
  a.button--outline-dark { padding: 10px 30px 11px; font-size: 1.25rem; }
}

/* Highlight (red) button */
.button--highlight,
a.button--highlight {
  display: inline-block;
  border-radius: 9999px;
  border-width: 2px;
  border-color: rgb(230 39 55);
  background-color: rgb(230 39 55);
  padding: 8px 22px 9px;
  font-size: 1rem;
  color: rgb(255 251 243);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.button--highlight:hover,
a.button--highlight:hover {
  transform: scale(1.1);
  background-color: rgb(255 251 243);
  color: rgb(230 39 55);
}

@media (min-width: 1024px) {
  .button--highlight, a.button--highlight { padding: 10px 30px 11px; font-size: 1.25rem; }
}

/* Highlight dark hover variant */
.button--highlight--darkhover,
a.button--highlight--darkhover {
  display: inline-block;
  border-radius: 9999px;
  border-width: 2px;
  border-color: rgb(230 39 55);
  background-color: rgb(230 39 55);
  padding: 8px 22px 9px;
  font-size: 1rem;
  color: rgb(255 251 243);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.button--highlight--darkhover:hover,
a.button--highlight--darkhover:hover {
  transform: scale(1.1);
  border-color: rgb(44 57 44);
  background-color: rgb(44 57 44);
  color: rgb(255 251 243);
}

@media (min-width: 1024px) {
  .button--highlight--darkhover, a.button--highlight--darkhover { padding: 10px 30px 11px; font-size: 1.25rem; }
}


/* ============================================================
   NAVIGATION
   ============================================================ */

nav li, nav ul {
  position: relative;
  list-style-type: none;
}

.sub-menu {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgb(44 57 44);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .sub-menu {
    position: absolute;
    z-index: -10;
    --tw-translate-y: -135px;
    transform: translateY(-135px);
    padding-bottom: 1rem;
    padding-top: 0.5rem;
  }
}
.single-linkedin__inner {
    display: flex;
    flex-direction: row;      /* ← nebeneinander */
    align-items: center;
    justify-content: center;  /* ← alles mittig */
    gap: 1rem;
    padding: 1rem 0 2rem;
}

.single-linkedin__text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
    max-width: 30ch;
}
/* Mobile nav (hidden until open) */
nav#site-navigation {
  --tw-translate-y: -100vh;
  transform: translateY(-100vh);
  background-color: rgb(255 251 243);
}

@media (min-width: 1024px) {
  nav#site-navigation { transform: translateY(0); }
}

nav#site-navigation.navinview { transform: translateY(0); }

/* Dark beige page variant */
#page.bg-darkBeige nav#site-navigation,
#page.bg-darkBeige nav#site-navigation::after,
#page.bg-darkBeige nav#site-navigation::before {
  background-color: #eadec6;
}

/* Sub-menu reveal on hover */
@media (min-width: 1024px) {
  #masthead div:hover #site-navigation::before,
  #masthead div:hover .sub-menu {
    transform: translateY(0);
  }
}

.sub-menu li:hover { color: rgb(142 142 142); }

@media (min-width: 1024px) {
  .sub-menu li { padding-top: 2px; padding-bottom: 2px; }
}

/* Secondary menu */
#secondary-menu {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}

#secondary-menu li            { flex-basis: 100%; }
@media (min-width: 1024px) {
  #secondary-menu li          { flex-basis: auto; }
}
#secondary-menu li:nth-last-child(-n+2) { flex-basis: fit-content; }
#secondary-menu li:last-child           { margin-left: 10px; }
@media (min-width: 1024px) {
  #secondary-menu li:last-child         { margin-left: 0; }
}

/* Current menu items */
.current-menu-item,
.current-menu-parent { color: #a7a7a7; }


/* ============================================================
   BURGER MENU BUTTON
   ============================================================ */

#burger-button {
  position: absolute;
  width: 28px;
  height: 24px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#burger-button span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #393937;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#burger-button span:first-child      { top: 4px; }
#burger-button span:nth-child(2),
#burger-button span:nth-child(3)     { top: 12px; }
#burger-button span:nth-child(4)     { top: 20px; }

/* Open state */
#burger-button.open span:first-child { top: 8px; width: 0; left: 50%; }
#burger-button.open span:nth-child(2){ transform: rotate(45deg); }
#burger-button.open span:nth-child(3){ transform: rotate(-45deg); }
#burger-button.open span:nth-child(4){ top: 8px; width: 0; left: 50%; }


/* ============================================================
   SCROLLBAR HIDE (for overflow-x-scroll containers)
   ============================================================ */

.overflow-x-scroll::-webkit-scrollbar { display: none; }
.overflow-x-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


/* ============================================================
   EMBED CONTAINER (full-page iframe/video)
   ============================================================ */

.embed-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: calc(100vh - 112px);
}

.embed-container embed,
.embed-container iframe,
.embed-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 112px);
}


/* ============================================================
   HERO ANIMATIONS
   ============================================================ */

/* Content slide-in */
.hero-animated-content {
  animation: containerReveal 3s forwards;
  transform: translateX(-150%);
}

@keyframes containerReveal {
  50%  { transform: translateX(-150%); }
  65%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}

/* Image scale */
.hero-animated-image img {
  animation: imageReveal 3s forwards;
  transform: scaleX(1);
}

@keyframes imageReveal {
  50%  { transform: scaleX(1); }
  100% { transform: scale3d(1.05, 1.05, 1.05); }
}

/* Overlay slide */
.hero-animated-overlay {
  animation: imgOverlayReveal 3s forwards;
  transform: translateX(-100vw);
}

@keyframes imgOverlayReveal {
  55%  { transform: translateX(-100vw); }
  70%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}

/* Hero slider fade */
@keyframes heroFadeInOut {
  0%   { opacity: 1; }
  50%  { opacity: 1; }
  55%  { opacity: 0; }
  97%  { opacity: 0; }
  100% { opacity: 1; }
}

.heroslider img,
.heroslider p {
  animation: heroFadeInOut 6s ease-in-out infinite;
}

.heroslider img:first-of-type,
.heroslider p:first-of-type     { animation-delay: 3s; }

.heroslider img:nth-of-type(2),
.heroslider p:nth-of-type(2)    { animation-delay: 0s; }


/* ============================================================
   PROCESS LINE & UNDERLINE ANIMATIONS
   ============================================================ */

.process-line--animated {
  animation: increase 4s forwards;
}

@keyframes increase {
  to { height: 100%; }
}

.underline--animated {
  animation: decreasewidth 1s forwards;
}

@keyframes decreasewidth {
  to { width: 0; }
}


/* ============================================================
   FORMS
   ============================================================ */

form {
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgb(255 251 243);
}

@media (min-width: 768px) {
  form { font-size: 1.25rem; line-height: 1.75rem; }
}

form a { border-bottom: 1px solid; }
form a:focus { border-bottom: 1px solid #e62737; }

input, select, textarea {
  width: 100%;
  background-color: rgb(255 251 243);
  padding: 0.4em 0.4em 0.5em;
  color: rgb(44 57 44);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 2px rgb(44 57 44);
}

input[type=checkbox] { width: auto; }
textarea { height: 9rem; }

/* Form layout helpers */
.form-concern, .form-moveindate,
.wpcf7-form label { margin-bottom: 1.25rem; display: block; }

.wpcf7 .wpcf7-list-item { margin: 0; }

.form-moveindate { display: flex; gap: 1rem; }
.form-quarter, .form-year { display: inline-block; width: 50%; }

.form-concern .your-concern       { display: block; }
.wpcf7-list-item                  { margin: 0 1em 0.5em 0; }
.form-concern .your-concern .wpcf7-list-item label { display: inline; }

.mandatory-legend   { margin-top: 1rem; }
.your-privacy-check { margin-bottom: 1rem; }
.your-privacy-check label        { margin-bottom: 0; display: flex; }
.your-privacy-check input[type=checkbox] { margin-top: 0.5rem; margin-right: 0.5rem; }
.your-privacy-check .wpcf7-list-item { margin-bottom: 0; }

/* Checkbox styling */
input[type=checkbox] {
  margin: 0;
  height: 30px;
  width: 30px;
  flex: none;
  transform: translateY(6px);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgb(255 255 255);
}

input[type=checkbox]:checked::before {
  position: absolute;
  top: 0.2em;
  left: 7px;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  content: "✓";
}

.pum-content input[type=checkbox]:checked::before { top: 0.2em; left: 5px; }
footer input[type=checkbox]:checked::before       { top: 0.27em; }

.wpcf7-list-item label   { display: flex; flex-direction: row; }
.wpcf7-list-item-label   { padding-left: 15px; padding-top: 3px; }

/* Submit button */
input[type=submit] {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  display: block;
  width: auto;
  border-radius: 9999px;
  border-width: 2px;
  border-color: rgb(255 251 243);
  background-color: rgb(255 251 243);
  padding: 10px 30px 11px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: rgb(44 57 44);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

input[type=submit]:hover {
  transform: scale(1.1);
  cursor: pointer;
  background-color: transparent;
  color: rgb(255 251 243);
}

/* Spinner & validation */
.wpcf7-spinner    { margin-left: auto; margin-right: auto; margin-top: 0.5rem; display: block; }
.wpcf7-not-valid  { border-color: rgb(230 39 55); }
.wpcf7-not-valid-tip { color: rgb(230 39 55); }
.wpcf7 form .wpcf7-response-output { margin-top: 0.5rem; }

.wpcf7-response-output.wpcf7-mail-sent-ok,
.wpcf7-response-output.wpcf7-validation-errors {
  border-color: rgb(230 39 55);
  color: rgb(230 39 55);
}

/* Footer form overrides */
footer input[type=submit] { margin: 0 0 1.75rem; }
@media (min-width: 1024px) { footer input[type=submit] { margin-bottom: 0; } }
footer .wpcf7-response-output { display: none; }
footer span.wpcf7-not-valid-tip { font-size: 1rem; line-height: 1rem; }
footer .wpcf7-spinner  { margin: 10px 0 0; }


/* ============================================================
   POPUP (Popup Maker)
   ============================================================ */

.pum-overlay.pum-active,
.pum-overlay.pum-active .popmake.active { display: block !important; }

.pum-theme-2700.pum-theme-hybrick-popup .pum-container {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  padding: 30px 15px 10px;
}

@media (min-width: 1024px) {
  .pum-theme-2700.pum-theme-hybrick-popup .pum-container { padding: 50px 40px 30px; }
}

@media (min-width: 1280px) {
  .pum-theme-2700.pum-theme-hybrick-popup .pum-container.pum-responsive.pum-responsive-medium {
    margin-left: -35%;
    width: 70%;
    max-width: 1100px;
  }
}

@media (min-width: 1536px) {
  .pum-theme-2700.pum-theme-hybrick-popup .pum-container.pum-responsive.pum-responsive-medium {
    margin-left: -30%;
    width: 60%;
  }
}

.pum form { color: rgb(44 57 44); }
.pum form input {
  border-width: 2px;
  border-style: solid;
  border-color: rgb(44 57 44);
  background-color: transparent;
}

.pum-theme-2700.pum-theme-hybrick-popup #popmake-2695 .pum-content.popmake-content,
.pum-theme-2700.pum-theme-hybrick-popup #popmake-2695.pum-container form {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.pum-theme-2700 button.pum-close.popmake-close {
  background-image: url(assets/svgs/icon-close.svg);
  background-repeat: no-repeat;
  margin: 5px;
  height: 20px;
  width: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .pum-theme-2700 button.pum-close.popmake-close { margin: 15px; }
}

.pum-theme-2700.pum-theme-hybrick-popup .pum-container .pum-title,
.nl-popup-l-content_headline {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .pum-theme-2700.pum-theme-hybrick-popup .pum-container .pum-title,
  .nl-popup-l-content_headline { font-size: 3rem; }
}

.pum-theme-2700.pum-theme-hybrick-popup input[type=submit] {
  margin-top: 0;
  background-color: rgb(44 57 44);
  color: rgb(255 251 243);
}

.pum-theme-2700.pum-theme-hybrick-popup input[type=submit]:hover {
  background-color: rgb(255 251 243);
  color: rgb(44 57 44);
}

.pum-theme-2700 span.wpcf7-not-valid-tip { font-size: 1rem; line-height: 1rem; }
.pum-theme-2700 .wpcf7-response-output   { display: none; }
.pum-theme-2700 .wpcf7-spinner           { margin: 10px auto 0; display: block; }


/* ============================================================
   NEWSLETTER POPUP LAYOUT
   ============================================================ */

.nl-popup-l-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1280px) {
  .nl-popup-l-content { flex-direction: row; }
}

.nl-popup-l-content p { font-size: 1rem; line-height: 1.5rem; }

.nl-popup-l-content p.nl-popup-l-content_headline {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .nl-popup-l-content p.nl-popup-l-content_headline { font-size: 1.875rem; }
}

.nl-popup-l-content img,
.pum-container.pum-responsive img.nl-popup-l-content_image {
  margin-left: auto;
  margin-right: auto;
  width: 200px;
}

@media (min-width: 1280px) {
  .nl-popup-l-content img,
  .pum-container.pum-responsive img.nl-popup-l-content_image {
    height: auto;
    width: 100%;
  }
  .nl-popup-l_container-first  { width: 48%; }
  .nl-popup-l_container-second { width: 52%; }
}

.nl-popup-l_list { margin-bottom: 2.5rem; }
.nl-popup-l_list li { margin-bottom: 0.25rem; font-size: 1rem; }
.nl-popup-l_list li img { margin-bottom: 4px; margin-right: 10px; display: inline-block; width: 16px; }
.nl-popup-l-content_text-bold { margin-bottom: 4px; font-weight: 700; }
.nl-popup-l-content form label { font-size: 1rem; }
.nl-popup-l-content form .wpcf7-acceptance .wpcf7-list-item-label { font-size: 12px; line-height: 1.3em; }


/* ============================================================
   THANK YOU / NEWSLETTER LANDING
   ============================================================ */

.thankyou-nl-container  { padding-top: 40px; padding-bottom: 40px; }

.thankyou-nl-headline {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 768px) { .thankyou-nl-headline { font-size: 3rem; } }

.thankyou-nl-text { text-align: center; }

.thankyou-nl-l-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 1280px) { .thankyou-nl-l-container { flex-direction: row; } }

.thankyou-nl-l-headline {
  margin-bottom: 40px;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 768px) { .thankyou-nl-l-headline { font-size: 3rem; } }

@media (min-width: 1280px) {
  .thankyou-nl-l_container-first  { width: 48%; }
  .thankyou-nl-l_container-second { width: 52%; }
}

.thankyou-nl-l_button { margin-top: 25px; }


/* ============================================================
   WPML LANGUAGE SWITCHER
   ============================================================ */

.wpml-ls ul { display: flex; gap: 0.5rem; }

.wpml-ls a {
  font-weight: 700;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.wpml-ls a:hover          { color: rgb(142 142 142); }
.wpml-ls a.wpml-ls-link   { padding: 0; }
.wpml-ls-current-language a { color: rgb(142 142 142); }

@media (min-width: 1024px) { .wpml-ls-item { margin-right: -10px; } }

ul .wpml-ls-item a { display: inline-block; text-align: right; }

.wpml-ls-item:nth-last-of-type(2)::after {
  content: "|";
  display: block;
  position: absolute;
  right: -8px;
  top: -0.9px;
}
/* ─────────────────────────────────────────────
   PROJEKTE-MOSAIK 
   
───────────────────────────────────────────── */

.projekte-mosaik {
    
    overflow: hidden;
}

/* ── Ein Grid für alles ── */
.projekte-mosaik__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* 4 gleiche Spalten */
    grid-template-rows: auto auto;         /* 2 Zeilen */
    gap: 0;
}

/* ── Intro — oben links, nimmt 2 Spalten ── */
.projekte-mosaik__intro {
    grid-column: span 2;   /* ← 2 Spalten breit */
    grid-row: span 1;      /* ← nur 1 Zeile hoch */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    
}

.projekte-mosaik__titel {
    font-size: clamp(2.8rem, 4vw, 5rem);
    text-transform: uppercase;
    line-height: 0.92;
    color: var(--color-black);
    margin-bottom: 1.25rem;
}

.projekte-mosaik__text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.5;
	font-weight:700;
    margin-bottom: 1.25rem;
    max-width: none;
	width:70%;
}

.projekte-mosaik__btn {
    align-self: flex-start;
    font-size: 0.85rem;
    padding: 0.6rem 1.4rem;
}

/* ── Alle Kacheln — je 1 Spalte ── */
.projekte-kachel {
    position: relative;
    overflow: hidden;
    grid-column: span 1;
	aspect-ratio: 1; 
}

/* ── Bild ── */
.projekte-kachel__bild {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.projekte-kachel__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.projekte-kachel:hover .projekte-kachel__bild {
    transform: scale(1.05);
}

/* ── Text Overlay ── */
.projekte-kachel__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(
        to top,
        rgba(10, 25, 15, 0.88) 0%,
        rgba(10, 25, 15, 0.3) 55%,
        transparent 100%
    );
}

.projekte-kachel__kachel-titel {
    
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.projekte-kachel__kachel-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
    margin: 0;
}

/* ── CTA-Kachel (dunkelgrün, 1 Spalte) ── */
.projekte-kachel--cta {
    grid-column: span 1;
    background: var(--color-green-light);
    display: flex;
    align-items: flex-end;
}

.projekte-kachel__cta-inner {
    padding: 2rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.projekte-kachel__cta-titel {
    
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.0;
    margin: 0;
}

.projekte-kachel__cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    max-width: 18ch;
}

.projekte-kachel__cta-btn {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    padding: 0.5rem 1.2rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .projekte-mosaik__grid {
        grid-template-rows: auto auto;
    }
    .projekte-mosaik__titel {
        font-size: 3rem;
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {

    .projekte-mosaik__grid {
        grid-template-columns: 1fr 1fr;
        /* Erste Zeile = Intro (auto Höhe), Rest = 180px */
        grid-template-rows: auto repeat(3, 180px);
        grid-auto-rows: 180px;
    }

    .projekte-mosaik__intro {
        grid-column: 1 / -1;   /* volle Breite */
        grid-row: 1;            /* explizit Zeile 1 */
        height: auto;
        aspect-ratio: unset !important;
        padding: 2rem 1.5rem;
    }

    .projekte-kachel {
        grid-column: span 1;
        height: 180px;
        aspect-ratio: unset !important;
        overflow: hidden;
    }

    .projekte-kachel__link {
        position: absolute;
        inset: 0;
    }

    .projekte-kachel__bild {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .projekte-kachel--cta {
        grid-column: span 1;
        height: 180px;
        aspect-ratio: unset !important;
    }
}

@media (max-width: 420px) {
    .projekte-mosaik__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto repeat(6, 220px);
    }
    .projekte-kachel {
        height: 220px;
    }
}
/* ─────────────────────────────────────────────
   FEATURES GROUNDPLAN — Rechte Seite (Slider)
   Vertikales Layout:
   1. Oben:  Titel links + Kreisbild rechts
   2. Mitte: Grundriss groß
   3. Unten: Tabelle + Punkte
───────────────────────────────────────────── */

.fgp__right {
    position: relative;
    overflow: hidden;
   
}

.fgp__slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.fgp__slider-track {
    width: 100%;
    height: 100%;
}

/* ── Folie — vertikales Flex ── */
.fgp__folie {
    display: none;
    flex-direction: column;
    height: 100%;
}

.fgp__folie.is-active {
    display: flex;
}

/* ══════════════════
   1. OBEN — Titel + Kreisbild
══════════════════ */
.fgp__folie-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 2.5rem 1.25rem;
    flex-shrink: 0;
}

.fgp__folie-titel {
    flex: 1;
}

.fgp__folie-haupttitel {
    
    line-height: 1.05;
    margin-bottom: 0.4rem;
}

.fgp__folie-subtitel {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    line-height: 1.45;
    margin-bottom: 0.2rem;
    max-width: none;
}

.fgp__folie-untertitel {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
    max-width: none;
}

/* Kreisbild oben rechts */
.fgp__kreis-bild {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.fgp__kreis-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══════════════════
   2. MITTE — Grundriss groß
══════════════════ */
.fgp__grundriss {
    flex: 1;                  /* ← nimmt den ganzen verfügbaren Platz */
    min-height: 0;            /* ← wichtig damit flex:1 funktioniert */
   
    margin: 0 2.5rem;
   
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.fgp__grundriss img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ══════════════════
   3. UNTEN — Tabelle
══════════════════ */
.fgp__tabelle-wrap {
    flex-shrink: 0;
    overflow-x: auto;
   
    margin-top: 1.25rem;
    padding: 0 2.5rem;
}

.fgp__tabelle {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    table-layout: fixed;
}

/* Zeile 1 — Namen */
.fgp__tabelle thead th {
    text-align: left;
    padding: 0.65rem 0.5rem 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.8);
    white-space: nowrap;
}

/* Zeile 2 — Werte */
.fgp__tabelle tbody td {
    padding: 0.6rem 0.5rem 0.75rem;
    font-size: 1rem;
    vertical-align: top;
    line-height: 1.4;
}

.fgp__tabelle tbody td:first-child {
   
    color: var(--color-white);
}



/* ══════════════════
   Navigationspfeile
══════════════════ */
.fgp__arrow {
    position: absolute;
    top: 50%;              /* ← auf Höhe des Grundrisses */
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.fgp__arrow:hover { background: rgba(255,255,255,0.22); }
.fgp__arrow--prev { left:  0.25rem; }
.fgp__arrow--next { right: 0.25rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .fgp__folie-top  { padding: 1.5rem 1.5rem 1rem; }
    .fgp__grundriss  { margin: 0 1.5rem; }
    .fgp__tabelle-wrap,
    .fgp__dots       { padding-left: 1.5rem; padding-right: 1.5rem; }
    .fgp__kreis-bild { width: 72px; height: 72px; }
}

@media (max-width: 768px) {
    .fgp__kreis-bild       { width: 60px; height: 60px; }
    .fgp__folie-haupttitel { font-size: 1.2rem; }
}
/* ─────────────────────────────────────────────
   CAMPUS ALLTAG — 1/3 Text + 2/3 Laufband-Slider
───────────────────────────────────────────── */

.campus-alltag {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: 440px;
    
    overflow: hidden;
}

/* ── Linke Seite ── */
.campus-alltag__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem 3rem 4rem;
    gap: 1.5rem;
    height: 100%;
}

.campus-alltag__headline {
    color:#DAEADD;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0;
}

.campus-alltag__text {
    
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0;
    max-width: 26ch;
}

/* ── Rechte Seite ── */
.campus-alltag__slider {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem 0 0 0 ;
    overflow: hidden;           /* ← schneidet den Laufband-Überhang ab */
}

/* ── Belt — alle Slides in einer Reihe ── */
.campus-alltag__belt {
    display: flex;
    gap: 40px;                  /* ← Abstand zwischen Slides */
    height: 100%;
    flex: 1;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
	padding-right: 3rem;
	 padding-left: 1rem;
}

/* ── Einzelner Slide ── */
.campus-alltag__slide {
    position: relative;
    flex: 0 0 calc(50% - 20px);  /* ← genau halbe Breite minus halber Gap */
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
	
}

.campus-alltag__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.campus-alltag__slide:hover img {
    transform: scale(1.03);
}
.campus-alltag__track {
    overflow: hidden;
}
/* ── Caption ── */
.campus-alltag__caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1rem 0.875rem;
    background: linear-gradient(
        to bottom,
        rgba(10, 20, 15, 0.88) 0%,
        transparent 100%
    );
    font-size:1.5rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.35;
}

/* ── Punkte ── */
.campus-alltag__dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 1.5rem 0 0.75rem;
    flex-shrink: 0;
}

.campus-alltag__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.campus-alltag__dot.is-active {
    background: var(--color-white);
    transform: scale(1.35);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .campus-alltag {
        grid-template-columns: 1fr;
        height: auto;
    }
    .campus-alltag__links {
        padding: 2.5rem var(--container-pad);
        height: auto;
    }
    .campus-alltag__text { max-width: none; }
    .campus-alltag__slider { height: 360px; }
}

@media (max-width: 600px) {
    .campus-alltag__slider { height: 240px; }
    .campus-alltag__slide {
        flex: 0 0 calc(100% - 1rem);  /* ← Mobil: 1 Slide */
    }
}
/* ─────────────────────────────────────────────
   GALERIE SLIDER — Volle Breite, Fade-Effekt
   → An das Ende der style.css anhängen
───────────────────────────────────────────── */

.galerie-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--color-black);
}

/* ── Track ── */
.galerie-slider__track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;      /* ← Seitenverhältnis anpassen */
}

/* ── Einzelner Slide — alle übereinander ── */
.galerie-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.galerie-slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.galerie-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Caption ── */
.galerie-slider__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 0%,
        transparent 100%
    );
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.4;
}

/* ── Pfeile ── */
.galerie-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
}

.galerie-slider__arrow:hover {
    background: rgba(255,255,255,0.30);
}

.galerie-slider__arrow--prev { left: 1.5rem; }
.galerie-slider__arrow--next { right: 1.5rem; }

/* ── Punkte ── */
.galerie-slider__dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.galerie-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1.5px solid rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.galerie-slider__dot.is-active {
    background: var(--color-white);
    transform: scale(1.3);
}

/* ── Zähler (oben rechts) ── */
.galerie-slider__counter {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 10;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.3);
    padding: 0.25rem 0.6rem;
    border-radius: 2rem;
    display: flex;
    gap: 0.2rem;
    backdrop-filter: blur(4px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .galerie-slider__track {
        aspect-ratio: 4 / 3;   /* ← auf Mobil quadratischer */
    }

    .galerie-slider__arrow {
        width: 36px;
        height: 36px;
    }

    .galerie-slider__arrow--prev { left: 0.75rem; }
    .galerie-slider__arrow--next { right: 0.75rem; }
	.hero-sub {width:100%}
	.header-cta{display:none}
	.bottom-150 {bottom: 20px;}
	.big-text h3 {font-size: 1.25rem;}



}
/* Tabelle auf Mobil — untereinander statt nebeneinander */
@media (max-width: 768px) {

    .fgp__tabelle-wrap {
        padding: 0 1rem;
    }

    .fgp__tabelle {
        table-layout: auto;
    }

    /* Tabelle in Blöcke umwandeln */
    .fgp__tabelle thead {
        display: none;          /* ← Kopfzeile verstecken */
    }

    .fgp__tabelle tbody tr {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .fgp__tabelle tbody td {
        display: flex;
        flex-direction: column;
        flex: 1 1 45%;          /* ← 2 Spalten nebeneinander */
        padding: 0.25rem 0.5rem;
        font-size: 0.85rem;
    }

    /* Label über dem Wert */
    .fgp__tabelle tbody td::before {
        content: attr(data-label);
        font-size: 0.72rem;
        color: rgba(255,255,255,0.5);
        margin-bottom: 0.2rem;
    }
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */

.page-template-page-legal main section a {
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(44 57 44 / var(--tw-border-opacity));
}
/* ─────────────────────────────────────────────
   PROJEKTKARTEN GRID
   → An das Ende der style.css anhängen
───────────────────────────────────────────── */

/* ── Grid Container ── */
.projektkarten-grid {
   }

.projektkarten-grid__inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Einzelne Karte ── */
.projektkarte {
    border: 0.5px solid #000;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
	margin-bottom: 2rem;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}

.projektkarte:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* ── Bild ── */
.projektkarte__bild {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.projektkarte__bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.projektkarte:hover .projektkarte__bild img {
    transform: scale(1.04);
}

.projektkarte__bild a {
    display: block;
    width: 100%;
    height: 100%;
}

/* ── Inhalt ── */
.projektkarte__inhalt {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Titel */
.projektkarte__titel {
    
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--color-black);
    margin-bottom: 0.2rem;
}

.projektkarte__titel a {
    color: inherit;
    text-decoration: none;
}

.projektkarte__titel a:hover {
    color: var(--color-green-dark);
}

/* Ort */
.projektkarte__ort {
    font-weight: 700;
    margin-bottom: 0.5rem;
    max-width: none;
}

/* Fokus */
.projektkarte__fokus {
    font-weight: 500;
    margin-bottom: 0.4rem;
    max-width: none;
}

/* Nutzungen — Bullet-Liste */
.projektkarte__nutzungen {
    list-style: none;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.projektkarte__nutzungen li {
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
}

.projektkarte__nutzungen li::before {
    content: '•';
    position: absolute;
    left: 0;
    
}

/* Trennlinie */
.projektkarte__divider {
    border: none;
    border-top: 1px solid var(--color-cream-mid);
    margin: 0 0 1rem;
}

/* Mietpreis + Mietfläche */
.projektkarte__details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.projektkarte__detail {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.projektkarte__detail-label {
    font-weight: 600;
    text-transform: none;
}

.projektkarte__detail-wert {
    
}

/* Button */
.projektkarte__btn {
    align-self: flex-start;
    font-size: 0.82rem;
    padding: 0.55rem 1.25rem;
    background: var(--color-green-dark);
    color: var(--color-white);
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: background var(--transition);
}

.projektkarte__btn:hover {
    background: var(--color-green-mid);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .projektkarten-grid__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projektkarten-grid__inner {
        grid-template-columns: 1fr;
    }
}

/* Building Hotspots */
.building-list {
    transition: box-shadow 0.2s ease, z-index 0s;
    cursor: pointer;
}

.building-list:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* + Icon dreht sich zu × beim Öffnen */
.building-list .cursor-pointer img {
    transition: transform 0.3s ease;
}

.building-list.is-open .cursor-pointer img {
    transform: rotate(45deg);
}

/* Liste mit Animation einblenden */
.building-list ul {
    animation: none;
}

.building-list ul:not(.hidden) {
    animation: fade-in 0.25s ease;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Offene Box nach vorne */
.building-list.is-open {
    z-index: 30 !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

/* --- Fehlende Utility-Klassen --- */
.top-\[50\%\]  { top: 50%; }
.left-\[50\%\] { left: 50%; }
.-z-\[1\]      { z-index: -1; }
.border-grey   { border-color: #a7a7a7; }

/* --- Button: bright outline hover Variante --- */
.button--bright--outline-hover,
a.button--bright--outline-hover {
  display: inline-block;
  border-radius: 9999px;
  border-width: 2px;
  border-color: rgb(255 251 243);
  background-color: rgb(255 251 243);
  padding: 8px 22px 9px;
  font-size: 1rem;
  color: rgb(44 57 44);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.button--bright--outline-hover:hover,
a.button--bright--outline-hover:hover {
  transform: scale(1.1);
  background-color: transparent;
  color: rgb(255 251 243);
}

@media (min-width: 1024px) {
  .button--bright--outline-hover,
  a.button--bright--outline-hover {
    padding: 10px 30px 11px;
    font-size: 1.25rem;
  }
}

/* --- Dark beige page — nav background --- */
#page.bg-color-darkBeige nav#site-navigation,
#page.bg-color-darkBeige nav#site-navigation::after,
#page.bg-color-darkBeige nav#site-navigation::before {
  background-color: #eadec6;
}

/* --- Popup: popmake-2708 padding --- */
@media (min-width: 1024px) {
  .pum-theme-2700.pum-theme-hybrick-popup #popmake-2708.pum-container {
    padding-bottom: 50px;
  }
}

/* --- Popup: popmake-2695 / 2739 — erster Absatz zentriert --- */
.pum-theme-2700.pum-theme-hybrick-popup #popmake-2695 .pum-content.popmake-content p:first-child,
.pum-theme-2700.pum-theme-hybrick-popup #popmake-2739 .pum-content.popmake-content p:first-child {
  text-align: center;
}
/* ── Burger nur auf Mobil zeigen ── */
@media (max-width: 1024px) {

    /* Burger sichtbar */
    .burger {
        display: flex !important;
        z-index: 100;
        position: absolute;   /* ← absolut positionieren */
        right: 0;          /* ← immer rechts */
        top: 0;
        transform: translateY(-50%);
        margin: 0;            /* ← kein margin-left: auto mehr */
    }

    /* Hauptnavigation verstecken */
    .main-nav {
        display: none !important;
    }

    /* Mobiles Menü Styling */
    .mobile-menu {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-green-dark);
    padding: 1.5rem var(--container-pad) 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

    .mobile-menu[hidden] {
        display: none !important;
    }

    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem;
    }

    .mobile-nav-list li a {
        display: block;
        padding: 0.85rem 0;
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-white);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        transition: color 0.2s;
    }

    .mobile-nav-list li a:hover {
        color: var(--color-cream);
    }

    .btn-mobile-cta {
        display: inline-block;
        margin-top: 1rem;
        background: var(--color-red);
        color: var(--color-white);
        padding: 0.75rem 1.75rem;
        border-radius: 2rem;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.9rem;
    }
}

/* ── Desktop — Burger verstecken ── */
@media (min-width: 1025px) {
    .burger {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
}
/* --- Popup title --- */
.pum-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- md: fehlende Positioning-Klassen --- */
@media (min-width: 768px) {
  .md\:left-10       { left: 2.5rem; }
  .md\:left-\[82px\] { left: 82px; }
  .md\:bottom-10     { bottom: 2.5rem; }
  
}

/* --- lg: fehlende Positioning-Klassen --- */
@media (min-width: 1024px) {
  .lg\:-top-28          { top: -7rem; }
  .lg\:-top-\[110px\]   { top: -110px; }
  .lg\:-top-\[180px\]   { top: -180px; }
  .lg\:top-\[5\%\]      { top: 5%; }
  .lg\:top-\[15\%\]     { top: 15%; }
  .lg\:top-\[25\%\]     { top: 25%; }
  .lg\:top-\[50\%\]     { top: 50%; }
  .lg\:top-\[57\%\]     { top: 57%; }
  .lg\:top-\[110px\]    { top: 110px; }
  .lg\:top-\[112px\]    { top: 112px; }
  .lg\:left-\[10\%\]    { left: 10%; }
  .lg\:left-\[15\%\]    { left: 15%; }
  .lg\:left-\[35\%\]    { left: 35%; }
  .lg\:left-\[60\%\]    { left: 60%; }
  .lg\:left-\[104px\]   { left: 104px; }
  .lg\:right-\[0\%\]    { right: 0; }
  .lg\:bottom-\[0\%\]   { bottom: 0; }
  .lg\:bottom-auto      { bottom: auto; }
  .lg\:-mt-\[0\.1em\]   { margin-top: -0.1em; }
  .lg\:mb-\[32px\]      { margin-bottom: 32px; }
}

/* ============================================================
   SELECTION COLORS
   ============================================================ */

.selection\:bg-lightGreen ::selection  { background-color: rgb(151 173 152); }
.selection\:bg-darkGreen ::selection   { background-color: rgb(44 57 44); }
.selection\:text-beige ::selection     { color: rgb(255 251 243); }
.selection\:bg-lightGreen::selection   { background-color: rgb(151 173 152); }
.selection\:bg-darkGreen::selection    { background-color: rgb(44 57 44); }
.selection\:text-beige::selection      { color: rgb(255 251 243); }


/* ============================================================
   PSEUDO-ELEMENT UTILITIES
   ============================================================ */

.before\:fixed:before         { content: var(--tw-content); position: fixed; }
.before\:top-0:before         { content: var(--tw-content); top: 0; }
.before\:left-0:before        { content: var(--tw-content); left: 0; }
.before\:-z-10:before         { content: var(--tw-content); z-index: -10; }
.before\:h-\[200px\]:before   { content: var(--tw-content); height: 200px; }
.before\:w-\[200vw\]:before   { content: var(--tw-content); width: 200vw; }
.before\:-translate-x-\[100vw\]:before { content: var(--tw-content); --tw-translate-x: -100vw; transform: translateX(-100vw); }
.before\:bg-darkBeige:before  { content: var(--tw-content); background-color: rgb(234 222 198); }

.after\:absolute:after        { content: var(--tw-content); position: absolute; }
.after\:-z-10:after           { content: var(--tw-content); z-index: -10; }
.after\:block:after           { content: var(--tw-content); display: block; }
.after\:inline-block:after    { content: var(--tw-content); display: inline-block; }
.after\:h-full:after          { content: var(--tw-content); height: 100%; }
.after\:w-0:after             { content: var(--tw-content); width: 0; }
.after\:w-full:after          { content: var(--tw-content); width: 100%; }
.after\:border-b-2:after      { content: var(--tw-content); border-bottom-width: 2px; }
.after\:border-darkGreen:after{ content: var(--tw-content); border-color: rgb(44 57 44); }
.after\:bg-beige:after        { content: var(--tw-content); background-color: rgb(255 251 243); }
.after\:transition-all:after  { content: var(--tw-content); transition: all 0.15s cubic-bezier(0.4,0,0.2,1); }
.after\:content-\[\'▾\'\]:after  { --tw-content: "▾"; content: "▾"; }
.after\:content-\[\"▴\"\]:after  { --tw-content: "▴"; content: "▴"; }
.after\:rotate-180:after      { --tw-rotate: 180deg; transform: rotate(180deg); }
.after\:translate-y-1:after   { transform: translateY(0.25rem); }


/* ============================================================
   STATE VARIANTS
   ============================================================ */

/* Hover */
.last\:hidden:last-child   { display: none; }
.hover\:z-20:hover         { z-index: 20; }
.hover\:bg-beige:hover     { background-color: rgb(255 251 243); }
.hover\:bg-darkGreen:hover { background-color: rgb(44 57 44); }
.hover\:text-darkGreen:hover { color: rgb(44 57 44); }
.hover\:text-beige:hover     { color: rgb(255 251 243); }
.hover\:text-darkGrey:hover  { color: rgb(142 142 142); }
.hover\:opacity-50:hover     { opacity: 0.5; }
.hover\:after\:w-full:hover::after { content: var(--tw-content); width: 100%; }
.hover\:after\:w-0:hover::after    { content: var(--tw-content); width: 0; }

/* Focus */
.focus\:not-sr-only:focus  { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }
.focus\:absolute:focus     { position: absolute; }
.focus\:left-1\/2:focus    { left: 50%; }
.focus\:top-\[16px\]:focus { top: 16px; }

/* Group hover */
.group:hover .group-hover\:scale-105       { transform: scale(1.05); }
.group:hover .group-hover\:underline       { text-decoration-line: underline; }
.group:hover .group-hover\:decoration-transparent { text-decoration-color: transparent; }

/* Peer hover */
.peer:hover ~ .peer-hover\:scale-105  { transform: scale(1.05); }
.peer:hover ~ .peer-hover\:opacity-30 { opacity: 0.3; }


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- sm (640px) --- */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- md (768px) --- */
@media (min-width: 768px) {
  .md\:order-1      { order: 1; }
  .md\:order-2      { order: 2; }
  .md\:order-3      { order: 3; }
  .md\:order-4      { order: 4; }
  .md\:col-span-1   { grid-column: span 1 / span 1; }
  .md\:col-span-2   { grid-column: span 2 / span 2; }
  .md\:col-span-4   { grid-column: span 4 / span 4; }
  .md\:col-span-6   { grid-column: span 6 / span 6; }
  .md\:col-span-7   { grid-column: span 7 / span 7; }
  .md\:col-span-12  { grid-column: span 12 / span 12; }
  .md\:col-start-9  { grid-column-start: 9; }
  .md\:mx-auto      { margin-left: auto; margin-right: auto; }
  .md\:mb-0         { margin-bottom: 0; }
  .md\:mb-10        { margin-bottom: 2.5rem; }
  .md\:mb-14        { margin-bottom: 3.5rem; }
  .md\:mb-16        { margin-bottom: 4rem; }
  .md\:-mt-52       { margin-top: -13rem; }
  .md\:block        { display: block; }
  .md\:hidden       { display: none; }
  .md\:h-20         { height: 5rem; }
  .md\:h-\[530px\]  { height: 530px; }
  .md\:min-h-\[500px\] { min-height: 500px; }
  .md\:min-h-\[530px\] { min-height: 530px; }
  .md\:w-\[200px\]  { width: 200px; }
  .md\:scale-100    { transform: scale(1); }
  .md\:columns-2    { column-count: 2; }
  .md\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:flex-row     { flex-direction: row; }
  .md\:gap-10       { gap: 2.5rem; }
  .md\:gap-12       { gap: 3rem; }
  .md\:border-0     { border-width: 0; }
  .md\:py-0         { padding-top: 0; padding-bottom: 0; }
  .md\:py-20        { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:pb-0         { padding-bottom: 0; }
  .md\:pt-\[7px\]   { padding-top: 7px; }
  .md\:text-left    { text-align: left; }
  .md\:text-base    { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg      { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl      { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl     { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl     { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-5xl     { font-size: 3rem; line-height: 1; }
 
}

/* --- lg (1024px) --- */
@media (min-width: 1024px) {
  .lg\:static       { position: static; }
  .lg\:absolute     { position: absolute; }
  .lg\:relative     { position: relative; }
  .lg\:top-0        { top: 0; }
  .lg\:right-0      { right: 0; }
  .lg\:top-10       { top: 2.5rem; }
  .lg\:top-14       { top: 3.5rem; } /* via top-28 = 7rem removed, top-14 added */
  .lg\:top-28       { top: 7rem; }
  .lg\:top-1\/2     { top: 50%; }
  .lg\:left-1\/2    { left: 50%; }
  .lg\:right-10     { right: 2.5rem; }
  .lg\:bottom-20    { bottom: 5rem; }
  .lg\:z-10         { z-index: 10; }
  .lg\:z-\[1\]      { z-index: 1; }
  .lg\:order-1      { order: 1; }
  .lg\:order-2      { order: 2; }
  .lg\:col-span-1   { grid-column: span 1 / span 1; }
  .lg\:col-span-2   { grid-column: span 2 / span 2; }
  .lg\:col-span-3   { grid-column: span 3 / span 3; }
  .lg\:col-span-4   { grid-column: span 4 / span 4; }
  .lg\:col-span-5   { grid-column: span 5 / span 5; }
  .lg\:col-span-6   { grid-column: span 6 / span 6; }
  .lg\:col-span-7   { grid-column: span 7 / span 7; }
  .lg\:col-span-8   { grid-column: span 8 / span 8; }
  .lg\:col-span-10  { grid-column: span 10 / span 10; }
  .lg\:col-start-2  { grid-column-start: 2; }
  .lg\:col-start-4  { grid-column-start: 4; }
  .lg\:col-start-7  { grid-column-start: 7; }
  .lg\:col-start-8  { grid-column-start: 8; }
  .lg\:col-start-10 { grid-column-start: 10; }
  .lg\:mx-auto      { margin-left: auto; margin-right: auto; }
  .lg\:mx-10        { margin-left: 2.5rem; margin-right: 2.5rem; }
  .lg\:my-0         { margin-top: 0; margin-bottom: 0; }
  .lg\:mb-0         { margin-bottom: 0; }
  .lg\:mb-4         { margin-bottom: 1rem; }
  .lg\:mb-5         { margin-bottom: 1.25rem; }
  .lg\:mb-8         { margin-bottom: 1.5rem; }
  .lg\:mb-10        { margin-bottom: 2.5rem; }
  .lg\:mb-12        { margin-bottom: 3rem; }
  .lg\:mb-14        { margin-bottom: 3.5rem; }
  .lg\:mt-0         { margin-top: 0; }
  .lg\:mt-28        { margin-top: 7rem; }
  .lg\:ml-8         { margin-left: 2rem; }
  .lg\:ml-auto      { margin-left: auto; }
  .lg\:ml-\[14px\]  { margin-left: 14px; }
  .lg\:mr-10        { margin-right: 2.5rem; }
  .lg\:block        { display: block; }
  .lg\:flex         { display: flex; }
  .lg\:hidden       { display: none; }
  .lg\:h-20         { height: 5rem; }
  .lg\:h-28         { height: 7rem; }
  .lg\:h-full       { height: 100%; }
  .lg\:h-\[30px\]   { height: 30px; }
  .lg\:h-\[100px\]  { height: 100px; }
  .lg\:h-\[500px\]  { height: 500px; }
  .lg\:h-\[calc\(100vh-112px\)\] { height: calc(100vh - 112px); }
  .lg\:min-h-\[600px\] { min-height: 600px; }
  .lg\:min-h-\[700px\] { min-height: 700px; }
  .lg\:w-full       { width: 100%; }
  .lg\:w-2\/3       { width: 66.667%; }
  .lg\:w-\[30\%\]   { width: 30%; }
  .lg\:w-\[30px\]   { width: 30px; }
  .lg\:w-\[50px\]   { width: 50px; }
  .lg\:w-\[250px\]  { width: 250px; }
  .lg\:max-w-\[30ch\]  { max-width: 30ch; }
  .lg\:max-w-\[32ch\]  { max-width: 32ch; }
  .lg\:max-w-\[50ch\]  { max-width: 50ch; }
  .lg\:max-w-\[80\%\]  { max-width: 80%; }
  .lg\:max-w-\[100\%\] { max-width: 100%; }
  .lg\:max-w-\[120ch\] { max-width: 120ch; }
  .lg\:max-w-\[150px\] { max-width: 150px; }
  .lg\:max-w-max       { max-width: max-content; }
  .lg\:-translate-x-1\/2 { --tw-translate-x: -50%; transform: translateX(-50%); }
  .lg\:-translate-y-1\/2 { --tw-translate-y: -50%; transform: translateY(-50%); }
  .lg\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:flex-row     { flex-direction: row; }
  .lg\:justify-center { justify-content: center; }
  .lg\:gap-4        { gap: 1rem; }
  .lg\:gap-10       { gap: 2.5rem; }
  .lg\:gap-20       { gap: 5rem; }
  .lg\:gap-x-5      { column-gap: 1.25rem; }
  .lg\:gap-x-10     { column-gap: 2.5rem; }
  .lg\:gap-x-20     { column-gap: 5rem; }
  .lg\:gap-x-\[40px\] { column-gap: 40px; }
  .lg\:gap-y-0      { row-gap: 0; }
  .lg\:border-0     { border-width: 0; }
  .lg\:bg-transparent { background-color: transparent; }
  .lg\:p-4          { padding: 1rem; }
  .lg\:px-0         { padding-left: 0; padding-right: 0; }
  .lg\:px-20        { padding-left: 5rem; padding-right: 5rem; }
  .lg\:py-20        { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-32        { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:pb-0         { padding-bottom: 0; }
  .lg\:pb-2         { padding-bottom: 0.5rem; }
  .lg\:pb-8         { padding-bottom: 2rem; }
  .lg\:pb-10        { padding-bottom: 2.5rem; }
  .lg\:pb-14        { padding-bottom: 3.5rem; }
  .lg\:pb-16        { padding-bottom: 4rem; }
  .lg\:pb-20        { padding-bottom: 5rem; }
  .lg\:pb-28        { padding-bottom: 7rem; }
  .lg\:pt-0         { padding-top: 0; }
  .lg\:pt-2         { padding-top: 0.5rem; }
  .lg\:pt-10        { padding-top: 2.5rem; }
  .lg\:pt-12        { padding-top: 3rem; }
  .lg\:pt-\[7px\]   { padding-top: 7px; }
  .lg\:pl-8         { padding-left: 2rem; }
  .lg\:text-left    { text-align: left; }
  .lg\:text-base    { font-size: 1rem; line-height: 1.5rem; }
  .lg\:text-lg      { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-xl      { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl     { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl     { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl     { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-6xl     { font-size: 3.5rem; line-height: 1; }
  .lg\:leading-\[1\.1em\] { line-height: 1.1em; }
  .lg\:leading-\[1\.3em\] { line-height: 1.3em; }
  .focus\:lg\:top-\[5px\]:focus { top: 5px; }
}

/* --- xl (1280px) --- */
@media (min-width: 1280px) {
  .xl\:absolute     { position: absolute; }
  .xl\:top-1\/3     { top: 30%; }
  .xl\:top-1\/2     { top: 50%; }
  .xl\:right-10     { right: 2.5rem; }
  .xl\:col-span-6   { grid-column: span 6 / span 6; }
  .xl\:col-span-7   { grid-column: span 7 / span 7; }
  .xl\:col-span-10  { grid-column: span 10 / span 10; }
  .xl\:col-start-2  { grid-column-start: 2; }
  .xl\:row-start-auto { grid-row-start: auto; }
  .xl\:my-0         { margin-top: 0; margin-bottom: 0; }
  .xl\:block        { display: block; }
  .xl\:h-\[600px\]  { height: 600px; }
  .xl\:w-1\/2       { width: 50%; }
  .xl\:max-w-max    { max-width: max-content; }
  .xl\:-translate-y-1\/2 { transform: translateY(-50%); }
  .xl\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:gap-x-10     { column-gap: 2.5rem; }
  .xl\:gap-x-\[60px\] { column-gap: 60px; }
  .xl\:text-4xl     { font-size: 2.25rem; line-height: 2.5rem; }
  .xl\:text-5xl     { font-size: 3rem; line-height: 1; }
}

/* --- 2xl (1536px) --- */
@media (min-width: 1536px) {
  .\32xl\:col-span-3  { grid-column: span 3 / span 3; }
  .\32xl\:h-\[700px\] { height: 700px; }
  .\32xl\:gap-20      { gap: 5rem; }
  .\32xl\:gap-40      { gap: 10rem; }
  .\32xl\:gap-x-20    { column-gap: 5rem; }
  .\32xl\:gap-x-40    { column-gap: 10rem; }
  .\32xl\:text-5xl    { font-size: 3rem; line-height: 1; }
}
/* ── TranslatePress Sprachumschalter ── */
.trp-language-switcher-inner {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.trp-language-item {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-cream);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
    border-bottom: none !important;  /* ← kein Unterstrich */
	padding:7px !important;;
}

.trp-language-item:hover {
    opacity: 1;
}

/* Aktive Sprache — volle Deckkraft */
.trp-language-item[aria-current="page"] {
    opacity: 1;
}

/* Trennstrich zwischen DE und EN */
.trp-language-item:not(:last-child)::after {
    content: '|';
    margin-left: 0.3rem;
    opacity: 0.4;
    color: var(--color-cream);
}

/* Nur Sprachkürzel zeigen — keine Flaggen */
.trp-language-item img {
    display: none !important;
}

/* ══════════════════════════════════════════
   MOBIL HEADER FIX — ganz am Ende einfügen
══════════════════════════════════════════ */

@media (max-width: 1024px) {

    /* ── Logo — nur kleines zeigen ── */
    #masthead a:first-child img:first-child {
        display: block !important;
        height: 50px;
        width: auto;
    }

    #masthead a:first-child img:last-child {
        display: none !important;
    }
	.site-header.is-scrolled {
        min-height: 70px !important;  /* ← überschreibt die 120px */
        background: var(--color-green-dark);
    }

    /* ── Header-Container ── */
    .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
        height: 70px;
        padding: 0 1rem;
    }

    /* ── Logo links ── */
    #masthead a:first-child {
        position: relative !important;
        left: auto !important;
        margin-left: 0 !important;
        display: flex !important;
        align-items: center;
        height: 70px;
    }

    /* ── Burger — fix oben rechts, vertikal zentriert ── */
    .burger {
        position: fixed !important;
        right: 1rem !important;
        top: 22px !important;
        transform: none !important;
        z-index: 1001 !important;
        display: flex !important;
        margin: 0 !important;
    }

    .burger span {
        background: var(--color-white) !important;
    }

    /* ── Sprachumschalter — fix, neben Burger ── */
    .trp-language-switcher-inner {
        position: fixed !important;
        top: 22px !important;
        right: 4rem !important;
        z-index: 1001 !important;
        display: flex !important;
        gap: 0.1rem !important;
    }

    .trp-language-item {
        font-size: 0.8rem !important;
        padding: 0 0.1rem !important;
    }

    .trp-language-item:not(:last-child)::after {
        margin-left: 0.1rem !important;
    }

    /* ── Haupt-Nav verstecken ── */
    .main-nav {
        display: none !important;
    }

    /* ── Header-CTA verstecken ── */
    .header-cta {
        display: none !important;
    }

    /* ── Mobiles Menü ── */
    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 999;
        background: var(--color-green-dark);
        padding: 1.5rem var(--container-pad) 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
	/* Kein Überlappen zwischen Sektionen */
    .projekte-mosaik {
        overflow: hidden;
        position: relative;
        z-index: 0;
    }

    /* Nächste Sektion darüber */
    .projekte-mosaik + section,
    .projekte-mosaik + div {
        position: relative;
        z-index: 1;
    }
    .mobile-menu[hidden] {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .burger      { display: none !important; }
    .mobile-menu { display: none !important; }
	
}
@media (max-width: 768px) {

    .projekte-mosaik__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto repeat(2, 180px) auto repeat(1, 180px);
        grid-auto-rows: 180px;
    }

    .projekte-mosaik__intro {
        grid-column: 1 / -1;
        grid-row: 1;
        height: auto;
        aspect-ratio: unset !important;
        padding: 2rem 1.5rem;
    }

    .projekte-kachel {
        grid-column: span 1;
        height: 180px;
        aspect-ratio: unset !important;
        overflow: hidden;
    }

    .projekte-kachel__link {
        position: absolute;
        inset: 0;
    }

    .projekte-kachel__bild {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* CTA — volle Breite, eigene Höhe */
    .projekte-kachel--cta {
        grid-column: 1 / -1 !important;  /* ← volle Breite */
        height: auto !important;
        min-height: 200px;
        aspect-ratio: unset !important;
        padding: 0;
    }

    .projekte-kachel__cta-inner {
        padding: 2rem !important;
    }
}

@media (max-width: 420px) {
    .projekte-mosaik__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto repeat(5, 220px) auto;
    }

    .projekte-kachel {
        height: 220px;
    }

    .projekte-kachel--cta {
        grid-column: span 1 !important;
    }
}