/* ==========================================================
   MERITZA CLASSES
   STUDY LEVELS
   Version : 1.0.0

   Layout:
   Header       = 100%
   Content      = 60%
   Illustration = 40%

   Visual:
   Premium editorial
   Academic progression
   Navy + Blue + Gold
   No traditional cards
========================================================== */


/* ==========================================================
   SECTION
========================================================== */

.mc-study-levels{

    position:relative;

    padding-top:0;

    padding-bottom:0;

    overflow:hidden;

}

/* ==========================================================
   SECTION HEADER
========================================================== */

.mc-study-levels-header{

    position:relative;

    max-width:850px;

    margin:0 auto 10px;

    text-align:center;

    z-index:5;

}


/* ==========================================================
   EDITORIAL EYEBROW
========================================================== */

.mc-study-levels-eyebrow{

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    max-width:720px;

    margin:0 auto 10px;

    gap:18px;

}


.mc-study-levels-eyebrow-text{

    flex-shrink:0;

    color:#B98C14;

    font-size:.84rem;

    font-weight:800;

    letter-spacing:.17em;

    line-height:1;

    white-space:nowrap;

}


/* ==========================================================
   EYEBROW LINES
========================================================== */

.mc-study-levels-eyebrow-line{

    flex:1;

    height:2px;

}


/* LEFT */

.mc-study-levels-eyebrow-line:first-child{

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(212,175,55,.20) 15%,
            rgba(212,175,55,.55) 55%,
            rgba(212,175,55,.95) 100%
        );

}


/* RIGHT */

.mc-study-levels-eyebrow-line:last-child{

    background:
        linear-gradient(
            90deg,
            rgba(212,175,55,.95) 0%,
            rgba(212,175,55,.55) 45%,
            rgba(212,175,55,.20) 85%,
            transparent 100%
        );

}


/* ==========================================================
   TITLE
========================================================== */

.mc-study-levels-header .mc-section-title{

    margin:0;

    color:#0A1946;

    font-size:2.25rem;

    font-weight:800;

    line-height:1.12;

    letter-spacing:-.7px;

}


/* ==========================================================
   DESCRIPTION
========================================================== */

.mc-study-levels-header .mc-section-description{

    max-width:650px;

    margin:5px auto 0;

    color:#52627A;

    font-size:.92rem;

    line-height:1.4;

}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.mc-study-levels-layout{

    display:grid;

    grid-template-columns:60% 40%;

    align-items:start;

    min-height:0;

}


/* ==========================================================
   LEFT 60%
   CONTENT
========================================================== */

.mc-study-levels-content{

    width:100%;

    max-width:780px;

    padding-right:28px;

}


/* ==========================================================
   LEVEL LIST
========================================================== */

.mc-study-levels-list{

    position:relative;

    width:100%;

}


/* ==========================================================
   LEVEL ITEM
========================================================== */

.mc-study-level-item{

    position:relative;

    display:grid;

    grid-template-columns:42px 48px 1fr;

    align-items:center;

    min-height:82px;

    padding:8px 8px 8px 0;

    border-bottom:1px solid rgba(10,25,70,.08);

    transition:
        transform .25s ease,
        border-color .25s ease;

}


/* ==========================================================
   NUMBER
========================================================== */

.mc-study-level-number{

    color:#8A94A3;

    font-size:.72rem;

    font-weight:700;

    line-height:1;

}


/* ==========================================================
   ICON
========================================================== */

.mc-study-level-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:38px;

    height:38px;

    border-radius:50%;

    background:#FFFFFF;

    border:2px solid #2867C7;

    color:#2867C7;

    box-shadow:
        0 5px 14px rgba(10,25,70,.06);

    transition:
        transform .25s ease,
        border-color .25s ease,
        color .25s ease,
        box-shadow .25s ease,
        background .25s ease;

}


.mc-study-level-icon i{

    font-size:.9rem;

    line-height:1;

}


/* ==========================================================
   INFORMATION
========================================================== */

.mc-study-level-info{

    padding-left:12px;

}


.mc-study-level-info h3{

    margin:0;

    color:#0A1946;

    font-size:.92rem;

    font-weight:800;

    line-height:1.2;

}


.mc-study-level-info p{

    max-width:560px;

    margin:4px 0 0;

    color:#607089;

    font-size:.69rem;

    line-height:1.4;

}


/* ==========================================================
   HOVER
========================================================== */

.mc-study-level-item:hover{

    transform:translateX(3px);

    border-color:rgba(212,175,55,.40);

}


.mc-study-level-item:hover
.mc-study-level-icon{

    background:#FFFFFF;

    border-color:#D4AF37;

    color:#2867C7;

    transform:translateY(-2px);

    box-shadow:
        0 8px 18px rgba(212,175,55,.15);

}


/* ==========================================================
   RIGHT 40%
   VISUAL
========================================================== */

.mc-study-levels-visual{

    position:relative;

    min-height:0;

    display:flex;

    align-items:flex-start;

    justify-content:center;

    overflow:visible;

}


/* ==========================================================
   VISUAL GLOW
========================================================== */

.mc-study-levels-visual-glow{

    position:absolute;

    width:390px;

    height:390px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(54,103,170,.07) 0%,
            rgba(212,175,55,.045) 40%,
            transparent 72%
        );

    pointer-events:none;

}


/* ==========================================================
   ILLUSTRATION WRAPPER
========================================================== */

.mc-study-levels-illustration-wrap{

    position:relative;

    width:100%;

    max-width:430px;

    height:430px;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:2;

}


/* ==========================================================
   ILLUSTRATION
========================================================== */

.mc-study-levels-illustration{

    display:block;

    width:100%;

    max-width:430px;

    height:100%;

    object-fit:contain;

    filter:
        drop-shadow(
            0 18px 35px rgba(10,25,70,.10)
        );

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width:991.98px){

    .mc-study-levels{

        padding:0;

    }


    .mc-study-levels-layout{

        grid-template-columns:60% 40%;

        min-height:450px;

    }


    .mc-study-levels-visual{

        min-height:450px;

    }


    .mc-study-levels-illustration-wrap{

        height:370px;

    }


    .mc-study-levels-visual-glow{

        width:330px;

        height:330px;

    }


    .mc-study-levels-content{

        padding-right:16px;

    }


    .mc-study-level-item{

        grid-template-columns:38px 42px 1fr;

        min-height:72px;

    }


    .mc-study-level-icon{

        width:36px;

        height:36px;

    }


    .mc-study-level-info{

        padding-left:8px;

    }


    .mc-study-level-info h3{

        font-size:.84rem;

    }


    .mc-study-level-info p{

        font-size:.63rem;

    }

}


/* ==========================================================
   MOBILE
   Temporary desktop-derived structure.
   Dedicated mobile pass later.
========================================================== */

@media (max-width:767.98px){

    .mc-study-levels{

    padding:0;

}


    .mc-study-levels-header{

        margin-bottom:22px;

    }


    .mc-study-levels-eyebrow{

        gap:10px;

    }


    .mc-study-levels-eyebrow-text{

        font-size:.64rem;

        letter-spacing:.12em;

    }


    .mc-study-levels-eyebrow-line{

        height:1px;

    }


    .mc-study-levels-header .mc-section-title{

        font-size:1.8rem;

    }


    .mc-study-levels-header .mc-section-description{

        font-size:.84rem;

    }


    .mc-study-levels-layout{

        display:flex;

        flex-direction:column;

        min-height:auto;

    }


    /* ------------------------------------------
       Illustration
    ------------------------------------------ */

    .mc-study-levels-visual{

        width:100%;

        min-height:300px;

        order:1;

        margin-bottom:20px;

    }


    .mc-study-levels-illustration-wrap{

        width:100%;

        max-width:300px;

        height:300px;

    }


    .mc-study-levels-visual-glow{

        width:280px;

        height:280px;

    }


    /* ------------------------------------------
       Content
    ------------------------------------------ */

    .mc-study-levels-content{

        width:100%;

        max-width:none;

        padding:0;

        order:2;

    }


    .mc-study-level-item{

        grid-template-columns:42px 44px 1fr;

        min-height:72px;

    }


    .mc-study-level-icon{

        width:38px;

        height:38px;

    }


    .mc-study-level-info{

        padding-left:8px;

    }


    .mc-study-level-info h3{

        font-size:.88rem;

    }


    .mc-study-level-info p{

        font-size:.68rem;

    }
}