/* MNU Nordrhein – Kennzeichnung im Kopfbild */

.mnu-hero {
    position: relative;
    width: 100%;
}

.mnu-hero > img {
    display: block;
    width: 100%;
    height: auto;
}

.mnu-hero-badge {
    position: absolute;
    left: 40px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.94);
    border-left: 5px solid #009FDA;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.mnu-hero-badge-logo {
    width: 54px;
    height: auto;
}


.mnu-hero-badge-text {
    line-height: 1.25;
}

.mnu-hero-badge-title {
    font-size: 1.28rem;
    font-weight: 600;
    color: #009FDA;
}

.mnu-hero-badge-subtitle {
    margin-top: 3px;
    font-size: 0.82rem;
    color: #666666;
}

@media (max-width: 700px) {

    .mnu-hero-badge {
        left: 14px;
        bottom: 14px;
        padding: 10px 14px;
    }

    .mnu-hero-badge-logo {
        width: 42px;
    }

    .mnu-hero-badge-title {
        font-size: 1rem;
    }

    .mnu-hero-badge-subtitle {
        font-size: 0.78rem;
    }
}