/* LÄÄKA – Seite mindestens auf Bildschirmhöhe */
#laeaka-home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Footer automatisch nach unten schieben */
#laeaka-home > .footer {
    margin-top: auto;
}

/* Weißer Streifen unter dem LÄÄKA-Footer entfernen */
html:has(#laeaka-home),
body:has(#laeaka-home) {
    background: #111111 !important;
}

/* =========================================================
   LÄÄKA – VIDEOS-SEITE
   ========================================================= */

body.laeaka-videos {
    background: #111111 !important;
    color: #ffffff !important;
}

/* Cassiopeia-Kopf und Standard-Breadcrumbs/Fußbereich ausblenden */
body.laeaka-videos .container-header,
body.laeaka-videos .container-breadcrumbs,
body.laeaka-videos .container-footer {
    display: none !important;
}

/* Hauptbereich komplett breit */
body.laeaka-videos .site-grid > .container-main,
body.laeaka-videos .container-main,
body.laeaka-videos .container-component {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

/* Videos-Bereich */
body.laeaka-videos .blog {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
    margin: 0 auto !important;
    padding: 55px 0 70px;
}

/* Überschrift */
body.laeaka-videos .page-header {
    border: 0 !important;
    margin: 0 0 45px !important;
    padding: 0 !important;
    text-align: center;
}

body.laeaka-videos .page-header h1 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: clamp(2.3rem, 5vw, 4rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Pinker Akzent */
body.laeaka-videos .page-header::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    margin: 18px auto 0;
    background: #e91e63;
    border-radius: 5px;
}

/* Videoraster */
body.laeaka-videos .blog-items {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px 25px;
}

/* =========================================================
   LÄÄKA – VIDEOKARTEN OPTIMIEREN
   ========================================================= */

/* Raster */
body.laeaka-videos .blog-items {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

/* Jede Karte gleich hoch */
body.laeaka-videos .blog-item {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

/* Bild */
body.laeaka-videos .item-image {
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
}

body.laeaka-videos .item-image img {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 16 / 9;
    object-fit: cover !important;
    margin: 0 !important;
}

/* Inhalt */
body.laeaka-videos .item-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 24px !important;
}

/* Titel */
body.laeaka-videos .item-title {
    margin: 0 !important;
    min-height: 4.9em;
    text-align: center;
    line-height: 1.2 !important;
}

body.laeaka-videos .item-title a {
    color: #197d8d !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-decoration: underline !important;
}

body.laeaka-videos .item-title a:hover {
    color: #e91e63 !important;
}

/* Pinker Strich unter dem Titel */
body.laeaka-videos .item-title::after {
    content: "";
    display: block;
    width: 76px;
    height: 5px;
    margin: 20px auto 42px;
    background: #e91e63;
    border-radius: 5px;
}

/* Joomla-Informationen ausblenden */
body.laeaka-videos .article-info,
body.laeaka-videos .item-info,
body.laeaka-videos .fields-container {
    display: none !important;
}

/* Beschreibung */
body.laeaka-videos .item-content > p {
    color: #444444 !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

/* Erste Textzeile etwas stärker */
body.laeaka-videos .item-content > p strong {
    color: #444444 !important;
}

/* Weiterlesen unten halten */
body.laeaka-videos .readmore {
    margin-top: auto !important;
    padding-top: 25px;
}

body.laeaka-videos .readmore a {
    display: inline-block !important;
    background: #e91e63 !important;
    color: #ffffff !important;
    padding: 11px 18px !important;
    border-radius: 7px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: .85rem;
}

body.laeaka-videos .readmore a:hover {
    background: #111111 !important;
}

/* Tablet */
@media (max-width: 900px) {
    body.laeaka-videos .blog-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Smartphone */
@media (max-width: 600px) {
    body.laeaka-videos .blog {
        width: calc(100% - 32px);
        padding-top: 35px;
    }

    body.laeaka-videos .blog-items {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    body.laeaka-videos .item-title {
        min-height: 0;
    }
}

/* Tablet */
@media (max-width: 900px) {
    body.laeaka-videos .blog-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Smartphone */
@media (max-width: 600px) {
    body.laeaka-videos .blog {
        width: calc(100% - 32px);
        padding-top: 35px;
    }

    body.laeaka-videos .blog-items {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* =========================================================
   LÄÄKA – HEADER / NAVIGATION
   ========================================================= */

/* Header-Bereich */
body.laeaka-videos .main-top {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #111111 !important;
    border: 0 !important;
}

/* Alle Joomla-Rahmen des Moduls entfernen */
body.laeaka-videos .main-top > *,
body.laeaka-videos .main-top .moduletable,
body.laeaka-videos .main-top .card,
body.laeaka-videos .main-top .card-body {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Menü */
body.laeaka-videos .main-top ul.mod-menu {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
    min-height: 78px;

    margin: 0 auto !important;
    padding: 12px 0 !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 34px !important;

    background: transparent !important;
    border: 0 !important;
    list-style: none !important;
}

/* LÄÄKA-Logo */
body.laeaka-videos .main-top ul.mod-menu::before {
    content: "";
    display: block;

    width: 190px;
    height: 60px;

    margin-right: auto;

    background-image: url("/media/mod_laeka/images/laeaka-logo.webp");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;

    filter: invert(1);
}

/* Menüeinträge */
body.laeaka-videos .main-top ul.mod-menu > li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Links */
body.laeaka-videos .main-top ul.mod-menu > li > a,
body.laeaka-videos .main-top ul.mod-menu > li > span {
    display: block !important;

    padding: 8px 0 !important;

    color: #ffffff !important;
    background: transparent !important;

    font-size: 1rem !important;
    font-weight: 800 !important;
    letter-spacing: .5px;

    text-decoration: none !important;
    text-transform: uppercase;
}

/* Hover */
body.laeaka-videos .main-top ul.mod-menu > li > a:hover {
    color: #ed1764 !important;
}

/* Aktiver Menüpunkt */
body.laeaka-videos .main-top ul.mod-menu > li.current > a,
body.laeaka-videos .main-top ul.mod-menu > li.active > a {
    color: #ed1764 !important;
}

/* Aktiver Unterstrich */
body.laeaka-videos .main-top ul.mod-menu > li.current > a::after,
body.laeaka-videos .main-top ul.mod-menu > li.active > a::after {
    content: "";
    display: block;

    width: 100%;
    height: 3px;

    margin-top: 5px;

    background: #ed1764;
    border-radius: 3px;
}

/* Abstand Header → Videos */
body.laeaka-videos .blog {
    padding-top: 35px !important;
}

/* Mobil */
@media (max-width: 700px) {

    body.laeaka-videos .main-top ul.mod-menu {
        width: calc(100% - 32px);
        min-height: 68px;
        gap: 18px !important;
    }

    body.laeaka-videos .main-top ul.mod-menu::before {
        width: 135px;
        height: 48px;
    }

    body.laeaka-videos .main-top ul.mod-menu > li > a {
        font-size: .85rem !important;
    }
}