.mnma-campus-header {

    width: 100%;
    min-height: 118px;

    position: relative;

    background-image:
       
        url("../../picha/BGMNM.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    box-sizing: border-box;

    overflow: hidden;
}


.mnma-campus-header__inner {

    width: min(1200px, 94%);

    min-height: 118px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    box-sizing: border-box;

}


/* =========================================================
   BRAND
========================================================= */

.mnma-campus-header__brand {

    flex: 1 1 auto;

    min-width: 0;

    display: flex;

    align-items: center;

}


.mnma-campus-header__logo-link {

    display: inline-flex;

    align-items: center;

    text-decoration: none;

    border: 0;

}


.mnma-campus-header__logo {

    display: block;

    width: min(550px, 100%);

    height: auto;

    max-height: 105px;

    object-fit: contain;

}


/* =========================================================
   CAMPUS ACTIONS
========================================================= */

.mnma-campus-header__actions {

    flex: 0 0 auto;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;

}


/* =========================================================
   CAMPUS BUTTON
========================================================= */

.mnma-campus-button {

    min-width: 185px;

    min-height: 58px;

    padding: 8px 13px;

    display: flex;

    align-items: center;

    gap: 10px;

    position: relative;

    box-sizing: border-box;

    color: #0f172a;

    background: rgba(255,255,255,0.96);

    border: 1px solid #dc2626;

    border-radius: 30px;

    text-decoration: none;

    box-shadow:
        0 3px 10px rgba(15,23,42,0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;

}


.mnma-campus-button:hover {

    color: #ffffff;

    background: #1e3a8a;

    border-color: #1e3a8a;

    text-decoration: none;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(15,23,42,0.16);

}


.mnma-campus-button__icon {

    width: 36px;

    height: 36px;

    flex: 0 0 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #1e3a8a;

    background: #eff6ff;

    border-radius: 50%;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;

}


.mnma-campus-button:hover
.mnma-campus-button__icon {

    color: #ffffff;

    background: rgba(255,255,255,0.18);

}


.mnma-campus-button__content {

    min-width: 0;

    flex: 1;

    display: flex;

    flex-direction: column;

    line-height: 1.15;

}


.mnma-campus-button__content small {

    margin-bottom: 3px;

    color: #64748b;

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 10px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}


.mnma-campus-button__content strong {

    color: #1e3a8a;

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

}


.mnma-campus-button:hover
.mnma-campus-button__content small,

.mnma-campus-button:hover
.mnma-campus-button__content strong {

    color: #ffffff;

}


.mnma-campus-button__arrow {

    color: #dc2626;

    font-size: 12px;

    transition:
        transform 0.2s ease,
        color 0.2s ease;

}


.mnma-campus-button:hover
.mnma-campus-button__arrow {

    color: #ffffff;

    transform: translateX(3px);

}


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

.mnma-header-black-line {

    width: 100%;

    height: 5px;

    background: #111827;

}


.mnma-header-blue-line {

    width: 100%;

    height: 3px;

    background: #0066cc;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .mnma-campus-header {

        min-height: 100px;

    }


    .mnma-campus-header__inner {

        min-height: 100px;

        width: 94%;

        gap: 15px;

    }


    .mnma-campus-header__logo {

        max-height: 85px;

    }


    .mnma-campus-button {

        min-width: 155px;

        min-height: 50px;

        padding: 7px 10px;

    }


    .mnma-campus-button__icon {

        width: 31px;

        height: 31px;

        flex-basis: 31px;

    }


    .mnma-campus-button__content strong {

        font-size: 11px;

    }

}


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

@media (max-width: 600px) {

    .mnma-campus-header {

        min-height: auto;

        padding: 14px 0 16px;

        background-position: center;

    }


    .mnma-campus-header__inner {

        width: 92%;

        min-height: auto;

        flex-direction: column;

        align-items: stretch;

        gap: 14px;

    }


    .mnma-campus-header__brand {

        justify-content: center;

    }


    .mnma-campus-header__logo {

        width: min(100%, 430px);

        max-height: 80px;

    }


    .mnma-campus-header__actions {

        width: 100%;

        justify-content: center;

        gap: 8px;

    }


    .mnma-campus-button {

        min-width: 0;

        width: 50%;

        min-height: 48px;

        padding: 6px 8px;

        border-radius: 25px;

    }


    .mnma-campus-button__icon {

        width: 29px;

        height: 29px;

        flex-basis: 29px;

        font-size: 12px;

    }


    .mnma-campus-button__content small {

        font-size: 8px;

    }


    .mnma-campus-button__content strong {

        font-size: 10px;

    }


    .mnma-campus-button__arrow {

        font-size: 10px;

    }


    .mnma-header-black-line {

        height: 4px;

    }


    .mnma-header-blue-line {

        height: 2px;

    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .mnma-campus-header__actions {

        flex-direction: column;

    }


    .mnma-campus-button {

        width: 100%;

        min-height: 46px;

    }


    .mnma-campus-button__content strong {

        font-size: 11px;

    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.mnma-campus-button:focus-visible,
.mnma-campus-header__logo-link:focus-visible {

    outline: 2px solid #2563eb;

    outline-offset: 3px;

}


/* =========================================================
   REDUCE MOTION
========================================================= */

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

    .mnma-campus-button,
    .mnma-campus-button__icon,
    .mnma-campus-button__arrow {

        transition: none;

    }

}