.public-main {
    width: min(1180px, calc(100% - 2rem));
    padding-block: 20px;
    color: #343e47;
    font-family: Lato, Arial, sans-serif;
    line-height: 1.6;
}

.school-header {
    position: relative;
    z-index: 50;
    background: #fff;
    color: #343e47;
    font-family: Lato, Arial, sans-serif;
}

.school-header .container,
.school-footer .container {
    width: min(1180px, calc(100% - 2rem));
}

.school-topbar {
    border-bottom: 1px solid #e5e5e5;
    background: #f7f7f7;
    color: #6b6f74;
    font-size: 13px;
}

.school-topbar__inner {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: space-between;
}

.school-brandbar {
    display: flex;
    min-height: 98px;
    align-items: center;
    gap: 28px;
}

.school-logo {
    flex: 1 1 auto;
    min-width: 300px;
}

.school-logo img {
    display: block;
    width: 337px;
    max-width: 100%;
    height: auto;
}

.school-contact-detail {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.school-info-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    color: #ff7264;
}

.school-info-icon svg,
.school-footer-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.school-contact-detail strong,
.school-contact-detail small {
    display: block;
    font-size: 13px;
    line-height: 20px;
}

.school-contact-detail strong { color: #4d535a; }
.school-contact-detail small { color: #878b90; }

.school-smart-link {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border: 2px solid #ff7264;
    color: #4d535a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-decoration: none;
    text-transform: uppercase;
}

.school-smart-link:hover,
.school-smart-link:focus-visible {
    background: #ff7264;
    color: #fff;
}

.school-navigation {
    background: #282e3f;
    color: #fff;
}

.school-navigation__inner {
    min-height: 60px;
}

.school-navigation .site-menu-toggle { display: none; }

.school-navigation .site-nav {
    display: block;
    min-height: 60px;
}

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

.school-menu--level-0 {
    display: flex;
    min-height: 60px;
    align-items: stretch;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.school-menu li { position: relative; }

.school-menu a {
    color: #fff;
    font-family: Raleway, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.school-menu--level-0 > li > a {
    display: flex;
    min-height: 60px;
    align-items: center;
    padding: 3px 12px;
    white-space: nowrap;
}

.school-menu--level-0 > li:hover > a,
.school-menu--level-0 > li:focus-within > a {
    color: #eab6b6;
}

.school-submenu-toggle {
    position: absolute;
    top: 50%;
    right: 2px;
    display: inline-flex;
    width: 20px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
}

.school-menu--level-0 > .school-menu__has-children > a { padding-right: 24px; }

.school-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    display: none;
    width: auto;
    min-width: 300px;
    background: #282e3f;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .22);
}

.school-submenu .school-submenu {
    top: 0;
    left: 100%;
}

.school-menu__has-children:hover > .school-submenu,
.school-menu__has-children:focus-within > .school-submenu,
.school-submenu[data-open="true"] {
    display: block;
}

.school-submenu .school-menu a {
    display: block;
    min-height: 44px;
    padding: 10px 34px 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    white-space: nowrap;
}

.school-submenu .school-menu a:hover,
.school-submenu .school-menu a:focus-visible {
    color: #ff7a7a;
}

.school-submenu .school-submenu-toggle {
    right: 7px;
    transform: translateY(-50%) rotate(-90deg);
}

.school-sticky-nav {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    left: 0;
    height: 60px;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
}

.school-sticky-nav.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.school-sticky-nav__inner {
    display: grid;
    height: 60px;
    grid-template-columns: 218px minmax(0, 1fr);
    align-items: center;
}

.school-sticky-nav__logo {
    display: flex;
    height: 56px;
    align-items: center;
}

.school-sticky-nav__logo img {
    display: block;
    width: 202px;
    max-width: 100%;
    height: auto;
}

.school-sticky-nav__menu {
    display: block;
    min-width: 0;
}

.school-sticky-nav .school-menu--level-0 {
    min-height: 60px;
}

.school-sticky-nav .school-menu--level-0 > li > a {
    min-height: 60px;
    padding: 3px 12px;
    color: #000;
    font-size: 15px;
    line-height: 24px;
}

.school-sticky-nav .school-menu--level-0 > .school-menu__has-children > a {
    padding-right: 24px;
}

.school-sticky-nav .school-menu--level-0 > li:hover > a,
.school-sticky-nav .school-menu--level-0 > li:focus-within > a {
    color: #f47600;
}

.school-sticky-nav .school-menu--level-0 > li > .school-submenu-toggle {
    color: #000;
}

.school-sticky-nav .school-submenu a,
.school-sticky-nav .school-submenu .school-submenu-toggle {
    color: #fff;
}

.school-sticky-nav__toggle { display: none; }

.school-footer {
    background: #33373d;
    color: #bfc1c5;
    font-family: Lato, Arial, sans-serif;
}

.school-footer__highlights {
    border-bottom: 1px solid #50545a;
}

.school-footer__highlights-grid {
    display: grid;
    min-height: 145px;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    border-bottom: 4px solid #70cfa4;
}

.school-footer__highlights a {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    color: #fff;
    font-family: Raleway, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}

.school-footer__highlights a:first-child { grid-column: 2; }
.school-footer-logo { display: flex; min-width: 0; align-items: center; }
.school-footer-logo img { display: block; width: 273px; max-width: 100%; height: auto; }
.school-footer-icon { display: inline-flex; width: 32px; height: 32px; flex: 0 0 32px; color: #ff7264; }
.school-footer__highlights a strong { font-weight: 400; }

.school-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-block: 32px 36px;
}

.school-footer h2 {
    margin: 0 0 15px;
    color: #fff;
    font-family: Raleway, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}

.school-footer p,
.school-footer address {
    margin: 0;
    color: #bfc1c5;
    font-size: 14px;
    font-style: normal;
    line-height: 21px;
}

.school-footer a { color: inherit; }

.school-footer__button {
    display: inline-flex;
    margin-top: 12px;
    padding: 12px 28px;
    background: #ff7264;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
}

.school-footer__bottom {
    background: #fff;
    color: #1d2227;
}

.school-footer__bottom .container {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
}

.back-to-top {
    position: fixed;
    z-index: 99990;
    right: 30px;
    bottom: max(64px, env(safe-area-inset-bottom));
    display: block;
    width: 70px;
    min-height: 70px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent url('../../uploads/homepage/back-to-top.png') no-repeat left top / 50px 51px;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transform: translateY(12px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.back-to-top.is-visible {
    opacity: .55;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible { opacity: 1; }
.back-to-top:focus-visible { outline: 3px solid #f47600; outline-offset: 2px; }

.breadcrumbs {
    margin: 0 0 22px;
    padding: 10px 14px;
    border-left: 3px solid #f47600;
    background: #f4f4f4;
    font-size: 13px;
}

.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 5px 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { color: #94989c; content: '›'; }
.breadcrumbs a { color: #4f5860; text-decoration: none; }
.breadcrumbs a:hover, .breadcrumbs a:focus-visible { color: #f47600; }
.breadcrumbs [aria-current="page"] { color: #7a7f84; }

.interior-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;
    gap: 34px;
}

.interior-layout--wide { grid-template-columns: minmax(0, 920px); }
.interior-content { min-width: 0; }
.interior-content > h1 { margin: 0 0 20px; font: 600 clamp(26px, 3vw, 34px)/1.25 Raleway, sans-serif; }
.interior-content .page-content { font-size: 15px; line-height: 1.7; }
.interior-content .page-content figure { margin: 18px 0; }
.interior-content .page-content img { display: block; max-width: 100%; height: auto; }
.interior-content .page-content figcaption { margin-top: 5px; color: #747b82; font-size: 13px; }
.interior-content .page-content .table-responsive { margin: 18px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.interior-content .page-content table { width: 100%; min-width: 480px; border-collapse: collapse; background: #fff; }
.interior-content .page-content th,
.interior-content .page-content td { padding: 7px 9px; border: 1px solid #dee2e6; text-align: left; vertical-align: top; }
.interior-content .page-content thead th { background: #007bff; color: #fff; }
.interior-content .page-content tbody tr:nth-child(even) { background: #f2f2f2; }
.interior-content .page-content tbody tr:hover { background: #f7f9fb; }

.document-viewer {
    border: 1px solid #d9dde2;
    background: #fff;
}

.document-viewer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px;
    border-bottom: 1px solid #e4e7eb;
    background: #f7f8fa;
}

.document-viewer__frame {
    display: block;
    width: 100%;
    min-height: 980px;
    border: 0;
    background: #fff;
}

.section-sidebar { padding: 0 18px 18px; border: 1px solid #e0e3e6; background: #fff; }
.section-sidebar > h2 { margin: 0 -18px 10px; padding: 14px 18px; background: #282e3f; color: #fff; font: 600 18px/24px Raleway, sans-serif; }
.section-sidebar ul { margin: 0; padding: 0; list-style: none; }
.section-sidebar ul ul { padding-left: 14px; }
.section-sidebar li { border-bottom: 1px solid #eceef0; }
.section-sidebar li:last-child { border-bottom: 0; }
.section-sidebar a { display: block; padding: 9px 4px; color: #4b535a; font-size: 14px; line-height: 20px; text-decoration: none; }
.section-sidebar a:hover, .section-sidebar a:focus-visible, .section-sidebar a[aria-current="page"] { color: #f47600; }
.section-sidebar a[aria-current="page"] { font-weight: 700; }

@media (max-width: 1050px) {
    .school-contact-detail:nth-of-type(3) { display: none; }
    .school-menu--level-0 > li > a { padding-inline: 10px; }
    .school-sticky-nav__inner { grid-template-columns: 192px minmax(0, 1fr); }
    .school-sticky-nav__logo img { width: 176px; }
    .school-sticky-nav .school-menu--level-0 > li > a { padding-inline: 10px; font-size: 14px; }
    .school-sticky-nav .school-menu--level-0 > .school-menu__has-children > a { padding-right: 22px; }
}

@media (max-width: 760px) {
    .public-main,
    .school-header .container,
    .school-footer .container { width: min(100% - 20px, 1180px); }
    .public-main { padding-block: 10px; }
    .school-topbar__inner { min-height: 30px; justify-content: center; text-align: center; }
    .school-topbar__inner span:last-child { display: none; }
    .school-brandbar { min-height: 0; flex-wrap: wrap; gap: 10px; padding-block: 10px; }
    .school-logo { min-width: 0; flex: 1 1 100%; }
    .school-logo img { width: min(337px, 100%); margin-inline: auto; }
    .school-contact-detail { display: none; }
    .school-smart-link { width: 100%; min-height: 44px; }
    .school-navigation__inner { min-height: 52px; padding-block: 4px; }
    .school-navigation .site-menu-toggle { display: flex; width: 100%; min-height: 44px; align-items: center; justify-content: space-between; border: 1px solid #4d5364; background: #282e3f; color: #fff; }
    .school-navigation .site-nav { display: none; min-height: 0; }
    .school-navigation .site-nav[data-open="true"] { display: block; }
    .school-menu--level-0 { display: block; min-height: 0; padding-top: 4px; }
    .school-menu--level-0 > li > a,
    .school-submenu .school-menu a { display: flex; min-height: 44px; align-items: center; padding: 9px 48px 9px 12px; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 0; font-size: 15px; }
    .school-submenu { position: static; width: 100%; box-shadow: none; }
    .school-submenu .school-menu a { padding-left: 28px; background: #32394c; }
    .school-submenu .school-submenu .school-menu a { padding-left: 44px; background: #3b4358; }
    .school-submenu-toggle,
    .school-submenu .school-submenu-toggle { top: 22px; right: 4px; width: 44px; min-height: 44px; transform: translateY(-50%); }
    .school-menu__has-children:hover > .school-submenu { display: none; }
    .school-menu__has-children:focus-within > .school-submenu { display: none; }
    .school-submenu[data-open="true"] { display: block !important; }
    .school-submenu .school-menu a { white-space: normal; }
    .school-sticky-nav { height: 64px; }
    .school-sticky-nav__inner { position: relative; display: grid; height: 64px; grid-template-columns: minmax(0, 1fr) 72px; gap: 8px; }
    .school-sticky-nav__logo { height: 60px; }
    .school-sticky-nav__logo img { width: min(235px, 100%); }
    .school-sticky-nav__toggle { display: flex; width: 64px; min-height: 44px; align-items: center; justify-content: space-between; padding: 7px 9px; border: 1px solid #d9d9d9; background: #fff; color: #282e3f; }
    .school-sticky-nav__menu { position: absolute; top: 64px; right: -10px; left: -10px; display: none; max-height: calc(100vh - 64px); overflow-y: auto; background: #282e3f; box-shadow: 0 8px 18px rgba(0,0,0,.24); }
    .school-sticky-nav__menu[data-open="true"] { display: block; }
    .school-sticky-nav .school-menu--level-0 { display: block; min-height: 0; }
    .school-sticky-nav .school-menu--level-0 > li > a { min-height: 44px; padding: 9px 48px 9px 12px; color: #fff; }
    .school-sticky-nav .school-menu--level-0 > li > .school-submenu-toggle { color: #fff; }
    .school-footer__highlights-grid { min-height: 0; grid-template-columns: 1fr; padding-block: 8px; }
    .school-footer__highlights a,
    .school-footer__highlights a:first-child { grid-column: 1; min-height: 58px; }
    .school-footer-logo { justify-content: center; padding-block: 12px; }
    .school-footer-logo img { width: min(273px, 90%); }
    .school-footer__grid { grid-template-columns: 1fr; gap: 24px; }
    .school-footer__bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 14px; }
    .back-to-top { right: 14px; bottom: max(58px, env(safe-area-inset-bottom)); width: 52px; min-height: 52px; background-size: 44px 45px; }
    .interior-layout { grid-template-columns: 1fr; gap: 24px; }
    .document-viewer__actions { padding: 12px; }
    .document-viewer__actions .button { width: 100%; justify-content: center; }
    .document-viewer__frame { min-height: 70vh; }
    .section-sidebar { grid-row: 2; }
}

@media (prefers-reduced-motion: reduce) {
    .school-sticky-nav,
    .back-to-top { transition: none; }
}
