/* ===== Galerie Grid ===== */
.aktuelles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px,1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
}

.aktuelles-item {
    background: #d3d3d3;
    padding: 18px;
    width: 100%;
    box-sizing: border-box;
}

.aktuelles-item img {
    width: 100%;
    display: block;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.aktuelles-title { font-weight: bold; margin-bottom: 10px; }
.aktuelles-meta { display:flex; justify-content:space-between; font-size:12px; color:#555; }

@media(max-width:1024px){
    .aktuelles-grid { grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap:22px; }
}

@media(max-width:767px){
    .aktuelles-grid { grid-template-columns: 1fr; gap:18px; max-width:100%; }
    .aktuelles-container { background:#fff; padding:5px; }
}

/* ===== Filter Menu ===== */
.aktuelles-container .aktuelles-filter-menu {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Filter Buttons */
.aktuelles-container .aktuelles-filter-menu .filter-btn,
.aktuelles-container .aktuelles-filter-menu .filter-btn:hover,
.aktuelles-container .aktuelles-filter-menu .filter-btn.active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    color: #000 !important;
    outline: none !important;
    padding: 4px 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 21px;
    transition: all 0.2s ease;
}

.aktuelles-container .aktuelles-filter-menu button.filter-btn.active {
    background: #d3d3d3 !important;
}

.aktuelles-container .aktuelles-filter-menu button.filter-btn:hover {
    transform: translateY(-1px) !important;
    background: #d3d3d3 !important;
}

@media (max-width: 767px) {
    .aktuelles-filter-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 5px;
        margin-left: 8px;
        padding: 5px 0;
    }

    .aktuelles-filter-menu button.filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 2px 6px;
        font-size: clamp(16px, 3vw, 18px) !important;
    }

    .aktuelles-filter-menu button.filter-btn.active {
        background: #d3d3d3 !important;
    }

    .aktuelles-filter-menu.sticky {
        position: fixed;
        top: 0; left: 0; right: 0;
        background: #fff;
        padding: 5px 8px;
        z-index: 999;
    }
}

/* ===== Single Page Container ===== */
.aktuelles-single-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 25px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.aktuelles-single-wrapper { width:100%; }

.aktuelles-navigation-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 20px auto 50px;
}

/* Titel */
.aktuelles-single-title { font-size:32px; font-weight:bold; margin-bottom:20px; }
@media(max-width:1024px){ .aktuelles-single-title { font-size:28px; } }
@media(max-width:767px){ .aktuelles-single-title { font-size:24px; } }

/* ===== Slideshow ===== */
.ak-slideshow {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.ak-slide {
    display: none;
}

.ak-slide.active {
    display: block;
}

/* Bilder */
.ak-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Hochkantbilder */
.ak-slide.portrait img {
    width: 60% !important;
    max-width: 60%;
    margin: 0;
}

.ak-slide.portrait {
    text-align: left !important;
}

/* Querformat */
.ak-slide.landscape img {
    width: 100% !important;
}

/* Buttons ohne Box */
.ak-prev, .ak-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important; /* absolut sicher: kein Hintergrund */
    border: none !important;           /* keine Ränder */
    padding: 0 !important;             /* kein extra Padding */
    font-size: 45px;                   /* Grundgröße Pfeile */
    cursor: pointer;
    color: #000;                        /* Pfeilfarbe */
    line-height: 1;                     /* kein extra Höhenraum */
    display: block;                     /* Block, damit nur der Pfeil klickbar ist */
    width: auto;
    height: auto;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Position */
.ak-prev { left: 5px ; }
.ak-next { right: 5px; }

/* Hover: Pfeile wachsen */
.ak-prev:hover, .ak-next:hover {
    transform: translateY(-50%) scale(1.3); /* Pfeil größer */
    color: #000;                        /* optional Farbe */
}



/* ===============================
   MOBILE: Slideshow deaktiviert
   Bilder untereinander, 100% Breite
================================*/
@media (max-width: 767px) {

    .ak-slideshow {
        position: relative;
    }

    /* Buttons ausblenden */
    .ak-prev,
    .ak-next {
        display: none !important;
    }

    /* Jede Slide untereinander sichtbar */
    .ak-slide {
        display: block !important;
        opacity: 1 !important;
        margin-bottom: 20px;   /* Abstand zwischen Bildern */
        width: 100% !important;
        transform: none !important;
    }

    /* Bilder 100% Breite */
    .ak-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}


/* Beschreibung */
.aktuelles-description-wrapper { display:flex; gap:40px; margin-bottom:30px; }
.beschreibung-de, .beschreibung-en { flex:1; font-size:16px; line-height:1.6; }

@media(max-width:767px){
    .aktuelles-description-wrapper { flex-direction:column; gap:20px; }
}

/* Quellen */
.aktuelles-quellen { font-size:16px; color:#a3a3a3; margin-bottom:30px; }


/* ===== MOBILE OVERRIDES: alle slides 100% (überschreibt Portrait-Regeln) ===== */
@media (max-width: 767px) {

    /* hohe Spezifität: sorgt dafür, dass andere Regeln nicht mehr vorrangig sind */
    .aktuelles-single-container .ak-slideshow .ak-slide,
    .aktuelles-single-container .ak-slideshow .ak-slide.active {
        display: block !important;
        width: 100% !important;
        margin-bottom: 18px !important; /* Abstand zwischen Bildern */
        opacity: 1 !important;
        transform: none !important;
    }

    /* Bild selbst zwingend 100% */
    .aktuelles-single-container .ak-slideshow .ak-slide img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        display: block !important;
    }

    /* überschreibe speziell die portrait-Regel */
    .aktuelles-single-container .ak-slideshow .ak-slide.portrait img {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Buttons ausblenden auf Mobil (optional) */
    .aktuelles-single-container .ak-slideshow .ak-prev,
    .aktuelles-single-container .ak-slideshow .ak-next {
        display: none !important;
    }

    /* Falls noch feste max-widths gesetzt sind */
    .aktuelles-single-container .ak-slideshow {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

