﻿/* =========================================================
   ETUGEN UNIVERSITY
   PUBLIC WEBSITE
   FIGMA DESIGN SYSTEM
   ========================================================= */


/* =========================================================
   FONTS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');


/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
    /* Typography */
    --eu-font-primary: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
    --eu-font-display: "Lora", Georgia, "Times New Roman", serif;
    /* Primary */
    --eu-primary-100: #ffe204;
    --eu-primary-200: #ffd907;
    --eu-primary-300: #ffd10a;
    --eu-primary-400: #fec80c;
    --eu-primary-500: #febf0f;
    --eu-primary-10: #ffe600;
    /* Secondary */
    --eu-secondary-100: #cce7c0;
    --eu-secondary-200: #9dcd81;
    --eu-secondary-300: #6db544;
    --eu-secondary-400: #558c35;
    --eu-secondary-500: #3c6425;
    --eu-secondary-10: #6db544;
    /* Neutral */
    --eu-neutral-100: #ffffff;
    --eu-neutral-200: #e8e8e8;
    --eu-neutral-300: #d2d2d2;
    --eu-neutral-400: #bbbbbb;
    --eu-neutral-500: #a4a4a4;
    --eu-neutral-600: #8e8e8e;
    --eu-neutral-700: #777777;
    --eu-neutral-800: #606060;
    --eu-neutral-900: #4a4a4a;
    --eu-neutral-1000: #333333;
    --eu-neutral-10: #333333;
    /* Feedback */
    --eu-red-100: #fb3748;
    --eu-red-200: #d00416;
    --eu-red-10: #fb3748;
    --eu-yellow-100: #ffdb43;
    --eu-yellow-200: #dfb400;
    --eu-yellow-10: #ffdb43;
    --eu-green-100: #84e0b4;
    --eu-green-200: #1fc16b;
    --eu-green-10: #84e0b4;
    /* General */
    --eu-white: #ffffff;
    --eu-black: #000000;
    --eu-container: 1280px;
    /* Spacing */
    --eu-space-1: 4px;
    --eu-space-2: 8px;
    --eu-space-3: 12px;
    --eu-space-4: 16px;
    --eu-space-5: 24px;
    --eu-space-6: 32px;
    --eu-space-7: 48px;
    --eu-space-8: 64px;
    --eu-space-9: 80px;
    --eu-space-10: 96px;
    --eu-space-11: 120px;
    /* Radius */
    --eu-radius-0: 0;
    --eu-radius-1: 2px;
    --eu-radius-2: 4px;
    --eu-radius-3: 8px;
    /* Borders */
    --eu-border-light: var(--eu-neutral-200);
    --eu-border-medium: var(--eu-neutral-300);
}


/* =========================================================
   RESET
   ========================================================= */

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.eu-site {
    min-height: 100vh;
    font-family: var(--eu-font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--eu-neutral-1000);
    background: var(--eu-neutral-100);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font-family: var(--eu-font-primary);
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eu-display {
    font-family: var(--eu-font-display);
    font-weight: 400;
}

.eu-heading-xl {
    font-family: var(--eu-font-display);
    font-size: clamp(42px, 3.4vw, 60px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.eu-heading-lg {
    font-family: var(--eu-font-display);
    font-size: clamp(36px, 2.8vw, 50px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.eu-heading-md {
    font-family: var(--eu-font-display);
    font-size: clamp(27px, 2vw, 38px);
    font-weight: 400;
    line-height: 1.2;
}

.eu-body-lg {
    font-size: 16px;
    line-height: 1.85;
}

.eu-body-md {
    font-size: 15px;
    line-height: 1.75;
}

.eu-body-sm {
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.eu-site-container {
    width: calc(100% - 64px);
    max-width: var(--eu-container);
    margin-left: auto;
    margin-right: auto;
}

.eu-main {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.eu-header {
    position: relative;
    width: 100%;
    height: 66px;
    background: var(--eu-neutral-100);
    border-bottom: 1px solid var(--eu-border-light);
    z-index: 1000;
}

.eu-header__inner {
    height: 66px;
    display: flex;
    align-items: center;
}


/* =========================================================
   LOGO
   ========================================================= */

.eu-header__logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    margin-right: 32px;
    color: var(--eu-neutral-1000);
    text-decoration: none;
}

    .eu-header__logo:hover {
        color: var(--eu-neutral-1000);
        text-decoration: none;
    }

    .eu-header__logo img {
        display: block;
        width: auto;
        height: 42px;
        object-fit: contain;
    }

.eu-header__logo-text {
    display: flex;
    flex-direction: column;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-primary);
    font-size: 26px;
    font-weight: 700;
    line-height: .8;
}

    .eu-header__logo-text small {
        margin-top: 6px;
        font-size: 9px;
        font-weight: 500;
        line-height: 1;
        text-align: center;
    }


/* =========================================================
   NAVIGATION
   ========================================================= */

.eu-header__nav {
    flex: 1;
    height: 100%;
    display: flex !important;
    align-items: center;
}

.eu-main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .eu-main-nav .nav-item {
        display: flex;
        align-items: center;
        margin: 0;
    }

.eu-main-nav__link {
    min-height: 66px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    color: var(--eu-neutral-800);
    font-family: var(--eu-font-primary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

    .eu-main-nav__link:hover,
    .eu-main-nav__link:focus {
        color: var(--eu-neutral-1000);
        text-decoration: none;
    }


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.eu-header__actions {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.eu-header__search {
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eu-neutral-1000);
    text-decoration: none;
}

    .eu-header__search:hover {
        color: var(--eu-black);
    }

.eu-header__divider {
    width: 1px;
    height: 24px;
    display: block;
    background: var(--eu-border-light);
}

.eu-header__language {
    width: 54px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eu-neutral-1000);
    text-decoration: none;
}

.eu-language-circle {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--eu-neutral-200);
    color: var(--eu-neutral-1000);
    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   LOGIN BUTTON
   ========================================================= */

.eu-login-button {
    min-width: 118px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-left: 22px;
    padding-right: 22px;
    background: linear-gradient( 120deg, var(--eu-secondary-300) 0%, var(--eu-primary-300) 100% );
    color: var(--eu-white);
    font-family: var(--eu-font-primary);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
}

    .eu-login-button:hover,
    .eu-login-button:focus {
        color: var(--eu-white);
        text-decoration: none;
    }

.eu-login-arrow {
    font-size: 18px;
    line-height: 1;
}

.eu-logout-form {
    display: inline-flex;
    margin: 0;
}

.eu-logout-button {
    height: 66px;
    padding: 0 15px;
    border: 0;
    background: var(--eu-neutral-1000);
    color: var(--eu-white);
    font-size: 12px;
}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.eu-mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}


/* =========================================================
   HOME HERO
   ========================================================= */

.eu-home-hero {
    position: relative;
    width: 100%;
    height: 700px;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.eu-home-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .46);
    z-index: 1;
}

.eu-home-hero__inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.eu-home-hero__content {
    width: 100%;
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
    color: var(--eu-white);
    text-align: center;
    transform: translateY(52px);
}

.eu-home-hero__title {
    margin: 0 0 20px;
    color: var(--eu-white);
    font-family: var(--eu-font-display);
    font-size: clamp(44px, 3.15vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.eu-home-hero__body {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, .92);
    font-family: var(--eu-font-primary);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
}

    .eu-home-hero__body p {
        margin: 0;
    }

.eu-home-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, .75);
    background: transparent;
    color: var(--eu-white);
    font-size: 14px;
    text-decoration: none;
}

    .eu-home-hero__button:hover {
        background: var(--eu-white);
        color: var(--eu-neutral-1000);
    }


/* =========================================================
   GENERIC HOME SECTION
   ========================================================= */

.eu-home-section {
    width: 100%;
    padding-top: var(--eu-space-10);
    padding-bottom: var(--eu-space-10);
    background: var(--eu-neutral-100);
}

.eu-home-section--soft {
    background: var(--eu-neutral-200);
}

.eu-home-section--gray {
    background: #f5f5f5;
}


/* =========================================================
   SECTION TITLES
   ========================================================= */

.eu-section-title {
    margin: 0 0 32px;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-display);
    font-size: clamp(38px, 2.6vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.eu-section-title-sm {
    margin: 0 0 22px;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-display);
    font-size: clamp(27px, 2vw, 35px);
    font-weight: 400;
    line-height: 1.2;
}

/* =========================================================
   HOME — QUICK LINKS
   Figma: ТҮРГЭН ХОЛБООС
   ========================================================= */

.eu-quicklinks {
    width: 100%;
    padding-top: 108px;
    padding-bottom: 120px;
    background: var(--eu-neutral-100);
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.eu-quicklinks__heading {
    margin: 0 0 30px;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-display);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.025em;
}


/* =========================================================
   TOP TABS
   ========================================================= */

.eu-quicklinks__tabs-wrap {
    width: 100%;
    border-bottom: 1px solid var(--eu-neutral-200);
}

.eu-quicklinks__tabs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

    .eu-quicklinks__tabs::-webkit-scrollbar {
        display: none;
    }

.eu-quicklinks__tab {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0 20px;
    color: var(--eu-neutral-700);
    font-family: var(--eu-font-display);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

    .eu-quicklinks__tab:hover {
        color: var(--eu-neutral-1000);
        text-decoration: none;
    }

    .eu-quicklinks__tab::after {
        content: "";
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: -1px;
        height: 1px;
        background: transparent;
    }

    .eu-quicklinks__tab.is-active {
        color: var(--eu-neutral-1000);
    }

        .eu-quicklinks__tab.is-active::after {
            background: var(--eu-neutral-1000);
        }


/* =========================================================
   CONTENT GRID
   Figma:
   left menu | center copy | image
   ========================================================= */

.eu-quicklinks__content {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 405px;
    column-gap: 30px;
    margin-top: 50px;
    align-items: start;
}


/* =========================================================
   LEFT SUBMENU
   ========================================================= */

.eu-quicklinks__submenu {
    min-height: 375px;
    padding-right: 38px;
    border-right: 1px solid var(--eu-neutral-200);
}

.eu-quicklinks__submenu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.eu-quicklinks__submenu-link {
    display: block;
    width: 100%;
    padding: 8px 0;
    color: var(--eu-neutral-800);
    font-family: var(--eu-font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    text-decoration: none;
}

    .eu-quicklinks__submenu-link:hover {
        color: var(--eu-neutral-1000);
        text-decoration: none;
    }


/* =========================================================
   CENTER COPY
   ========================================================= */

.eu-quicklinks__copy {
    padding: 5px 30px 0 0;
}

.eu-quicklinks__title {
    max-width: 430px;
    margin: 0 0 36px;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-display);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.eu-quicklinks__body {
    max-width: 430px;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

    .eu-quicklinks__body p {
        margin-top: 0;
        margin-bottom: 18px;
    }

        .eu-quicklinks__body p:last-child {
            margin-bottom: 0;
        }

    .eu-quicklinks__body strong,
    .eu-quicklinks__body b {
        color: var(--eu-neutral-1000);
        font-weight: 700;
    }


/* =========================================================
   RIGHT IMAGE
   ========================================================= */

.eu-quicklinks__image-column {
    width: 100%;
}

.eu-quicklinks__image {
    width: 100%;
    overflow: hidden;
}

    .eu-quicklinks__image img {
        display: block;
        width: 100%;
        height: 225px;
        object-fit: cover;
        object-position: center;
    }


/* =========================================================
   QUICK LINKS — LAPTOP
   ========================================================= */

@media (max-width: 1199.98px) {

    .eu-quicklinks {
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .eu-quicklinks__content {
        grid-template-columns: 220px minmax(0, 1fr) 330px;
        column-gap: 25px;
    }

    .eu-quicklinks__heading {
        font-size: 38px;
    }

    .eu-quicklinks__title {
        font-size: 34px;
    }

    .eu-quicklinks__tab {
        padding-left: 14px;
        padding-right: 14px;
        font-size: 12px;
    }

        .eu-quicklinks__tab::after {
            left: 14px;
            right: 14px;
        }

    .eu-quicklinks__image img {
        height: 210px;
    }
}


/* =========================================================
   QUICK LINKS — TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .eu-quicklinks {
        padding-top: 70px;
        padding-bottom: 75px;
    }

    .eu-quicklinks__heading {
        margin-bottom: 22px;
        font-size: 35px;
    }

    .eu-quicklinks__tabs {
        justify-content: flex-start;
    }

    .eu-quicklinks__content {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 35px 30px;
        margin-top: 38px;
    }

    .eu-quicklinks__submenu {
        min-height: 100%;
        padding-right: 25px;
    }

    .eu-quicklinks__copy {
        padding-right: 0;
    }

    .eu-quicklinks__title {
        max-width: 100%;
        font-size: 34px;
    }

    .eu-quicklinks__body {
        max-width: 100%;
    }

    .eu-quicklinks__image-column {
        grid-column: 1 / -1;
    }

    .eu-quicklinks__image img {
        height: 360px;
    }
}


/* =========================================================
   QUICK LINKS — MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .eu-quicklinks {
        padding-top: 55px;
        padding-bottom: 60px;
    }

    .eu-quicklinks__heading {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .eu-quicklinks__tabs-wrap {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }

    .eu-quicklinks__tabs {
        padding-left: 15px;
        padding-right: 15px;
    }

    .eu-quicklinks__tab {
        min-height: 48px;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 12px;
    }

    .eu-quicklinks__content {
        display: flex;
        flex-direction: column;
        gap: 34px;
        margin-top: 35px;
    }

    .eu-quicklinks__submenu {
        width: 100%;
        min-height: 0;
        padding: 0 0 25px;
        border-right: 0;
        border-bottom: 1px solid var(--eu-neutral-200);
    }

    .eu-quicklinks__submenu-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 20px;
    }

    .eu-quicklinks__submenu-link {
        padding: 6px 0;
        font-size: 13px;
    }

    .eu-quicklinks__copy {
        width: 100%;
        padding: 0;
    }

    .eu-quicklinks__title {
        margin-bottom: 24px;
        font-size: 30px;
        line-height: 1.3;
    }

    .eu-quicklinks__body {
        font-size: 14px;
        line-height: 1.65;
    }

    .eu-quicklinks__image-column {
        width: 100%;
    }

    .eu-quicklinks__image img {
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }
}


/* =========================================================
   QUICK LINKS — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .eu-quicklinks__heading {
        font-size: 27px;
    }

    .eu-quicklinks__submenu-list {
        grid-template-columns: 1fr;
    }

    .eu-quicklinks__title {
        font-size: 27px;
    }
}
/* =========================================================
   HOME — ETUGEN CULTURE
   Figma: ЭТҮГЭН СОЁЛ
   ========================================================= */

.eu-culture {
    width: 100%;
    padding-top: 110px;
    padding-bottom: 120px;
    background: var(--eu-neutral-100);
}

.eu-culture__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    column-gap: 80px;
    align-items: start;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.eu-culture__content {
    padding-top: 4px;
}

.eu-culture__heading {
    margin: 0 0 58px;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-display);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.eu-culture__values {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.eu-culture__value {
    max-width: 760px;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-display);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: -.02em;
    text-transform: uppercase;
}


/* =========================================================
   RIGHT IMAGE
   ========================================================= */

.eu-culture__image-wrap {
    width: 100%;
}

.eu-culture__image {
    display: block;
    width: 100%;
    height: 565px;
    object-fit: cover;
    object-position: center top;
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199.98px) {

    .eu-culture {
        padding-top: 90px;
        padding-bottom: 95px;
    }

    .eu-culture__grid {
        grid-template-columns: minmax(0, 1fr) 350px;
        column-gap: 55px;
    }

    .eu-culture__heading {
        margin-bottom: 48px;
        font-size: 38px;
    }

    .eu-culture__value {
        font-size: 31px;
    }

    .eu-culture__image {
        height: 500px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .eu-culture {
        padding-top: 72px;
        padding-bottom: 75px;
    }

    .eu-culture__grid {
        grid-template-columns: minmax(0, 1fr) 300px;
        column-gap: 40px;
    }

    .eu-culture__heading {
        margin-bottom: 40px;
        font-size: 34px;
    }

    .eu-culture__values {
        gap: 24px;
    }

    .eu-culture__value {
        font-size: 27px;
    }

    .eu-culture__image {
        height: 440px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .eu-culture {
        padding-top: 58px;
        padding-bottom: 60px;
    }

    .eu-culture__grid {
        display: flex;
        flex-direction: column;
        gap: 36px;
    }

    .eu-culture__content {
        width: 100%;
        padding-top: 0;
    }

    .eu-culture__heading {
        margin-bottom: 30px;
        font-size: 30px;
    }

    .eu-culture__values {
        gap: 20px;
    }

    .eu-culture__value {
        max-width: 100%;
        font-size: 24px;
        line-height: 1.3;
    }

    .eu-culture__image-wrap {
        width: 100%;
    }

    .eu-culture__image {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        object-position: center top;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .eu-culture__heading {
        font-size: 27px;
    }

    .eu-culture__value {
        font-size: 21px;
    }
}
/* =========================================================
   HOME — SCHOOLS / STUDY
   ========================================================= */

.eu-schools {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 125px;
    background: var(--eu-neutral-100);
}


/* =========================================================
   GRID
   ========================================================= */

.eu-schools__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    column-gap: 100px;
    align-items: start;
}


/* =========================================================
   LEFT INTRO
   ========================================================= */

.eu-schools__intro {
    max-width: 520px;
    padding-top: 5px;
}

.eu-schools__heading {
    margin: 0;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-display);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.eu-schools__subtitle {
    margin-top: 28px;
    color: var(--eu-neutral-700);
    font-family: var(--eu-font-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.eu-schools__body {
    max-width: 470px;
    margin-top: 34px;
    color: var(--eu-neutral-800);
    font-family: var(--eu-font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

    .eu-schools__body p {
        margin-top: 0;
        margin-bottom: 18px;
    }

        .eu-schools__body p:last-child {
            margin-bottom: 0;
        }


/* =========================================================
   MORE LINK
   ========================================================= */

.eu-schools__more {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 42px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--eu-neutral-1000);
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

    .eu-schools__more:hover {
        color: var(--eu-secondary-400);
        border-bottom-color: var(--eu-secondary-400);
        text-decoration: none;
    }

.eu-schools__more-arrow {
    font-size: 18px;
    line-height: 1;
}


/* =========================================================
   RIGHT LIST
   ========================================================= */

.eu-schools__list {
    width: 100%;
    border-top: 1px solid var(--eu-neutral-300);
}

.eu-schools__row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 42px;
    column-gap: 24px;
    align-items: center;
    min-height: 112px;
    padding: 22px 0;
    border-bottom: 1px solid var(--eu-neutral-300);
}


/* =========================================================
   NUMBER
   ========================================================= */

.eu-schools__number {
    align-self: start;
    padding-top: 4px;
    color: var(--eu-neutral-600);
    font-family: var(--eu-font-primary);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}


/* =========================================================
   CATEGORY
   ========================================================= */

.eu-schools__category {
    margin-bottom: 10px;
    color: var(--eu-neutral-600);
    font-family: var(--eu-font-primary);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .04em;
    text-transform: uppercase;
}


/* =========================================================
   SCHOOL NAME
   ========================================================= */

.eu-schools__name {
    display: inline-block;
    color: var(--eu-secondary-400);
    font-family: var(--eu-font-display);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -.015em;
    text-decoration: none;
}

a.eu-schools__name:hover {
    color: var(--eu-secondary-500);
    text-decoration: none;
}


/* =========================================================
   ARROW
   ========================================================= */

.eu-schools__arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .eu-schools__arrow a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        color: var(--eu-neutral-1000);
        font-size: 21px;
        line-height: 1;
        text-decoration: none;
        transition: transform .2s ease, color .2s ease;
    }

.eu-schools__row:hover .eu-schools__arrow a {
    color: var(--eu-secondary-400);
    transform: translate(3px, -3px);
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199.98px) {

    .eu-schools {
        padding-top: 95px;
        padding-bottom: 100px;
    }

    .eu-schools__grid {
        column-gap: 65px;
    }

    .eu-schools__heading {
        font-size: 42px;
    }

    .eu-schools__name {
        font-size: 22px;
    }

    .eu-schools__row {
        min-height: 105px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .eu-schools {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .eu-schools__grid {
        grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
        column-gap: 45px;
    }

    .eu-schools__heading {
        font-size: 35px;
    }

    .eu-schools__body {
        margin-top: 26px;
        font-size: 13px;
    }

    .eu-schools__row {
        grid-template-columns: 42px minmax(0, 1fr) 34px;
        column-gap: 14px;
        min-height: 95px;
    }

    .eu-schools__name {
        font-size: 20px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .eu-schools {
        padding-top: 60px;
        padding-bottom: 65px;
    }

    .eu-schools__grid {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }

    .eu-schools__intro {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .eu-schools__heading {
        max-width: 100%;
        font-size: 31px;
        line-height: 1.2;
    }

    .eu-schools__subtitle {
        margin-top: 20px;
    }

    .eu-schools__body {
        max-width: 100%;
        margin-top: 24px;
        font-size: 14px;
        line-height: 1.7;
    }

    .eu-schools__more {
        margin-top: 28px;
    }


    /* List */

    .eu-schools__row {
        grid-template-columns: 35px minmax(0, 1fr) 30px;
        column-gap: 10px;
        min-height: 92px;
        padding: 20px 0;
    }

    .eu-schools__number {
        font-size: 11px;
    }

    .eu-schools__category {
        margin-bottom: 7px;
        font-size: 10px;
    }

    .eu-schools__name {
        font-size: 19px;
    }

    .eu-schools__arrow a {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .eu-schools__heading {
        font-size: 28px;
    }

    .eu-schools__row {
        grid-template-columns: 30px minmax(0, 1fr) 25px;
    }

    .eu-schools__name {
        font-size: 18px;
    }
}
/* =========================================================
   HOME — RESEARCH / INNOVATION
   FIGMA MATCH
   ========================================================= */

.eu-research {
    width: 100%;
    padding: 120px 0;
    background: #f5f5f5;
}


/* =========================================================
   SPECIAL FIGMA WIDTH
   ========================================================= */

.eu-research__container {
    width: calc(100% - 40px);
    max-width: 1182px;
    margin: 0 auto;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.eu-research__layout {
    display: grid;
    grid-template-columns: 480px minmax(0, 1fr);
    column-gap: 80px;
    align-items: start;
}


/* =========================================================
   IMAGE
   ========================================================= */

.eu-research__media {
    width: 480px;
    height: 396px;
    overflow: hidden;
}

.eu-research__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.eu-research__content {
    min-width: 0;
    padding-top: 0;
}


/* =========================================================
   TITLE
   ========================================================= */

.eu-research__heading {
    max-width: 500px;
    margin: -2px 0 0;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-display);
    font-size: 39px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.025em;
    text-transform: uppercase;
}


/* =========================================================
   LOWER AREA

   Figma:
   arrow on left
   body starts further right
   ========================================================= */

.eu-research__lower {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    column-gap: 42px;
    align-items: end;
    margin-top: 45px;
}


/* =========================================================
   BODY TEXT
   ========================================================= */

.eu-research__text {
    min-width: 0;
}

.eu-research__body {
    max-width: 470px;
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

    .eu-research__body p {
        margin: 0;
    }

        .eu-research__body p + p {
            margin-top: 15px;
        }


/* =========================================================
   FIGMA ARROW
   ========================================================= */

.eu-research__arrow {
    position: relative;
    display: block;
    width: 52px;
    height: 52px;
    margin-left: 63px;
    margin-bottom: 2px;
    text-decoration: none;
}


    /* diagonal line */

    .eu-research__arrow::before {
        content: "";
        position: absolute;
        left: 5px;
        top: 8px;
        width: 51px;
        height: 1.5px;
        background: var(--eu-neutral-1000);
        transform: rotate(45deg);
        transform-origin: left center;
        transition: transform .2s ease;
    }


    /* bottom horizontal arrow head */

    .eu-research__arrow::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 2px;
        width: 38px;
        height: 1.5px;
        background: var(--eu-neutral-1000);
    }


    /* right vertical arrow head */

    .eu-research__arrow span::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 2px;
        width: 1.5px;
        height: 38px;
        background: var(--eu-neutral-1000);
    }

    .eu-research__arrow:hover::before {
        transform: translate(3px, 3px) rotate(45deg);
    }


/* Desktop Figma does not show text link */

.eu-research__mobile-link {
    display: none;
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199.98px) {

    .eu-research {
        padding: 95px 0;
    }

    .eu-research__container {
        width: calc(100% - 48px);
    }

    .eu-research__layout {
        grid-template-columns: 420px minmax(0, 1fr);
        column-gap: 60px;
    }

    .eu-research__media {
        width: 420px;
        height: 350px;
    }

    .eu-research__heading {
        font-size: 36px;
    }

    .eu-research__lower {
        grid-template-columns: 90px minmax(0, 1fr);
        column-gap: 30px;
        margin-top: 36px;
    }

    .eu-research__arrow {
        margin-left: 35px;
    }

    .eu-research__body {
        font-size: 14px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .eu-research {
        padding: 75px 0;
    }

    .eu-research__layout {
        grid-template-columns: 44% minmax(0, 1fr);
        column-gap: 42px;
    }

    .eu-research__media {
        width: 100%;
        height: auto;
        aspect-ratio: 1.2 / 1;
    }

    .eu-research__heading {
        font-size: 31px;
    }

    .eu-research__lower {
        display: block;
        margin-top: 28px;
    }

    .eu-research__arrow {
        display: none;
    }

    .eu-research__body {
        max-width: none;
        font-size: 13px;
        line-height: 1.65;
    }

    .eu-research__mobile-link {
        display: inline-flex;
        align-items: center;
        gap: 18px;
        margin-top: 25px;
        color: var(--eu-neutral-1000);
        font-size: 12px;
        font-weight: 500;
        text-decoration: none;
    }

        .eu-research__mobile-link span {
            font-size: 19px;
        }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .eu-research {
        padding: 58px 0 65px;
    }

    .eu-research__container {
        width: calc(100% - 30px);
    }

    .eu-research__layout {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .eu-research__media {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .eu-research__content {
        width: 100%;
    }

    .eu-research__heading {
        max-width: 100%;
        margin: 0;
        font-size: 30px;
        line-height: 1.18;
    }

    .eu-research__lower {
        margin-top: 25px;
    }

    .eu-research__body {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .eu-research__heading {
        font-size: 27px;
    }

    .eu-research__media {
        aspect-ratio: 1 / 1;
    }
}
/* =========================================================
   NEWS
   ========================================================= */

.eu-home-news {
    width: 100%;
    padding-top: 95px;
    padding-bottom: 120px;
    background: var(--eu-neutral-100);
}

.eu-text-link {
    color: var(--eu-neutral-1000);
    text-decoration: none;
}

.eu-news-list {
    margin-top: 32px;
    border-top: 1px solid var(--eu-border-light);
}

.eu-news-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 120px 36px;
    align-items: center;
    gap: 24px;
    min-height: 112px;
    padding: 20px 0;
    border-bottom: 1px solid var(--eu-border-light);
}

.eu-news-row__date {
    color: var(--eu-neutral-600);
    font-size: 13px;
}

.eu-news-row__title {
    margin: 0 0 7px;
    color: var(--eu-neutral-1000);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

    .eu-news-row__title a {
        color: inherit;
        text-decoration: none;
    }

.eu-news-row__summary {
    margin: 0;
    color: var(--eu-neutral-700);
    font-size: 13px;
    line-height: 1.5;
}

.eu-news-row__thumb img {
    display: block;
    width: 100%;
    height: 74px;
    object-fit: cover;
}

.eu-news-row__action {
    text-align: right;
}

    .eu-news-row__action a {
        color: var(--eu-neutral-1000);
        font-size: 26px;
        text-decoration: none;
    }

.eu-empty-state {
    padding: 35px 0;
    color: var(--eu-neutral-700);
}


/* =========================================================
   MENU LANDING / ABOUT
   ========================================================= */

.menu-landing-section {
    width: 100%;
    padding-top: 70px;
    padding-bottom: 100px;
    background: var(--eu-neutral-100);
}

.menu-landing-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.menu-landing-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: rgba(0, 0, 0, .45);
}

.menu-landing-hero__text {
    max-width: 980px;
    color: var(--eu-white);
    font-family: var(--eu-font-display);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.75;
    text-align: center;
}

.menu-landing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid var(--eu-border-light);
}

.menu-landing-row__left {
    display: flex;
    align-items: center;
    gap: 36px;
}

.menu-landing-row__number {
    flex: 0 0 auto;
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--eu-border-light);
    border-radius: 50%;
    color: var(--eu-neutral-600);
    font-family: var(--eu-font-display);
    font-size: 40px;
}

.menu-landing-row__title {
    color: var(--eu-neutral-600);
    font-family: var(--eu-font-display);
    font-size: clamp(36px, 3vw, 55px);
    font-weight: 400;
    line-height: 1.2;
}

.menu-landing-row__arrow {
    color: var(--eu-neutral-1000);
    font-size: 40px;
    text-decoration: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

.eu-footer {
    width: 100%;
    background: var(--eu-black);
    color: rgba(255, 255, 255, .8);
}

.eu-footer__temporary {
    min-height: 140px;
    display: flex;
    align-items: center;
    font-size: 13px;
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199.98px) {

    .eu-site-container {
        width: calc(100% - 40px);
    }

    .eu-header__logo {
        margin-right: 18px;
    }

    .eu-main-nav__link {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 11.5px;
    }

    .eu-login-button {
        min-width: 102px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .eu-home-hero {
        height: 620px;
    }

    .eu-home-hero__content {
        transform: translateY(30px);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .eu-site-container {
        width: calc(100% - 32px);
    }


    /* Header */

    .eu-header,
    .eu-header__inner {
        height: 64px;
    }

    .eu-header__logo {
        margin-right: 0;
    }

        .eu-header__logo img {
            height: 38px;
        }

    .eu-mobile-toggle {
        display: block;
    }


    /* Collapsed menu */

    .eu-header__nav {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        display: none !important;
        padding: 18px 16px 22px;
        background: var(--eu-neutral-100);
        border-bottom: 1px solid var(--eu-border-light);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
    }

        .eu-header__nav.show {
            display: block !important;
        }

    .eu-main-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

        .eu-main-nav .nav-item {
            width: 100%;
        }

    .eu-main-nav__link {
        width: 100%;
        min-height: 48px;
        padding: 0;
        border-bottom: 1px solid var(--eu-border-light);
        font-size: 14px;
    }

    .eu-header__actions {
        width: 100%;
        height: auto;
        margin-top: 18px;
    }

    .eu-header__search,
    .eu-header__language {
        height: 48px;
    }

    .eu-login-button {
        height: 48px;
        margin-left: auto;
    }

    .eu-logout-button {
        height: 48px;
    }


    /* Hero */

    .eu-home-hero {
        height: 560px;
    }

    .eu-home-hero__content {
        max-width: 600px;
        transform: translateY(10px);
    }

    .eu-home-hero__title {
        font-size: 42px;
    }

    .eu-home-hero__body {
        font-size: 14px;
        line-height: 1.8;
    }


    /* Sections */

    .eu-home-section,
    .eu-home-intro,
    .eu-home-values,
    .eu-home-highlight,
    .eu-home-news {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .eu-values-list {
        gap: 26px;
    }


    /* News */

    .eu-news-row {
        grid-template-columns: 95px minmax(0, 1fr) 90px 30px;
        gap: 16px;
    }


    /* Menu landing */

    .menu-landing-row__number {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .menu-landing-row__title {
        font-size: 34px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .eu-site-container {
        width: calc(100% - 30px);
    }


    /* Hero */

    .eu-home-hero {
        height: 500px;
        background-position: center;
    }

    .eu-home-hero__overlay {
        background: rgba(0, 0, 0, .50);
    }

    .eu-home-hero__content {
        max-width: 100%;
        transform: none;
    }

    .eu-home-hero__title {
        margin-bottom: 18px;
        font-size: 34px;
        line-height: 1.13;
    }

    .eu-home-hero__body {
        font-size: 13px;
        line-height: 1.75;
    }


    /* Sections */

    .eu-home-section,
    .eu-home-intro,
    .eu-home-values,
    .eu-home-highlight,
    .eu-home-news {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .eu-section-title {
        margin-bottom: 24px;
    }


    /* News */

    .eu-news-row {
        grid-template-columns: minmax(0, 1fr) 85px;
        gap: 12px;
        padding: 22px 0;
    }

    .eu-news-row__date {
        grid-column: 1 / -1;
    }

    .eu-news-row__content {
        grid-column: 1;
    }

    .eu-news-row__thumb {
        grid-column: 2;
        align-self: start;
    }

    .eu-news-row__action {
        grid-column: 1 / -1;
        text-align: left;
    }


    /* Menu landing */

    .menu-landing-hero {
        min-height: 380px;
    }

    .menu-landing-hero__overlay {
        padding: 28px 20px;
    }

    .menu-landing-hero__text {
        font-size: 18px;
        line-height: 1.6;
    }

    .menu-landing-row {
        padding: 22px 0;
    }

    .menu-landing-row__left {
        gap: 16px;
    }

    .menu-landing-row__number {
        width: 56px;
        height: 56px;
        font-size: 23px;
    }

    .menu-landing-row__title {
        font-size: 24px;
    }

    .menu-landing-row__arrow {
        font-size: 28px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .eu-home-hero {
        height: 470px;
    }

    .eu-home-hero__title {
        font-size: 30px;
    }

    .eu-home-hero__body {
        font-size: 13px;
    }

    .menu-landing-row__number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .menu-landing-row__title {
        font-size: 21px;
    }
}
/* =========================================================
   HEADER — AUTHENTICATED USER ACTIONS
   ========================================================= */

.eu-admin-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    background: var(--eu-neutral-1000);
    border: 1px solid var(--eu-neutral-1000);
    color: var(--eu-white);
    font-family: var(--eu-font-primary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

    .eu-admin-header-button:hover {
        background: var(--eu-secondary-400);
        border-color: var(--eu-secondary-400);
        color: var(--eu-white);
        text-decoration: none;
    }


.eu-logout-form {
    display: inline-flex;
    margin: 0;
    padding: 0;
}


.eu-logout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    background: transparent;
    border: 1px solid var(--eu-neutral-300);
    color: var(--eu-neutral-1000);
    font-family: var(--eu-font-primary);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
}

    .eu-logout-button:hover {
        background: var(--eu-neutral-200);
        border-color: var(--eu-neutral-300);
    }


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .eu-header__actions {
        width: 100%;
        padding-top: 18px;
        flex-wrap: wrap;
    }

    .eu-admin-header-button,
    .eu-logout-button {
        min-height: 42px;
    }
}


@media (max-width: 575.98px) {

    .eu-admin-header-button,
    .eu-logout-button {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 11px;
    }
}