/* ========================================= GLOBAL ========================================= F3ECE4 */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    /*background: #f4efe9;*/
	background: #f4efe9;
    color: #2F2C2A;
    margin: 20px 0;
    text-align: center;
    z-index: 2;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("images/white-wall.png");
    background-repeat: repeat;

    opacity: 0.8;              /* ← NUR das Bild */
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.paper-box {
  position: relative;
  background: #e9e3db;
  padding: 32px;
  overflow: hidden;
}

/* Textur + kaputter Rand */
.paper-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/broken-noise.png");
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  mix-blend-mode: multiply; /* wichtig */
  opacity: 0.9;
}


hr.trennlinie {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #c8c2bb,
    transparent
  );
  margin: 14px 0;
}


.intro-text {
line-height: 1.25;
  font-size: 0.92rem;
  color: #2b2b2b;
  text-align: left;
}


.section-title {
font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
}


/* ========================================= WRAPPER d6ccc2========================================= */
.page-wrapper {
    /*background: #b1aba64f;*/
	background: #FFFDFB;
    width: 95%;
    max-width: 950px;
    margin: 0 auto 40px;

    /* getrennte Steuerung */
    padding-top: 8px;      /* nur Abstand über Header */
    padding-bottom: 1px;   /* alles unterhalb */
    border-radius: 15px;
    box-shadow: 0 8px 26px rgba(0,0,0,0);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
	margin-top: 14px;
}

/* ========================================= VERANSTALTUNGSKALENDER ========================================= */
.kalender-wrapper {
    width: 95%;
    max-width: 900px;
    margin: 0 auto 0;
}

.kalender {
    background: #fff;
    padding: 22px 24px 28px;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
}

.kalender-header {
    text-align: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.kalender-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.tag {
    font-weight: bold;
    padding-bottom: 4px;
}

/* F3ECE4 */
.kal-tag {
    background: #80b918;
    border-radius: 10px;
    height: 60px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.kal-tag .datum {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.kal-tag.event {
    background: #ee9b00;
    color: white;
    border: 2px solid #9b2226;
}

.kal-tag .event-name {
    font-size: 11px;
    font-weight: 600;
}

/* ========================================= # Card WICHTIG FÜR PAGES


    width: 95%;
    max-width: 900px;


========================================= */
 .card {
    background: #fff;
    padding: 0 20px;
    border-radius: 18px;
    text-align: left;
    transition: background 0.2s;
    line-height: 1.5;
}

/* ========================================= FOOTER =========================================  */
.footer-box {
    width: 95%;
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 16px 20px;
    /* Hintergrund wie Menü-Hintergrund (früher):
       background: rgba(255,255,255,0.45); */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #444443;                         /* dunkle Schrift */
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border-radius: 14px 14px 14px 14px;     /* gleiche Rundung */
    border: 0px solid rgba(255,255,255,0.6);
    box-shadow: none;                       /* kein Schatten */
    background: #FAF7F4;
}

.footer-box a {
    color: #373737;
    text-decoration: none;
}

.footer-box a:hover {
    text-decoration: underline;
}

.site-footer {
margin-top: 10px;
    padding-bottom: 14px;
    text-align: center;
    font-size: 10.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.32);
}

.footer-inner {
    font-size: 11px;
    color: rgba(69, 69, 69, 0.81);
}

.footer-inner a {
    color: inherit;
    text-decoration: none;
}


.dot {
    margin: 0 6px;
    opacity: .35;
}

.container.content {
  padding-bottom: 8px;
}


/* ========================================= HEADER ========================================= 


    box-shadow: 0 6px 22px rgba(0,0,0,0.08);



*/


.header-flex {
    position: relative;
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 60%;
    background: #FAF7F4;
    border-radius: 18px;

    overflow: hidden;
	height: 280px;
}

.header-logo-box {
    background: #FFFDFB;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    text-align: center;   
}

.header-logo-box img {
    width: 100%;
    max-width: 270px;
}

.header-right {
position: relative;
  background: #FFFDFB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 40px 18px 0px;
  overflow: hidden;
}

.header-box {
    padding: 0 0 0 0;
    text-align: left;
    margin: 0;
}

.login-label {
    font-size: 14px;
    margin-bottom: 8px;
}

.login-form {
    display: flex;
    gap: 12px;
    justify-content: right;
}

.login-input {
	display: flex;
    flex-direction: column;
    align-items: center;
	width: 150px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d6d2cd;
}

.login-btn {
	width: 150px;
	border-radius: 10px;
    background: #373737;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.login-btn:hover {
    background: #373737;
}

.logout-btn {
	width: 150px;
	    border-radius: 10px;
    padding: 10px 0;
    background: #373737;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Fehlermeldung Login */
.protected-error {
    color: #b0412f;
    font-weight: 600;
    margin-top: 10px;
}

/* ========================================= MENU ========================================= */

.menu-wrapper {
    width: 95%;
    max-width: 900px;
    margin: 18px auto 0;
    background: #FFFDFB;
    backdrop-filter: blur(12px);
    padding: 8px 10px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    box-shadow: none;
	margin-bottom: 0px !important;  /* enger machen */
}

.menu-bar {
    display: grid;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
	width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 14px;
}

.menu-btn {
    padding: 10px 0;
    border-radius: 12px;
    background: #373737;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1;
    transition: background 0.2s ease, color 0.2s ease;
	font-family: 'Inter';
}

/* Standard Hover */
.menu-btn:hover {
    background: #424242;
    color: #ffffff;
}


/* Aktiver Button – Variante B optimiert & größenneutral */
.menu-btn.active {
    background: #5F8B4C !important;      /* Gelb */
    color: #fff !important;
    border-radius: 12px !important;      /* exakt wie inaktive Buttons */
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,0.06),
      0 1px 2px rgba(0,0,0,0.10);
    transform: none !important;
}

/* Aktiver Button – sanfter Hover */
.menu-btn.active:hover {
    background: #64954E !important;   /* deutlich subtiler */
    box-shadow: 
    inset 0 0 0 2px rgba(0,0,0,0.06),
    0 2px 4px rgba(0,0,0,0.10);   
}

/* ========================================= FLOAT IMG ========================================= */

.float-img {
    max-width: 300px;
    width: auto;
    height: auto;
    float: left;
    margin: 0 15px 10px 0;
    border-radius: 8px;
}

/* ========================================= TERMINE ========================================= */
.termine-wrapper {
    width: 100%;
    background: #fff;
    border-radius: 18px 18px 18px 18px !important;
    padding: 0px 20px 20px 26px;
    text-align: left;
    margin-top: 20px !important;   /* exakter Abstand zum Divider */
}

.termine-title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 600;
    color: #37332f;
}

.termin-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e3ddd6;
}

.termin-item:last-child {
    border-bottom: none;
}

.termin-date {
    min-width: 150px;
    max-width: 150px;
    height: 90px;
    background: #5F8B4C;
    color: #fff;
    border-radius: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    word-break: break-word;
}

.termin-day {
    font-size: 20px;
    font-weight: 700;
}

.termin-month {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.termin-year {
    font-size: 20px;
    font-weight: 700;
    opacity: 0.9;
}

.termin-content {
    flex: 1;
}

.termin-name {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 800;
    color: #2f2c2a;
}

.termin-info {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4b4744;
}

/* Vergangene Termine */
.termin-item.past {
    opacity: 0.55;
}

.termin-item.past .termin-date {
    background: #777 !important;
}

.termine-wrapper + .footer-box {
    margin-bottom: 30px;
}

/* ========================================= KONTAKT =========================================


    width: 95%;
    max-width: 900px;


*/

.contact-card {
    background: #fff;

    border-radius: 18px 18px 18px 18px;
    text-align: left;
    transition: background 0.2s;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-left: 40px;
    margin-right: 30px;
    margin-top: 20px;
}

.contact-card label {
    font-size: 15px;
    font-weight: 600;
    color: #3c3c3c;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #d6d0c9;
    background: #faf7f4;
    font-size: 15px;
}

.contact-card input:focus,
.contact-card textarea:focus {
    border-color: #3f6634;
    box-shadow: 0 0 0 2px rgba(63,102,52,0.15);
}

/* Kontakt-Intro-Texte */
.contact-intro-wrapper {
    margin-bottom: 10px;
	    padding: 0 20px;
}

.contact-intro {
    font-size: 14px;
    line-height: 1.6;
    margin: 6px 0;
	padding: 0 20px;
}

/* SENDEN BUTTON */
.kontakt-btn {
    display: inline-block;
    width: 200px;
    margin: 22px auto 6px;
    padding: 10px 0;
    background: #598b2c;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    transition: background 0.15s ease;
	margin-bottom: 16px;
}


/* Hinweistext */
.kontakt-hinweis {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: #3c3c3c;
    margin: 10px 0 22px;
    text-align: left;
    width: 92%;
    max-width: 760px;
}

/* SUCCESS / ERROR */
.success-box,
.error-box {
    width: 95%;
    max-width: 900px;
    margin: 16px auto;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.success-box {
    background: #3f6634;
    color: #fff;
}

.error-box {
    background: #b0412f;
    color: #fff;
}

/* White-Link im Warn-Text */
.white-link {
    color: #fff;
    text-decoration: underline;
}

/* page-wrapper weiterhin vollbreit, ABER saubere Rundungen nur oben */
.page-wrapper {
    width: 100% !important;
    margin: 0 auto;
    border-radius: 18px 18px 18px 18px !important;
}

/* Menu-wrapper Abstand korrekt wiederherstellen */
.menu-wrapper {
    margin-top: 14px !important;
}

/* Divider oben mit Rundungen */
.divider-box {
    border-radius: 14px 14px 0 0 !important;
}

/* Weißer Content unten wieder mit Rundungen */
.card,
.kalender,
.kalender-wrapper {
    border-radius: 0 0 18px 18px 
    overflow: hidden; /* verhindert optische Artefakte */
}

.contact-card {
    border-radius: 18 18 18px 18px 
    overflow: hidden; /* verhindert optische Artefakte */
}


/* ========================================= FONTS ========================================= */
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NotoSerifDivesAkuru';
    src: url('fonts/NotoSerifDivesAkuru-Regular.ttf') format('truetype');
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JosefinSans';
    src: url('fonts/JosefinSans-VariableFont_wght') format('truetype');
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'repetitarounded';
    src: url('fonts/repetitarounded.ttf') format('truetype');
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bungee-Regular';
    src: url('fonts/Bungee-Regular.ttf') format('truetype');
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IMFellEnglish-Regular';
    src: url('fonts/IMFellEnglish-Regular.ttf') format('truetype');
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}



/* Kontaktseite – Footer-Abstand korrigieren */
.kontakt-seite .container.content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Kontaktseite: Abstand der weißen Box nach unten reduzieren */
.kontakt-seite .contact-card {
    margin-bottom: 8px !important;
}

.kontakt-seite .footer-box {
    margin-top: 8px !important;
}

.kontakt-seite .page-wrapper {
    padding-bottom: 10px !important;
}


/* ========================================= PAGINATION ========================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 14px;
    background: #444443;           /* wie deine Karten */
    color: #a9a9a9;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition: 0.2s ease;
	margin-top: 20px;
}

/* Aktive Seite optisch hervorgehoben */
.pagination .active {
background: #5f8b4c;
	margin-top: 20px;
	color: #fff;
    font-weight: 600;
    cursor: default;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}


.page-termine .footer-box,
.page-archiv .footer-box,
.page-kontakt .footer-box,
.page-404 .footer-box,
.page-info .footer-box {
    margin-top: 20px;   /* oder 30px, wie du es schöner findest */
}

.page-start .pagination {
    margin-bottom: 0px; /* oder 30px, was dir besser gefällt */
}


.page-404 .termine-wrapper {
    margin-bottom: 20px !important;
}

/* 404 – Abstand direkt nach dem Subdivider */
.page-404 .divider-subline {
    margin-bottom: 20px !important;
}


/* =========================================
   GALERIE – GRUNDSTRUKTUR
   (Grid-Item = <a>)
========================================= */

.gallery.mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 5px;
    padding: 20px;
    grid-auto-flow: dense;
}

/* Grid-Items */
.gallery.mosaic a {
    display: block;
    position: relative;
}

/* =========================================
   BILDER – EINHEITLICH
========================================= */

.gallery.mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;

    filter: grayscale(100%);
    transition:
        filter 0.3s ease,
        opacity 0.3s ease,
        box-shadow 0.3s ease;

    cursor: zoom-in;
}

/* =========================================
   HOVER-VARIANTEN
========================================= */

/* Variante: Licht / Helligkeit */
.gallery.mosaic.hover-licht img {
    filter: grayscale(100%) brightness(0.95);
}

.gallery.mosaic.hover-licht a:hover img {
    filter: grayscale(0%) brightness(1.05);
}

/* Variante: Rahmen */
.gallery.mosaic.hover-rahmen img {
    filter: grayscale(100%);
}

.gallery.mosaic.hover-rahmen a:hover img {
    filter: grayscale(0%);
    box-shadow: 0 0 0 2px rgba(249, 199, 79, 0.9);
}

/* Variante: Fokus (andere treten zurück) */
.gallery.mosaic.hover-fokus img {
    filter: grayscale(100%);
    opacity: 1;
}

.gallery.mosaic.hover-fokus:hover img {
    opacity: 0.55;
}

.gallery.mosaic.hover-fokus a:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* =========================================
   GRÖSSENKLASSEN
   (WICHTIG: auf <a>, nicht auf <img>)
========================================= */

.gallery.mosaic a.big-horizontal {
    grid-column: span 2;
}

.gallery.mosaic a.big-vertical {
    grid-row: span 3;
}

.gallery.mosaic a.big-four {
    grid-column: span 2;
    grid-row: span 2;
}

/* =========================================
   LIGHTBOX
========================================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 92%;
    max-height: 92%;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 34px;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
}

.lightbox-close:hover {
    opacity: 1;
}

/* =========================================
   GESCHÜTZTER BEREICH
========================================= */

.protected-card {
    border-radius: 18px;
    padding: 28px 24px 30px;
    max-width: 850px;
    margin: 2px auto 10px;
    text-align: left;
}

.protected-icon {
    font-size: 100px;
    margin-bottom: 10px;
}

.protected-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #2F2C2A;
}

.protected-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4b4744;
    margin: 0 0 18px;
}

.protected-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.protected-form input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d6d0c9;
    background: #fff;
    font-size: 14px;
    width: 120px;
}

.protected-form input:focus {
    outline: none;
    border-color: #3f6634;
    box-shadow: 0 0 0 2px rgba(63,102,52,0.15);
}

.protected-form button {
    padding: 12px 18px;
    border-radius: 12px;
    border: none;
    background: #373737;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
	    width: 120px;
}



.protected-error {
    margin-top: 14px;
    color: #b0412f;
    font-weight: 600;
    font-size: 14px;
}

.protected-card,
.protected-card * {
    transition: none !important;
}

/* =========================================
   GALERIE – LOGOUT BUTTON
========================================= */

.gallery-logout {
    display: flex;
    justify-content: center;   /* zentriert */
    margin: 18px 0 12px;       /* Abstand oben & unten */
}

.gallery-logout-btn {
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 12px;
    background: #444443;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.gallery-logout-btn:hover {
    background: #373737;
    opacity: 0.9;
}

/* =========================================
   GALERIE – ABSTAND & HÖHE
========================================= */

.page-galerie .card {
    min-height: 320px;   /* Login-Bereich bekommt Luft */
}

.page-galerie .footer-box {
    margin-top: 20px !important;
}

/* =========================================
   GALERIE – ABSTAND ZUM FOOTER (LOGIN-ZUSTAND)
========================================= */

/* Mehr Luft unter der weißen Karte */
.page-galerie .card {
    padding-bottom: 40px;
}

/* Extra Abstand zwischen Card und Footer */
.page-galerie .footer-box {
    margin-top: 20px !important;
}


.page-galerie.page-wrapper {
    padding-bottom: 20px;
}

.page-galerie .card {
    padding-bottom: 20px;
}

.page-galerie .footer-box {
    margin-top: 20px !important;
}

/* Einheitliche Textflucht für Intro-Blöcke mit Icon */
.card-content {
    align-items: flex-start;
}

.card-content .card-text,
.card-content p {
    margin-left: 0;
}

/* Falls ein Icon links ist → Text sauber daneben beginnen */
.card-content.has-icon .card-text {
    padding-left: 0;
}


/* Float beenden */
.clear {
    clear: both;
}

/* card-content bleibt normaler Block */
.card-content--readmore {
    display: block;
}



.float-img {
    align-self: flex-start;
    height: auto;
}

.link-strong {
  color: #598b2c;
  font-weight: 700;
  text-decoration: none;
}


/* ================================
   TERMIN-EDITORIAL – DESKTOP373737
================================ */
.termine-inline {
  margin-top: 8px;
}

.termine-inline-title {
width: 100%;
	background: #373737 !important;
    color: #fff !important;
    border-radius: 4px;
    font-size: 16px;
	font-weight: 500;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
}

/* Liste */
.termine-inline-list {
  list-style: none;
  padding: 0;

}

/* Zeile */
.termine-inline-list li {
  display: grid;
  grid-template-columns: 110px 110px 1fr;
  align-items: baseline;
  gap: 5px;
}



/* Datum */
.pill-date {
  color: #fff;          /* Grün als Akzent */
  height: 25px;
  white-space: nowrap;
  background: #5F8B4C;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
	    border-radius: 4px;

}

.pill-time {
  color: #000;          /* Grün als Akzent */
  height: 25px;
  white-space: nowrap;
  background: #e7e2dc;
  justify-content: center;
  font-size: 14px;
	  font-weight: 500;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
	border-radius: 4px;

}

.pill-text {
  color: #000;          /* Grün als Akzent */
  height: 25px;
  white-space: nowrap;
  background: #edede9;
  justify-content: center;
  font-size: 14px;
	  font-weight: 500;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  padding-left: 10px;
	border-radius: 4px;

}



.pill-date-past {
  height: 25px;
  white-space: nowrap;
  background: #9aa38f;   /* entsättigtes Grün */
  color: #ffffff;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
	    border-radius: 4px;
	  opacity: 0.85;

}

.pill-time-past {
  height: 25px;
  white-space: nowrap;
  background: #e7e2dc;   /* warmes Grau */
  color: #5a5a5a;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
	border-radius: 4px;
	  opacity: 0.85;

}

.pill-text-past {
  color: #5a5a5a;          /* Grün als Akzent */
  height: 25px;
  white-space: nowrap;
  background: #FAF7F4;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  padding-left: 10px;
  border-radius: 4px;
  opacity: 0.85;
}





/* =========================================
   MOBILE – TERMINE INLINE*/

.link-icon {
  font-size: 0.85em;
  margin-left: 4px;
  opacity: 0.7;
}

/* =========================================
   LIGHTBOX
========================================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(30, 28, 26, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9999;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    transform: scale(0.96);
    transition: transform 0.25s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 32px;
    color: #f3ece4;
    cursor: pointer;
    line-height: 1;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}


/* =========================================
   REACTIONS – Variante D (final)
   Ruhig, editorial, hochwertig
========================================= */

/* Container */
.reaction-bar {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    padding: 10px;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: #fff;

    clear: both;
}

/* Einzelne Reaction */
.reaction {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 20px;              /* Emoji leicht größer */
    line-height: 1;
    cursor: pointer;
    user-select: none;
    background: rgba(0,0,0,0.035);
    color: #2f2c2a;
}

/* Zahl – bewusst zurückhaltend */
.reaction b {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.6;
    margin-left: 2px;
}

/* Hover – spürbar, aber leise */
.reaction:hover {
    background: rgba(0,0,0,0.07);
}

/* Aktiv – klar, aber nicht laute1e1e1 */
.reaction.is-active {
    background: #ececec;
    color: #000;
	font-weight: 800;
}

/* Zahl standardmäßig versteckt */
.reaction b {
    display: none;
}

/* Zahl anzeigen, sobald Count > 0 */
.reaction.has-count b {
    display: inline;
}


/* Mini-Pop beim Aktivieren */
.reaction.is-active {
    animation: reaction-pop 0.22s ease-out;
}








/* =====================================
   POST LAYOUT
===================================== */

.post {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto 10px;
  max-width: 900px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* =====================================
   HEADER (ACCENT)
===================================== */

.post-header--accent {
  background: transparent;
padding: 14px 28px 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6);
}


.post-header-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Linke Akzentlinie */
.post-header-accent {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(
    to bottom,
    #3f6634,
    #f9c74f
  );
  margin-top: 4px;
}

/* Header-Inhalt */
.post-header-content {
  flex: 1;
}

/* =====================================
   TITEL
===================================== */

.post-title {
  margin: 0;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.2;          /* KORREKT statt negativ */
  letter-spacing: 0.2px;    /* moderat & modern */
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f2c2a;
}

.title-key {
}

/* Icon im Titel */
.post-icon {
  font-size: 22px;
  opacity: 0.85;
  line-height: 1;
}

/* =====================================
   META (INLINE)
===================================== */

.post-meta--inline {
  margin-top: 6px;
  font-size: 11px;
  color: #6f6f6f;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
	text-transform: uppercase;
}

.meta-icon {
  font-size: 11px;
  opacity: 0.55;   /* statt filter – funktioniert zuverlässig */
  line-height: 1;
}

.meta-sep {
  opacity: 0.4;
}

/* =====================================
   CONTENT
===================================== */

.post-content {
  padding: 26px 28px 4px;
line-height: 1.55;
	padding-bottom: 10px;
 padding: 32px 36px 10px;
font-size: 0.91rem;
    color: #2b2b2b;
    text-align: left;
	padding-top: 10px;
}

.post-content p {
  letter-spacing: 0.05px;
	  margin-bottom: 18px;
}


/* =====================================
   PAGE HEADER (UNTERSEITEN)
===================================== */


.page-header-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.card {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.page-header--accent {
  background: #fff;
  
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
	  padding: 18px 28px 14px;
}


.page-header-content {
  flex: 1;
}

/* Titel */
.page-title {
  margin: 0;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: 0.3px;
  color: #2f2c2a;
}

/* Unterzeile */
.page-subtitle {
  margin: 6px 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #2f2c2a;
}



.post {
  position: relative;
}

/* feine Trennung unten */
.post::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.08),
    transparent
  );
}

/* letzter Beitrag ohne Linie */
.post:last-of-type::after {
  display: none;
}


.post {
  margin-bottom: 15px;
  width: 100%;
}

.post:last-child {
  margin-bottom: 10px;
}




@media (max-width: 640px) {
  .page-header--accent {
    padding: 16px 18px 14px;
    margin-bottom: 20px;
	    border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  }

  .page-header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .page-header-accent {
    width: 40px;
    height: 3px;
  }

  .page-title {
    font-size: 20px;
  }

  .page-subtitle {
font-size: 14px;
  }
}

.img-floati-left {
  float: left;
  height: 70px;
  width: auto;      /* Breite passt sich an */
  margin: 0 12px 6px 0;
	  filter: opacity(88%);
}



/* =====================================
   MOBILE OPTIMIERUNG
===================================== */

@media (max-width: 640px) {

  /* Karte etwas luftiger am Rand */
  .post {
    margin: 0 12px 32px;
    border-radius: 16px;
	width: 100%;
  }

  /* Header kompakter */
  .post-header--accent {
    padding: 14px 18px 12px;
    margin-bottom: 14px;
  }

  /* Header-Aufbau ändern */
  .post-header-inner {
    flex-direction: column;
    gap: 10px;
  }

  /* Akzentlinie: horizontal statt vertikal */
  .post-header-accent {
    width: 42px;
    height: 3px;
    margin-top: 0;
    border-radius: 2px;
  }

  /* Titel */
  .post-title {
font-size: 15px;
    line-height: 1.25;
    letter-spacing: 0.2px;
    gap: 8px;
	  text-align: left;
    align-items: inherit;
  }

  .post-icon {
    font-size: 18px;
  }

  /* Meta: kompakt, umbrechend */
  .post-meta--inline {
    font-size: 10.5px;
    gap: 6px;
  }

  .meta-sep {
    display: none; /* spart Platz */
  }

  /* Content */
  .post-content {
padding: 0px 18px 24px;
  }
}

/* =====================================
   TERMIN-GRID (2 Karten nebeneinander)
===================================== */
.termin-grid {
  display: grid;
  gap: 10px;
  margin: 1.4rem 0;
}

/* =====================================
   TERMIN-KARTE (geteilt: Kopf + Body)
===================================== */
.termin-card.split {
  background: #f4efe9;
  border-radius: 6px;          /* deutlich runter */
  overflow: hidden;
  border: 1px solid #d4cec7;
}

/* Kopfzeile */
.termin-top {
background: #373737;
  font-size: 0.8rem;
padding: 0.6rem 1rem 0.3rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #fff;
	padding-top: 4.8px;
}


/* Inhalt */
.termin-body {
padding-top: 10px;
padding-right: 20px;
padding-bottom: 20px;
padding-left: 20px;
}

.termin-body h3 {
  margin: 0 0 0.5rem 0;
font-size: 14px;
  font-weight: 600;
  color: #37332f;
}

.termin-body p {
  margin: 0;
  line-height: 1.5;
  color: #37332f;
}

/* =====================================
   HINWEISBOX UNTER DEN TERMINEN
===================================== */
.termin-hinweisbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}


.hinweis-item {
  margin-bottom: 0.9rem;
  padding-right: 17.6px;
  padding-left: 17.6px;

}

.hinweis-content strong {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.hinweis-icon {
  font-size: 1rem;
  line-height: 1;
}


.hinweis-item:last-child {
  margin-bottom: 0;
}

.hinweis-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #555;
}



/* ================================
   IMPRESSUM – Text sauber ausrichten
================================ */
.page-info .card-content {
  display: block !important;       /* raus aus flex */
  text-align: left !important;     /* nicht zentriert */
  padding: 22px 28px 30px !important;
  line-height: 1.75;
}

/* Lesebreite (optional, aber sieht direkt hochwertiger aus) */
.page-info .card-content {
  max-width: 100%;
  margin: 0 auto;
}

/* Überschriften bekommen Rhythmus */
.page-info .card-content h2 {
  margin: 26px 0 12px;
}

.page-info .card-content h2:first-child {
  margin-top: 0;
}



/* ================================
   HINWEIS-TEXT (bleibt wie er ist)
================================ */
.hinweis-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #555;
}
}


/* =====================================
   MOBILE
===================================== */
@media (max-width: 768px) {
  .termin-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .termin-hinweisbox {
    grid-template-columns: 1fr;
	gap: 1px;
  }
}


/* Subtile Animation */
@keyframes reaction-pop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.18); }
    100% { transform: scale(1.04); }
}

/* =================================================
   MOBILE – FINAL CLEAN VERSION
   Gültig bis 770px
================================================= */
@media (max-width: 770px) {

  /* ================= GLOBAL ================= */
  body {
    margin: 8px 0;
    font-size: 15px;
  }

  .container {
    width: 100%;
    padding: 0 12px;
  }

  .page-wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: 0 0 18px 18px;
	padding-top: 1px;
  }

  /* ================= HEADER ================= */
  .header-flex {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 0;
    overflow: hidden;
	border-radius: 20px;
  }

  .header-logo-box {
padding: 18px 0 0;
  }

  .header-logo-box img {
    width: 95%;
  }

  .header-right {
    padding: 0 16px 16px;
  }

  /* Login */
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .login-input,
  .login-btn,
  .logout-btn {
    width: 100%;
  }

  /* ================= MENU ================= */
  .menu-wrapper {
    width: 100%;
    max-width: none;
    padding: 12px;
    width: 95%;
  }

  .menu-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .menu-btn {
    font-size: 14px;
    border-radius: 12px;
  }

  /* ================= DIVIDER ================= */
  .divider-box,
  .divider-box_warnung,
  .divider-subline {
    width: 100%;
    max-width: none;
    padding: 12px 16px;
  }

  .divider-box,
  .divider-box_warnung {
    border-radius: 14px 14px 0 0;
  }

  /* ================= CARDS ================= */
  .card,
  .card--event,
  .card--warn,
  .contact-card,
  .termine-wrapper,
  .kalender,
  .kalender-wrapper {
    width: 100%;
    max-width: none;
    border-radius: 18px;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .card-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
  }

  /* ================= FLOAT IMG ================= */
  .float-img {
    float: left;
    display: block;
    max-width: 180px;
  }

  /* ================= KALENDER ================= */
  .kalender-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .kal-tag {
    height: auto;
    min-height: 56px;
  }

  .kal-tag .event-name {
    font-size: 12px;
  }

  /* ================= TERMINE ================= */
  .termin-item {
    flex-direction: column;
    gap: 10px;
  }

  .termin-date {
    width: 100%;
    max-width: none;
    height: auto;
    padding: 10px 8px;
  }

  .termin-name {
    font-size: 17px;
  }

  /* ================= TERMINE INLINE ================= */
  .termine-inline-list li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px 0;
  }

  .pill-date,
  .pill-date-past,
  .pill-time,
  .pill-time-past,
  .pill-text,
  .pill-text-past {
    width: 100%;
    height: auto;
    white-space: normal;
    font-size: 13px;
    padding: 6px 10px;
  }

  /* ================= FOOTER ================= */
  .footer-box {
    width: 95%;
    max-width: none;
    padding: 16px 18px;
    border-radius: 18px;
  }

  /* ================= BADGES ================= */
  .badge-date,
  .badge-warnung,
  .badge-hinweis,
  .badge-name,
  .badge-tipp {
    font-size: 16px;
  }

  /* ================= REACTIONS ================= */
  .reaction-bar {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .reaction {
    padding: 8px 14px;
    font-size: 22px;
    border-radius: 14px;
  }
}


/* =================================================
   MOBILE – GALERIE (≤ 600px)
================================================= */
@media (max-width: 600px) {

  .gallery.mosaic {
    display: block;
    padding-top: 12px;
  }

  .gallery.mosaic a {
    width: 100%;
    margin-bottom: 14px;
  }

  .gallery.mosaic img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
    border-radius: 12px;
    background: #F3ECE4;
  }

}

/* =================================================
   INDEX = NORMALE SEITE (Mobile)
================================================= */
@media (max-width: 770px) {

  /* Index bekommt die gleiche Rhythmik wie Unterseiten */
  .page-start .quick-buttons {
    width: 100%;
    max-width: none;
    margin: 14px 0 18px;        /* exakt wie .menu-wrapper */
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Quick-Buttons sehen aus wie Menü-Buttons */
  .page-start .quick-btn {
    height: 52px;               /* gleiche visuelle Höhe */
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    border-radius: 16px;
    box-shadow: none;           /* kein Kachel-Look */
    background: #373737;
    color: #fff;
  }

  /* Aktiver Quick-Button (falls vorhanden) */
  .page-start .quick-btn.active {
    background: #598b2c;
    font-weight: 600;
  }

  /* Hover/Touch ruhig halten */
  .page-start .quick-btn:hover {
    transform: none;
    box-shadow: none;
  }

  /* Abstand nach den Quick-Buttons wie nach dem Menü */
  .page-start .quick-buttons + .divider-box,
  .page-start .quick-buttons + .divider-box_warnung {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .post-content {
    line-height: 1.65;
  }

  .post-content p {
    margin-bottom: 14px;
	font-size: 14px;
  }
}

/* =====================================
   WIMPEL – CLEAN VERSION (clip-path)
===================================== */

/* =====================================
   POST HEADER
===================================== */

.post-header {
  position: relative;
padding-left: 120px;
}

/* =====================================
   WIMPEL – GRUNDLAGE (erste Definition)
===================================== */







.post-media {
  position: relative;
  isolation: isolate;
  background: #000;       /* verhindert Weiß/Blend-Artefakte */
  z-index: 2;
}

.post-media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.paper-box::after {
  mix-blend-mode: multiply;
  z-index: 0;
}

.paper-box > * {
  position: relative;
  z-index: 1;
}

.post-media {
  mix-blend-mode: normal;
}

.video-consent {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-consent iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.video-overlay button {
  background: #5F8B4C;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}

.video-consent-link {
  color: #8fbf6a;                 /* ruhiges Grün, nicht Button-Farbe */
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  opacity: 0.85;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.video-consent-link:hover {
  opacity: 1;
  color: #a6d884;
}

.countdown {
font-size: 0.75em;
  color: #6b8f5a;
  background: rgba(107, 143, 90, 0.12);
  padding: 2px 8px;
  border-radius: 8px;
  white-space: nowrap;
	font-weight: 600;
}

.video-consent-icon {
  width: 280px;
  height: auto;
  opacity: 0.9;
  margin-bottom: 4px;
}

@media (max-width: 600px) {

  .countdown {
    font-size: 0.68em;        /* etwas feiner */
    padding: 2px 6px;        /* weniger optische Masse */
    border-radius: 6px;
    opacity: 0.9;            /* leicht zurücknehmen */
  }

  
}

@media (max-width: 600px) {
  .video-consent-icon {
    display: none;
  }
}

@media (max-width: 600px) {

  .countdown {
    display: inline-block;
    font-size: 0.68em;
    padding: 3px 8px;
    border-radius: 6px;
    opacity: 0.9;

    /* WICHTIG */
    max-width: 100%;
    white-space: normal;
    margin-top: 6px;
  }

  /* falls der Countdown im Header sitzt */
  .post-header .countdown {
    display: block;
    width: fit-content;
  }
}
@media (max-width: 600px) {
  .post-header .countdown {
    margin-left: auto;
    margin-right: 0;
	  margin-top: 0;
  }
}


/* ================================
   EINZELBILD (Beitragsbild)
================================ */
.einzelbild {
max-width: 100%;
  margin: 24px auto;
  background: #fff;
  border-radius: 14px;
}

.einzelbild img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.einzelbildohneAbstand {
max-width: 100%;
  margin: 0px auto;
  background: #fff;
  border-radius: 14px;
}

.einzelbildohneAbstand img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ================================
   CALLY – TERMIN KALENDER (BASIS)
================================ */

.cally {
  max-width: 900px;
  margin: 0 auto;
	padding-top: 1px;
padding-right: 16px;
padding-bottom: 24px;
padding-left: 16px;
}

.cally-header {
  margin-bottom: 24px;
}

.cally-header h1 {
  margin: 0;
  font-size: 1.6rem;
}

.cally-header p {
  margin: 4px 0 0;
  color: #6f6a63;
}

/* ================================
   LISTE & ITEM
================================ */

.cally-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cally-item {
  display: flex;
  gap: 16px;
  background: #f4efe9;
  border-radius: 16px;
  padding: 6px;
  align-items: center;
  position: relative;
}

/* VERGANGENE TERMINE */
.cally-past {
  opacity: 0.55;
  filter: grayscale(1);
}

/* ================================
   INHALT
================================ */

.cally-content h3 {
  margin: 0;
font-size: 15px;
}

.cally-meta {
  margin: 4px 0;
  font-size: 0.85rem;
  color: #6b6b6b;
}

.cally-desc {
  margin: 0;
font-size: 14px;
  color: #373737;
}

/* ================================
   BADGES (DATUM + ZEIT – GEMEINSAM)
================================ */

.cally-badges {
  display: inline-flex;
  align-items: stretch;
  gap: 4px;
}

/* DATUM */
.cally-date {
  width: 72px;
  height: 72px;
  background: #5f8b4c;
  color: #ffffff;
  border-radius: 14px 0 0 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.1;
  text-align: center;
}

.cally-date .day {
  font-size: 1.4rem;
  font-weight: 800;
}

.cally-date .month {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.cally-date .year {
  font-size: 0.65rem;
  opacity: 0.85;
}

/* ZEIT */
.cally-time {
  width: 72px;
  height: 72px;
  background: #4a5560;
  color: #ffffff;
  border-radius: 0 14px 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ================================
   MOBILE (überschreibt bewusst)
================================ */

@media (max-width: 600px) {

  .cally-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cally-badges {
    width: 100%;
  }

  .cally-date {
    width: auto;
    height: 56px;
    flex-direction: row;
    gap: 8px;
  }

  .cally-date span {
    display: inline-block;
  }

  .cally-time {
    width: 72px;
    height: 56px;
  }
}

/* ================================
   VARIANTE: TIMELINE
   (nur mit .cally--timeline)
================================ */

.cally--timeline .cally-list {
  position: relative;
  padding-left: 24px;
}

.cally--timeline .cally-list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d6d0c8;
}

.cally--timeline .cally-item::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #5f8b4c;
  border-radius: 50%;
}

/* Desktop: Timeline entschärfen */
.cally--timeline .cally-list {
  padding-left: 0;
}

.cally--timeline .cally-item {
  border-left: 1px solid rgba(95,139,76,0.25);
	  border-right: 1px solid rgba(95,139,76,0.25);
	  border-top: 1px solid rgba(95,139,76,0.25);
	  border-bottom: 1px solid rgba(95,139,76,0.25);
}

.cally--timeline .cally-list::before,
.cally--timeline .cally-item::before {
  display: none;
}

.cally-year {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1px 0 22px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #373737;
}

.cally-year::before,
.cally-year::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.15);
}

@media (max-width: 600px) {

  /* Karte stapeln */
  .cally-item {
    flex-direction: column;
    align-items: stretch;
  }

  /* Badges als Kopfzeile */
  .cally-badges {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 8px;
  }

  /* Datum flacher & horizontal */
  .cally-date {
    width: auto;
    height: 48px;
    padding: 0 12px;
    flex-direction: row;
    gap: 6px;
    border-radius: 12px 0 0 12px;
  }

  /* Uhrzeit angepasst */
  .cally-time {
    width: auto;
    height: 48px;
    padding: 0 12px;
    border-radius: 0 12px 12px 0;
  }

  /* Text bekommt Luft */
  .cally-content {
    padding-top: 4px;
  }

  /* Timeline auf Mobile AUS */
  .cally--timeline .cally-list::before,
  .cally--timeline .cally-item::before {
    display: none;
  }

  .cally--timeline .cally-list {
    padding-left: 0;
  }
}

@media (max-width: 600px) {

  /* Mehr Abstand zwischen Terminen */
  .cally-list {
    gap: 20px;
  }

  /* Karte bekommt mehr Luft */
  .cally-item {
    padding: 18px;
	  gap: 0px;
  }

  /* Badge-Kopf deutlich absetzen */
  .cally-badges {
    margin-bottom: 12px;
  }

  /* Titel bekommt Raum nach oben */
  .cally-content h3 {
    margin-top: 4px;
    margin-bottom: 6px;
  }

  /* Text luftiger */
  .cally-desc {
    line-height: 1.5;
    margin-top: 4px;
  }
}


.cally-date,
.cally-time {
  backdrop-filter: blur(6px);
  background: rgba(95,139,76,0.85);
}

.cally-time {
  background: rgba(63,74,84,0.85);
}

/* =========================================
   FLOAT IMAGE – 200px
========================================= */

.img-floati-left2 {
  float: left;
  height: 300px;
  width: auto;
  margin: 0 12px 6px 0;
  filter: opacity(88%);
}

.update-headline {
  position: relative;
  padding-top: 28px;
}

.update-headline::before {
  content: "Update vom 28.01.2026";
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 14px;
  background: #f95738;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
}

.update-headline2 {
  position: relative;
  padding-top: 28px;
}

.update-headline2::before {
  content: "Letzte Informationen";
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 14px;
  background: #f95738;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
}

.Aufzaehlung--custom {
  list-style: none;          /* Standard-Bullets aus */
  padding-left: 0;
  margin: 12px 0;
  text-align: left;
}

.Aufzaehlung--custom li {
  position: relative;
  padding-left: 1.4em;       /* Platz für den Bullet */
  margin: 10px 0;
  line-height: 1.45;
}

.Aufzaehlung--custom li::before {
  content: "•";              /* z.B. "✓" oder "👉" */
  position: absolute;
  left: 0;
  top: 0.05em;
  font-weight: 700;
  color: #5F8B4C;            /* dein Grün */
}

.Aufzaehlung--custom li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;          /* vertikale Ausrichtung */
  width: 8px;
  height: 8px;
  background: #5F8B4C;  /* dein Grün */
  border-radius: 2px;   /* 0 = hartes Quadrat, 2px = leicht weich */
}

.title-key {
font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0;
}


.maintenance-admin-hint {
  max-width: 900px;
  margin: 12px auto;
  background: #fff3cd;
  color: #664d03;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.maintenance-admin-hint a {
  color: #664d03;
  font-weight: 600;
  text-decoration: underline;
}

/* ================================================
   TEASER GRID – VARIANTE A (MAGAZIN-KACHEL)
================================================ */

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
}

/* No-Image-Karten */
.post-teaser-card--noimage {
  min-height: 460px;
}

/* ================================================
   HEADER – Titel oben, Meta darunter
================================================ */

.post-teaser-head {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 78px;
  padding: 12px 12px 10px;
  border-bottom: 1px solid #ececec;
}

/* Titelbereich */
.post-teaser-titlebox {
  min-width: 0;
  display: block;
}

.post-teaser-title {
  margin: 0 0 4px;
  color: #1f1f1f;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 700;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta */
.post-teaser-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  color: #767676;
  font-size: 0.74rem;
  line-height: 1.15;
  letter-spacing: 0.03em;
}

/* ================================================
   BILD / PLATZHALTER
================================================ */

.post-teaser-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.post-teaser-image img {
  display: block;
  width: 95%;
  max-width: 95%;
  height: 205px;
  object-fit: cover;
  margin: 0 auto;
}

.post-teaser-image--placeholder {
  width: 100%;
  height: 205px;
  background: #efefef;
}

/* ================================================
   TEASERTEXT
================================================ */

.post-teaser-content {
  position: relative;
  overflow: hidden;   /* JS schneidet per inline max-height */
  min-height: 40px;   /* fallback */
  padding: 14px 16px 6px;
  color: #2f2f2f;
}

/* No-Image: finaler Stand */
.post-teaser-card--noimage .post-teaser-content {
  padding: 14px 16px 6px;
}

/* Alter p-Teaser (falls noch genutzt) */
.post-teaser-content p {
  margin: 0;
  text-align: left;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-teaser-card--noimage .post-teaser-content p {
  -webkit-line-clamp: 14;
  line-height: 1.4;
}

/* Neuer universeller Teaser-Text */
.post-teaser-text {
  margin: 0;
  text-align: left;
  font-size: 14px;
  color: #2b2b2b;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Grundwert ohne Bild (wird unten nach Typ übersteuert) */
.post-teaser-card--noimage .post-teaser-text {
  -webkit-line-clamp: 10;
  line-height: 1.38;
}

/* HTML-Teaser Links */
.post-teaser-text--html a {
  color: #598b2c;
  font-weight: 700;
  text-decoration: none;
}

.post-teaser-text--html br {
  line-height: 1.5;
}



/* Textmenge final (aktueller Stand) */
.post-teaser-content--plain .post-teaser-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  line-height: 1.38;
}

.post-teaser-content--html .post-teaser-text--html {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  line-height: 1.42;
}

.post-teaser-card--noimage .post-teaser-content--plain .post-teaser-text {
  -webkit-line-clamp: 5;
}

.post-teaser-card--noimage .post-teaser-content--html .post-teaser-text--html {
  -webkit-line-clamp: 14;
}

/* ================================================
   FOOTER – Reactions links / Weiterlesen rechts
================================================ */

.post-teaser-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 14px;
}

.post-teaser-reactions {
  min-width: 0;
  display: flex;
  align-items: center;
}

.post-teaser-footer .btn-readmore {
  margin-left: auto;
  margin-bottom: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1;
}

.post-teaser-footer .btn-readmore:hover {
  opacity: 0.95;
}

/* ================================================
   COMPACT REACTIONS IM TEASER
================================================ */

.post-teaser-reactions .reactions-box--compact,
.post-teaser-reactions .reactions--compact {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.post-teaser-reactions .reactions-box--compact .reactions-title,
.post-teaser-reactions .reactions-box--compact .reactions-head,
.post-teaser-reactions .reactions-box--compact .reaction-label,
.post-teaser-reactions .reactions-box--compact .reaction-text,
.post-teaser-reactions .reactions--compact .reactions-title,
.post-teaser-reactions .reactions--compact .reactions-head,
.post-teaser-reactions .reactions--compact .reaction-label,
.post-teaser-reactions .reactions--compact .reaction-text {
  display: none;
}

.post-teaser-reactions .reactions-box--compact .reaction-list,
.post-teaser-reactions .reactions-box--compact .reactions-list,
.post-teaser-reactions .reactions-box--compact .reactions-row,
.post-teaser-reactions .reactions--compact .reaction-list,
.post-teaser-reactions .reactions--compact .reactions-list,
.post-teaser-reactions .reactions--compact .reactions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.post-teaser-reactions .reactions-box--compact button,
.post-teaser-reactions .reactions-box--compact .reaction-btn,
.post-teaser-reactions .reactions--compact button,
.post-teaser-reactions .reactions--compact .reaction-btn {
  padding: 4px 7px;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1;
  min-height: auto;
}

/* ================================================
   TITEL-LINK IM TEASER
================================================ */

.post-teaser-title-link {
  color: inherit;
  text-decoration: none;
  display: inline;
  transition: color 0.12s ease, opacity 0.12s ease;
}

.post-teaser-title-link:hover {
  color: inherit;
  text-decoration: none;
}

.post-teaser-title-link:focus-visible {
  outline: 2px solid rgba(89, 139, 44, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ================================================
   ZURÜCK-LINK AUF DETAILSEITE (finaler Stand)
================================================ */

.post-backlink-wrap {
  margin: 10px 0 16px;
}

.post-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  background: #eef5e9;
  border: 1px solid #cfe0c4;
  transition: transform 0.12s ease, background-color 0.12s ease, border-color 0.12s ease;
}

.post-backlink:hover {
  background: #e7f0e1;
  border-color: #bfd4b2;
  text-decoration: none;
}
	
	
/* ================================================
   TEASER GRID – VARIANTE A (MAGAZIN-KACHEL)
================================================ */

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
}

/* Karte */
.post-teaser-card {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  background: #f7f7f7;
border: 1px solid #fff;
  border-radius: 16px;
  overflow: hidden;
	box-shadow: 0 4px 4px rgb(41, 41, 41);
}

/* No-Image-Karten */
.post-teaser-card--noimage {
  min-height: 460px;
}

/* ================================================
   HEADER – Titel oben, Meta darunter
================================================ */

.post-teaser-head {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 78px;
  padding: 12px 12px 10px;
  border-bottom: 1px solid #ececec;

}


/* ================================================
   BILD / PLATZHALTER
================================================ */

.post-teaser-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
	margin-top: 5px;
}

.post-teaser-image img {
  display: block;
  width: 95%;
  max-width: 95%;
  height: 205px;
  object-fit: cover;
  margin: 0 auto;
}

.post-teaser-image--placeholder {
  width: 100%;
  height: 205px;
}

/* ================================================
   TEASERTEXT
================================================ */

.post-teaser-content {
  position: relative;
  overflow: hidden;   /* JS schneidet per inline max-height */
  min-height: 40px;   /* fallback */
  padding: 14px 16px 6px;
  color: #2f2f2f;
}

/* No-Image: finaler Stand */
.post-teaser-card--noimage .post-teaser-content {
  padding: 14px 16px 6px;
	padding-top: 5px;
}

/* Alter p-Teaser (falls noch genutzt) */
.post-teaser-content p {
  margin: 0;
  text-align: left;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-teaser-card--noimage .post-teaser-content p {
  -webkit-line-clamp: 14;
  line-height: 1.4;
}

/* Neuer universeller Teaser-Text */
.post-teaser-text {
  margin: 0;
  text-align: left;
  font-size: 14px;
  color: #2b2b2b;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Grundwert ohne Bild (wird unten nach Typ übersteuert) */
.post-teaser-card--noimage .post-teaser-text {
  -webkit-line-clamp: 12;
  line-height: 1.38;
}

/* HTML-Teaser Links */
.post-teaser-text--html a {
  color: #598b2c;
  font-weight: 700;
  text-decoration: none;
}

.post-teaser-text--html br {
  line-height: 1.5;
}

/* Fade (Standard) */
.post-teaser-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(247,247,247,0) 0%,
    rgba(247,247,247,0.86) 60%,
    rgba(247,247,247,1) 100%
  );
}

/* HTML-Teaser: Fade beginnt später */
.post-teaser-content--html::after {
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(247,247,247,0) 0%,
    rgba(247,247,247,0.90) 78%,
    rgba(247,247,247,1) 100%
  );
}

/* Textmenge final (aktueller Stand) */
.post-teaser-content--plain .post-teaser-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  line-height: 1.38;
}

.post-teaser-content--html .post-teaser-text--html {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  line-height: 1.42;
}

.post-teaser-card--noimage .post-teaser-content--plain .post-teaser-text {
  -webkit-line-clamp: 5;
}

.post-teaser-card--noimage .post-teaser-content--html .post-teaser-text--html {
  -webkit-line-clamp: 12;
}

/* ================================================
   FOOTER – Reactions links / Weiterlesen rechts
================================================ */

.post-teaser-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 14px;
}

.post-teaser-reactions {
  min-width: 0;
  display: flex;
  align-items: center;
}

.post-teaser-footer .btn-readmore {
  margin-left: auto;
  margin-bottom: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1;
}

.post-teaser-footer .btn-readmore:hover {
  opacity: 0.95;
}

/* ================================================
   COMPACT REACTIONS IM TEASER
================================================ */

.post-teaser-reactions .reactions-box--compact,
.post-teaser-reactions .reactions--compact {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.post-teaser-reactions .reactions-box--compact .reactions-title,
.post-teaser-reactions .reactions-box--compact .reactions-head,
.post-teaser-reactions .reactions-box--compact .reaction-label,
.post-teaser-reactions .reactions-box--compact .reaction-text,
.post-teaser-reactions .reactions--compact .reactions-title,
.post-teaser-reactions .reactions--compact .reactions-head,
.post-teaser-reactions .reactions--compact .reaction-label,
.post-teaser-reactions .reactions--compact .reaction-text {
  display: none;
}

.post-teaser-reactions .reactions-box--compact .reaction-list,
.post-teaser-reactions .reactions-box--compact .reactions-list,
.post-teaser-reactions .reactions-box--compact .reactions-row,
.post-teaser-reactions .reactions--compact .reaction-list,
.post-teaser-reactions .reactions--compact .reactions-list,
.post-teaser-reactions .reactions--compact .reactions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.post-teaser-reactions .reactions-box--compact button,
.post-teaser-reactions .reactions-box--compact .reaction-btn,
.post-teaser-reactions .reactions--compact button,
.post-teaser-reactions .reactions--compact .reaction-btn {
  padding: 4px 7px;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1;
  min-height: auto;
}

/* ================================================
   TITEL-LINK IM TEASER
================================================ */

.post-teaser-title-link {
  color: inherit;
  text-decoration: none;
  display: inline;
  transition: color 0.12s ease, opacity 0.12s ease;
}

.post-teaser-title-link:hover {
  color: inherit;
  text-decoration: none;
}

.post-teaser-title-link:focus-visible {
  outline: 2px solid rgba(89, 139, 44, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ================================================
   ZURÜCK-LINK AUF DETAILSEITE (finaler Stand)
================================================ */

.post-backlink-wrap {
  margin: 10px 0 16px;
}

.post-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  background: #eef5e9;
  border: 1px solid #cfe0c4;
  transition: transform 0.12s ease, background-color 0.12s ease, border-color 0.12s ease;
}

.post-backlink:hover {
  background: #e7f0e1;
  border-color: #bfd4b2;
  text-decoration: none;
}

/* ================================================
   RESPONSIVE
================================================ */

@media (max-width: 850px) {
  .post-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .post-teaser-card {
    min-height: 420px;
  }

  .post-teaser-image img {
    height: 200px;
  }
}

@media (max-width: 420px) {
  .post-teaser-footer {
    flex-wrap: wrap;
  }

  .post-teaser-footer .btn-readmore {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}	
	

.post-backlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 9px 14px;
  border-radius: 10px;

  background: #f5f3f0;
  border: 1px solid #ddd7cf;
  color: #2f2c2a;
  text-decoration: none;

  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.01em;

  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.12s ease;
}

.post-backlink:hover {
  background: #f0ede8;
  border-color: #cfc6bb;
  color: #1f1f1f;
  text-decoration: none;
}

.post-backlink:active {
  transform: translateY(1px);
}

.post-backlink:focus-visible {
  outline: 2px solid rgba(89, 139, 44, 0.35);
  outline-offset: 2px;
}
	
	
	
	
	
	
	
	
	
	
/* HEADER – Editorial Strip */
.post-teaser-head {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px 10px;
  border-bottom: 1px solid #e7e2db;
  background: linear-gradient(180deg, #f8f7f5 0%, #f3f1ee 100%);
}

.post-teaser-titlebox {
  min-width: 0;
  padding-top: 1px;
}

.post-teaser-title {
  margin: 0 0 5px;
  font-size: 1.02rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #222;
  text-align: left;
}

.post-teaser-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  color: #7a746d;
  line-height: 1.1;
  padding-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.08);
  width: 100%;
}

.meta-label {
  opacity: 0.9;
}

.meta-date {
  font-weight: 600;
  color: #6a655f;
}	
	
	
.teaser-badge {
  width: 62px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.1),
    0 2px 6px rgba(0,0,0,0.08);
}
.teaser-badge-day {
  padding-top: 9px;
}
.teaser-badge-month {
  letter-spacing: 0.1em;
}	
	
	
	
	
	
	
	
	
	
	
.post-teaser-head {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px 10px;
  border-bottom: 1px solid #ececec;
  background: #f7f7f7;
}



.post-teaser-titlebox {
  padding-top: 0;
}

.post-teaser-title {
  margin: 0 0 4px;
  font-size: 1.03rem;
  line-height: 1.14;
  font-weight: 800;
  text-align: left;
}

.post-teaser-meta {
  font-size: 0.72rem;
  color: #7a746d;
  line-height: 1.1;
}	
	
	

.post-teaser-image--placeholder {
  display: block;
  width: 100%;
  height: 205px;              /* gleiche Höhe wie Bild */
  background: #ececec;
  border-bottom: 1px solid #ececec;
}	

	
	
	
.post-teaser-head {
  position: relative;
  border-bottom: none;
}

.post-teaser-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 10px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.04) 45%,
    rgba(0,0,0,0.00) 100%
  );
}
	
	
	
	
.post-teaser-content--no-fade {
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.post-teaser-content--no-fade::after {
  display: none !important;
  content: none !important;
}

.post-teaser-content--no-fade .post-teaser-text,
.post-teaser-content--no-fade .post-teaser-text--html {
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  display: block !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
	margin-bottom: 10px;
}	
	

/* =========================================
   WIMPY BADGE (CSS-only, modern, ohne PNG)
   HTML:
   <div class="Wimpy">
     <span class="Wimpy-day">31</span>
     <span class="Wimpy-month">JAN</span>
   </div>
========================================= 



  padding: 0;
}



  transform: translateY(1px);
}


.Wimpy-month{
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  transform: translateY(-1px);
}

.Wimpy--tape::before{
  background:
    radial-gradient(80% 70% at 30% 25%, rgba(255,255,255,0.22), transparent 55%),
    radial-gradient(70% 60% at 80% 70%, rgba(0,0,0,0.18), transparent 60%),
    linear-gradient(180deg, #5c8b47 0%, #4f7d3d 55%, #466f36 100%);
}

.Wimpy--tape .Wimpy-tape{
  content:"";
  position:absolute;
  right:-10px;
  top:-10px;
  width:40px;
  height:22px;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(0,0,0,0.08);
  transform: rotate(18deg);
  border-radius: 6px;
  z-index:4;
  box-shadow: 0 6px 10px rgba(0,0,0,0.12);
}


*/
/* 
.menu-btn.active{
  color:#fff !important;
  border-radius:12px !important;
  transform:none !important;

  background:
    radial-gradient(80% 70% at 30% 25%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(70% 60% at 80% 70%, rgba(0,0,0,0.14), transparent 60%),
    linear-gradient(180deg, #5c8b47 0%, #4f7d3d 55%, #466f36 100%) !important;

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.06),
    0 10px 18px rgba(0,0,0,0.10),
    0 2px 0 rgba(255,255,255,0.45) inset,
    0 -1px 0 rgba(0,0,0,0.22) inset;
}

.menu-btn.active:hover{
  transform:none !important;

  background:
    radial-gradient(80% 70% at 30% 25%, rgba(255,255,255,0.22), transparent 55%),
    radial-gradient(70% 60% at 80% 70%, rgba(0,0,0,0.12), transparent 60%),
    linear-gradient(180deg, #629652 0%, #548a44 55%, #4a7a3c 100%) !important;

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.06),
    0 12px 22px rgba(0,0,0,0.12),
    0 2px 0 rgba(255,255,255,0.48) inset,
    0 -1px 0 rgba(0,0,0,0.20) inset;
}

.menu-btn{
  padding: 10px 0;
  border-radius: 12px;


  background:
    radial-gradient(80% 70% at 30% 25%, rgba(255,255,255,0.06), transparent 55%),
    radial-gradient(70% 60% at 80% 70%, rgba(0,0,0,0.28), transparent 60%),
    linear-gradient(180deg, #3a3a3a 0%, #2f2f2f 55%, #252525 100%);

  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1;

  font-family: 'Raleway';

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.18),
    0 8px 14px rgba(0,0,0,0.18),
    0 2px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.40) inset;

  transition: background 0.2s ease, color 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}


.menu-btn:hover{
  background:
    radial-gradient(80% 70% at 30% 25%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(70% 60% at 80% 70%, rgba(0,0,0,0.24), transparent 60%),
    linear-gradient(180deg, #434343 0%, #363636 55%, #2b2b2b 100%);
  color: #ffffff;
}
 */





/* =========================================
   Einzelpost-Header: Badge + Headline sauber ausrichten
========================================= */

.post-header{
  display: flex;
  align-items: flex-start;     /* oben bündig */
  gap: 14px;
}

/* Badge soll nicht schrumpfen */
.post-header .Wimpy{
  flex: 0 0 auto;
  margin-top: 2px;             /* feines optisches Align zum Titel */
}

/* Textblock */
.post-headline{
  flex: 1;
  min-width: 0;
}

/* Titel/Meta: unnötige Abstände killen */
.post-title{
  margin: 0;
  line-height: 1.08;
}

.post-meta--inline{
  margin-top: 6px;
}

/* Wenn dein Header insgesamt zu hoch wirkt */
.post-header.post-header--accent{
  padding-top: 14px;           /* ggf. anpassen */
  padding-bottom: 14px;        /* ggf. anpassen */
}

/* Mobile: wenn’s eng wird, bleibt’s trotzdem stabil */
@media (max-width: 520px){
  .post-header{
    gap: 12px;
  }
  .post-header .Wimpy{
    width: 64px;
    min-width: 64px;
  }
}

/* Header: Badge + Text weiter nach links (weniger Innenabstand) */
.post-header.post-header--accent{
padding-left: 1px;
  padding-right: 18px;
}

/* Falls der ganze Post-Container links/rechts zu viel Padding hat */
.post{
  padding-left: 16px;   /* ggf. 12px */
  padding-right: 16px;
}

/* Badge selbst: kein extra Abstand */
.post-header .Wimpy{
  margin-left: 0;
}

/* Wenn die Überschrift noch einen Default-Left-Margin hätte */
.post-headline,
.post-title{
  margin-left: 0;
}

/* Badge soll NIE mitschwimmen -> immer oben links im Header */
.post-header{
  display: flex;
  align-items: flex-start !important; /* wichtig: nicht center */
}

/* Badge immer gleiche Startposition */
.post-header .Wimpy{
  align-self: flex-start;
  margin-top: 2px;   /* ggf. 0–6px nach Geschmack */
}

/* Textblock ebenfalls oben starten, ohne eigene Top-Margins */
.post-headline{
  align-self: flex-start;
}

.post-title{
  margin-top: 0;
}



/* =========================================
   FEATURED: ohne linken Balken + "NEU" schön oben rechts in der Ecke
========================================= */

.post-teaser-card.post-teaser-card--featured{
  position: relative !important;
  border: 1px solid rgba(0,0,0,0.10) !important;

  background:
    radial-gradient(120% 90% at 20% 0%, rgba(92,139,71,0.12), transparent 55%),
    radial-gradient(120% 90% at 110% 110%, rgba(0,0,0,0.06), transparent 55%),
    #fff !important;
  box-shadow:
    0 26px 70px rgba(0,0,0,0.18) !important,
    0 2px 0 rgba(255,255,255,0.60) inset !important;
  overflow: hidden; /* für die Ecke */
	box-shadow: 0 4px 4px rgb(41, 41, 41);
}

/* linken Balken deaktivieren */
.post-teaser-card.post-teaser-card--featured::before{
  content: none !important;
}

/* "NEU" als Corner-Ribbon oben rechts
.post-teaser-card.post-teaser-card--featured::after{
  content: "NEU";
  position: absolute;
  top: 0;
  right: 0;

  width: 86px;
  height: 86px;

  display: grid;
  place-items: start end;

  padding: 10px 10px 0 0;

  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff; */

  /* Dreieck / Ecke */
  background:
    linear-gradient(135deg, #6aa853 0%, #3f7633 100%);

  /* Schneidet als Ecke */
  clip-path: polygon(100% 0, 0 0, 100% 100%);

  box-shadow: -10px 14px 22px rgba(0,0,0,0.16);
  pointer-events: none;
}

/* Optional: Inhalt oben nicht vom Ribbon "berührt" */
.post-teaser-card.post-teaser-card--featured .post-teaser-head{
  padding-right: 34px;
}

/* Hover: minimal stärker */
.post-teaser-card.post-teaser-card--featured:hover{
  box-shadow:
    0 30px 86px rgba(0,0,0,0.22) !important,
    0 2px 0 rgba(255,255,255,0.60) inset !important;
}


/* "NEU" Ecke kleiner */
.post-teaser-card.post-teaser-card--featured::after{
  width: 64px;   /* war 86px */
  height: 64px;  /* war 86px */
  padding: 8px 8px 0 0;

  font-size: 0.62rem;
  letter-spacing: 0.11em;

  box-shadow: -8px 12px 18px rgba(0,0,0,0.14);
}

/* Optional: etwas weniger Platz im Head */
.post-teaser-card.post-teaser-card--featured .post-teaser-head{
  padding-right: 26px;
}



.PinnedCard{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
  overflow: hidden;
  margin-bottom: 18px;
	max-width: 900px;
}

.PinnedCard-head{
  padding: 16px 18px 0;
}

.PinnedCard-h{
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 850;
}

.PinnedCard-link{
  color: inherit;
  text-decoration: none;
}

.PinnedCard-meta{
  margin-top: 6px;
  font-size: 0.82rem;
  opacity: 0.75;
}

.PinnedCard-media img{
  width: 100%;
  display: block;
}

.PinnedCard-text{
  padding: 14px 18px 18px;
  line-height: 1.55;
}

.PinnedCard-footer{
  padding: 0 18px 18px;
  display: flex;
  justify-content: flex-end;
}

.PinnedCard-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #2f2f2f;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

/* =========================================
   PINNED_ Look für die volle Breite Card
   (bleibt Card-like, wirkt aber eher "Hinweis" als News)
========================================= */

.PINNED_card{
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(92,139,71,0.10), transparent 55%),
    #fff;
	width: 900px;
	  margin-bottom: 18px;  /* z.B. 18–28px */
}

/* Header etwas kompakter, damit’s nicht wie ein riesiger Artikel wirkt */
.PINNED_card .post-teaser-head{
  padding-bottom: 10px;
}



/* Bild: nicht so hoch (damit es mehr "Banner" wirkt) */
.PINNED_card .post-teaser-image{
  max-height: 320px;
  overflow: hidden;
  border-radius: 14px;
  margin: 8px 16px 0;
}

/* Bild bleibt schön */
.PINNED_card .post-teaser-image img{
  width: 100%;
  height: auto;
  display: block;
}

/* Text etwas mehr Luft, wirkt wie Info-Box */
.PINNED_card .post-teaser-content{
  padding-top: 14px;
}

/* Mobile: Banner noch flacher */
@media (max-width: 720px){
  .PINNED_card .post-teaser-image{
    max-height: 240px;
    margin: 8px 12px 0;
  }
}

.post-teaser-head.post-teaser-head--nobadge{
  grid-template-columns: 1fr !important;
  column-gap: 0 !important;
}


/* Zeitungs-Menü: Rubrikenzeile */
.np-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;

  padding:10px 0;
  margin:10px 0 18px;

  /* Zeitungslinien */
  border-top:3px double rgba(0,0,0,.70);
  border-bottom:3px double rgba(0,0,0,.70);

  /* wirkt wie Druck auf Papier */
  background:transparent;
}

/* Links wie Rubriken */
.np-nav__item{
  text-decoration:none;
  color:#111;

  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;

  padding:6px 2px;
  line-height:1;
}

/* Hover: klassische Zeitungs-Unterstreichung */
.np-nav__item:hover{
  text-decoration:underline;
  text-underline-offset:4px;
  text-decoration-thickness:2px;
}

/* Separatorpunkt */
.np-nav__sep{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight:900;
  color:rgba(0,0,0,.55);
  transform:translateY(-1px);
}

/* Active: “Rubrik ist gewählt” – nicht Button, eher Druckmarke */
.np-nav__item.is-active{
  position:relative;
}

/* feiner Marker wie Textmarker/Redaktionsstrich */
.np-nav__item.is-active::after{
  content:"";
  position:absolute;
  left:-2px;
  right:-2px;
  bottom:-8px;
  height:3px;
  border-radius:999px;
  background:#111;
  opacity:.85;
}

/* Optional: wenn du den Active-Marker grün willst, nimm das statt #111:
   background:#5d8f49; opacity:1;
*/

/* Mobile: etwas weniger Tracking */
@media (max-width:560px){
  .np-nav{ gap:12px; }
  .np-nav__item{ letter-spacing:.09em; }
}






/* ================================================
   RESPONSIVE
================================================ */

@media (max-width: 850px) {
  .post-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .post-teaser-card {
    min-height: 420px;
  }

  .post-teaser-image img {
    height: 200px;
  }
}

@media (max-width: 420px) {
  .post-teaser-footer {
    flex-wrap: wrap;
  }

  .post-teaser-footer .btn-readmore {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}










.Wimpy{
  position: relative;
  width: 68px;
  min-width: 68px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  justify-items: center;

  box-shadow:
    0 8px 16px rgba(0,0,0,0.10),
    0 1px 0 rgba(255,255,255,0.28) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset;

  border: 1px solid rgba(70, 58, 44, 0.16);
}


/* feine matte Papierstruktur */
.Wimpy::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.035) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 48%, rgba(0,0,0,0.04) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 22%, rgba(255,255,255,0.03) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 74%, rgba(0,0,0,0.035) 0 1px, transparent 2px);
  background-size: 13px 13px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

/* Trenner */
.Wimpy-split{
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.20);
  box-shadow: 0 1px 0 rgba(0,0,0,0.14);
  z-index: 2;
}

/* Inhalte */
.Wimpy-day,
.Wimpy-month{
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1;
  color: #fff;
  user-select: none;
  padding: 0;
}

.Wimpy-day{
  font-size: 1.08rem;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(0,0,0,0.18);
  transform: translateY(1px);
}

.Wimpy-month{
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.90);
  text-transform: uppercase;
  transform: translateY(-1px);
}

/* Tape optional */
.Wimpy--tape .Wimpy-tape{
  content: "";
  position: absolute;
  right: -10px;
  top: -10px;
  width: 40px;
  height: 22px;
  background: rgba(245,239,225,0.48);
  border: 1px solid rgba(70,58,44,0.10);
  transform: rotate(18deg);
  border-radius: 6px;
  z-index: 4;
  box-shadow: 0 5px 10px rgba(0,0,0,0.10);
}

.Wimpy::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(80% 70% at 30% 25%, rgba(255,255,255,0.16), transparent 55%),
    radial-gradient(70% 60% at 80% 70%, rgba(0,0,0,0.16), transparent 60%),
    linear-gradient(180deg, #6f9361 0%, #557a49 55%, #3f5f36 100%);
  z-index:0;
}













/* ================================================
   Kalender und Termine
================================================ */

/* =========================================================
   UNDER MENU TERMINE
========================================================= */

.UnderMenuTermin{
  margin: 0 auto 14px;
  padding: 12px;
  width: 95%;
  max-width: 95%;
  box-sizing: border-box;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(36,36,36,0.92);
  border-radius: 20px;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.UnderMenuTermin-head{
  margin-bottom: 0;
  padding: 4px 0 8px;
  text-align: center;
}

.UnderMenuTermin-title{
margin: 0 0 3px 15px;
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  text-align: left;
  font-family: Bungee-Regular;
}

.UnderMenuTermin-subtitle{
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.3;
  color: rgba(255,255,255,0.72);
}


/* =========================================================
   SEKTIONEN
========================================================= */

.UnderMenuTermin-section{
  background: rgba(255,255,255,0.96);
  border-left: 1px solid rgba(0,0,0,0.08);
  border-right: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.UnderMenuTermin-head + .UnderMenuTermin-section{
  border-top: 1px solid rgba(0,0,0,0.08);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.UnderMenuTermin-head + .UnderMenuTermin-section .UnderMenuTermin-sectionTitle{
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.UnderMenuTermin-section:last-of-type{
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.UnderMenuTermin-section + .UnderMenuTermin-section{
  margin-top: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.UnderMenuTermin-section--past{
  background: rgba(246,246,246,0.88);
}

.UnderMenuTermin-sectionTitle{
  margin: 0;
  padding: 9px 14px;
  color: #5c9446;
  background: linear-gradient(180deg, #eef5e8 0%, #dde9d4 100%);
  font-size: 0.85rem;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

.UnderMenuTermin-sectionTitle--past{
  margin: 0;
  padding: 9px 14px;
  background: rgba(90, 90, 90, 0.16);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: #555555;
  font-size: 0.8rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

.UnderMenuTermin-list{
  list-style: none;
  margin: 0;
  padding: 0;
}


/* =========================================================
   ITEMS – BASIS
========================================================= */

.UnderMenuTermin-item{
  display: grid;
  grid-template-columns: 50px 180px minmax(0, 1fr) 230px;
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  min-height: 64px;
}

.UnderMenuTermin-item + .UnderMenuTermin-item{
  border-top: 1px solid rgba(0,0,0,0.09);
}

.UnderMenuTermin-item--past{
  background: rgba(255,255,255,0.39);
}

.UnderMenuTermin-item--past + .UnderMenuTermin-item--past{
  border-top: 1px solid rgba(0,0,0,0.07);
}

.UnderMenuTermin-main{
  min-width: 0;
 display: contents;
}


/* =========================================================
   STANDARD-DATUMSBADGE  
========================================================= */

.UnderMenuTermin-date{
  width: 48px;
  min-width: 48px;
  min-height: 40px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  align-self: start;
  box-shadow:
    0 3px 8px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-date{
  background: linear-gradient(180deg, #6f9e58 0%, #4f7d3d 100%);
}

.UnderMenuTermin-item--past .UnderMenuTermin-date{
  background: linear-gradient(180deg, #969696 0%, #757575 100%);
  box-shadow:
    0 2px 5px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.14);
  filter: saturate(0.55);
}

.UnderMenuTermin-day{
  display: block;
  padding: 5px 2px 1px;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.UnderMenuTermin-day:empty{
  display: none;
}

.UnderMenuTermin-month{
  display: block;
  padding: 3px 3px 5px;
  font-size: 0.5rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(0,0,0,0.12);
  text-transform: uppercase;
  word-break: break-word;
}




/* =========================================================
   TEXTSPALTEN – BASIS
========================================================= */

.UnderMenuTermin-name{
  display: block;
  width: 180px;
  min-width: 0;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.18;
  font-weight: 600;
  color: #2b2b2b;
  text-align: left;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.UnderMenuTermin-item--past .UnderMenuTermin-name{
  color: #666666;
  opacity: 0.6;
  font-size: 0.82rem;
}

.UnderMenuTermin-description{
  display: block;
  width: auto;
  min-width: 0;
  margin: 0;
  padding-right: 5px;
  font-size: 0.81rem;
  line-height: 1.32;
  font-weight: 500;
  color: #7d7d7d;
  text-align: left;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.UnderMenuTermin-item--past .UnderMenuTermin-description{
  color: #8f8f8f;
}


/* =========================================================
   META – BASIS
========================================================= */

.UnderMenuTermin-meta{
  width: 230px;
  min-width: 230px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  align-self: start;
  font-size: 0.84rem;
  line-height: 1.2;
  font-weight: 700;
  color: #6f7b68;
  text-align: left;
}

.UnderMenuTermin-item--past .UnderMenuTermin-meta{
  color: #8b8b8b;
  font-weight: 600;
  margin-top: 0;
  opacity: 0.95;
}

.UnderMenuTermin-time{
  display: block;
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.UnderMenuTermin-place{
  display: block;
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 500;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.UnderMenuTermin-place--withDot{
  position: static;
  padding-left: 14px;
}

.UnderMenuTermin-place--withDot::before{
  content: none;
  display: none;
}


/* =========================================================
   POST-AREA
========================================================= */

.post-area-shell{
  box-sizing: border-box;
  padding: 14px 14px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(36,36,36,0.92);
  border-radius: 20px;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
  max-width: 95%;
}

.post-area-head{
  margin-bottom: 12px;
  text-align: center;
}

.post-area-title{
margin: 0 0 3px 15px;
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  text-align: left;
  font-family: Bungee-Regular;
}


/* =========================================================
   SPLIT-BADGE – NUR FÜR KOMMENDE TERMINE
========================================================= */

.UnderMenuTermin-item--upcoming .UnderMenuTermin-date--split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 132px;
  min-width: 132px;
  height: 72px;
  padding: 6px;
  gap: 3px;
  border-radius: 17px;
  box-sizing: border-box;
  background: #e7e7e7;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.88),
    0 1px 2px rgba(0,0,0,0.08);
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-dateLeft,
.UnderMenuTermin-item--upcoming .UnderMenuTermin-dateRight{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 11px;
  box-sizing: border-box;
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-dateLeft{
  flex-direction: column;
  padding: 6px 5px 5px;
  background: linear-gradient(180deg, #93a974 0%, #7f9662 100%);
  color: #fff;
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-dateRight{
  padding: 6px 4px;
  background: linear-gradient(180deg, #6e7780 0%, #646d75 100%);
  color: #fff;
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-date--split .UnderMenuTermin-day{
  display: block;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-date--split .UnderMenuTermin-month{
  display: block;
  margin: 2px 0 0;
  padding: 0;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-dateYear{
  display: block;
  margin-top: 2px;
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.96;
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-dateTime{
  display: block;
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-dateLabel{
  display: block;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-date--split.UnderMenuTermin-date--labelOnly .UnderMenuTermin-dateLeft{
  justify-content: center;
  gap: 3px;
  padding: 6px 5px;
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-date--split.UnderMenuTermin-date--labelOnly .UnderMenuTermin-dateYear{
  margin-top: 0;
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.UnderMenuTermin-item--upcoming .UnderMenuTermin-date--split.UnderMenuTermin-date--labelOnly .UnderMenuTermin-day,
.UnderMenuTermin-item--upcoming .UnderMenuTermin-date--split.UnderMenuTermin-date--labelOnly .UnderMenuTermin-month{
  display: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px){

  .post-area-shell{
    max-width: 100%;
  }

  .UnderMenuTermin{
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border-radius: 16px;
  }

  .UnderMenuTermin-head{
    text-align: left;
    margin-bottom: 10px;
  }

  .UnderMenuTermin-title{
    font-size: 1rem;
    line-height: 1.15;
  }

  .UnderMenuTermin-sectionTitle{
    padding: 10px 12px;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .UnderMenuTermin-item{
    display: block;
    padding: 12px;
    min-height: 0;
  }

  .UnderMenuTermin-name,
  .UnderMenuTermin-description,
  .UnderMenuTermin-meta,
  .UnderMenuTermin-date,
  .UnderMenuTermin-date--split{
    grid-column: auto;
    grid-row: auto;
  }

  .UnderMenuTermin-date,
  .UnderMenuTermin-date--split{
    display: flow-root;
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    margin: 0 0 8px;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: none;
    overflow: visible;
    position: static;
  }

  .UnderMenuTermin-dateLeft,
  .UnderMenuTermin-dateRight,
  .UnderMenuTermin-dateTime,
  .UnderMenuTermin-dateLabel,
  .UnderMenuTermin-dateYear{
    all: unset;
  }

  .UnderMenuTermin-dateLeft,
  .UnderMenuTermin-dateRight{
    display: inline;
  }

  .UnderMenuTermin-item--upcoming .UnderMenuTermin-date,
  .UnderMenuTermin-item--upcoming .UnderMenuTermin-date--split{
    background: #eef5e9;
    border: 1px solid rgba(95,139,76,0.22);
    color: #4f7d3d;
  }

  .UnderMenuTermin-item--past .UnderMenuTermin-date,
  .UnderMenuTermin-item--past .UnderMenuTermin-date--split{
    background: #777;
    color: #dfdfdf;
  }

  .UnderMenuTermin-day{
    display: inline;
    padding: 0;
    margin: 0;
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
    color: inherit;
  }

  .UnderMenuTermin-month{
    display: inline;
    margin: 0 0 0 4px;
    padding: 0;
    font-size: 0.64rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: none;
    color: inherit;
  }

  .UnderMenuTermin-name,
  .UnderMenuTermin-description,
  .UnderMenuTermin-meta{
    width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    border-left: none;
    border-right: none;
  }

  .UnderMenuTermin-name{
    display: block;
    margin: 0 0 8px;
    font-size: 0.98rem;
    line-height: 1.25;
    font-weight: 700;
  }

  .UnderMenuTermin-description{
    display: block;
    margin: 0 0 10px;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .UnderMenuTermin-meta{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    color: #6d7568;
    text-align: left;
  }

  .UnderMenuTermin-time,
  .UnderMenuTermin-place{
    display: block;
    width: 100%;
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .UnderMenuTermin-time{
    font-weight: 700;
    color: #4f5d48;
  }

  .UnderMenuTermin-place{
    color: #7d8477;
  }

  .UnderMenuTermin-item--past .UnderMenuTermin-name{
    color: #6f6f6f;
  }

  .UnderMenuTermin-item--past .UnderMenuTermin-description{
    color: #8a8a8a;
  }

  .UnderMenuTermin-item--past .UnderMenuTermin-meta{
    color: #919191;
  }
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 641px){

  .UnderMenuTermin-item{
grid-template-columns: 64px 1.6fr 3fr 200px;
    gap: 0;
    align-items: stretch;
  }

  .UnderMenuTermin-date,
  .UnderMenuTermin-date--split{
    align-self: start;
  }

  .UnderMenuTermin-name,
  .UnderMenuTermin-description,
  .UnderMenuTermin-meta{
    position: relative;
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .UnderMenuTermin-name{
    width: auto;
    
    border-right: none;
	  padding-left: 10px;
  }

  .UnderMenuTermin-description{
    width: auto;
    padding: 0 14px;
    border-left: none;
    border-right: none;
  }

  .UnderMenuTermin-meta{
    width: auto;
    padding: 0 0 0 18px;
    border-left: none;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    column-gap: 0;
    align-items: center;
  }

  .UnderMenuTermin-time{
    display: flex;
    align-items: center;
    padding: 0 14px 0 0;
    border-right: none;
    white-space: nowrap;
  }

  .UnderMenuTermin-place{
    display: flex;
    align-items: center;
    padding: 0 0 0 14px;
    border-left: none;
  }

  .UnderMenuTermin-name::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0,0,0,0.08);
  }

  .UnderMenuTermin-description::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0,0,0,0.08);
  }

  .UnderMenuTermin-meta::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(18px + 88px);
    width: 1px;
    background: rgba(0,0,0,0.08);
  }

  .UnderMenuTermin-item--past .UnderMenuTermin-name::after,
  .UnderMenuTermin-item--past .UnderMenuTermin-description::after,
  .UnderMenuTermin-item--past .UnderMenuTermin-meta::before{
    background: rgba(0,0,0,0.06);
  }
}

.title-square{
  display: inline-block;
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
  flex: 0 0 12px;
}

.title-square--green{
  background: #69a95a !important;
}

.title-square--dark{
  background: #4b4550 !important;
}









/* NEU________________________________________________*/



.UnderMenuTermin-pastToggleWrap{
  margin: 8px 0 8px;
    margin-left: 0px;
  margin-left: 20px;
  text-align: left;
}

.UnderMenuTermin-pastToggle[aria-expanded="false"]::after{
  content: " ▾";
}

.UnderMenuTermin-pastToggle[aria-expanded="true"]::after{
  content: " ▴";
}

.UnderMenuTermin-pastContent[hidden]{
  display: none !important;
}

.post-area-shell .post{
  width: 100%;
  max-width: none;
  margin: 0;
}

.post-area-shell .post-backlink-wrap{
  margin: 0 0 16px;
}



.UnderMenuTermin-pastToggle{
  appearance: none;
  border: 1px solid rgba(0,0,0,0.10);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 10px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.1;
  background: rgba(255,255,255,0.55);
  color: rgba(35,35,35,0.78);
  box-shadow: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
	text-transform: uppercase;
}

.UnderMenuTermin-pastToggle:hover{
  background: rgba(255,255,255,0.72);
  color: rgba(20,20,20,0.9);
}

.UnderMenuTermin-pastToggle:active{
  transform: none;
}





.UnderMenuTermin-iconWrap{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 14px 0;
  text-align: left;
}

.UnderMenuTermin-iconImg{
display: block;
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
  flex: 0 0 auto;
  padding-left: 40px;
}










































.weather3{
  margin: 0 auto 14px;
  padding: 8px 10px 10px;
  width: 95%;
  max-width: 95%;
  box-sizing: border-box;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(36,36,36,0.92);
  border-radius: 20px;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
	margin-top: 15px;
}

.weather3-head{
  margin-bottom: 6px;
}

.weather3-title{
margin: 0 0 3px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.08rem;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #f3efe8;
	padding: 4px 0 8px;
}

.weather3-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.weather3-card{
  border-radius: 16px;
  padding: 8px 10px 7px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  min-height: 0;
}

.weather3-day{
  font-size: 0.78rem;
  font-weight: 800;
  color: #2f2c2a;
  margin-bottom: 3px;
  line-height: 1.1;
}

.weather3-icon{
  font-size: 1.18rem;
  line-height: 1;
  margin-bottom: 3px;
}

.weather3-temp{
  font-size: 0.95rem;
  font-weight: 800;
  color: #557a49;
  margin-bottom: 1px;
  line-height: 1.1;
}

.weather3-text{
  font-size: 0.8rem;
  color: #666;
  line-height: 1.12;
}

.weather3-error{
  background: rgba(255,255,255,0.94);
  border-radius: 16px;
  padding: 10px 12px;
  color: #444;
}

.weather3-card--default{
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(246,246,246,0.96));
}

.weather3-card--sunny{
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.55), transparent 45%),
    linear-gradient(180deg, #fff7d8 0%, #f6e7a9 100%);
}

.weather3-card--partly{
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.5), transparent 45%),
    linear-gradient(180deg, #f7f3dc 0%, #dfe7cf 100%);
}

.weather3-card--cloudy{
  background:
    linear-gradient(180deg, #f3f3f3 0%, #dfe3e8 100%);
}

.weather3-card--fog{
  background:
    linear-gradient(180deg, #f1f1f1 0%, #d9dde2 45%, #ececec 100%);
}

.weather3-card--rain{
  background:
    linear-gradient(180deg, #edf3f8 0%, #cedce8 100%);
}

.weather3-card--snow{
  background:
    linear-gradient(180deg, #ffffff 0%, #eaf3fb 100%);
}

.weather3-card--storm{
  background:
    linear-gradient(180deg, #d9dce4 0%, #b9becb 100%);
}

@media (max-width: 640px){

  .weather3{
    padding: 10px 10px 12px;
  }

  .weather3-head{
    margin-bottom: 10px;
    text-align: center;
  }

  .weather3-title{
    text-align: center;
	  margin: 0 0 3px 15px;
  }

  .weather3-list{
    display: grid;
    gap: 10px;
  }

  .weather3-item{
    padding: 12px 10px;
    text-align: center;
    border-radius: 18px;
  }

  .weather3-itemInner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .weather3-day{
    margin: 0;
    text-align: center;
  }

  .weather3-icon{
    margin: 0 auto;
  }

  .weather3-temp{
    justify-content: center;
    text-align: center;
  }

  .weather3-desc{
    text-align: center;
  }
}













.DateBadge{
  display: grid;
  grid-template-rows: 1fr auto;
  width: 68px;
  min-width: 68px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.DateBadge-day{
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #7da270 0%, #638858 100%);
  color: #fff;
  font-size: 1.16rem;
  line-height: 1;
  font-weight: 800;
}

.DateBadge-month{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  background: linear-gradient(180deg, #49643f 0%, #3f5737 100%);
  color: rgba(255,255,255,0.92);
  font-size: 0.58rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}












.home-topRow{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: 95%;
  margin: 0 auto 14px;
}

.home-topRow-main{
  flex: 1 1 65%;
  min-width: 0;
}

.home-topRow-side{
  flex: 0 0 32%;
  min-width: 280px;
}

.home-topRow .UnderMenuTermin,
.home-topRow .weather3{
  width: 100%;
  max-width: 100%;
  margin: 0;
}

@media (max-width: 900px){
  .home-topRow{
    flex-direction: column;
  }

  .home-topRow-side{
    flex: 1 1 auto;
    min-width: 0;
  }
}















