/* =========================================================
   WIST ABOUT PAGE
========================================================= */
.wist-inner--about {
    --inner-accent: #2580e8;
}

.wist-inner--learning {
    --inner-accent: #b65edb;
}

.wist-inner--admissions {
    --inner-accent: #f03343;
}


.wist-inner-page {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );

    color: #0b244c;
}


/* =========================================================
   HERO
========================================================= */

.wist-inner-hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #031b3b 0%,
            #07295b 55%,
            #0b356d 100%
        );
}

.wist-inner-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(37, 128, 232, .16),
            transparent 32%
        ),
        radial-gradient(
            circle at 78% 22%,
            rgba(182, 94, 219, .10),
            transparent 28%
        );

    pointer-events: none;
}



.wist-inner-hero__media {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 100%;

    overflow: hidden;
}

.wist-inner-hero__media img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.wist-inner-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #031b3b 0%,
            rgba(3, 27, 59, .94) 12%,
            rgba(3, 27, 59, .68) 38%,
            rgba(3, 27, 59, .22) 72%,
            rgba(3, 27, 59, .08) 100%
        );
}


.wist-inner-hero__container {
    position: relative;
    z-index: 2;

    width:
        min(
            1420px,
            calc(100% - 80px)
        );

    margin: 0 auto;
}

.wist-inner-hero__content {
    max-width: 760px;

    padding:
        100px 0
        90px;
}


.wist-inner-hero__eyebrow {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 22px;

    color: #efb126;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.wist-inner-hero__eyebrow::before {
    content: "";

    width: 34px;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #efb126,
            #ffd661
        );
}


.wist-inner-hero__title {
    margin: 0;

    max-width: 760px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            34px,
            5.7vw,
            62px
        );

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.045em;
}


/* =========================================================
   CONTENT AREA
========================================================= */

.wist-inner-content {
    position: relative;

    padding:
        84px 0
        120px;
}




.wist-inner-content__container {
    position: relative;
    z-index: 2;

    width:
        min(
            1420px,
            calc(100% - 80px)
        );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        310px
        minmax(0, 1fr);

    gap: 72px;

    align-items: start;
}


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

.wist-inner-sidebar {
    position: relative;
}

.wist-inner-sidebar__inner {
    position: sticky;

    top: 130px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            14,
            43,
            83,
            .08
        );

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.96),
            rgba(247,250,255,.92)
        );

    box-shadow:
        0 22px 65px
        rgba(
            11,
            36,
            76,
            .08
        );

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.wist-inner-sidebar__heading {
    position: relative;

    padding:
        24px 24px
        20px;

    color: #0b244c;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    border-bottom:
        1px solid
        rgba(
            11,
            36,
            76,
            .08
        );
}

.wist-inner-sidebar__heading::after {
    content: "";

    position: absolute;

    left: 24px;
    bottom: -1px;

    width: 42px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #2580e8,
            #6ba9ff
        );
}


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

.wist-inner-menu {
    margin: 0;
    padding: 0;

    list-style: none;
}

.wist-inner-menu li {
    position: relative;

    margin: 0;
}

.wist-inner-menu li + li {
    border-top:
        1px solid
        rgba(
            11,
            36,
            76,
            .065
        );
}

.wist-inner-menu a {
    position: relative;

    min-height: 74px;

    display: grid;

    grid-template-columns:
        36px
        minmax(0, 1fr)
        22px;

    align-items: center;

    gap: 10px;

    padding:
        14px 22px;

    color: #52647e;

    text-decoration: none;

    transition:
        color .28s ease,
        background .28s ease;
}

.wist-inner-menu__number {
    color:
        rgba(
            11,
            36,
            76,
            .35
        );

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .08em;

    transition:
        color .28s ease;
}

.wist-inner-menu__title {
    font-size: 14px;
    font-weight: 650;

    line-height: 1.35;
}

.wist-inner-menu__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color:
        rgba(
            11,
            36,
            76,
            .35
        );

    font-size: 18px;

    transition:
        color .28s ease,
        transform .28s ease;
}


.wist-inner-menu a:hover {
    color: #0b244c;

    background:
        linear-gradient(
            90deg,
            rgba(37,128,232,.055),
            rgba(37,128,232,.015)
        );
}

.wist-inner-menu a:hover
.wist-inner-menu__arrow {
    color: #2580e8;

    transform:
        translateX(4px);
}


/* CURRENT PAGE */

.wist-inner-menu li.is-current > a {
    color: #0b244c;

    background:
        linear-gradient(
            90deg,
            rgba(37,128,232,.10),
            rgba(37,128,232,.025)
        );
}

.wist-inner-menu li.is-current > a::before {
    content: "";

    position: absolute;

    top: 10px;
    bottom: 10px;
    left: 0;

    width: 3px;

    border-radius:
        0 4px 4px 0;

    background:
        linear-gradient(
            180deg,
            #2580e8,
            #6f8cff
        );
}

.wist-inner-menu li.is-current
.wist-inner-menu__number {
    color: #2580e8;
}

.wist-inner-menu li.is-current
.wist-inner-menu__arrow {
    color: #2580e8;
}


/* =========================================================
   CAMPUS TOUR CTA
========================================================= */

.wist-inner-sidebar__tour {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        34px;

    align-items: center;

    gap: 14px;

    margin: 18px;

    padding:
        18px 18px;

    overflow: hidden;

    color: #ffffff;

    text-decoration: none;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #082b5c,
            #125db8
        );

    box-shadow:
        0 18px 40px
        rgba(
            14,
            80,
            170,
            .20
        );

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.wist-inner-sidebar__tour::before {
    content: "";

    position: absolute;

    top: -80px;
    right: -70px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            .08
        );
}

.wist-inner-sidebar__tour > span:first-child {
    position: relative;
    z-index: 1;

    font-size: 13px;
    font-weight: 750;

    line-height: 1.4;
}

.wist-inner-sidebar__tour > span:last-child {
    position: relative;
    z-index: 1;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            .12
        );

    transition:
        transform .3s ease,
        background .3s ease;
}

.wist-inner-sidebar__tour:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 24px 55px
        rgba(
            14,
            80,
            170,
            .28
        );
}

.wist-inner-sidebar__tour:hover
> span:last-child {
    transform:
        translateX(4px);

    background:
        rgba(
            255,
            255,
            255,
            .2
        );
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.wist-inner-main {
    position: relative;

    min-width: 0;
}

.wist-inner-main::before {
    content: "";

    position: absolute;

    top: 0;
    left: -36px;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            rgba(37,128,232,.18),
            transparent 85%
        );
}


.wist-inner-main__content {
    max-width: 960px;

    color: #52647e;

    font-size: 17px;
    line-height: 1.75;
}

.wist-inner-main__content
> *:first-child {
    margin-top: 0;
}


/* =========================================================
   HEADINGS
========================================================= */

.wist-inner-main__content h2 {
    position: relative;

    margin:
        0 0 28px;

    padding-bottom: 18px;

    color: #0b244c;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            38px,
            4vw,
            56px
        );

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -.035em;
}

.wist-inner-main__content h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 46px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #efb126,
            #ffd862
        );
}


.wist-inner-main__content h3 {
    margin:
        48px 0
        18px;

    color: #0b244c;

    font-size: 24px;
    font-weight: 750;

    line-height: 1.25;
}

.wist-inner-main__content h4 {
    margin:
        32px 0
        14px;

    color: #0b244c;

    font-size: 18px;
    font-weight: 750;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.wist-inner-main__content p {
    margin:
        0 0 22px;

    color: #5f7088;
}

.wist-inner-main__content p:first-of-type {
    color: #334b6b;

    font-size: 18px;
}


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

.wist-inner-main__content a {
    color: #2580e8;

    text-decoration:
        underline;

    text-decoration-thickness:
        1px;

    text-underline-offset:
        4px;

    transition:
        color .2s ease;
}

.wist-inner-main__content a:hover {
    color: #0b244c;
}


/* =========================================================
   LISTS
========================================================= */

.wist-inner-main__content ul,
.wist-inner-main__content ol {
    margin:
        26px 0
        34px;

    padding: 0;

    list-style: none;

    display: grid;
    gap: 12px;
}

.wist-inner-main__content li {
    position: relative;

    padding-left: 28px;

    color: #52647e;
}

.wist-inner-main__content ul li::before {
    content: "";

    position: absolute;

    top: .7em;
    left: 2px;

    width: 7px;
    height: 7px;

    border-radius: 2px;

    background:
        linear-gradient(
            135deg,
            #2580e8,
            #5fa4f8
        );
}

.wist-inner-main__content ol {
    counter-reset:
        wist-inner-counter;
}

.wist-inner-main__content ol li {
    counter-increment:
        wist-inner-counter;

    padding-left: 46px;
}

.wist-inner-main__content ol li::before {
    content:
        counter(wist-inner-counter);

    position: absolute;

    top: 1px;
    left: 0;

    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #2580e8;

    background:
        rgba(
            37,
            128,
            232,
            .08
        );

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.wist-inner-main__content blockquote {
    position: relative;

    margin:
        42px 0;

    padding:
        30px 34px
        30px 40px;

    border: 0;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(37,128,232,.07),
            rgba(182,94,219,.035)
        );

    color: #0b244c;

    font-family:
        Georgia,
        serif;

    font-size: 23px;
    line-height: 1.5;
}

.wist-inner-main__content blockquote::before {
    content: "“";

    position: absolute;

    top: 12px;
    left: 14px;

    color:
        rgba(
            37,
            128,
            232,
            .24
        );

    font-size: 64px;
    line-height: 1;
}


/* =========================================================
   IMAGES
========================================================= */

.wist-inner-main__content img {
    max-width: 100%;
    height: auto;

    border-radius: 22px;
}

.wist-inner-main__content figure {
    margin:
        42px 0;
}

.wist-inner-main__content figcaption {
    margin-top: 10px;

    color: #8490a2;

    font-size: 13px;
}


/* =========================================================
   TABLE
========================================================= */

.wist-inner-main__content table {
    width: 100%;

    margin:
        34px 0;

    border-collapse: separate;
    border-spacing: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(
            11,
            36,
            76,
            .08
        );

    border-radius: 18px;

    background: #ffffff;
}

.wist-inner-main__content th,
.wist-inner-main__content td {
    padding:
        15px 18px;

    border-bottom:
        1px solid
        rgba(
            11,
            36,
            76,
            .07
        );

    text-align: left;
}

.wist-inner-main__content th {
    color: #0b244c;

    background:
        rgba(
            37,
            128,
            232,
            .045
        );

    font-size: 13px;
    font-weight: 750;
}


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

.wist-inner-main__content
.wp-block-columns {
    gap: 22px;

    margin:
        36px 0;
}

.wist-inner-main__content
.wp-block-column {
    padding: 26px;

    border:
        1px solid
        rgba(
            11,
            36,
            76,
            .07
        );

    border-radius: 20px;

    background:
        rgba(
            255,
            255,
            255,
            .8
        );

    box-shadow:
        0 14px 40px
        rgba(
            11,
            36,
            76,
            .05
        );
}


/* =========================================================
   BUTTONS
========================================================= */

.wist-inner-main__content
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding:
        0 22px;

    color: #ffffff;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #0b356d,
            #2580e8
        );

    text-decoration: none;

    box-shadow:
        0 12px 28px
        rgba(
            37,
            128,
            232,
            .2
        );
}


/* =========================================================
   RESPONSIVE — 1200
========================================================= */

@media (max-width: 1200px) {

    .wist-inner-content__container {
        grid-template-columns:
            270px
            minmax(0, 1fr);

        gap: 46px;
    }

    .wist-inner-main::before {
        left: -23px;
    }

}


/* =========================================================
   RESPONSIVE — 1024
========================================================= */

@media (max-width: 1024px) {

    .wist-inner-hero {
        min-height: 500px;
    }


    .wist-inner-hero__container,
    .wist-inner-content__container {
        width:
            min(
                100% - 48px,
                1420px
            );
    }

    .wist-inner-content__container {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .wist-inner-sidebar__inner {
        position: relative;

        top: auto;
    }

    .wist-inner-menu {
        display: grid;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .wist-inner-menu li + li {
        border-top:
            0;
    }

    .wist-inner-menu li {
        border-bottom:
            1px solid
            rgba(
                11,
                36,
                76,
                .065
            );
    }

    .wist-inner-main::before {
        display: none;
    }

}


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

@media (max-width: 700px) {

    .wist-inner-hero {
        min-height: 480px;
    }

    .wist-inner-hero__media {
        width: 100%;
    }

    .wist-inner-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3,27,59,.98) 0%,
                rgba(3,27,59,.86) 54%,
                rgba(3,27,59,.46) 100%
            );
    }

    .wist-inner-hero__container,
    .wist-inner-content__container {
        width:
            calc(100% - 32px);
    }

    .wist-inner-hero__content {
        padding:
            90px 0
            72px;
    }

    .wist-inner-hero__title {
        max-width: 90%;

        font-size:
            clamp(
                44px,
                13vw,
                64px
            );
    }

    .wist-inner-content {
        padding:
            54px 0
            80px;
    }

    .wist-inner-content::before {
        display: none;
    }

    .wist-inner-menu {
        grid-template-columns:
            1fr;
    }

    .wist-inner-menu a {
        min-height: 64px;
    }

    .wist-inner-main__content {
        font-size: 16px;
        line-height: 1.7;
    }

    .wist-inner-main__content h2 {
        font-size: 38px;
    }

    .wist-inner-main__content
    .wp-block-columns {
        display: block;
    }

    .wist-inner-main__content
    .wp-block-column + .wp-block-column {
        margin-top: 16px;
    }

}

.wist-inner-menu li.is-current > a {
    color: #0b244c;

    background:
        linear-gradient(
            90deg,
            rgba(37,128,232,.12),
            rgba(37,128,232,.03)
        );
}

.wist-inner-menu li.is-current > a::before {
    content: "";

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

    width: 3px;

    border-radius: 0 4px 4px 0;

    background:
        linear-gradient(
            180deg,
            #2580e8,
            #7b61ff
        );

    box-shadow:
        0 0 16px rgba(37,128,232,.35);
}

.wist-inner-menu li.is-current
.wist-inner-menu__number {
    color: #2580e8;
}

.wist-inner-menu li.is-current
.wist-inner-menu__title {
    font-weight: 750;
}

.wist-inner-menu li.is-current
.wist-inner-menu__arrow {
    color: #2580e8;
    transform: translateX(3px);
}