/* Omega Statistics */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
    --os-blue: #00afef;
    --os-blue-dark: #389cdf;
    --os-blue-muted: #5986ac;
    --os-blue-soft: #70a2ca;
    --os-green: #6cab35;
    --os-green-light: #bada8a;
    --os-text: #444444;
    --os-muted: #757575;
    --os-footer: #333333;
    --os-white: #ffffff;
    --os-black: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--os-text);
    font-family: 'Open Sans', system-ui, sans-serif;
    background-color: var(--os-white);
}

[id] {
    scroll-margin-top: 6rem;
}

a {
    color: var(--os-blue-dark);
}

a:hover,
a:focus-visible {
    color: #256fa8;
}

/* Header / hero background */
#background {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
    min-height: 90dvh;
    margin-top: -25px;
    padding-top: 25px;
    padding-bottom: 3rem;
    background-image: url('../files/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding-top: 25px;
    margin-top: -25px;
    background-color: transparent;
    box-shadow: none;
    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        padding 0.35s ease,
        margin 0.35s ease;
}

#fixed.os-header-scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    padding-top: 0;
    margin-top: 0;
}

.os-navbar {
    background-color: transparent;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    transition: padding 0.35s ease;
}

#fixed.os-header-scrolled .os-navbar {
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

.os-logo {
    width: min(350px, 72vw);
    height: auto;
    transition: width 0.35s ease;
}

#fixed.os-header-scrolled .os-logo {
    width: min(260px, 58vw);
}

.os-navbar .nav-link {
    color: var(--os-black);
    font-size: 1.05rem;
    font-weight: 400;
    padding: 0.5rem 0.85rem !important;
    transition: font-size 0.35s ease, padding 0.35s ease;
}

#fixed.os-header-scrolled .os-navbar .nav-link {
    font-size: 0.95rem;
    padding: 0.35rem 0.75rem !important;
}

.os-navbar .nav-link:hover,
.os-navbar .nav-link:focus-visible,
.os-navbar .nav-link.show {
    color: var(--os-blue-dark);
}

.os-navbar .dropdown-item {
    font-size: 0.95rem;
}

.os-navbar .dropdown-item:active {
    background-color: var(--os-blue-dark);
}

@media (max-width: 991px) {
    .os-navbar .navbar-collapse {
        margin-top: 0.75rem;
    }
}

/* Hero CTA */
.os-page {
    color: var(--os-black);
}

.os-home-hero {
    flex: 1 1 auto;
    padding-top: clamp(5rem, 16vh, 10rem);
}

.os-hero-inner {
    flex: 1 1 auto;
    min-height: 0;
}

.os-hero-cta h3 {
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin: 1rem 0;
    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.9),
        0 0 10px rgba(255, 255, 255, 0.45);
}

.os-hero-icon {
    font-size: 4rem;
    line-height: 1;
}

.os-icon-blue {
    color: var(--os-blue);
}

.os-icon-green {
    color: var(--os-green);
}

.lineBreak {
    display: block;
}

hr.margins {
    margin: 2.5rem 0;
    opacity: 0.35;
}

.marginTop {
    margin-top: 0.5rem;
}

/* Buttons */
.btn.os-btn-primary,
.btn-primary.os-btn-primary {
    --bs-btn-bg: var(--os-blue-dark);
    --bs-btn-border-color: var(--os-blue-dark);
    --bs-btn-hover-bg: var(--os-blue);
    --bs-btn-hover-border-color: var(--os-blue);
    --bs-btn-active-bg: var(--os-blue);
    --bs-btn-active-border-color: var(--os-blue);
    background-color: var(--os-blue-dark);
    border-color: var(--os-blue-dark);
    border-radius: 0.25rem;
    font-weight: 600;
}

.btn.os-btn-primary:hover,
.btn.os-btn-primary:focus-visible {
    background-color: var(--os-blue);
    border-color: var(--os-blue);
}

.btn.os-btn-light {
    background-color: var(--os-white);
    border-color: var(--os-white);
    color: var(--os-blue-dark);
}

.btn.os-btn-light:hover,
.btn.os-btn-light:focus-visible {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: var(--os-blue-muted);
}

/* Promise section */
.altWhite {
    background-color: var(--os-green-light);
    color: var(--os-text);
    margin-bottom: -20px;
}

.padding {
    padding: 3rem 0;
}

.bigHeader {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 200;
    margin-top: 1.5rem;
}

.leadText {
    font-size: clamp(1rem, 2.5vw, 2rem);
    font-weight: 200;
    line-height: 1.5;
}

.leadText a {
    font-weight: 600;
}

/* Webinar CTA band */
#webinar {
    display: flex;
    align-items: center;
    min-height: 400px;
    color: var(--os-white);
    background-image: url('../files/keyboard.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#webinar .biggerh3,
.biggerh3 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 300;
}

/* Core services */
.os-services-section {
    padding: 2rem 0 3rem;
}

.services {
    padding: 2rem 0 0;
}

#quickLinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

#quickLinks li {
    line-height: 1.8;
    font-size: clamp(1rem, 2vw, 1.8rem);
    background-image: url('../files/ul.png');
    background-repeat: no-repeat;
    background-position: 0 0.45em;
    background-size: 5%;
    padding-left: 1.25em;
    margin-bottom: 0.35rem;
}

#quickLinks a {
    color: inherit;
    text-decoration: none;
}

#quickLinks a:hover,
#quickLinks a:focus-visible {
    color: var(--os-blue-dark);
    text-decoration: underline;
}

/* Newsletter */
#newsletterPrimer {
    color: var(--os-white);
    background-image: url('../files/newsletter.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.os-newsletter-primer__title {
    font-size: clamp(1.1rem, 2.5vw, 2rem);
    font-weight: 300;
    line-height: 1.45;
    margin: 0;
}

/* Newsletter modal */
.os-newsletter-modal .modal-content {
    border: 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.os-newsletter-modal .modal-header {
    background-color: var(--os-blue);
    color: var(--os-white);
    padding: 1.25rem 1.5rem;
}

.os-newsletter-modal .modal-title {
    font-weight: 700;
}

.os-newsletter-modal .btn-close {
    filter: invert(1) grayscale(1);
    opacity: 0.85;
}

.os-newsletter-modal__intro {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--os-text);
}

.os-captcha-bar--modal {
    background: rgba(56, 156, 223, 0.08);
    border: 1px solid rgba(56, 156, 223, 0.25);
}

.os-captcha-bar--modal .os-captcha-math__label {
    color: var(--os-text);
}

.os-captcha-bar--modal .os-captcha-math__input {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--os-white);
}

.os-captcha-bar--modal .os-captcha-bar__submit {
    border-left: 1px solid rgba(56, 156, 223, 0.25);
}

.os-newsletter-modal .os-form-consent {
    line-height: 1.5;
}

#newsLetter {
    background-color: var(--os-blue);
    color: var(--os-white);
}

#newsLetter hr {
    border-color: rgba(255, 255, 255, 0.45);
}

#newsLetter .form-control {
    border: 0;
    border-radius: 0.25rem;
}

#newsLetter h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
}

.os-thank-you-panel {
    background: rgba(0, 175, 239, 0.08);
    border: 1px solid rgba(0, 175, 239, 0.2);
    border-radius: 0.5rem;
}

.os-thank-you-panel__icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1;
    color: var(--os-blue);
}

#newsLetter .os-form-consent,
.os-footer .os-form-consent,
.os-contact-panel .os-form-consent,
.os-contact-form .os-form-consent {
    opacity: 0.9;
    line-height: 1.5;
}

#newsLetter .os-form-consent a,
.os-footer .os-form-consent a {
    color: inherit;
    text-decoration: underline;
}

#newsLetter .alert {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.os-newsletter-form__inner,
.os-footer-contact-form__inner {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

/* Captcha — shared */
.captcha-ghost {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.os-captcha-fields {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0.55rem 0.85rem;
}

.os-captcha-math {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
    margin: 0;
    width: 100%;
}

.os-captcha-bar .os-captcha-math {
    flex-wrap: nowrap;
}

.os-captcha-math__label {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.35;
    flex: 1 1 auto;
    min-width: 0;
}

.os-captcha-math__input {
    flex: 0 0 4.5rem;
    width: 4.5rem;
    max-width: 100%;
    text-align: center;
}

.os-captcha-bar {
    display: flex;
    align-items: stretch;
    border-radius: 0.25rem;
    overflow: hidden;
    padding: 0;
}

.os-captcha-bar__submit {
    flex: 0 0 auto;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    padding: 0.65rem 1.35rem;
    font-weight: 600;
    white-space: nowrap;
    min-width: 7.5rem;
}

.os-captcha-bar--newsletter {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.os-captcha-bar--newsletter .os-captcha-math__label {
    color: var(--os-white);
}

.os-captcha-bar--newsletter .os-captcha-math__input {
    border: 0;
    background: var(--os-white);
    color: var(--os-footer);
}

.os-captcha-bar--newsletter .os-captcha-bar__submit {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    background: var(--os-white);
    color: var(--os-blue);
}

.os-captcha-bar--newsletter .os-captcha-bar__submit:hover,
.os-captcha-bar--newsletter .os-captcha-bar__submit:focus-visible {
    background: rgba(255, 255, 255, 0.92);
    color: var(--os-blue-dark);
}

.os-captcha-bar--footer {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.os-captcha-bar--footer .os-captcha-math__label {
    color: rgba(255, 255, 255, 0.92);
}

.os-captcha-bar--footer .os-captcha-math__input {
    border: 0;
    background: var(--os-white);
}

.os-captcha-bar--footer .os-captcha-bar__submit {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Accreditations */
.os-accreditations-section {
    padding-bottom: 1rem;
}

.accrediations {
    text-align: center;
    padding: 2rem 0 1.25rem;
}

.accrediations h2 {
    font-weight: 300;
    font-size: clamp(1.7rem, 4vw, 3rem);
}

.accrediations img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* Footer */
.os-footer,
footer.footer {
    background-color: var(--os-footer);
    color: var(--os-white);
    padding: 3rem 0;
}

.os-footer a,
footer.footer a {
    color: var(--os-white);
    text-decoration: none;
}

.os-footer a:hover,
.os-footer a:focus-visible,
footer.footer a:hover,
footer.footer a:focus-visible {
    color: var(--os-blue);
    text-decoration: underline;
}

.os-footer hr,
footer.footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.os-footer__heading {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.os-social-row {
    margin-top: 1rem;
}

.os-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    line-height: 1;
    color: var(--os-white);
}

.os-social-link:hover,
.os-social-link:focus-visible {
    color: var(--os-blue);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .os-logo {
        width: min(250px, 65vw);
    }

    #background,
    #newsletterPrimer,
    #webinar {
        background-attachment: scroll;
    }

    #quickLinks li {
        background-size: 4.5%;
        background-position: 0 0.55em;
    }
}

@media (max-width: 991px) {
    .os-logo {
        width: min(200px, 58vw);
    }

    .leadText {
        font-size: 1.15rem;
    }

    #background {
        min-height: 90vh;
        min-height: 90dvh;
    }

    .os-home-hero {
        padding-top: clamp(4.5rem, 12vh, 7rem);
    }

    .os-hero-inner {
        padding-bottom: 2rem;
    }

    .os-hero-cta {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .os-hero-cta h3 {
        font-size: clamp(1rem, 2.2vw, 1.5rem);
        margin: 0.35rem 0 0.5rem;
        line-height: 1.2;
    }

    .os-hero-service {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .os-hero-service .btn {
        font-size: 0.85rem;
        padding: 0.35rem 0.75rem;
    }

    .os-hero-icon {
        font-size: clamp(1.75rem, 4vw, 2.75rem);
    }

    hr.margins {
        margin: 1.25rem 0;
    }
}

@media (max-height: 750px) {
    #background {
        min-height: 90vh;
        min-height: 90dvh;
        padding-bottom: 1.5rem;
    }

    .os-home-hero {
        padding-top: clamp(4rem, 10vh, 5.5rem);
    }

    .os-hero-cta h3 {
        font-size: clamp(1rem, 3vh, 1.75rem);
        margin: 0.35rem 0 0.5rem;
        line-height: 1.2;
    }

    .os-hero-icon {
        font-size: clamp(1.75rem, 5vh, 3rem);
    }

    hr.margins {
        margin: 1rem 0;
    }
}

@media (max-width: 767px) {
    #background {
        min-height: 90vh;
        min-height: 90dvh;
    }

    .os-home-hero {
        padding-top: clamp(4.5rem, 14vh, 6.5rem);
    }

    .os-hero-inner {
        padding-bottom: 1.5rem;
    }

    .os-hero-cta .col-lg-3 {
        margin-bottom: 1.5rem;
    }

    .firstImg,
    .lastImg {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    #quickLinks li {
        font-size: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    #fixed,
    .os-navbar,
    .os-logo,
    .os-navbar .nav-link {
        transition: none;
    }
}

/* Inner pages */
.os-inner-page {
    padding-top: 150px;
    padding-bottom: 3rem;
}

.os-about-learn-more {
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.5rem;
    background-color: var(--os-white);
}

.os-about-learn-more > h2 {
    margin-top: 0;
}

.os-about-learn-more__item + .os-about-learn-more__item {
    margin-top: 0.5rem;
}

.os-about-learn-more__button-wrap {
    width: 100%;
}

.os-about-learn-more__toggle {
    text-align: center;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.os-about-learn-more__panel {
    border: 1px solid rgba(56, 156, 223, 0.2);
    border-radius: 0.35rem;
    background-color: rgba(56, 156, 223, 0.04);
}

.os-about-learn-more__panel h3 {
    margin-top: 1.25rem;
}

.os-about-learn-more__panel h3:first-child {
    margin-top: 0;
}

@media (min-width: 992px) {
    .os-about-learn-more__button-wrap {
        width: 33.333333%;
    }
}

#subContainer h1 {
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3rem);
}

#subContainer h2,
#subContainer h3,
#subContainer h4 {
    color: var(--os-blue-dark);
    margin-top: 1.5rem;
}

#subContainer p,
#subContainer li {
    color: var(--os-text);
    line-height: 1.7;
    font-size: 1.05rem;
}

#subContainer .text-muted {
    color: #5a5a5a;
}

ul.omega {
    list-style: none;
    padding-left: 0;
}

ul.omega li {
    background-image: url('../files/li.png');
    background-repeat: no-repeat;
    background-position: 0 0.35em;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 0.5rem;
}

ul.omega.smaller li {
    font-size: 1rem;
}

.contactThis,
.os-contact-panel {
    background-color: var(--os-blue);
    color: var(--os-white);
    border-radius: 0.25rem;
}

.contactThis .form-control,
.os-contact-panel .form-control {
    border: 0;
}

.contactThis hr,
.os-contact-panel hr {
    border-color: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.contactThis h2,
.os-contact-panel h2,
.os-contact-panel h3,
.os-contact-panel h4 {
    color: var(--os-white);
}

#subContainer .os-contact-panel,
#subContainer .os-contact-panel .contactThis {
    color: var(--os-white);
}

#subContainer .os-contact-panel h2,
#subContainer .os-contact-panel h3,
#subContainer .os-contact-panel h4,
#subContainer .os-contact-panel label {
    color: var(--os-white);
}

#subContainer .os-contact-panel a {
    color: var(--os-white);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

#subContainer .os-contact-panel a:hover,
#subContainer .os-contact-panel a:focus-visible {
    color: rgba(255, 255, 255, 0.9);
}

.os-service-card {
    border: 1px solid rgba(89, 134, 172, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.os-service-card .card-title {
    color: var(--os-blue-muted);
}

.os-highlight-card {
    border: 1px solid rgba(89, 134, 172, 0.25);
    background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.os-highlight-card .card-title {
    color: var(--os-blue-dark);
}

.os-highlight-card p {
    color: var(--os-text);
}

.os-highlight-card a {
    color: var(--os-blue-dark);
}

.os-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.os-accordion .accordion-item {
    border: 1px solid rgba(56, 156, 223, 0.2);
    border-radius: 0.35rem;
    overflow: hidden;
    background-color: var(--os-white);
}

.os-accordion .accordion-item:not(:first-of-type) {
    border-top: 1px solid rgba(56, 156, 223, 0.2);
}

.os-accordion .accordion-button {
    font-weight: 600;
    color: var(--os-blue-muted);
    padding: 0.75rem 1rem;
    box-shadow: none;
}

.os-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(0, 175, 239, 0.12);
    color: var(--os-blue-dark);
}

.os-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 175, 239, 0.25);
}

.os-accordion .accordion-body {
    padding: 1rem;
    background-color: rgba(56, 156, 223, 0.04);
    border-top: 1px solid rgba(56, 156, 223, 0.15);
}

.os-accordion .accordion-body [data-e] > :first-child {
    margin-top: 0;
}

.os-accordion .accordion-body [data-e] > :last-child {
    margin-bottom: 0;
}

.os-footer-contact-form .form-control {
    border: 0;
}

.os-footer-contact-form__inner {
    padding: 0 0.5rem;
}

@media (max-width: 767.98px) {
    .os-captcha-bar {
        flex-direction: column;
    }

    .os-captcha-bar .os-captcha-fields {
        padding: 0.75rem 0.85rem;
    }

    .os-captcha-bar .os-captcha-math {
        flex-wrap: wrap;
    }

    .os-captcha-math__label {
        flex-basis: 100%;
    }

    .os-captcha-math__input {
        flex: 1 1 auto;
        width: 100%;
        text-align: left;
    }

    .os-captcha-bar__submit {
        width: 100%;
        min-width: 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        padding: 0.75rem 1rem;
    }

    .os-captcha-bar--newsletter .os-captcha-bar__submit {
        border-top-color: rgba(255, 255, 255, 0.35);
    }
}

.os-fee-schedule ul {
    padding-left: 1.25rem;
}

/* Testimonials */
.os-testimonials-page .leadText {
    font-size: 1.15rem;
}

.os-review-links .os-btn-outline {
    border-color: var(--os-blue-dark);
    color: var(--os-blue-dark);
}

.os-review-links .os-btn-outline:hover,
.os-review-links .os-btn-outline:focus-visible {
    background-color: var(--os-blue-dark);
    border-color: var(--os-blue-dark);
    color: var(--os-white);
}

.os-review-card {
    position: relative;
    background: linear-gradient(180deg, #f8fbfd 0%, var(--os-white) 100%);
    border: 1px solid rgba(89, 134, 172, 0.18);
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.os-review-card__quote {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.5rem;
    line-height: 1;
    color: rgba(0, 175, 239, 0.18);
}

.os-review-card__stars {
    color: #f0ad4e;
    font-size: 1rem;
}

.os-review-card__text {
    color: var(--os-text);
    font-size: 1.02rem;
    line-height: 1.75;
    font-style: normal;
    border-left: 4px solid var(--os-blue);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.os-review-card__toggle {
    align-self: flex-start;
    color: var(--os-blue-dark);
    text-decoration: none;
    font-weight: 600;
}

.os-review-card__toggle:hover,
.os-review-card__toggle:focus-visible {
    color: var(--os-blue-muted);
}

.os-review-card__footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(89, 134, 172, 0.15);
}

.os-review-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.os-review-card__avatar--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 175, 239, 0.12);
    color: var(--os-blue-dark);
    font-size: 1.5rem;
}

.os-review-card__author {
    font-style: normal;
    font-weight: 600;
    color: var(--os-blue-muted);
    font-size: 0.98rem;
}

/* Events */
.os-events-section-title {
    font-weight: 300;
    color: var(--os-blue-muted);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.os-offerings-panel {
    background: linear-gradient(180deg, #f8fbfd 0%, var(--os-white) 100%);
    border: 1px solid rgba(89, 134, 172, 0.18);
    border-radius: 0.75rem;
    padding: 1.75rem;
}

.text-os-muted {
    color: var(--os-blue-muted);
}

.os-event-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.os-event-badge--free {
    background-color: rgba(108, 171, 53, 0.15);
    color: var(--os-green);
}

.os-event-badge--paid {
    background-color: rgba(0, 175, 239, 0.15);
    color: var(--os-blue-dark);
}

.os-event-tag {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    background-color: rgba(89, 134, 172, 0.12);
    color: var(--os-blue-muted);
}

.os-event-card {
    background: var(--os-white);
    border: 1px solid rgba(89, 134, 172, 0.18);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.os-event-card__image-link {
    display: block;
}

.os-event-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.os-event-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.os-event-card__title a {
    color: var(--os-blue-muted);
    text-decoration: none;
}

.os-event-card__title a:hover,
.os-event-card__title a:focus-visible {
    color: var(--os-blue-dark);
}

.os-event-card__meta {
    color: var(--os-muted);
    font-size: 0.95rem;
}

.os-event-card__excerpt {
    color: var(--os-text);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.os-event-detail__title {
    font-weight: 300;
    color: var(--os-blue-muted);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.os-event-detail__meta {
    color: var(--os-muted);
    margin-bottom: 1.5rem;
}

.os-event-detail__content {
    color: var(--os-text);
    line-height: 1.75;
    font-size: 1.05rem;
}

.os-event-detail__content p:last-child {
    margin-bottom: 0;
}

.os-event-detail__image {
    border-radius: 0.75rem;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.os-event-video {
    margin-top: 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #000;
}

.os-event-video iframe {
    border: 0;
}

.os-archive-events-toolbar .form-label {
    font-weight: 600;
    color: var(--os-blue-muted);
}

.os-archive-results-summary {
    font-size: 0.95rem;
}

.os-archive-pagination .page-link {
    color: var(--os-blue-dark);
}

.os-archive-pagination .page-item.active .page-link {
    background-color: var(--os-blue-dark);
    border-color: var(--os-blue-dark);
}

.os-btn-outline {
    border-color: var(--os-blue-dark);
    color: var(--os-blue-dark);
}

.os-btn-outline:hover,
.os-btn-outline:focus-visible {
    background-color: var(--os-blue-dark);
    border-color: var(--os-blue-dark);
    color: var(--os-white);
}

/* Published work */
.os-published-work-page #subContainer > h6.leadText {
    margin-bottom: 0.75rem;
}

.os-published-work-page #subContainer > h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin-top: 0.5rem;
}

.os-published-work-page #subContainer > hr:not(:first-of-type) {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid rgba(89, 134, 172, 0.25);
    opacity: 1;
}

.os-published-work-page #subContainer p {
    color: var(--os-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.os-published-work-page #subContainer p em {
    color: var(--os-text);
}

@media (max-width: 767px) {
    .os-inner-page {
        padding-top: 120px;
    }
}
