
        * { box-sizing: border-box; }

        body {
            margin: 0;
            background: #e0e0e0;
            font-family: system-ui, sans-serif;
        }

        /* =========================================
           HEADER = auf dem Templatebild positioniert
        ========================================== */

        .site-header {
            position: absolute;
            top: 16px;                 /* Abstand vom oberen Bildrand */
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1400px;         /* gleiche Breite wie das Bild-Layout */
            z-index: 20;               /* über dem Bild */
        }

        .header-inner {
            background: rgba(255,255,255,0.95); /* weiße Fläche leicht transparent */
            backdrop-filter: blur(4px);
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative; /* Bezug für Burger-Button */
        }

        .logo-wrap img {
            height: 58px;
            width: auto;
            display: block;
        }

        /* Navigation als Spalte, rechtsbündig */
        .main-nav {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            padding-right: 4%;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

        .main-nav a {
            text-decoration: none;
            color: #222;
            font-size: 15px;
            font-weight: 500;
        }

        .main-nav a:hover {
            color: #1f66b5;
        }

        .nav-burger {
            position: absolute;
            top: 14px;
            right: 10px;
            width: 28px;
            height: 18px;
            border: none;
            background: transparent;
            cursor: pointer;

            display: flex;
            flex-direction: column;
            justify-content: space-between;

            margin-top: -2px; /* Feinjustierung der vertikalen Position */
        }

        .nav-burger span {
            display: block;
            height: 2px;
            background: #444;
            border-radius: 1px;
        }




        /* =========================================
           NAV-PANEL (Sitemap / Mobile-Menü)
        ========================================== */

        .nav-panel {
            position: absolute;
            top: 100%;        /* direkt unter dem Header */
            left: 0;
            width: 100%;
            margin-top: 8px;
            background: #ffffff;
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
            border-radius: 0 0 8px 8px;
            display: none;    /* per JS ein/ausblenden */
            max-height: 70vh;
            overflow: auto;
            z-index: 15;
            opacity:0.92;
        }

        .nav-panel-inner {
            padding: 16px 24px 20px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            font-size: 14px;
        }

        .nav-panel-section h3 {
            margin: 0 0 8px;
            font-size: 14px;
            font-weight: 600;
            color: #222;
        }

        .nav-panel-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-panel-section li + li {
            margin-top: 4px;
        }

        .nav-panel-section a {
            text-decoration: none;
            color: #444;
        }

        .nav-panel-section a:hover {
            color: #1f66b5;
        }

        .nav-panel.is-open {
            display: block;
        }

        /* Body bei offenem Menü fixieren (v.a. für Mobile) */
        body.nav-open {
            overflow: hidden;
        }

      /* =========================================
   HERO-BEREICH
========================================= */

.hero-wrap {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    position: relative;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

/* HERO Höhe – visuell wie Vorlage, Header kompensiert */
.hero {
    position: relative;
    height: calc(62vh + 60px);   /* optisch exakt wie dein Entwurf */
    min-height: 560px;
    max-height: 860px;
    overflow: hidden;
}

/* Slider Layer */
.hero--fade-slider .heroTrack {
    position: relative;
    height: 100%;
}

/* Slides liegen übereinander */
.hero--fade-slider .heroSlide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero--fade-slider .heroSlide.active {
    opacity: 1;
    z-index: 2;
}

/* Bild innerhalb Slide */
.hero--fade-slider .heroSlide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 85%;
    display: block;
}

/* Hero-Text */
.hero-content {
    position: absolute;
    top: 25%;
    left: 88px;
    text-align: left;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 5;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.55);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    border-radius: 999px;
    background: #0055aa;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.45);
    width: fit-content;
}

.hero-btn:hover {
    background: #004388;
}

/* Welle */
.hero-wave {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    pointer-events: none;
    z-index: 5;
}

         /* =========================================
           HERO-TEXT & BUTTON
        ========================================== */

    .hero-content {
        position: absolute;
        top: 25%;             /* du kannst hier mit %, px oder clamp arbeiten */
        left: 88px;           /* exakt der gleiche Abstand wie das Logo */
        text-align: left;
        color: #ffffff;

        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .hero-title {
        font-size: 40px;
        font-weight: 700;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0,0,0,0.55);
    }

    .hero-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 22px;
        border-radius: 999px;
        background: #0055aa;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        border: none;
        text-decoration: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.45);
        width: fit-content;   /* damit der Button so kurz wie nötig bleibt */
    }

    .hero-btn:hover {
        background: #004388;
    }
    .hero{
      position: relative;
      height: 72vh;          /* Desktop wie Vorlage */
      min-height: 540px;     /* damit es nicht zu klein wird */
      max-height: 860px;     /* verhindert Riesenscreens */
      overflow: hidden;
    }

    .hero picture,
    .hero img{ position:absolute; inset:0; width:100%; height:100%; display:block; }

    .hero img{ object-fit: cover; object-position: 70% 85%; }

    /* Hero-Box: stabile Höhe, kein Verrutschen */


/* Slider Layer */
.hero--fade-slider .heroTrack{
  position: relative;
  height: 100%;
}

/* Slides liegen übereinander und faden */
.hero--fade-slider .heroSlide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero--fade-slider .heroSlide.active{
  opacity: 1;
  z-index: 2;
}

.hero--fade-slider .heroSlide img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 70% 85%;
}




    /* =========================================
   AKTUELLES / CAROUSEL (SGH Look)
========================================= */
.sgh-aktuelles {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    padding: 28px 24px 34px;
}

.sgh-aktuelles__title {
    margin: 0 0 14px 56px;
    font-size: 32px;
    font-weight: 800;
    color: #0b4e97; /* SGH-blau */
}

.sgh-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr 44px; /* etwas mehr Platz für Pfeile */
    align-items: center;
    gap: 6px;
}

.sgh-carousel__viewport {
    overflow: hidden;
}

.sgh-carousel__track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 6px 0 10px;
}
.sgh-carousel__track::-webkit-scrollbar { display: none; }

/* Kachel: sehr nah am Screenshot */
.sgh-card {
    flex: 0 0 calc((100% - (18px * 3)) / 4); /* 4 sichtbar */
    display: block;
    text-decoration: none;
    color: #222;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    scroll-snap-align: start;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.sgh-card__img img {
    width: 100%;
    height: 132px;        /* kompakter wie im Screenshot */
    object-fit: cover;
    display: block;
}

/* grauer „Text-Bereich“ */
.sgh-card__body {
    background: #eef0f3;
    padding: 12px 12px 14px;
    min-height: 118px; /* sorgt für gleiche Höhe der Kacheln */
}

.sgh-card__title {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
    color: #0b4e97;
}

.sgh-card__text {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    color: #4b4b4b;
}

/* Hover subtil */
.sgh-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.14);
}

/* Pfeile: schlicht wie im Mock */
.sgh-carousel__arrow {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: #2b2b2b;
    font-size: 34px;
    line-height: 1;
    opacity: 0.85;
    transition: opacity 120ms ease, transform 120ms ease;
}

.sgh-carousel__arrow:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Button darunter */
.sgh-aktuelles__cta {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.sgh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border-radius: 999px;
    background: #0055aa;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.sgh-btn:hover { background: #004388; }


/* =========================================
   KURSFAHRTEN (Banner + Carousel Cards)
========================================= */
.sgh-kurse {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
}

.sgh-kurse__banner {
    height: 350px;
    overflow: hidden;
}

.sgh-kurse__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%; /* zeigt etwas mehr vom Hauptsujet */
    display: block;
}

.sgh-kurse__inner {
    padding: 40px 24px 30px;
}

.sgh-kurse__title {
    margin: 0 0 14px;
    font-size: 32px;
    font-weight: 800;
    color: #0b4e97;
}

/* Kurs-Kachel */
.sgh-kurscard {
    flex: 0 0 calc((100% - (18px * 3)) / 4);
    display: block;
    text-decoration: none;
    color: #222;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 12px 12px 10px;
    scroll-snap-align: start;
    transition: transform 160ms ease, box-shadow 160ms ease;
    border: 1px solid rgba(0,0,0,0.06);
}

.sgh-kurscard:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.14);
}

.sgh-kurscard__top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 700;
    color: #1f2a35;
    margin-bottom: 6px;
}

.sgh-kurscard__date { font-size: 14px; }
.sgh-kurscard__time { font-size: 13px; opacity: 0.85; }

.sgh-kurscard__name {
    font-size: 14px;
    font-weight: 800;
    margin: 2px 0 2px;
}

.sgh-kurscard__hint {
    font-size: 12px;
    color: #444;
    margin-bottom: 10px;
}

.sgh-kurscard__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sgh-status {
    font-size: 12px;
    color: #333;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.sgh-status span {
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 11px;
    line-height: 1.4;
}

/* Status-Farben (ruhig, nicht knallig) */
.sgh-status--frei span { background: #dff3ea; color: #0b6b3a; }
.sgh-status--wenig span { background: #fff1d6; color: #8a5a00; }
.sgh-status--aus span { background: #f2d7d7; color: #8a1f1f; }
.sgh-status--abg span { background: #e7e7e7; color: #444; }

.sgh-kurscard__book {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: #0b4e97;
    background: rgba(11,78,151,0.08);
}

.sgh-kurse__cta {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

/* =========================================
   CONTENT-MODUL (Bild + Welle + Text)
========================================= */
.sgh-contentmod {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
}

.sgh-contentmod__image {
    position: relative;
    overflow: hidden;
    height: 540px;               /* Höhe wie im contrent.jpg */
}

.sgh-contentmod__image img.sgh-contentmod__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%; /* leicht von unten gecroppt */
    display: block;
}


/* gleiche Welle wie beim Hero */
.sgh-contentmod__wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    pointer-events: none;
}

.sgh-contentmod__inner {
    padding: 36px 56px 44px;
}

.sgh-contentmod__title {
    margin: 0 0 14px;
    font-size: 32px;
    font-weight: 800;
    color: #0b4e97;
}

.sgh-contentmod__text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    max-width: 980px;
}

.sgh-contentmod__cta {
    margin-top: 10px;
}
/* =========================================
   WETTER + WEBCAM (Layout wie wetter.jpg)
========================================= */
.sgh-weatherweb{
  max-width:1400px;
  margin:0 auto;
  background:#fff;
  padding: 28px 24px 34px 0;
}

.sgh-weatherweb__grid{
  display:grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 22px;
  align-items: start;
  padding-left: 50px;
  padding-right: 36px;
}

.sgh-weatherweb__left{
  padding: 8px 6px 0;
}

.sgh-weatherweb__top{
  display:flex;
  align-items: center;
  gap: 22px;
  margin: 6px 0 12px 0;
}

.sgh-weatherweb__temp{
  font-size: 68px;
  font-weight: 300;
  color:#111;
  letter-spacing: -1px;
  line-height: 1;
}
.sgh-weatherweb__temp .deg{
  font-size: 34px;
  vertical-align: super;
  margin-left: 2px;
}

.sgh-weatherweb__summary{
  display:flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  min-width: 130px;
}
.sgh-weatherweb__icon{
  font-size: 44px;
  line-height: 1;
}
.sgh-weatherweb__desc{
  font-size: 14px;
  font-weight: 700;
  color:#111;
}

.sgh-weatherweb__cols{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  margin-top: 6px;
}

.sgh-weatherweb__daytitle{
  font-weight: 800;
  color:#111;
  margin: 8px 0 6px;
}

.sgh-weatherweb__kv{
  display:grid;
  gap: 8px;
  font-size: 14px;
  color:#111;
}
.sgh-weatherweb__kv span{ color:#111; opacity:.9; }
.sgh-weatherweb__kv b{ font-weight: 800; }

.sgh-weatherweb__kv--temps{
  margin-top: 10px;
}

.sgh-weatherweb__list{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.sgh-weatherweb__row{
  display:grid;
  grid-template-columns: 110px 28px 1fr 1fr;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.sgh-weatherweb__row .day{ font-weight: 800; }
.sgh-weatherweb__row .ico{ font-size: 18px; }
.sgh-weatherweb__row .max{ text-align:right; font-weight: 800; }
.sgh-weatherweb__row .min{ text-align:right; color:#111; opacity:.85; }

.sgh-weatherweb__cam{
  position: relative;
  border-radius: 14px;
  overflow:hidden;
  background:#eef0f3;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  display:block;
  aspect-ratio: 1 / 1; /* wie im Entwurf */
  text-decoration:none;
  color:inherit;
}

.sgh-weatherweb__cam img,
.sgh-weatherweb__cam iframe{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  border:0;
}

.sgh-weatherweb__camLabel{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  color:#fff;
  font-weight: 900;
  font-size: 22px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(2px);
}
.sgh-webcam {
    position: relative;
    overflow: hidden;
    height: 100%;   /* gewünschte sichtbare Höhe */
    border-radius: 14px;
}

.sgh-webcam iframe {
    width: 100%;
    height: 120%;   /* bewusst höher */
    border: 0;
    margin-top: -20px; /* optional: leicht nach oben ziehen */
}

/* =========================================
   FOOTER (wie footer.jpg)
========================================= */
.sgh-footer{
  max-width:1400px;
  margin:0 auto;
  position:relative;
  background:#0b4e97;       /* SGH-blau */
  color:#fff;
  overflow:hidden;
}

/* Welle oben: gleiche wave1.svg, einfach umdrehen */
.sgh-footer__wave{
  position:absolute;
  top:-1px;
  left:0;
  width:100%;
  pointer-events:none;
  transform: rotate(180deg);
  transform-origin: center;
}

/* Innenabstände unterhalb der Welle */
.sgh-footer__inner{
  padding: 108px 56px 42px;  /* oben genug Platz wegen Welle */
}

.sgh-footer__grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr 0.55fr;
  gap: 42px;
  align-items:start;
}

.sgh-footer h3{
  margin:0 0 10px;
  font-size:16px;
  font-weight:800;
}

.sgh-footer p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  opacity:0.95;
}

.sgh-footer a{
  color:#fff;
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.sgh-footer a:hover{
  border-bottom-color: rgba(255,255,255,0.9);
}

/* Kontaktblock: kleine Zeilenabstände wie im Mock */
.sgh-footer__lines{ display:grid; gap:4px; }
.sgh-footer__lines .spacer{ height:8px; }

/* Social Icons unten links */
.sgh-footer__social{
  display:flex;
  gap: 14px;
  margin-top: 26px;
}
.sgh-social{
  width:44px;
  height:44px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 140ms ease, background 140ms ease;
}
.sgh-social:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.16);
}
.sgh-social svg{ width:22px; height:22px; fill:#fff; }

/* Logos rechts (vertical stack) */
.sgh-footer__logos{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 18px;
  padding-top: 6px;
}
.sgh-footer__logos img{
  display:block;
  width: 92px;
  height:auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}
.sgh-footer__logos img.is-okgo{ width: 76px; }
.sgh-footer__logos img.is-aargau{ width: 96px; }






        /* =========================================
           RESPONSIVE
        ========================================== */
        @media (max-width: 1680px) {

          .hero-wave {
               margin-left:-2%;
               min-width:103%;
           }
          }
        /* Responsive: 3 / 2 / 1 Kachel sichtbar */
        @media (max-width: 1024px) {
            .sgh-card {
                flex-basis: calc((100% - (18px * 2)) / 3);
            }
            .sgh-aktuelles__title {
                font-size: 32px;
            }
            .sgh-kurscard {
                flex-basis: calc((100% - (18px * 2)) / 3);
            }
            .sgh-kurse__banner { height: 320px; }
            }
             .hero-wave {
            bottom: -5px;
        }

        @media (max-width: 900px) {
            .header-inner {
                flex-direction: row;  /* Logo links, Burger rechts */
                gap: 10px;
            }

            .main-nav ul {
                display: none; /* sichtbare Hauptnavigation fällt weg */
            }

            .nav-panel {
                /* auf Mobile darf das Panel mehr Platz einnehmen */
                max-height: calc(100vh - 70px);
                border-radius: 0 0 8px 8px;
            }

            .nav-panel-inner {
                grid-template-columns: 1fr;  /* Sitemap/Navigation einspaltig */
                font-size: 16px;
            }
            .hero-title {
                font-size: 28px;
            }

            .hero-content {
                top: 30%;       /* weiter nach unten, damit nichts hinter dem Header liegt */
                left: 88px;     /* kleiner Rand auf Mobile */
                padding-right: 16px;
            }

            .hero-title {
                font-size: 28px;
            }
             .sgh-contentmod__inner {
                padding: 28px 16px 36px;
            }
            .sgh-contentmod__title {
                font-size: 26px;
            }
            .sgh-contentmod__image {
                height: 410px;               /* Höhe wie im contrent.jpg */
            }

            .sgh-contentmod__image img.sgh-contentmod__photo {
                object-position: center 35%; /* leicht von unten gecroppt */

            }
            .sgh-weatherweb{
                padding-inline: 16px;
            }
            .sgh-weatherweb__grid{
                grid-template-columns: 1fr;
                background:#eef0f3;
                border-radius:12px;
                margin-top:14px;
            }
            .sgh-weatherweb__cols{
                grid-template-columns: 1fr;
            }
            .sgh-weatherweb__temp{
                font-size: 52px;
            }
            .sgh-footer__inner{
                padding: 68px 16px 34px;
            }
            .sgh-footer__grid{
                grid-template-columns: 1fr;
                gap: 26px;
            }
            .sgh-footer__logos{
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
        }
        @media (max-width: 768px) {
            .hero{
                height: 55vh;
                min-height: 360px;
            } 
            .sgh-carousel {
                grid-template-columns: 1fr;
                }
            .sgh-carousel__arrow {
                display: none;
                } /* Mobile: nur wischen */
            .sgh-card {
                flex-basis: calc((100% - 18px) / 2);
                }
            .sgh-aktuelles {
                padding-inline: 16px;
                }
            .sgh-aktuelles__title{
                margin: 0 0 14px 0;
                }
            .sgh-aktuelles__title {
                font-size: 24px;
                margin-bottom:6px;
                }
            .sgh-kurse__inner {
                padding-inline: 16px;
                }
            .sgh-kurscard {
                flex-basis: calc((100% - 18px) / 2);
                }
            .sgh-kurse__banner {
                height: 280px;
                }
            .sgh-kurse__banner img {
                object-position: center 45%;
                }
        }

        @media (max-width: 600px) {
            .hero-content {
                top: 30%;       /* auf sehr schmalen Displays noch etwas tiefer */
                left: 68px;
            }

            .hero-title {
                font-size: 24px;
            }

            .hero-btn {
                font-size: 12px;
                padding: 7px 18px;
            }
           .logo-wrap img {
                height: 38px;
           }
           .hero-wave {
               margin-left:-2%;
               min-width:103%;
           }

        }/*end*/
        @media (max-width: 520px){
            .sgh-weatherweb__row{
                grid-template-columns: 90px 24px 1fr 1fr;
            }
            .sgh-webcam iframe {
                height: 130%;   /* bewusst höher */
            }
        }/*end*/

        @media (max-width: 480px) {
            .hero-content {
                top: 31%;       /* auf sehr schmalen Displays noch etwas tiefer */
                left: 50px;
            }
            .hero-title {
                font-size: 1.3em;
            }
            .hero-btn {
            padding: 4px 11px 6px 11px;
                font-size: 0.70em;
                font-weight: 600;
            }
             .logo-wrap img {
                height: 28px;
           }
            .sgh-card {
                flex-basis: 86%;
                } /* 1 Karte, schön swipebar */
            .sgh-card__img img {
                height: 150px;
                }
            .sgh-card__body {
                min-height: 110px;
                }
            .sgh-kurscard {
                flex-basis: 86%;
                }
            .sgh-kurse__banner {
                height: 240px;
                }
            .sgh-contentmod__title {
                font-size: 22px;
            }
            .sgh-contentmod__text {
                font-size: 14px;
            }
            .sgh-contentmod__image {
                height: 210px;               /* Höhe wie im contrent.jpg */
            }

        }/*end*/
        @media (max-width: 411px) {
            .hero-content {
                top: 30%;       /* auf sehr schmalen Displays noch etwas tiefer */
                left: 50px;
            }
            .hero-title {
                font-size: 1.2em;
            }
             .hero-btn {
                font-size: 0.65em;
                margin-top:-4px;
            }
        }/*end*/
        @media (max-width: 360px) {
            .site-header {
                top: 0;                 /* Abstand vom oberen Bildrand */
            }
            .hero-image img {
                padding-top:50px;
            }
        }/*end*/
        @media (max-width: 320px) {
            .hero-wave{
                min-width:380px;
                margin-left:-10px;
                overflow:hidden;
                bottom: -3px;
            }
            .sgh-contentmod__wave, .sgh-footer__wave {
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            pointer-events: none;
            min-width:380px;
            margin-left:-10px;
        }

        }/*end*/
