/* Base */

.sj-app {
    background-color: #E8E9ED;
    overflow-x: hidden;
}

/* ===============================
   Main Content
================================ */
body {
    background-color: #EBECF0;
}
.portal-layout {
    display: block;

}

.portal-page {
    overflow-x: hidden;
}

.main-content {
    width: 100%;


}
.scroll-container {
    border: 1px solid #AE93BD;
    height: calc(83vh - 172px);
    background-color: #EBECF0;
    border-radius: 8px 0px 8px 8px;
    overflow: auto;
}
.head-line {
    display: none;
}


/* ===============================
   Header
================================ */
.portal-header {
    background: #E8E9ED;
    margin-top: 12px;
}

.portal-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
}

/* Right group */
.portal-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo */
.portal-logo {
    height: 48px;
}

/* Desktop Nav */
.portal-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.portal-nav-list a {
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
}

/* Login */
.portal-login-btn {
    display: inline-flex;
    align-items: center;
    padding: 0px 24px;
    background: #0d6efd;
    text-decoration: none;
    white-space: nowrap;
    height: 36px;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1;
    color: #EBECF0 !important;
    background-color: #2560A6;
    border: 1px solid #85A1EE;
    border-radius: 8px !important;
}

/* Hamburger */
.portal-nav-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* ===============================
   Drawer
================================ */

.portal-nav-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #EBECF0;
    border: 1px solid #AE93BD;
    border-radius: 8px 0 0 8px;
    padding: 16px;
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

/* Open State */
.portal-nav-drawer.open {
    right: 0;
}

/* Overlay */
.portal-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.portal-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Header */
.portal-drawer-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

/* Close Button */
.portal-drawer-close {
    align-self: center;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Org Info */
.portal-drawer-org {
    display: flex;
    align-items: center;
    gap: 8px;
}

.portal-drawer-logo {
    height: 48px;
}

.portal-drawer-title {
    font-size: 14px;
    font-weight: 600;
    color: #2b2b2b;
}

/* Nav */
.portal-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Nav Links (Button-like) */
.portal-drawer-link {
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #2b2b2b;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}

.portal-drawer-link:hover {
    background: #E3E4E8;
    color: #0F111A;
}

/* ===============================
   Hero Section
================================ */


.portal-hero {
    background: #E8E9ED;
    margin-top: 24px;
}

.portal-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}

.portal-hero-texts {
    position: relative;
}

.portal-hero-title {
    margin: 0;
    line-height: 1.15;
    font-weight: 800;
    display: grid;
    gap: 8px;
}

.portal-hero-title .l1 {
    font-size: 20px;
    color: #0F111A;
}

.portal-hero-title .l2 {
    font-size: 32px;
    color: #0F111A;
}

.portal-hero-subtitle {
    margin: 24px 0 0 !important;
    color: #685870;
    font-size: 13px;
}


.portal-hero-media {
    display: flex;
    justify-content: center;
    margin-top: 12px;

}

.portal-hero-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
}



/* ===============================
   Search Area
================================ */

.portal-search {
    margin-top: 24px;
    margin-bottom: 16px;
}

.portal-search-title {
    font-size: 16px;
    font-weight: 600;
    color: #0F111A;
    margin-bottom: 12px !important;
}

.portal-field-group {
    margin-bottom: 8px;

}

.form-control:focus {
    box-shadow: none;
}

.portal-input {
    height: 36px;
    background-color: #EBECF0;
    border: 1px solid #AE93BD;
    border-radius: 8px;
    overflow: hidden;
}

.portal-input .form-control,
.portal-input .input-group-text {
    border: none;
    background-color: transparent;
}

/* Input / Select */
.portal-input .form-control {
    height: 36px;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    color: #0F111A;
}

.portal-input .form-control::placeholder {
    font-size: 12px;
    font-weight: 400;
    color: #685870;
}

.portal-input .input-group-text {
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #685870;
}

.portal-dropdown {
    width: 100%;

}

.portal-dropdown-trigger {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    background-color: #EBECF0;
    border: 1px solid #AE93BD;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 400;
    color: #685870;
    cursor: pointer;
}

.portal-dropdown-trigger::after {
    display: none;
}

.portal-icon,
.portal-arrow {
    display: flex;
    align-items: center;
    pointer-events: none;
}

.dropdown-text {
    flex: 1;
    text-align: right;

}

.portal-dropdown-menu {
    width: 100%;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid #AE93BD;
    box-shadow: 0 8px 24px rgba(15, 17, 26, 0.08);
    overflow: hidden;
}

.dropdown-item {
    height: 28px;
    font-size: 11px !important;
    font-weight: 400;
    color: #685870;
    background-color: #EBECF0;

}

.dropdown-item:hover {
    background-color: #E3E4E8;
}

.dropdown-item:active {
    background-color: #2560A6;
}


/* Search Button */

.portal-search-btn {
    height: 36px;
    padding: 0;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1;
    color: #EBECF0 !important;
    background-color: #2560A6;
    border: 1px solid #85A1EE;
    border-radius: 8px !important;
}


/* ===============================
   Chips Filters
================================ */

.portal-filter-list {
    display: flex;
    gap: 8px;
    padding: 0 12px !important;
    margin: 0 -12px !important;
    list-style: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.portal-filter-list::-webkit-scrollbar {
    display: none;
}

.portal-filter-chip {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    gap: 4px;
    background-color: #EBECF0;
    border: 1px solid #AE93BD;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    color: #685870;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.portal-filter-chip .chip-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portal-filter-chip .chip-icon svg {
    width: 16px;
    height: 16px;
}

.portal-filter-chip .chip-text {
    white-space: nowrap;
}

.portal-filter-chip:hover {
    background-color: #E4E6EC;
    border-color: #9B7FB8;
}

.portal-filter-chip.active {
    background-color: #2560A6;
    border-color: #685870;
    color: #E4E6EC;
}

.portal-filter-chip.active svg {
    color: #E4E6EC;
}

.portal-filter-chip:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 96, 166, 0.25);
}


/* ===============================
   Result Bar
================================ */

.search-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 16px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 400;
    color: #685870;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #685870;
}

.result-item svg {
    width: 18px;
}

.result-divider {
    flex: 1;
    height: 1px;
    background-color: #AE93BD;
    margin: 0 12px;
}



/* ===============================
   Result Bar
================================ */

.service-card {
    position: relative;
    display: block;
    background-color: #EBECF0;
    border: 1px solid #AE93BD;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
}

/* Card Right Side */

.service-card-category {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #E3E4E8;
    display: grid;
    grid-template-rows: auto 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    padding: 12px;
    gap: 6px;
}

.service-card-category::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #AE93BD;

}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 20px;
    height: 20px;
}

.category-line {
    width: 1px;
    height: 100%;
    background-color: #AE93BD;
}

.category-title {
    writing-mode: vertical-rl;
    font-size: 11px;
    font-weight: 500;
    color: #685870;
}


/* Card Left Side */

.service-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px;
    padding-right: 56px;

}

.service-title {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: #0F111A;
    line-height: 1.6;
    margin-bottom: 8px;
}

.service-card-footer {
    margin-top: auto;
}

.service-meta {
    margin: 12px 0 !important;
    font-size: 12px;
    color: #685870;

}

.service-meta li {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 20px;
    margin: 4px 0;
}

.meta-icon svg {
    width: 18px;
    height: 18px;
}

.meta-label {
    color: #685870;
    font-weight: 500;
}

.meta-value {
    color: #0F111A;
    font-weight: 400;
}


.service-actions {
    justify-content: flex-end;
    display: flex;
    gap: 8px;
}

.service-actions .btn-primary {
    /*flex: 1;*/
    height: 36px;
    background-color: #2560A6;
    color: #EBECF0;
    border: 1px solid #AE93BD;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
}

.service-actions .btn-secondary {
    /*flex: 1;*/
    height: 36px;
    background-color: #EBECF0;
    color: #0F111A;
    border: 1px solid #AE93BD;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
}

.service-actions .btn-primary:hover {
    background-color: #235897;
    border-color: #9B7FB8;
}

.service-actions .btn-secondary:hover {
    background-color: #E4E6EC;
    border-color: #9B7FB8;
}



.support-fab {
    position: fixed;
    left: -112px;
    bottom: 80px;
    z-index: 40;

}

.support-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 12px;
    background-color: #EBECF0;
    border: 1px solid #AE93BD;
    border-radius: 0 360px 360px 0 !important;
    font-size: 12px !important;
    font-weight: 500;
    color: #685870;
    cursor: pointer;
}

.support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #685870;
}

.support-icon svg {
    width: 24px;
    height: 24px;
    color: #685870;
}

.support-btn:hover {
    background-color: #E3E4E8;
}

.support-fab:hover {
    left: 0px;
    transition: 0.5s;
}

.support-btn:active {
    transform: translateY(1px);
}

/* ===============================
    slider
================================ */

.portal-slider {
    min-width: 100% !important;
    margin: 0;
    padding: 0;
}

.text-slider {
    background: #2560A6;
    margin: 24px 0;
    height: 120px;
}

.text-slider-inner {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-slider-content {
    color: #EEEFF4;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    min-width: 100%;
    min-height: 100%;
    padding-bottom: 24px;
    align-content: center;

}


.text-slider-indicator {
    position: absolute;
    right: 16px;
    bottom: 0;
}

/* ===============================
    login Card
================================ */
.entry-section {
    margin: 24px 0;
}

.entry-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}


.entry-card {
    position: relative;
    display: flex;
    background: #EBECF0;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    border: 1px solid #AE93BD;
}


.entry-visual {
    position: relative;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entry-visual img {
    position: absolute;
    height: 70%;
    width: fit-content !important;
}


.entry-content {
    width: 70%;
    padding: 40px 64px;
    display: flex;
    flex-direction: column;
    justify-content: start;

}

.entry-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.entry-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
}

.entry-icon {
    flex-shrink: 0;
}


.entry-desc {
    font-size: 14px;
    font-weight: 500;
    color: #685870;
    margin-bottom: 48px !important;
}


.entry-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.std-btn .btn.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #2560A6;
    color: #EEEFF4;
    border: none;
    padding: 12px 32px;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;

}

.staff-btn .btn.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #EBECF0;
    color: #685870;
    border: 1px solid #685870;
    padding: 12px 32px;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;

}


.entry-hint {
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    color: #685870;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.entry-card.student .entry-visual {
    background: #E3E4E8;
    border-left: 1px solid #AE93BD;
}

.entry-card.staff .entry-visual {
    background: #E3E4E8;
    border-right: 1px solid #AE93BD;

}

.entry-card.student .entry-visual img {
    right: 8px;
}

.entry-card.staff .entry-visual img {
    left: 8px;
}

/* ===============================
    footer
================================ */
.footer {
    border: 1px solid #AE93BD;
    border-radius: 8px;
    padding: 64px 64px 24px 64px;
    background: #EBECF0;
    margin-bottom: 32px;
    position: relative;
    margin-top: 56px;


}

.footer-decoration {
    position: absolute;
    top: -58px;
    left: -48px;
    width: 148px;
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ABOUT */

.footer-about {
    text-align: right;
}

.footer-logo {
    width: 64px;
    margin-bottom: 12px;
}

.footer-about p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.9;
    color: #475569;
}

/* LINKS */

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    font-size: 14px;
    color: #334155;
    margin-bottom: 12px;
    cursor: pointer;
}

/* CONTACT */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: #334155;
}

.contact-item span {
    font-size: 16px;
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid #D9D1E1;
    margin-top: 28px;
    padding-top: 16px;
    text-align: end;
    font-size: 13px;
    color: #685870;
}

/* ===============================
    Responsive
================================ */
@media (max-width: 768px) {

    .entry-cards {
        grid-template-columns: repeat(1, 1fr);

    }

    .entry-card {
        height: 240px;

    }

    .entry-header {
        margin-bottom: 8px;
    }

    .entry-desc {
        margin-bottom: 24px !important;
    }

    .entry-header h3 {
        font-size: 16px;
    }


    .entry-desc {
        font-size: 11px;
    }

    .std-btn .btn.primary {
        height: 32px;
        font-size: 11px;
    }

    .staff-btn .btn.primary {
        height: 32px;
        font-size: 11px;
    }

    .entry-hint {
        font-size: 11px;
    }

    .entry-visual {
        height: 100%;

    }

    .entry-visual img {
        width: 160px !important;
        height: auto;
        bottom: 8px;
    }

    .entry-card.student .entry-visual img {
        right: 0px;

    }

    .entry-card.staff .entry-visual img {
        left: 0px;
    }

    .staff .entry-content {
        width: 100%;
        padding: 16px 16px 16px 48px;
    }

    .student .entry-content {
        width: 100%;
        padding: 16px 48px 16px 16px;
    }


    .footer {
        padding: 40px 24px 16px 24px;
        margin-top: 48px;

    }

    .footer-decoration {
        position: absolute;
        top: -48px;
        left: -38px;
        width: 120px;

    }

    .container .footer-about p {
        font-size: 13px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "about"
            "links"
            "contact";
        gap: 32px;
    }

   
    .footer-links {
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid #D9D1E1;
        padding-top: 24px;

    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-links li {
        font-size: 13px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-contact {
        border-top: 1px solid #D9D1E1;
        padding-top: 24px;
    }
}


@media (min-width: 768px) and (max-width: 991px) {
    .portal-nav-toggle {
        display: none;
    }

    .portal-header-right {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .portal-nav-list a {
        text-decoration: none;
        color: #2b2b2b;
        font-weight: 500;
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Logo */
    .portal-logo {
        height: 56px;
    }

    .portal-nav-list a {
        font-size: 14px;
    }

    /* Login */
    .portal-login-btn {
        padding: 0px 32px;
        height: 40px;
        font-size: 14px !important;
    }

    /* Hero */

    .portal-hero {
        padding: 48px 0;
        margin-top: 0;
    }

    .portal-hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .portal-hero-title .l1 {
        font-size: 20px;
    }

    .portal-hero-title .l2 {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .portal-hero-subtitle {
        font-size: 14px;
        width: 260px;
    }

    .portal-hero-media {
        position: relative;
        top: 24px;
    }

    .portal-hero-img {
        width: 100%;
        max-width: 420px;
    }

    .text-slider {
        margin: 32px 0;
    }

    .text-slider-content {
        font-size: 28px;
        padding-bottom: 0;
    }

    .entry-card {
        height: 240px;

    }

    .entry-header {
        margin-bottom: 8px;
    }

    .entry-desc {
        margin-bottom: 24px !important;
    }

    .entry-header h3 {
        font-size: 16px;
    }


    .entry-desc {
        font-size: 11px;
    }

    .std-btn .btn.primary {
        height: 32px;
        font-size: 11px;
    }

    .staff-btn .btn.primary {
        height: 32px;
        font-size: 11px;
    }

    .entry-hint {
        font-size: 11px;
    }

    .entry-visual {
        height: 100%;

    }

    .entry-visual img {
        width: 160px !important;
        height: auto;
        bottom: 8px;
    }

    .entry-card.student .entry-visual img {
        right: 0px;

    }

    .entry-card.staff .entry-visual img {
        left: 0px;
    }

    .staff .entry-content {
        width: 100%;
        padding: 16px 16px 16px 48px;
    }

    .student .entry-content {
        width: 100%;
        padding: 16px 48px 16px 16px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid #D9D1E1;
        padding-top: 24px;

    }

    .footer-contact {
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid #D9D1E1;
        padding-top: 24px;

    }

    .footer-links li {
        font-size: 13px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "about about"
            "links contact";
        gap: 40px;

    }

    .footer-about {
        grid-area: about;
    }

    .footer-links {
        grid-area: links;

    }

    .footer-contact {
        grid-area: contact;
    }


}

@media (min-width: 992px) and (max-width: 1199px) {
    .portal-nav-toggle {
        display: none;
    }

    .portal-header-right {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .portal-header-right {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    /* Logo */
    .portal-logo {
        height: 64px;
    }

    .portal-nav-list a {
        font-size: 16px;
    }

    /* Login */
    .portal-login-btn {
        padding: 0px 40px;
        height: 48px;
        font-size: 16px !important;
    }

    /* Hero */

    .portal-hero {
        padding: 48px 0;
        margin-top: 0;
    }

    .portal-hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .portal-hero-title .l1 {
        font-size: 24px;
    }

    .portal-hero-title .l2 {
        font-size: 38px;
        margin-bottom: 16px;
    }

    .portal-hero-subtitle {
        font-size: 14px;
        width: 380px;
    }

    .portal-hero-media {
        position: relative;
        top: 24px;
    }

    .portal-hero-img {
        width: 100%;
        max-width: 500px;
    }

    .text-slider {
        margin: 40px 0;
    }

    .text-slider-content {
        font-size: 28px;
        padding-bottom: 0;
    }

    .entry-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .entry-content {
        width: 70%;
        padding: 32px;

    }

    .entry-visual img {
        height: 82%;
    }

    .entry-card.student .entry-visual img {
        right: 0px;
        bottom: 8px;
    }

    .entry-card.staff .entry-visual img {
        left: 0px;
        bottom: 8px;
    }


    .footer-container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "about about"
            "links contact";
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid #D9D1E1;
        padding-top: 24px;

    }

    .footer-contact {
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid #D9D1E1;
        padding-top: 24px;

    }

    .footer-about {
        grid-area: about;
    }

    .footer-links {
        grid-area: links;
    }

    .footer-contact {
        grid-area: contact;
    }


}

@media (min-width: 1200px) {
    .portal-nav-toggle {
        display: none;
    }

    .portal-header-right {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    /* Logo */
    .portal-logo {
        height: 64px;
    }

    .portal-nav-list a {
        font-size: 16px;
    }

    /* Login */
    .portal-login-btn {
        padding: 0px 40px;
        height: 48px;
        font-size: 16px !important;
    }

    /* Hero */

    .portal-hero {
        padding: 48px 0;
        margin-top: 0;
    }

    .portal-hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .portal-hero-title .l1 {
        font-size: 28px;
    }

    .portal-hero-title .l2 {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .portal-hero-subtitle {
        font-size: 16px;
        width: 460px;
    }

    .portal-hero-media {
        position: relative;
        left: 24px;
        top: 32px;
    }

    .portal-hero-img {
        width: 100%;
        max-width: 520px;
    }

    .text-slider {
        margin: 40px 0;
    }

    .text-slider-content {
        font-size: 28px;
        padding-bottom: 0;
    }

    .entry-visual img {
        position: absolute;
        height: 94%;
    }
}