
/* ===================== CSS VARIABLEN ===================== */
:root {
    --dark:    #e6e7e8;
    --panel:   #d8dada;
    --card:    #cfd1d2;
    --border:  rgba(0,0,0,0.08);
    --accent:  #128c46;
    --accent2: #9EC5A8;
    --text:    #1a1a1a;
    --muted:   #555f58;
    --white:   #ffffff;
    --r:       10px;
    --pad:     70px;
}

/* ===================== BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Frutiger', sans-serif;
    background-color: #e6e7e8;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.startseite { background-color: #e6e7e8; }

/* ===================== HERO (andere Seiten) ===================== */
.hero {
    position: relative;
    background-image: url("/fileadmin/Images/Hero-Bild-Leistungen.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(230,231,232,0.85) 50%, rgba(230,231,232,0.2) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 70px;
    right: 70px;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 580px;
    box-sizing: border-box;
    z-index: 2;
}

.hero-text h1 { font-family: 'Frutiger', sans-serif; font-size: 42px; font-weight: 700; color: #1a1a1a; letter-spacing: -0.03em; line-height: 1.1; margin-top: 0; margin-bottom: 1rem; }
.hero-text h2 { font-family: 'Frutiger', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 0 0 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.hero-text h2::before { content: ''; display: inline-block; width: 18px; height: 1px; background: var(--accent); flex-shrink: 0; }
.hero-text p { font-size: 1rem; color: #444444; margin: 0; line-height: 1.75; max-width: 100%; }

.hero-button {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    font-family: 'Frutiger', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    margin-top: 2rem;
    max-width: 320px;
    text-align: center;
    transition: background-color 0.2s, transform 0.15s;
}
.hero-button:hover { background-color: #0a5c2e; transform: translateY(-1px); }

/* ===================== HERO WRAPPER – Startseite ===================== */
.hero-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    padding: 5rem var(--pad) 4rem var(--pad);
    align-items: center;
    box-sizing: border-box;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*.hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,.82) 0%, rgba(0,5,0,.78) 40%, rgba(0,0,0,.72) 100%),
        url("/fileadmin/Images/Hero-Bild-Leistungen.jpeg") center center / cover no-repeat;
    z-index: 0;
}*/

.hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.82) 0%, rgba(0,5,0,.78) 40%, rgba(0,0,0,.72) 100%);
    z-index: 0;
}

.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9EC5A8;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 35px;
}
.hero-eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: #9EC5A8; flex-shrink: 0; }

.hero-left h1 {
    font-family: 'Frutiger', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    margin-top: 30px;
}

.hero-left h1 span {
    background: linear-gradient(90deg, #9EC5A8, #5aba7d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 240px;
}

.btn-primary {
    background: #ffffff;
    color: #128c46;
    font-family: 'Frutiger', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    display: block;
    text-align: center;
    border: 2px solid #ffffff;
}
.btn-primary:hover { background: #f0faf4; color: #128c46; }

.btn-outline {
    border: 2px solid #128c46;
    color: #128c46;
    font-family: 'Frutiger', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    background: transparent;
    text-align: center;
}
.btn-outline:hover { background: #128c46;
    color: #ffffff
}

/* Glassmorphism Eventbox */
.hero-right {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 100%;
    width: 100%;
    margin-top: 40px;
}

.hero-right-title {
    font-family: 'Frutiger', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.upcoming-event {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.upcoming-event:last-of-type { border-bottom: none; padding-bottom: 0; }

.event-date-box {
    min-width: 46px;
    background: #128c46;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 7px;
    text-align: center;
    padding: 0.4rem 0.3rem;
    flex-shrink: 0;
}
.event-date-box .day { font-family: 'Frutiger', sans-serif; font-size: 1.05rem; font-weight: 700; color: #ffffff; line-height: 1; }
.event-date-box .mon { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; color: #9EC5A8; letter-spacing: 0.06em; margin-top: 0.15rem; }

.event-info-title { font-size: 0.82rem; font-weight: 600; color: #ffffff; line-height: 1.4; }
.event-info-type { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

/* ===================== MAIN ===================== */
main { background-color: var(--dark); color: var(--text); box-sizing: border-box; }
main h1 { font-family: 'Frutiger', sans-serif; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; }

/* ===================== SECTION ===================== */
.section { padding: 2rem var(--pad); max-width: 100%; margin: 0; box-sizing: border-box; margin-top: 0}
.section-head { margin-bottom: 0; }
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #128c46; margin-bottom: 0.4rem; }
.section-title { font-family: 'Frutiger', sans-serif; font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); color: #1a1a1a; letter-spacing: -0.03em; margin: 0; }
.section-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.link-more { font-size: 0.82rem; font-weight: 600; color: var(--accent); text-decoration: none; display: flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; white-space: nowrap; }
.link-more:hover { gap: 0.55rem; }

/* ===================== TITLE ROW ===================== */
.title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-top: 3.5rem; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 3rem; padding-right: 3rem; }
.title-row h1, .title-row h2, .title-row h3 { font-family: 'Frutiger', sans-serif; font-size: 1.4rem; font-weight: 700; color: #1a1a1a; letter-spacing: -0.02em; }
.title-row .verlinkung { font-size: 0.82rem; font-weight: 600; color: var(--accent); text-decoration: none; display: flex; align-items: center; gap: 0.3rem; white-space: nowrap; transition: gap 0.2s; }
.title-row .verlinkung:hover { gap: 0.55rem; }

/* ===================== NEWS + SIDEBAR Layout ===================== */
/* Sidebar endet exakt mit der News-Section */
.startseite-news-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    align-items: start;    /* <-- start statt stretch: Sidebar wird nicht gestreckt */
    background: #e6e7e8;
    padding-bottom: -50px;
}

/* ===================== LEISTUNGEN – volle Breite ===================== */
.leistungen-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 2.5rem;
}

.leistung-card {
    background: #ffffff;
    border-radius: 12px;
    border-top: 3px solid var(--accent);
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    height: auto;
    overflow: visible;
}
.leistung-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.leistung-card-bottom h3 {
    font-family: 'Frutiger', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.leistung-hover-content {
    position: static;
    opacity: 1;
    transform: none;
    transition: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.leistung-hover-content p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.65;
    flex: 1;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    margin-bottom: 0.75rem;
}

.leistung-tag { display: none; }
.leistung-card-bg { display: none; }
.leistung-card::after { display: none; }
.leistung-card-overlay { display: none; }

.btn-card-look {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: none;
    padding: 0;
    transition: gap 0.2s;
}
.btn-card-look:hover { gap: 9px; }

/* ===================== NEWS ===================== */
.cards-news {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    margin: 0;
    overflow: hidden; /* kein horizontales scrollen */
}

/* Standard: max. 4 Cards sichtbar */

.news {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    height: 380px;
    padding: 0;
    box-sizing: border-box;
    border-radius: var(--r);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    color: var(--text);
    background-color: var(--card);
    cursor: pointer;
}

.news:hover { border-color: rgba(18,140,70,0.25); transform: translateY(-3px); }

.news-card-image { position: absolute; inset: 0; z-index: 0; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.55; }

.news-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 25%, rgba(0,0,0,0.1) 80%);
    z-index: 1;
}

.news-content { position: absolute; bottom: 18px; right: 16px; left: 16px; top: auto; z-index: 2; text-align: left; }
.news-content h3 { font-family: 'Frutiger', sans-serif; font-size: 0.9rem; font-weight: 700; line-height: 1.4; margin-bottom: 5px; color: #ffffff; }
.news-content p, .news-content .news-date { font-size: 0.75rem; margin: 0; color: #e6e7e8; line-height: 1.5; }


/* ===================== DESKTOP DEFAULT (ohne Media Query) ===================== */
.news:nth-child(n+6) { display: none; }

/* ===================== SIDEBAR ===================== */
.startseite-sidebar {
    background: #128c46;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 3rem 2rem 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Keine min-height – Sidebar passt sich der News-Höhe an */
}

.startseite-sb-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9EC5A8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.75rem;
}
.startseite-sb-label::before { content: ''; width: 16px; height: 1px; background: #9EC5A8; flex-shrink: 0; }

.startseite-sb-divider { height: 1px; background: rgba(255,255,255,0.12); }

.startseite-pm-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 1rem; }
.startseite-pm-date { font-size: 0.65rem; color: #9EC5A8; font-weight: 700; margin-bottom: 0.3rem; }
.startseite-pm-title { font-size: 0.82rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 0.45rem; }
.startseite-pm-text { font-size: 0.72rem; color: rgba(255,255,255,0.6); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.startseite-pm-link { font-size: 0.72rem; font-weight: 700; color: #9EC5A8; margin-top: 0.6rem; display: inline-block; text-decoration: none; }

.startseite-eg-item { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.startseite-eg-item:last-child { border-bottom: none; padding-bottom: 0; }
.startseite-eg-item:first-child { padding-top: 0; }
.startseite-eg-badge { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; color: #9EC5A8; background: rgba(158,197,168,0.15); padding: 2px 8px; border-radius: 10px; display: inline-block; margin-bottom: 0.3rem; }
.startseite-eg-title { font-size: 0.78rem; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 2px; }
.startseite-eg-sub { font-size: 0.7rem; color: rgba(255,255,255,0.52); line-height: 1.45; }

.startseite-sb-cta { display: block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.78rem; font-weight: 700; color: #fff; text-align: center; text-decoration: none; transition: background 0.2s; }
.startseite-sb-cta:hover { background: rgba(255,255,255,0.2); }

/* ===================== TESTIMONIALS ===================== */
.testimonial-strip {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem var(--pad);
}

.testimonial-strip .section-head {
    padding: 0;
    margin-bottom: 2rem;
}

.testimonial-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.testimonial {
    display: block;
    margin-bottom: 0;
    height: 100%;
}

.testimonial-box {
    width: 100%;
    padding: 0;
    border-radius: var(--r);
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
    overflow: visible;
    height: auto;
    min-height: 0;
    height: 100%;
}

.testimonial-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    text-align: left;
    overflow: hidden;
    position: relative;
}

.testimonial-text {
    font-size: 0.82rem;
    color: #444444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0;
    overflow: visible;
    max-width: 90%;
    padding-bottom: 0;
}

.testimonial-content strong,
.testimonial-content b {
    font-family: 'Frutiger', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: auto;
    display: block;
}

.testimonial-image:empty,
.testimonial-image img[src=""],
.testimonial-image:not(:has(img)) {
    display: none;
}

.testimonial-box:not(:has(.testimonial-image img)) .testimonial-content {
    flex: 0 0 100%;
}

.testimonial-image {
    overflow: hidden;
    flex: 0 0 45%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    z-index: 2;
}

.testimonial-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: none;
}

/* ===================== NEWSLETTER ===================== */
.startseite-nl { background: #128c46; padding: 2rem var(--pad); position: relative; overflow: hidden; margin-bottom: 0;}
.startseite-nl-pat { position: absolute; inset: 0; opacity: 0.05; background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%); background-size: 16px 16px; pointer-events: none; }
.startseite-nl-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; }
.startseite-nl-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #9EC5A8; display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
.startseite-nl-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: #9EC5A8; flex-shrink: 0; }
.startseite-nl h2 { font-family: 'Frutiger', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: #fff; letter-spacing: -0.03em; margin-bottom: 0.65rem; line-height: 1.15; margin-top: 0;}
.startseite-nl p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.startseite-nl-form { display: flex; flex-direction: column; gap: 0.75rem; }
.startseite-nl-input { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22); border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.875rem; font-family: 'Frutiger', sans-serif; color: #fff; outline: none; width: 100%; }
.startseite-nl-input::placeholder { color: rgba(255,255,255,0.45); }
.startseite-nl-btn { background: #fff; color: #128c46; font-size: 0.875rem; font-weight: 700; font-family: 'Frutiger', sans-serif; padding: 0.75rem 1.25rem; border-radius: 8px; border: none; cursor: pointer; width: 100%; transition: background 0.2s; }
.startseite-nl-btn:hover { background: #f0faf4; }
.startseite-nl-hint { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-align: center; }

/* ===================== FOOTER ===================== */

/* ===================== TABLET 1400px ===================== */
@media (max-width: 1400px) {
    :root { --pad: 40px; }
    .events-carousel { --cards-visible: 2.5; padding: 0 2rem; }
    .title-row { padding-left: 2rem; padding-right: 2rem; }
    .news:nth-child(n+5) { display: none; }
}

/* ===================== SIDEBAR BRICHT WEG ab 1100px ===================== */
@media (max-width: 1100px) {
    .startseite-news-sidebar { grid-template-columns: 1fr; }

    .startseite-sidebar {
        clip-path: none;
        padding: 2.5rem var(--pad);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .startseite-sb-divider { display: none; }

    /* News-Bereich: Padding damit Seitenränder stimmen */
    .startseite-news-sidebar > .section,
    .startseite-news-sidebar > div:not(.startseite-sidebar) {
        padding-left: var(--pad);
        padding-right: var(--pad);
    }

  .leistungen-modern-grid { grid-template-columns: repeat(2, 1fr); }

    /* News: alle sichtbaren Cards gleichmäßig verteilt */
    .cards-news {
        gap: 12px;
    }
    .news {
        flex: 1 1 0;
        max-width: none;
    }
   .news:nth-child(n+5) { display: none; }
}

/* ===================== MOBILE 900px ===================== */
@media (max-width: 900px) {
    :root { --pad: 24px; }

    .hero-wrapper { grid-template-columns: 1fr; gap: 2rem; min-height: auto; }
    .hero-left { order: 1; }
    .hero-right { order: 2; max-width: 100%; backdrop-filter: none; -webkit-backdrop-filter: none; }
    .hero-left h1 { font-size: 2rem; }
    .hero-actions { max-width: 100%; }
    .upcoming-event:nth-child(n+4) { display: none; }

    .startseite-sidebar { grid-template-columns: 1fr; padding: 2.5rem var(--pad); }
    .startseite-sb-divider { display: block; }


    /* News: max. 3 Cards gleichmäßig verteilt */
    .cards-news {
        gap: 10px;
    }
    .news:nth-child(n+5) { display: none; }
    .news {
        flex: 1 1 0;
        max-width: none;
    }

    .testimonial-inner { grid-template-columns: 1fr; }
    .testimonial-box { min-height: auto; }
    .testimonial-badge { width: 60px; height: 60px; }
    .startseite-nl-inner { grid-template-columns: 1fr; gap: 2rem; }

    .hero { height: auto; min-height: 480px; }
    .hero-text { position: static; transform: none; max-width: 100%; }
    .hero-text h1 { font-size: 1.75rem; }
    .hero-button { max-width: 260px; margin: 1.5rem auto 0; display: block; }
}

/* ===================== SCHMALES MOBILE 720px ===================== */

@media (max-width: 720px) {
 .news:nth-child(n+4) { display: none; }
}

/* ===================== SCHMALES MOBILE 620px ===================== */
@media (max-width: 620px) {
   
    /* News: max. 2 Cards */
    .news:nth-child(n+3) { display: none; }
    .leistungen-modern-grid { grid-template-columns: 1fr; }
}

/* ===================== KLEINSTES MOBILE 480px ===================== */
@media (max-width: 480px) {

    /* News: 1 Card, volle Breite */
    .news:nth-child(n+2) { display: none; }
    .news {
        flex: 1 1 0;
        max-width: none;
    }
}
