/* =========================================================
   MNMA — ABOUT ACADEMY PAGE
   ========================================================= */

.mnma-academy-page {
    width: 100%;
    background: #f5f7fa;
    padding: 28px 0 50px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #263238;
}


/* =========================================================
   PAGE CONTAINER
   ========================================================= */

.mnma-container {
    width: min(1400px, 94%);
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.mnma-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;

    font-size: 13px;
    color: #6b7280;
}

.mnma-breadcrumb a {
    color: #000080;
    text-decoration: none;
    font-weight: 500;
}

.mnma-breadcrumb a:hover {
    text-decoration: underline;
}

.mnma-breadcrumb i {
    font-size: 10px;
    color: #9ca3af;
}


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

.mnma-academy-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.mnma-sidebar {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


/* Sidebar heading */

.mnma-sidebar-heading {
    background: #000080;
    color: #ffffff;
    padding: 18px 20px;
}

.mnma-sidebar-heading-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mnma-sidebar-heading img {
    width: 21px;
    height: 15px;
}

.mnma-sidebar-heading-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3px;
}

.mnma-sidebar-heading-title span {
    color: #ffcc00;
}


/* Sidebar menu */

.mnma-sidebar-menu {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.mnma-sidebar-menu li {
    margin: 0;
}

.mnma-sidebar-menu a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 44px;
    padding: 8px 18px;

    color: #374151;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition:
        background-color .2s ease,
        color .2s ease,
        padding-left .2s ease;
}


/* Arrow */

.mnma-sidebar-menu a img {
    width: 15px;
    height: 14px;

    margin-right: 11px;

    opacity: .65;
}


/* Hover */

.mnma-sidebar-menu a:hover {
    background: #f1f5f9;
    color: #000080;
    padding-left: 23px;
}


/* Active page */

.mnma-sidebar-menu a.active {
    background: #eef2ff;
    color: #000080;
    font-weight: 700;
}

.mnma-sidebar-menu a.active::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #000080;
}


/* =========================================================
   CONTENT CARD
   ========================================================= */

.mnma-content {
    min-width: 0;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 10px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);

    overflow: hidden;
}


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

.mnma-content-header {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 20px 26px;

    border-bottom: 1px solid #e5e7eb;

    background: #ffffff;
}


.mnma-content-header-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #eef2ff;
    color: #000080;

    font-size: 18px;
}


.mnma-content-header-text h1 {
    margin: 0;

    color: #111827;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.3;
}


.mnma-content-header-text p {
    margin: 3px 0 0;

    color: #6b7280;

    font-size: 13px;
}


/* =========================================================
   CONTENT BODY
   ========================================================= */

.mnma-content-body {
    padding: 30px 32px 35px;
}


/* Paragraphs */

.mnma-content-body p {
    margin: 0 0 18px;

    color: #374151;

    font-size: 16px;
    line-height: 1.8;

    text-align: justify;
}


/* First paragraph */

.mnma-content-body .intro {
    color: #1f2937;
    font-size: 16.5px;
}


/* =========================================================
   HIGHLIGHT BOX
   ========================================================= */

.mnma-history-highlight {
    display: flex;
    gap: 16px;

    margin: 25px 0;

    padding: 18px 20px;

    background: #f8fafc;

    border-left: 4px solid #000080;

    border-radius: 5px;
}


.mnma-history-highlight-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #000080;
    color: #ffffff;
}


.mnma-history-highlight p {
    margin: 0;

    font-size: 14.5px;
    line-height: 1.7;

    text-align: left;
}


/* =========================================================
   RECTOR
   ========================================================= */

.mnma-rector {
    margin-top: 32px;
    padding-top: 22px;

    border-top: 1px solid #e5e7eb;
}


.mnma-rector-name {
    margin: 0 !important;

    color: #000080 !important;

    font-size: 18px !important;
    font-weight: 700;
}


.mnma-rector-title {
    margin: 3px 0 0 !important;

    color: #6b7280 !important;

    font-size: 14px !important;

    text-align: left !important;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 992px) {

    .mnma-academy-grid {
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 18px;
    }

    .mnma-content-body {
        padding: 25px;
    }

    .mnma-content-body p {
        font-size: 15px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .mnma-academy-page {
        padding: 18px 0 35px;
    }

    .mnma-container {
        width: 94%;
    }

    .mnma-academy-grid {
        display: block;
    }


    /* Sidebar becomes horizontal/card */

    .mnma-sidebar {
        margin-bottom: 18px;
    }


    .mnma-sidebar-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }


    .mnma-sidebar-menu a {
        min-height: 46px;
        padding: 8px 12px;

        font-size: 13px;
    }


    .mnma-sidebar-menu a:hover {
        padding-left: 16px;
    }


    .mnma-content-header {
        padding: 16px 18px;
    }


    .mnma-content-header-icon {
        width: 38px;
        height: 38px;
    }


    .mnma-content-header-text h1 {
        font-size: 18px;
    }


    .mnma-content-body {
        padding: 22px 18px 28px;
    }


    .mnma-content-body p {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }

}


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

@media (max-width: 480px) {

    .mnma-sidebar-menu {
        grid-template-columns: 1fr;
    }


    .mnma-content-header-text p {
        display: none;
    }


    .mnma-content-body {
        padding: 20px 15px 25px;
    }


    .mnma-history-highlight {
        padding: 15px;
    }

}