/* ==========================================================
   AKTUELLES – STARTSEITEN HIGHLIGHT
========================================================== */

.mk-aktuelles-highlight {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9990;

    width: min(430px, calc(100vw - 40px));
    overflow: hidden;

    background: #171513;
    color: #ffffff;

    border: 1px solid rgba(197, 164, 103, 0.55);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.mk-aktuelles-highlight.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mk-aktuelles-highlight[hidden] {
    display: none;
}


/* SCHLIESSEN
========================================================== */

.mk-aktuelles-highlight-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;

    width: 38px;
    height: 38px;

    padding: 0;
    border: 0;
    background: rgba(23, 21, 19, 0.82);

    color: #ffffff;
    font-size: 27px;
    font-weight: 300;
    line-height: 36px;

    cursor: pointer;
}

.mk-aktuelles-highlight-close:hover {
    color: #c5a467;
}


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

.mk-aktuelles-highlight-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.mk-aktuelles-highlight-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


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

.mk-aktuelles-highlight-content {
    padding: 25px 28px 27px;
}

.mk-aktuelles-highlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;

    margin-bottom: 16px;

    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mk-aktuelles-highlight-kategorie {
    color: #c5a467;
}

.mk-aktuelles-highlight-datum {
    color: rgba(255, 255, 255, 0.65);
}

.mk-aktuelles-highlight-kicker {
    margin: 0 0 7px;

    color: #c5a467;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mk-aktuelles-highlight-title {
    margin: 0 0 12px;

    color: #ffffff;

    font-family: "PT Serif", Georgia, serif;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.15;
}

.mk-aktuelles-highlight-text {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.6;
}


/* LINK
========================================================== */

.mk-aktuelles-highlight-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.mk-aktuelles-highlight-link span {
    color: #c5a467;
    transition: transform 0.2s ease;
}

.mk-aktuelles-highlight-link:hover span {
    transform: translateX(4px);
}


/* MOBILE – HIGHLIGHT
========================================================== */

@media (max-width: 640px) {

    .mk-aktuelles-highlight {
        right: 14px;
        bottom: 14px;
        left: 14px;

        width: auto;
        max-height: calc(100vh - 28px);
        overflow-y: auto;
    }

    .mk-aktuelles-highlight-image {
        height: 155px;
    }

    .mk-aktuelles-highlight-content {
        padding: 21px 22px 23px;
    }

    .mk-aktuelles-highlight-title {
        font-size: 25px;
    }

    .mk-aktuelles-highlight-text {
        font-size: 14px;
    }
}


/* REDUZIERTE BEWEGUNG
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .mk-aktuelles-highlight,
    .mk-aktuelles-highlight-link span {
        transition: none;
    }
}


/* ==========================================================
   AKTUELLES – DETAILSEITE
========================================================== */

.mk-aktuelles-beitrag {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 155px 0 65px;
}


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

.mk-aktuelles-header {
    max-width: 900px;
    margin: 0 auto 46px;
    text-align: center;
}

.mk-aktuelles-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;

    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mk-aktuelles-kategorie {
    color: #b89450;
}

.mk-aktuelles-datum {
    color: rgba(23, 21, 19, 0.58);
}

.mk-aktuelles-title {
    max-width: 900px;
    margin: 0 auto 24px;

    color: #171513;

    font-family: "PT Serif", Georgia, serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.mk-aktuelles-lead {
    max-width: 760px;
    margin: 0 auto;

    color: rgba(23, 21, 19, 0.72);

    font-size: 19px;
    line-height: 1.7;
}


/* HERO-BILD
========================================================== */

.mk-aktuelles-hero {
    width: 100%;
    margin: 0 0 55px;
}

.mk-aktuelles-hero img {
    display: block;
    width: 100%;
    max-height: 680px;
    object-fit: cover;
}


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

.mk-aktuelles-content {
    max-width: 760px;
    margin: 0 auto;

    color: #2c2926;

    font-size: 18px;
    line-height: 1.8;
}

.mk-aktuelles-content p {
    margin: 0 0 1.5em;
}

.mk-aktuelles-content h2,
.mk-aktuelles-content h3 {
    color: #171513;
    font-family: "PT Serif", Georgia, serif;
    font-weight: 400;
}

.mk-aktuelles-content h2 {
    margin: 2em 0 0.7em;
    font-size: 36px;
    line-height: 1.15;
}

.mk-aktuelles-content h3 {
    margin: 1.8em 0 0.6em;
    font-size: 27px;
}


/* MOBILE – DETAILSEITE
========================================================== */

@media (max-width: 700px) {

    .mk-aktuelles-beitrag {
        width: min(100% - 28px, 1120px);
        padding: 125px 0 60px;
    }

    .mk-aktuelles-header {
        margin-bottom: 34px;
    }

    .mk-aktuelles-meta {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .mk-aktuelles-title {
        font-size: clamp(36px, 11vw, 52px);
    }

    .mk-aktuelles-lead {
        font-size: 17px;
        line-height: 1.65;
    }

    .mk-aktuelles-hero {
        margin-bottom: 38px;
    }

    .mk-aktuelles-content {
        font-size: 17px;
        line-height: 1.75;
    }

    .mk-aktuelles-content h2 {
        font-size: 30px;
    }

    .mk-aktuelles-content h3 {
        font-size: 24px;
    }
}/* ==========================================================
   AKTUELLES – ÜBERSICHT
========================================================== */

.mk-aktuelles-intro {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 135px 0 70px;
}

.mk-aktuelles-intro .mk-intro-kicker {
    margin: 0 0 16px;
    color: #b89450;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mk-aktuelles-intro h1 {
    max-width: 900px;
    margin: 0 0 26px;
    color: #171513;
    font-family: "PT Serif", Georgia, serif;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.025em;
}

.mk-aktuelles-intro > p:last-child {
    max-width: 760px;
    margin: 0;
    color: rgba(23, 21, 19, 0.7);
    font-size: 19px;
    line-height: 1.7;
}


/* ==========================================================
   ARCHIV
========================================================== */

.mk-aktuelles-archiv {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 100px;
}

.mk-aktuelles-archiv-head {
    margin-bottom: 38px;
    padding-top: 42px;
    border-top: 1px solid rgba(23, 21, 19, 0.16);
}

.mk-aktuelles-archiv-head .mk-intro-kicker {
    margin: 0 0 10px;
    color: #b89450;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mk-aktuelles-archiv-head h2 {
    margin: 0;
    color: #171513;
    font-family: "PT Serif", Georgia, serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.1;
}


/* ==========================================================
   GRID
========================================================== */

.mk-aktuelles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 34px;
}


/* ==========================================================
   KARTE
========================================================== */

.mk-aktuelles-card {
    min-width: 0;
}

.mk-aktuelles-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 24px;
    overflow: hidden;
    background: #ece9e4;
}

.mk-aktuelles-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.mk-aktuelles-card:hover .mk-aktuelles-card-image img {
    transform: scale(1.025);
}

.mk-aktuelles-card-content {
    padding-right: 16px;
}

.mk-aktuelles-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 13px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.mk-aktuelles-card-kategorie {
    color: #b89450;
}

.mk-aktuelles-card-datum {
    color: rgba(23, 21, 19, 0.5);
}

.mk-aktuelles-card-title {
    margin: 0 0 14px;
    font-family: "PT Serif", Georgia, serif;
    font-size: clamp(29px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.12;
}

.mk-aktuelles-card-title a {
    color: #171513;
    text-decoration: none;
}

.mk-aktuelles-card-title a:hover {
    color: #8c6b31;
}

.mk-aktuelles-card-text {
    margin: 0 0 20px;
    color: rgba(23, 21, 19, 0.7);
    font-size: 16px;
    line-height: 1.65;
}

.mk-aktuelles-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #171513;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.mk-aktuelles-card-link span {
    color: #b89450;
    transition: transform 0.2s ease;
}

.mk-aktuelles-card-link:hover span {
    transform: translateX(4px);
}


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

@media (max-width: 800px) {

    .mk-aktuelles-intro {
        width: min(100% - 28px, 1120px);
        padding: 115px 0 55px;
    }

    .mk-aktuelles-intro h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .mk-aktuelles-intro > p:last-child {
        font-size: 17px;
        line-height: 1.65;
    }

    .mk-aktuelles-archiv {
        width: min(100% - 28px, 1120px);
        padding-bottom: 70px;
    }

    .mk-aktuelles-archiv-head {
        margin-bottom: 30px;
        padding-top: 32px;
    }

    .mk-aktuelles-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mk-aktuelles-card-content {
        padding-right: 0;
    }

    .mk-aktuelles-card-title {
        font-size: 31px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mk-aktuelles-card-image img,
    .mk-aktuelles-card-link span {
        transition: none;
    }
}.mk-aktuelles-card-title {
    font-size: clamp(28px, 2.6vw, 36px);
    line-height: 1.1;
}

.mk-aktuelles-card-meta {
    margin-bottom: 10px;
}