/* =========================================================
   SECTION AND CURRICULUM MENUS
========================================================= */

.school-section-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.school-section-menu__item {
    margin-bottom: 10px;
}

.school-section-menu__item a,
.school-section-menu__item a:visited,
.school-section-menu__item a:focus,
.school-section-menu__item a:active {
    display: block;
    color: var(--school-menu-text);
    text-decoration: none;
    font-weight: 500;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.school-section-menu.use-default-chevron .school-section-menu__item a::before {
    content: var(--school-chevron);
    display: inline-block;
    margin-right: var(--school-chevron-gap);
    font-family: inherit;
    font-size: var(--school-chevron-size);
    font-weight: var(--school-chevron-weight);
    line-height: 1;
}

.school-section-menu__item a:hover {
    color: var(--school-menu-text-hover);
    transform: translateX(4px);
}

.school-section-menu__item.current-menu-item > a,
.school-section-menu__item.current_page_item > a,
.school-section-menu__item.current_page_parent > a {
    font-weight: 700;
}



.school-section-menu__item a:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.no-section-menu .school-layout-main {
    --width: 100% !important;
}
