:root {
    --brand-color: #1f6f5b;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    color: #1f2933;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding-top: var(--navbar-height, 84px);
    width: 100%;
}

img {
    max-width: 100%;
}

.btn-primary {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
}

.text-primary {
    color: var(--brand-color) !important;
}


.brand-logo {
    width: clamp(190px, 18vw, 230px);
    max-width: 100%;
    height: 74px;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 576px) {
    .brand-logo {
        width: min(170px, calc(100vw - 118px));
        height: 56px;
    }
}

.navbar-login-btn {
    background-color: #FFF8F3;
    border: 2px solid #F58220;
    border-radius: 999px;
    color: #7c4b19;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .02em;
    padding: .5rem 1.35rem;
    text-transform: uppercase;
}

.navbar-login-btn:hover,
.navbar-login-btn:focus {
    background-color: #FFF8F3;
    border-color: #F58220;
    color: #7c4b19;
}

.navbar-password-link {
    align-items: center;
    color: #7c4b19;
    display: inline-flex;
    font-size: .82rem;
    font-weight: 800;
    margin-right: .75rem;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-password-link:hover,
.navbar-password-link:focus {
    color: #F58220;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .navbar.navbar-expand-lg.fixed-top {
        position: fixed !important;
        top: 0;
        right: 0;
        left: 0;
        max-width: 100vw;
        overflow-x: hidden;
        width: 100%;
        z-index: 1050;
        box-shadow: 0 8px 24px rgba(31, 41, 51, .1);
        padding-top: .35rem;
        padding-bottom: .35rem;
    }

    .navbar.navbar-expand-lg.fixed-top > .container {
        flex-wrap: wrap;
    }

    .navbar-brand {
        max-width: calc(100% - 78px);
        min-width: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .navbar-collapse {
        display: none !important;
        position: static;
        flex-basis: 100%;
        width: 100%;
        max-height: calc(100vh - var(--navbar-height, 84px));
        overflow-y: auto;
        overscroll-behavior: contain;
        background-color: #FFFCFA;
        border-top: 1px solid rgba(245, 130, 32, .18);
        box-shadow: none;
        margin-top: .45rem;
        padding: .8rem 0 1rem;
    }

    .navbar-collapse.show {
        display: block !important;
        height: auto !important;
        padding-bottom: 1rem;
        visibility: visible;
    }

    body.mobile-menu-open .navbar-collapse {
        display: block !important;
        height: auto !important;
        visibility: visible;
    }

    .navbar-collapse.collapsing {
        overflow: hidden;
    }

    .navbar-actions {
        width: 100%;
    }

    .navbar-login-btn {
        width: 100%;
    }

    .navbar-password-link {
        justify-content: center;
        margin: .25rem 0 .5rem;
        width: 100%;
    }
}

.navbar.bg-white {
    background-color: #FFF8F3 !important;
}

.hero-section {
    background-color: #FFF8F3;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
}

.hero-title {
    color: #2f8f83;
    font-size: clamp(2.75rem, 6vw, 5.25rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.5rem;
}

.hero-text {
    color: #1f2933;
    font-size: clamp(1.15rem, 2vw, 1.75rem);
    line-height: 1.35;
    max-width: 680px;
    margin-bottom: 2rem;
}

.hero-copy-slider {
    display: grid;
}

.hero-copy {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease;
}

.hero-copy.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-btn {
    background-color: #F58220;
    border-color: #F58220;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    padding: .85rem 2.25rem;
}

.hero-btn:hover,
.hero-btn:focus {
    background-color: #F58220;
    border-color: #F58220;
    color: #ffffff;
}

.hero-image-frame {
    min-height: 340px;
    aspect-ratio: 4 / 3;
    border: 3px solid #ffffff;
    border-radius: 28px;
    background-color: #ffffff;
    box-shadow: 0 28px 70px rgba(31, 41, 51, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-media-card {
    border: 3px solid #ffffff;
    border-radius: 28px;
    background-color: #ffffff;
    box-shadow: 0 28px 70px rgba(31, 41, 51, .18);
    overflow: hidden;
    position: relative;
    transition: transform .28s ease, box-shadow .28s ease;
}

.hero-media-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 38px 95px rgba(31, 41, 51, .28);
}

.hero-video-frame {
    aspect-ratio: 4 / 3;
    min-height: 340px;
    position: relative;
    background-color: #1f2933;
}

.hero-video {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity .45s ease;
}

.hero-video.active {
    opacity: 1;
}

.hero-video-ui {
    background: linear-gradient(180deg, rgba(31, 41, 51, 0), rgba(31, 41, 51, .74));
    color: #ffffff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 4rem 1.25rem 1.25rem;
}

.hero-video-ui span {
    color: rgba(255, 255, 255, .78);
    display: block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hero-video-ui strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.15;
}

.hero-video-controls {
    display: inline-flex;
    gap: .45rem;
}

.hero-video-control {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .48);
    padding: 0;
}

.hero-video-control.active {
    background-color: #F58220;
}

@media (max-width: 991.98px) {
    .interest-section,
    .events-section,
    .contact-section,
    .hero-section {
        scroll-margin-top: var(--navbar-height, 84px);
    }

    .hero-section {
        min-height: auto;
    }

    .hero-image-frame {
        width: 100%;
        max-width: 100%;
        min-height: 260px;
        border-radius: 22px;
    }

    .hero-media-card {
        border-radius: 22px;
    }

    .hero-video-frame {
        min-height: 260px;
    }
}

body {
    background-color: #FFFCFA;
}

.navbar.bg-white,
.navbar-login-btn,
.navbar-login-btn:hover,
.navbar-login-btn:focus,
.hero-section {
    background-color: #FFFCFA !important;
}

.navbar-nav .nav-link {
    color: #7c4b19;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .02em;
    position: relative;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.show {
    color: #7c4b19;
}

.hero-container {
    padding-top: 1.5rem !important;
}

.hero-image-frame {
    transition: transform .28s ease, box-shadow .28s ease;
    will-change: transform;
}

.hero-image-frame:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 38px 95px rgba(31, 41, 51, .28);
}

/* Navbar dropdown and focus states */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .dropdown-toggle:focus,
.navbar-nav .dropdown-toggle:focus-visible {
    border-color: #F58220;
    outline: 0;
}

.navbar-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: .35rem;
    vertical-align: .12em;
    content: "";
    border-top: .36em solid #F58220;
    border-right: .36em solid transparent;
    border-bottom: 0;
    border-left: .36em solid transparent;
}

.dropdown-menu {
    background-color: #ffffff;
    padding: .35rem;
}

.dropdown-item {
    color: #7c4b19;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #F58220;
    border-radius: .25rem;
    color: #ffffff;
}

.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item[aria-current="page"] {
    background-color: #fff1e3;
    border-left: 4px solid #F58220;
    color: #7c4b19;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link::after {
        content: none;
    }

    .navbar-nav .nav-link::before {
        content: "";
        position: absolute;
        left: .5rem;
        right: .5rem;
        bottom: .15rem;
        height: 2px;
        background-color: #F58220;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .22s ease;
    }

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link:focus::before,
    .navbar-nav .nav-item.show > .nav-link::before {
        transform: scaleX(1);
    }

    .navbar-nav .nav-link.dropdown-toggle::after {
        display: inline-block;
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        width: auto;
        height: auto;
        margin-left: .35rem;
        vertical-align: .12em;
        content: "";
        background-color: transparent;
        border-top: .36em solid #F58220;
        border-right: .36em solid transparent;
        border-bottom: 0;
        border-left: .36em solid transparent;
        transform: none;
        transition: none;
    }
}

/* Strong navbar override for Bootstrap dropdown state */
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:focus-visible,
.navbar .navbar-nav .dropdown-toggle:focus,
.navbar .navbar-nav .dropdown-toggle:focus-visible,
.navbar .navbar-nav .dropdown-toggle.show {
    color: #7c4b19;
    outline: 0 !important;
}

.navbar .navbar-nav .dropdown-toggle:focus,
.navbar .navbar-nav .dropdown-toggle:focus-visible,
.navbar .navbar-nav .dropdown-toggle.show {
    box-shadow: none !important;
}

.navbar .navbar-nav .dropdown-toggle::after,
.navbar .navbar-nav .dropdown-toggle.show::after {
    border-top-color: #F58220 !important;
    border-right-color: transparent !important;
    border-left-color: transparent !important;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    background-color: #F58220 !important;
    color: #ffffff !important;
}

@media (min-width: 992px) {
    .navbar .navbar-nav .dropdown-toggle::before,
    .navbar .navbar-nav .dropdown-toggle.show::before {
        background-color: #F58220 !important;
    }

    .navbar .navbar-nav .nav-item.show > .dropdown-toggle::before,
    .navbar .navbar-nav .dropdown-toggle.show::before {
        transform: scaleX(0) !important;
    }

    .navbar .navbar-nav .dropdown-toggle::after,
    .navbar .navbar-nav .dropdown-toggle.show::after {
        position: static !important;
        width: 0 !important;
        height: 0 !important;
        background: transparent !important;
        transform: none !important;
    }
}

.interest-section {
    background-color: #FFFCFA;
    scroll-margin-top: 88px;
}

.interest-heading {
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.interest-heading h2 {
    color: #525b66;
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.interest-heading p {
    color: #3f4650;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

.interest-grid {
    align-items: stretch;
}

.interest-card {
    min-height: 360px;
    padding: 2.2rem 1.55rem;
    border: 2px solid rgba(245, 130, 32, .52);
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(31, 41, 51, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.interest-card:hover,
.interest-card:focus-within {
    border-color: #F58220;
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(245, 130, 32, .2);
}

.interest-icon {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background-color: #F58220;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 14px 28px rgba(245, 130, 32, .24);
}

.interest-card h3 {
    color: #1f2933;
    font-size: 1.45rem;
    font-weight: 750;
    line-height: 1.2;
    margin: 1.55rem 0 .9rem;
}

.interest-card p {
    color: #434b56;
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 1.6rem;
}

.interest-btn {
    background-color: #F58220;
    border: 2px solid #F58220;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    padding: .7rem 1.7rem;
}

.interest-btn:hover,
.interest-btn:focus {
    background-color: #d9690f;
    border-color: #d9690f;
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .interest-heading {
        margin-bottom: 2.25rem;
    }

    .interest-card {
        min-height: 330px;
    }
}

.events-section {
    background-color: #F58220;
    color: #ffffff;
    min-height: calc(100vh - 74px);
    scroll-margin-top: 74px;
    display: flex;
    align-items: flex-start;
}

.events-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.events-heading h2 {
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.events-heading p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

.events-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 1.5rem;
    align-items: stretch;
}

.calendar-panel,
.events-panel {
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 8px;
    background-color: #ffffff;
    color: #1f2933;
    box-shadow: 0 24px 60px rgba(91, 43, 0, .2);
}

.calendar-panel {
    padding: 1.35rem;
}

.calendar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.calendar-label {
    color: #7c4b19;
    display: block;
    font-size: .86rem;
    font-weight: 700;
    text-transform: uppercase;
}

.year {
    color: #1f2933;
    display: block;
    font-size: 1.85rem;
    line-height: 1.1;
}

.calendar-nav {
    width: 42px;
    height: 42px;
    border: 2px solid #F58220;
    border-radius: 50%;
    background-color: #ffffff;
    color: #F58220;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.calendar-nav:hover,
.calendar-nav:focus {
    background-color: #F58220;
    color: #ffffff;
    outline: 0;
}

.months-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .45rem;
    margin-bottom: 1rem;
}

.month {
    border: 1px solid rgba(245, 130, 32, .35);
    border-radius: 999px;
    background-color: #fff7ef;
    color: #7c4b19;
    font-size: .82rem;
    font-weight: 800;
    padding: .42rem .3rem;
}

.month:hover,
.month:focus,
.month.active-month {
    background-color: #F58220;
    border-color: #F58220;
    color: #ffffff;
    outline: 0;
}

.events-calendar {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: .35rem;
}

.events-calendar th {
    color: #7c4b19;
    font-size: .78rem;
    font-weight: 800;
    text-align: center;
}

.table-date {
    width: 14.285%;
    height: 48px;
    border: 1px solid #ffe1c4;
    border-radius: 8px;
    background-color: #fffaf5;
    color: #1f2933;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.table-date:hover,
.table-date:focus {
    border-color: #F58220;
    transform: translateY(-2px);
}

.table-date.nil {
    background-color: transparent;
    border-color: transparent;
    cursor: default;
}

.table-date.event-date {
    border-color: #F58220;
    box-shadow: inset 0 -4px 0 rgba(245, 130, 32, .35);
}

.table-date.active-date {
    background-color: #F58220;
    border-color: #F58220;
    color: #ffffff;
}

.events-panel {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.events-panel-heading {
    border-bottom: 1px solid #ffe1c4;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: .95rem;
}

.events-panel-heading span {
    color: #7c4b19;
    font-size: .86rem;
    font-weight: 800;
    text-transform: uppercase;
}

.selected-date-label {
    color: #1f2933;
    font-size: .98rem;
    text-align: right;
}

.events-container {
    display: grid;
    gap: .85rem;
}

.event-card {
    border: 1px solid #ffe1c4;
    border-left: 7px solid #d9690f;
    border-radius: 8px;
    background-color: #fffaf5;
    overflow: hidden;
}

.event-card-inner {
    display: grid;
    grid-template-columns: 86px 1fr;
}

.event-date-badge {
    background-color: #F58220;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: .8rem .5rem;
}

.event-date-badge strong {
    font-size: 2rem;
    line-height: 1;
}

.event-date-badge span {
    font-size: .8rem;
    font-weight: 800;
    margin-top: .25rem;
    text-transform: uppercase;
}

.event-info {
    padding: 1rem;
}

.event-info h3 {
    color: #1f2933;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 .65rem;
}

.event-info p {
    color: #525b66;
    font-size: .92rem;
    line-height: 1.45;
    margin: .25rem 0 0;
}

.event-empty {
    border: 1px dashed rgba(245, 130, 32, .55);
    border-radius: 8px;
    background-color: #fffaf5;
    color: #525b66;
    font-weight: 700;
    padding: 1.25rem;
}

@media (max-width: 991.98px) {
    .events-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .calendar-panel,
    .events-panel {
        padding: 1rem;
    }

    .months-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .events-calendar {
        border-spacing: .22rem;
    }

    .table-date {
        height: 40px;
        font-size: .9rem;
    }

    .event-card-inner {
        grid-template-columns: 72px 1fr;
    }
}

.contact-section {
    background-color: #FFFCFA;
    scroll-margin-top: 74px;
}

.contact-heading {
    max-width: 760px;
    margin: 0 auto 2.75rem;
}

.contact-heading h2 {
    color: #525b66;
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.contact-heading p {
    color: #3f4650;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

.contact-card {
    max-width: 980px;
    margin: 0 auto;
    border-top: 5px solid #F58220;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 24px 60px rgba(31, 41, 51, .16);
    padding: clamp(1.35rem, 3vw, 2.5rem);
}

.contact-alert {
    border-radius: 8px;
    display: grid;
    gap: .25rem;
    margin-bottom: 1.35rem;
    padding: 1rem 1.1rem;
}

.contact-alert strong {
    font-weight: 850;
}

.contact-alert span {
    color: #3f4650;
}

.contact-alert-success {
    background: #fff7ef;
    border: 1px solid rgba(245, 130, 32, .35);
    color: #7c4b19;
}

.contact-alert-error {
    background: #fff1f1;
    border: 1px solid rgba(220, 38, 38, .28);
    color: #991b1b;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1.5rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.contact-field-full,
.contact-submit,
.contact-note {
    grid-column: 1 / -1;
}

.contact-field label {
    color: #7c4b19;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.contact-field label span {
    color: #F58220;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 2px solid rgba(245, 130, 32, .58);
    border-radius: 8px;
    background-color: #ffffff;
    color: #1f2933;
    font: inherit;
    font-size: 1rem;
    line-height: 1.5;
    padding: .95rem 1rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #8b929b;
    font-style: italic;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #F58220;
    box-shadow: 0 0 0 .22rem rgba(245, 130, 32, .2);
    outline: 0;
}

.contact-field textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-field small {
    color: #8b929b;
    font-weight: 600;
    text-align: right;
}

.contact-submit {
    border: 2px solid #F58220;
    border-radius: 999px;
    background-color: #F58220;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .02em;
    padding: .95rem 1.5rem;
    text-transform: uppercase;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.contact-submit:hover,
.contact-submit:focus {
    background-color: #d9690f;
    border-color: #d9690f;
    color: #ffffff;
    outline: 0;
    transform: translateY(-2px);
}

.contact-note {
    color: #3f4650;
    font-size: 1.12rem;
    font-style: italic;
    line-height: 1.45;
    margin: .15rem 0 0;
    text-align: center;
}

@media (max-width: 767.98px) {
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.25rem;
    }
}

.inner-page {
    background-color: #FFFCFA;
}

.inner-hero {
    background-color: #F58220;
    color: #ffffff;
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-kicker {
    color: #7c4b19;
    display: inline-block;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: .8rem;
    text-transform: uppercase;
}

.inner-hero .section-kicker {
    color: rgba(255, 255, 255, .78);
}

.inner-hero h1 {
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: 850;
    line-height: 1.05;
    max-width: 900px;
    margin: 0 0 1.2rem;
}

.inner-hero p {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.45;
    max-width: 760px;
    margin: 0;
}

.content-section,
.highlight-section,
.finalities-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 2rem;
    align-items: stretch;
}

.story-lead h2,
.section-heading-left h2,
.highlight-panel h2 {
    color: #525b66;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 850;
    line-height: 1.08;
    margin-bottom: 1.2rem;
}

.story-lead p,
.highlight-panel p,
.mission-card p,
.finalities-list li {
    color: #3f4650;
    font-size: 1.08rem;
    line-height: 1.7;
}

.story-card,
.feature-card,
.mission-card,
.values-grid article,
.finalities-panel {
    border: 2px solid rgba(245, 130, 32, .32);
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(31, 41, 51, .08);
}

.story-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.story-card strong {
    color: #F58220;
    font-size: 1.35rem;
    margin-bottom: .8rem;
}

.story-card p {
    color: #3f4650;
    line-height: 1.65;
    margin: 0;
}

.feature-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.feature-card,
.values-grid article {
    padding: 1.5rem;
}

.feature-card span {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #F58220;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 850;
    margin-bottom: 1.2rem;
}

.feature-card h3,
.values-grid h3 {
    color: #1f2933;
    font-size: 1.25rem;
    font-weight: 850;
    line-height: 1.25;
    margin-bottom: .7rem;
}

.feature-card p,
.values-grid p {
    color: #525b66;
    line-height: 1.6;
    margin: 0;
}

.highlight-section,
.finalities-section {
    background-color: #fff7ef;
}

.highlight-panel {
    border-radius: 8px;
    background-color: #ffffff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 20px 50px rgba(245, 130, 32, .16);
}

.highlight-panel p {
    margin: 0;
}

.authority-grid {
    display: grid;
    gap: 2rem;
}

.authority-card {
    border: 2px solid rgba(245, 130, 32, .28);
    border-radius: 8px;
    background-color: #ffffff;
    display: grid;
    grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(31, 41, 51, .12);
}

.authority-card-reverse {
    grid-template-columns: minmax(0, .58fr) minmax(260px, .42fr);
}

.authority-card-reverse .authority-photo {
    order: 2;
}

.authority-photo {
    min-height: 520px;
    background-color: #fff7ef;
}

.authority-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.authority-content {
    padding: clamp(1.5rem, 4vw, 2.75rem);
}

.authority-content > span,
.mission-card span {
    color: #F58220;
    display: inline-block;
    font-size: .9rem;
    font-weight: 850;
    letter-spacing: .04em;
    margin-bottom: .7rem;
    text-transform: uppercase;
}

.authority-content h2 {
    color: #525b66;
    font-size: clamp(1.9rem, 3vw, 3rem);
    font-weight: 850;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.authority-content p {
    color: #3f4650;
    font-size: 1.05rem;
    line-height: 1.65;
}

.authority-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.4rem;
}

.authority-columns h3 {
    color: #7c4b19;
    font-size: .95rem;
    font-weight: 850;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.authority-columns ul,
.finalities-list {
    padding-left: 1.1rem;
    margin: 0;
}

.authority-columns li {
    color: #525b66;
    line-height: 1.55;
    margin-bottom: .55rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mission-card {
    padding: clamp(1.5rem, 3vw, 2.2rem);
}

.mission-card p {
    margin: 0;
}

.section-heading-left {
    max-width: 850px;
    margin-bottom: 1.5rem;
}

.finalities-panel {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.finalities-list {
    display: grid;
    gap: .9rem;
}

.finalities-list li::marker,
.authority-columns li::marker {
    color: #F58220;
}

.area-page .inner-hero h1 {
    max-width: 760px;
}

.area-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.area-detail-card,
.area-process article,
.area-resource-list article,
.area-info-panel {
    border: 2px solid rgba(245, 130, 32, .32);
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(31, 41, 51, .08);
}

.area-detail-card,
.area-process article,
.area-resource-list article {
    padding: 1.5rem;
}

.area-detail-card span,
.area-process span {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #F58220;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 850;
    margin-bottom: 1.2rem;
}

.area-detail-card h3,
.area-process h3,
.area-resource-list h3 {
    color: #1f2933;
    font-size: 1.25rem;
    font-weight: 850;
    line-height: 1.25;
    margin-bottom: .7rem;
}

.area-detail-card p,
.area-process p,
.area-resource-list p,
.area-intro {
    color: #525b66;
    line-height: 1.65;
    margin: 0;
}

.area-info-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.area-info-panel h2 {
    color: #525b66;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 850;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.area-info-panel p {
    color: #3f4650;
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0;
}

.area-stat-card {
    border-color: #F58220;
    background: linear-gradient(135deg, #F58220 0%, #d9690f 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 26px 64px rgba(245, 130, 32, .28);
}

.area-stat-card::before {
    content: "";
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .16);
    position: absolute;
    top: -28px;
    right: -22px;
}

.area-stat-card strong {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    position: relative;
    z-index: 1;
}

.area-stat-card strong::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .18);
}

.area-stat-card p {
    color: rgba(255, 255, 255, .92);
    position: relative;
    z-index: 1;
}

.community-card-grid {
    margin-top: clamp(2.25rem, 5vw, 4rem);
}

.community-news-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.community-news-card {
    background: #fff;
    border: 2px solid rgba(245, 130, 32, .32);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(31, 41, 51, .08);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.community-news-card:hover,
.community-news-card:focus-within {
    border-color: #F58220;
    box-shadow: 0 24px 58px rgba(245, 130, 32, .18);
    transform: translateY(-3px);
}

.community-news-link {
    color: inherit;
    display: block;
    height: 100%;
    text-decoration: none;
}

.community-news-media {
    aspect-ratio: 16 / 9;
    background: #fff7ef;
    overflow: hidden;
}

.community-news-media img,
.community-news-media video {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.community-news-body {
    display: grid;
    gap: .7rem;
    padding: 1.35rem;
}

.community-news-body > span {
    color: #7c4b19;
    font-size: .82rem;
    font-weight: 850;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.community-news-body h3 {
    color: #1f2933;
    font-size: 1.35rem;
    font-weight: 850;
    line-height: 1.2;
    margin: 0;
}

.community-news-body strong {
    color: #F58220;
    line-height: 1.45;
}

.community-news-body p,
.community-news-text {
    color: #525b66;
    line-height: 1.65;
}

.community-news-body p {
    margin: 0;
}

.community-read-more {
    color: #F58220;
    font-weight: 850;
    margin-top: .25rem;
}

.community-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: center;
    margin-top: 2rem;
}

.community-pagination a {
    align-items: center;
    background: #fff;
    border: 2px solid rgba(245, 130, 32, .34);
    border-radius: 999px;
    color: #7c4b19;
    display: inline-flex;
    font-weight: 850;
    height: 42px;
    justify-content: center;
    min-width: 42px;
    padding: 0 .9rem;
    text-decoration: none;
}

.community-pagination a.active,
.community-pagination a:hover,
.community-pagination a:focus {
    background: #F58220;
    border-color: #F58220;
    color: #fff;
}

.community-detail {
    background: #fff;
    border: 2px solid rgba(245, 130, 32, .32);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(31, 41, 51, .08);
    overflow: hidden;
}

.community-detail-media {
    aspect-ratio: 16 / 9;
    background: #fff7ef;
}

.community-detail-media img,
.community-detail-media video {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.community-detail-body {
    display: grid;
    gap: 1rem;
    padding: clamp(1.4rem, 4vw, 2.5rem);
}

.community-detail-body > span {
    color: #7c4b19;
    font-size: .85rem;
    font-weight: 850;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.community-detail-heading {
    display: grid;
    gap: .45rem;
}

.community-detail-heading h2 {
    color: #3f4651;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 850;
    line-height: 1.12;
    margin: 0;
}

.community-detail-heading strong {
    color: #F58220;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 800;
    line-height: 1.45;
}

.community-detail-summary {
    color: #1f2933;
    font-size: 1.18rem;
    font-weight: 750;
    line-height: 1.65;
    margin: 0;
}

.community-detail-text {
    color: #525b66;
    font-size: 1.05rem;
    line-height: 1.8;
}

.community-back-btn {
    justify-self: start;
    min-width: 0;
    padding-inline: 1.35rem;
    width: auto;
}

.area-process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.online-courses-grid {
    align-items: stretch;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.online-course-card {
    background: #fff;
    border: 2px solid rgba(245, 130, 32, .28);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(31, 41, 51, .08);
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.online-course-card:hover {
    border-color: #F58220;
    box-shadow: 0 24px 60px rgba(245, 130, 32, .18);
    transform: translateY(-4px);
}

.online-course-cover {
    align-items: center;
    aspect-ratio: 16 / 9;
    background: #fff4e8;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.online-course-cover img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.online-course-cover span {
    align-items: center;
    background: #F58220;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 2rem;
    font-weight: 900;
    height: 88px;
    justify-content: center;
    width: 88px;
}

.online-course-body {
    display: grid;
    gap: .85rem;
    grid-template-rows: auto auto minmax(5.4rem, 1fr) auto auto;
    padding: 1.4rem;
}

.online-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    order: 4;
}

.online-course-meta span {
    background: #fff4e8;
    border: 1px solid rgba(245, 130, 32, .35);
    border-radius: 999px;
    color: #7c4b19;
    font-size: .78rem;
    font-weight: 850;
    padding: .35rem .7rem;
}

.online-course-body h3,
.course-classroom-body h2 {
    color: #3f4651;
    font-weight: 850;
    line-height: 1.15;
    margin: 0;
    min-height: 3.45rem;
    order: 1;
}

.online-course-body strong {
    color: #F58220;
    line-height: 1.45;
    min-height: 2.9rem;
    order: 2;
}

.online-course-body p {
    color: #525b66;
    line-height: 1.65;
    margin: 0;
    order: 3;
}

.online-course-body > .btn,
.online-course-body > form {
    align-self: end;
    order: 5;
}

.online-course-body > form .btn {
    width: 100%;
}

.course-classroom {
    background: #fff;
    border: 2px solid rgba(245, 130, 32, .32);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(31, 41, 51, .08);
    overflow: hidden;
}

.course-player {
    aspect-ratio: 16 / 9;
    background: #15181d;
}

.course-player video {
    display: block;
    height: 100%;
    width: 100%;
}

.course-player-empty {
    align-items: center;
    color: #fff;
    display: flex;
    font-weight: 800;
    height: 100%;
    justify-content: center;
}

.course-classroom-body {
    display: grid;
    gap: 1rem;
    padding: clamp(1.4rem, 4vw, 2.5rem);
}

.course-security-note {
    background: #fff4e8;
    border-left: 4px solid #F58220;
    color: #7c4b19;
    font-weight: 750;
    line-height: 1.55;
    padding: 1rem;
}

.course-classroom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.student-login-section {
    align-items: center;
    background: linear-gradient(180deg, #fff7ef 0%, #fff 100%);
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 96px);
    padding: clamp(2rem, 6vw, 5rem) 1rem;
}

.student-login-card {
    background: #fff;
    border: 2px solid rgba(245, 130, 32, .35);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(31, 41, 51, .12);
    max-width: 480px;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    width: 100%;
}

.student-login-card h1 {
    color: #3f4651;
    font-weight: 850;
    margin: .4rem 0 .6rem;
}

.student-login-card p {
    color: #525b66;
    line-height: 1.6;
}

.unified-login-card {
    max-width: 540px;
}

.login-type-selector {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 1.25rem 0;
}

.login-type-selector label {
    margin: 0;
}

.login-type-selector input {
    opacity: 0;
    position: absolute;
}

.login-type-selector span {
    align-items: center;
    background: #fff7ef;
    border: 2px solid rgba(245, 130, 32, .28);
    border-radius: 8px;
    color: #3f4651;
    cursor: pointer;
    display: flex;
    font-weight: 850;
    justify-content: center;
    min-height: 48px;
    padding: .7rem 1rem;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.login-type-selector input:checked + span,
.login-type-selector input:focus + span {
    background: #F58220;
    border-color: #F58220;
    color: #fff;
}

.unified-login-card .form-control {
    border: 1.5px solid rgba(245, 130, 32, .32);
    border-radius: 8px;
    min-height: 48px;
}

.unified-login-card .form-control:focus {
    border-color: #F58220;
    box-shadow: 0 0 0 .2rem rgba(245, 130, 32, .16);
}

.student-resource-layout {
    display: grid;
    gap: 1.5rem;
}

.student-resource-course {
    background: #fff;
    border: 2px solid rgba(245, 130, 32, .28);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(31, 41, 51, .08);
    padding: clamp(1.25rem, 4vw, 2rem);
}

.student-resource-course > h3 {
    color: #3f4651;
    font-weight: 850;
    margin: 0 0 1.25rem;
}

.student-resource-groups {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.student-resource-group {
    background: #fffaf4;
    border: 1px solid rgba(245, 130, 32, .22);
    border-radius: 8px;
    padding: 1rem;
}

.student-resource-group h4 {
    color: #7c4b19;
    font-size: 1rem;
    font-weight: 850;
    margin: 0 0 .85rem;
}

.student-resource-list {
    display: grid;
    gap: .8rem;
}

.student-resource-item {
    background: #fff;
    border: 1px solid rgba(31, 41, 51, .08);
    border-radius: 8px;
    display: grid;
    gap: .85rem;
    padding: .95rem;
}

.student-resource-item strong {
    color: #1f2933;
    display: block;
    font-weight: 850;
}

.student-resource-item p {
    color: #525b66;
    line-height: 1.55;
    margin: .35rem 0;
}

.student-resource-item span {
    color: #7c4b19;
    display: block;
    font-size: .85rem;
    font-weight: 750;
}

.resource-empty {
    background: #fff;
    border: 2px solid rgba(245, 130, 32, .28);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(31, 41, 51, .08);
    padding: 1.5rem;
}

.resource-empty h3 {
    color: #3f4651;
    font-weight: 850;
}

.area-resource-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
    gap: 2rem;
    align-items: start;
}

.area-resource-list {
    display: grid;
    gap: 1rem;
}

.academic-offer-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.academic-offer-card {
    background: #fff;
    border: 2px solid rgba(245, 130, 32, .32);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(31, 41, 51, .08);
    display: flex;
    flex-direction: column;
    gap: .9rem;
    padding: 1.5rem;
}

.academic-offer-number {
    align-items: center;
    background: #F58220;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-weight: 850;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.academic-offer-card h3 {
    color: #1f2933;
    font-size: 1.35rem;
    font-weight: 850;
    margin: 0;
}

.academic-offer-card p {
    color: #525b66;
    line-height: 1.65;
    margin: 0;
}

.academic-offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: auto;
}

.academic-offer-meta span,
.academic-offer-empty {
    background: #fff7ef;
    border-radius: 999px;
    color: #7c4b19;
    font-size: .88rem;
    font-weight: 800;
    padding: .45rem .75rem;
}

@media (max-width: 991.98px) {
    .story-layout,
    .mission-grid,
    .highlight-panel,
    .authority-card,
    .authority-card-reverse {
        grid-template-columns: 1fr;
    }

    .authority-card-reverse .authority-photo {
        order: 0;
    }

    .feature-grid,
    .values-grid,
    .area-card-grid,
    .academic-offer-grid,
    .community-news-grid,
    .area-process,
    .area-resource-layout {
        grid-template-columns: 1fr;
    }

    .area-info-panel {
        grid-template-columns: 1fr;
    }

    .authority-photo {
        min-height: 420px;
    }
}

@media (max-width: 576px) {
    .inner-hero {
        padding: 3rem 0;
    }

    .authority-columns {
        grid-template-columns: 1fr;
    }

    .authority-photo {
        min-height: 340px;
    }
}

.site-footer {
    border-top: 1px solid rgba(245, 130, 32, .22);
    background-color: #fff7ef;
    color: #1f2933;
    margin-top: 0;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    max-width: 120px;
}

.footer-logo img {
    width: 100%;
    max-width: 230px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-brand p {
    color: #525b66;
    line-height: 1.6;
    margin: 0;
    max-width: 340px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.footer-column h2 {
    color: #7c4b19;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin: 0 0 .45rem;
    text-transform: uppercase;
}

.footer-column a {
    color: #525b66;
    font-weight: 650;
    text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus {
    color: #F58220;
    outline: 0;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border: 2px solid #F58220;
    border-radius: 50%;
    background-color: #ffffff;
    color: #F58220;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-socials a:hover,
.footer-socials a:focus {
    background-color: #F58220;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 130, 32, .22);
    color: #6a737d;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    font-size: .92rem;
    text-align: center;
}

.floating-whatsapp {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 1030;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 38px rgba(37, 211, 102, .32);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: 0;
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(18px) scale(.92);
    transition: opacity .24s ease, transform .24s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
    color: #ffffff;
    outline: 0;
    transform: translateY(0) scale(1.04);
}

body.show-floating-whatsapp .floating-whatsapp {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .student-resource-groups {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 577px) and (max-width: 991.98px) {
    .site-footer {
        padding: 2.6rem 0 1.4rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: .9rem;
        grid-column: auto;
        justify-content: flex-start;
    }

    .footer-logo {
        flex: 0 0 auto;
        margin-bottom: 0;
        max-width: 170px;
    }

    .footer-logo img {
        max-width: 170px;
    }

    .footer-brand p {
        max-width: 260px;
        text-align: left;
    }

    .footer-column {
        min-width: 0;
    }

    .footer-social-column {
        align-items: center;
        border-top: 1px solid rgba(245, 130, 32, .18);
        grid-column: 1 / -1;
        padding-top: 1.4rem;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    body,
    main,
    .site-footer,
    .container,
    .row,
    .interest-card,
    .calendar-panel,
    .events-panel,
    .contact-card {
        max-width: 100%;
    }

    .row {
        margin-right: 0;
        margin-left: 0;
    }

    .site-footer {
        padding-top: 2.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.65rem;
    }

    .footer-logo,
    .footer-logo img {
        max-width: 190px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
        right: .85rem;
        bottom: 1rem;
    }

    .online-courses-grid {
        grid-template-columns: 1fr;
    }

    .course-classroom-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}
