/* =========================================================
   MNMA INFORMATION SECTION
   ========================================================= */

.mnma-information-section {
    width: 100%;

    margin: 0;
    padding: 0;

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

    box-sizing: border-box;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.mnma-section-divider {
    width: 100%;

    height: 1px;

    margin: 0 0 18px;

    background: #e2e8f0;
}


/* =========================================================
   THREE COLUMN GRID
   ========================================================= */

.mnma-information-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 24%)
        minmax(0, 52%)
        minmax(0, 24%);

    gap: 0;

    align-items: start;

    box-sizing: border-box;
}


/* =========================================================
   COLUMNS
   ========================================================= */

.mnma-gallery-column,
.mnma-about-column,
.mnma-links-column {
    min-width: 0;

    box-sizing: border-box;
}


.mnma-gallery-column {
    padding-right: 14px;
}


.mnma-about-column {
    padding: 0 14px;

    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}


.mnma-links-column {
    padding-left: 14px;
}


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

.mnma-content-card,
.mnma-gallery-card {
    width: 100%;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.mnma-section-title {
    min-height: 38px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding-bottom: 8px;

    margin-bottom: 12px;

    border-bottom: 1px solid #e2e8f0;

    box-sizing: border-box;
}


.mnma-title-icon {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

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

    color: #1e3a8a;

    background: #eff6ff;

    border: 1px solid #dbeafe;

    border-radius: 6px;

    font-size: 12px;
}


.mnma-section-title h2 {
    margin: 0;

    color: #1e3a8a;

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

    line-height: 1.2;

    text-transform: uppercase;

    letter-spacing: 0.2px;
}


.mnma-section-title h2 span {
    color: #dc2626;

    font-style: italic;
}


/* =========================================================
   GALLERY
   ========================================================= */

.main-carousel-mnma {
    width: 100%;

    height: 315px;

    overflow: hidden;

    position: relative;
}


.main-carousel-mnma .carousel-cell {
    width: 100%;

    height: 315px;

    margin: 0;

    box-sizing: border-box;
}


.mnma-gallery-slide {
    width: 100%;

    display: block;
}


.mnma-gallery-figure {
    width: 100%;

    margin: 0;
    padding: 0;
}


.mnma-gallery-image {
    width: 100%;
    height: 260px;

    display: block;

    object-fit: cover;

    border-radius: 6px;

    background: #f1f5f9;
}


.mnma-gallery-caption {
    padding: 9px 4px;

    color: #64748b;

    font-size: 10px;

    font-style: italic;

    line-height: 1.4;

    text-align: center;
}


/* =========================================================
   FLICKITY
   ========================================================= */

.main-carousel-mnma .flickity-viewport {
    width: 100%;

    overflow: hidden;
}


.main-carousel-mnma .flickity-slider {
    width: 100%;
}


.main-carousel-mnma .flickity-button {
    width: 28px;
    height: 28px;

    background: rgba(30, 58, 138, 0.85);

    color: #ffffff;
}


.main-carousel-mnma .flickity-button:hover {
    background: #1e3a8a;
}


.main-carousel-mnma .flickity-button-icon {
    fill: #ffffff;
}


.main-carousel-mnma .flickity-button:disabled {
    opacity: 0.25;
}


/* =========================================================
   ABOUT CONTENT
   ========================================================= */

.mnma-about-content {
    color: #475569;

    font-size: 14px;

    line-height: 1.7;

    text-align: justify;
}


.mnma-about-content p {
    margin: 0 0 10px;
}


.mnma-about-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   READ MORE
   ========================================================= */

.mnma-read-more-wrapper {
    margin-top: 14px;

    text-align: left;
}


.mnma-read-more {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 6px 10px;

    color: #1e3a8a;

    background: #eff6ff;

    border: 1px solid #dbeafe;

    border-radius: 4px;

    font-size: 10px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        gap 0.2s ease;
}


.mnma-read-more:hover {
    color: #ffffff;

    background: #1e3a8a;

    border-color: #1e3a8a;

    gap: 9px;
}


/* =========================================================
   ACADEMY LINKS
   ========================================================= */

.mnma-academy-links {
    width: 100%;

    display: flex;

    flex-direction: column;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


.mnma-academy-link {
    width: 100%;
    min-height: 38px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 6px 4px;

    color: #334155;

    border-bottom: 1px solid #f1f5f9;

    font-size: 11.5px;

    line-height: 1.35;

    text-align: left;

    text-decoration: none;

    box-sizing: border-box;

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


.mnma-academy-link:last-child {
    border-bottom: 0;
}


.mnma-academy-link:hover {
    color: #1e3a8a;

    background: #f8fafc;

    padding-left: 8px;
}


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

.mnma-link-icon {
    width: 20px;
    height: 20px;

    flex: 0 0 20px;

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

    color: #1e3a8a;

    background: #eff6ff;

    border-radius: 4px;

    font-size: 8px;

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


.mnma-academy-link:hover .mnma-link-icon {
    color: #ffffff;

    background: #1e3a8a;
}


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

@media (max-width: 992px) {

    .mnma-information-grid {
        grid-template-columns:
            minmax(0, 30%)
            minmax(0, 70%);
    }


    .mnma-links-column {
        grid-column: 1 / -1;

        padding: 20px 0 0;

        margin-top: 20px;

        border-top: 1px solid #e2e8f0;
    }


    .mnma-about-column {
        padding-right: 0;
    }

}


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

@media (max-width: 768px) {

    .mnma-information-grid {
        display: flex;

        flex-direction: column;

        gap: 20px;
    }


    .mnma-gallery-column,
    .mnma-about-column,
    .mnma-links-column {
        width: 100%;

        padding: 0;

        border: 0;
    }


    .mnma-about-column,
    .mnma-links-column {
        padding-top: 20px;

        border-top: 1px solid #e2e8f0;
    }


    .main-carousel-mnma {
        height: auto;
    }


    .main-carousel-mnma .carousel-cell {
        height: auto;
    }


    .mnma-gallery-image {
        height: 240px;
    }

}


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

@media (max-width: 576px) {

    .mnma-section-divider {
        margin-bottom: 14px;
    }


    .mnma-section-title {
        min-height: 36px;

        margin-bottom: 10px;
    }


    .mnma-title-icon {
        width: 26px;
        height: 26px;

        flex-basis: 26px;

        font-size: 11px;
    }


    .mnma-section-title h2 {
        font-size: 12px;
    }


    .mnma-gallery-image {
        height: 210px;
    }


    .mnma-gallery-caption {
        font-size: 9px;

        padding: 7px 3px;
    }


    .mnma-about-content {
        font-size: 11px;

        line-height: 1.65;
    }


    .mnma-academy-link {
        min-height: 36px;

        font-size: 11px;
    }

}


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

@media (max-width: 380px) {

    .mnma-gallery-image {
        height: 190px;
    }


    .mnma-about-content {
        font-size: 10.5px;
    }


    .mnma-section-title h2 {
        font-size: 11px;
    }

}