:root {
    --onc-navy: #092747;
    --onc-navy-deep: #061d37;
    --onc-ivory: #fbf7ef;
    --onc-white: #fff;
    --onc-gold: #e79a12;
    --onc-coral: #f13b23;
    --onc-muted: #647084;
    --onc-border: #e7ddce
}

.onc-page {
    color: var(--onc-navy);
    background: #fff;
    font-family: inherit;
    overflow: hidden
}

.onc-container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto
}

.onc-section {
    padding: 92px 0
}

.onc-eyebrow {
    margin: 0 0 12px;
    color: var(--onc-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

.onc-heading {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.02
}

.onc-center {
    text-align: center
}

.onc-intro {
    max-width: 650px;
    margin: 18px auto 42px;
    color: var(--onc-muted);
    font-size: 18px;
    line-height: 1.65
}

.onc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: .2s ease
}

.onc-button:hover {
    transform: translateY(-2px)
}

.onc-button--coral {
    color: #fff;
    background: var(--onc-coral)
}

.onc-button--coral:hover {
    color: var(--onc-coral);
    background: #fff;
    border-color: var(--onc-coral)
}

.onc-button--gold {
    color: var(--onc-navy);
    background: var(--onc-gold)
}

.onc-button--gold:hover {
    color: #fff;
    background: transparent;
    border-color: var(--onc-gold)
}

.onc-button--outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .72)
}

.onc-button--outline-light:hover {
    color: var(--onc-navy);
    background: #fff
}

.onc-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ddd2c1, #aeb9c2);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 38px
}

.onc-hero {
    padding: 72px 0 58px;
    background: var(--onc-ivory)
}

.onc-hero__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px
}

.onc-hero__copy h1 {
    max-width: 600px;
    margin: 0 0 22px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(48px, 5.2vw, 72px);
    line-height: .96
}

.onc-lead {
    max-width: 520px;
    margin: 0 0 28px;
    color: #405067;
    font-size: 18px;
    line-height: 1.65
}

.onc-hero__media {
    min-height: 430px;
    /* border: 5px solid var(--onc-navy); */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(9, 39, 71, .15)
}

.onc-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover
}

.onc-benefits {
    border-block: 1px solid #eee7dc;
    background: #fff
}

.onc-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.onc-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 88px;
    padding: 14px 20px;
    border-right: 1px solid #eee7dc
}

.onc-benefit:last-child {
    border-right: 0
}

.onc-benefit__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--onc-gold);
    font-size: 27px
}

.onc-benefit__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain
}

.onc-benefit p {
    margin: 0
}

.onc-benefit strong,
.onc-benefit small {
    display: block
}

.onc-benefit strong {
    font-size: 14px
}

.onc-benefit small {
    margin-top: 3px;
    color: var(--onc-muted);
    font-size: 12px
}

.onc-course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
}

.onc-course-card {
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 320px;
    border: 1px solid var(--onc-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(9, 39, 71, .06);
    overflow: hidden
}

.onc-course-card__image {
    min-height: 320px
}

.onc-course-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.onc-course-card__body {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 34px
}

.onc-course-card h3 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 34px
}

.onc-course-card p {
    margin: 0;
    color: var(--onc-muted);
    line-height: 1.55
}

.onc-levels {
    margin: 25px 0 20px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--onc-navy);
    background: var(--onc-ivory);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em
}

.onc-text-link {
    margin-top: auto;
    /* color: var(--onc-navy); */
    color: #c59400;
    font-weight: 800;
    text-decoration: none;
}

.onc-text-link::after {
    content: ' →'
}

.onc-text-link:hover {
    color: var(--onc-gold)
}

/* .onc-uses {
    color: #fff;
    background: var(--onc-navy)
}

.onc-uses__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start
}

.onc-uses .onc-heading {
    max-width: 450px
}

.onc-uses__lead {
    margin: 0 0 28px;
    font-size: 20px;
    line-height: 1.65
} */

.onc-uses {
    padding: 68px 0 74px;
    color: var(--onc-navy);
    background: #fdfaf5
}

.onc-uses .onc-heading {
    font-size: clamp(34px, 3.4vw, 48px)
}

.onc-uses__intro {
    margin: 10px 0 36px;
    color: var(--onc-navy);
    font-size: 16px;
    line-height: 1.5
}

.onc-use-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    /* display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));*/
    gap: 16px;
}

.onc-use-card {
    display: flex;
    align-items: center;
    min-height: 246px;
    padding: 25px 18px 28px;
    border: 1px solid #e9e0d4;
    border-radius: 12px;
    background: rgba(255, 255, 255, .4);
    box-shadow: 0 7px 22px rgba(9, 39, 71, .025);
    flex-direction: column;
    text-align: center;
    max-width: 200px;
}

.onc-use-card__icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin-bottom: 10px;
    color: #ff8500
}

.onc-use-card__icon svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.onc-use-card h3 {
    min-height: 48px;
    margin: 0 0 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.2
}

.onc-use-card p {
    margin: 0;
    color: var(--onc-navy);
    font-size: 14px;
    line-height: 1.55
}

.onc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.onc-tags span {
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-weight: 700
}

.onc-lessons {
    background: var(--onc-ivory)
}

.onc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px
}

.onc-step {
    position: relative;
    padding: 0 48px;
    text-align: center
}

.onc-step+.onc-step {
    border-left: 1px solid #dfd4c3
}

.onc-step__number {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin: 0 auto 17px;
    border-radius: 50%;
    color: #fff;
    background: var(--onc-navy);
    font-size: 13px;
    font-weight: 800
}

.onc-step__icon {
    display: grid;
    place-items: center;
    height: 60px;
    margin-bottom: 14px;
    color: var(--onc-gold);
    font-size: 45px
}

.onc-step__icon img {
    width: 54px;
    height: 54px;
    object-fit: contain
}

.onc-step h3 {
    margin: 0 0 9px;
    font-family: Georgia, serif;
    font-size: 25px
}

.onc-step p {
    max-width: 280px;
    margin: 0 auto;
    color: var(--onc-muted);
    line-height: 1.55
}

.onc-teaching {
    position: relative;
    padding: 70px 0;
    color: #fff;
    background: var(--onc-navy-deep)
}

.onc-teaching::before {
    position: absolute;
    inset: 0;
    content: '';
    opacity: .12;
    background: radial-gradient(circle at 85% 30%, transparent 0 50px, #fff 52px 53px, transparent 55px), radial-gradient(circle at 92% 75%, transparent 0 85px, #fff 87px 88px, transparent 90px)
}

.onc-teaching__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px
}

.onc-teaching h2 {
    max-width: 720px;
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05
}

.onc-teaching p {
    max-width: 650px;
    margin: 0;
    color: #ccd5df;
    line-height: 1.6
}

.onc-teaching__actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 10px
}

@media(max-width:900px) {
    .onc-section {
        padding: 68px 0
    }

    .onc-hero__grid,
    .onc-uses__grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .onc-hero__media {
        min-height: 340px
    }

    .onc-hero__media img {
        min-height: 340px
    }

    .onc-benefits__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .onc-benefit:nth-child(2) {
        border-right: 0
    }

    .onc-benefit:nth-child(-n+2) {
        border-bottom: 1px solid #eee7dc
    }

    .onc-course-grid {
        grid-template-columns: 1fr
    }

    .onc-teaching__inner {
        align-items: flex-start;
        flex-direction: column
    }

    .onc-teaching__actions {
        flex-direction: row
    }
}

@media(max-width:640px) {
    .onc-container {
        width: min(100% - 28px, 1160px)
    }

    .onc-section {
        padding: 54px 0
    }

    .onc-hero {
        padding: 42px 0 44px
    }

    .onc-hero__copy h1 {
        font-size: 43px
    }

    .onc-hero__grid {
        gap: 30px
    }

    .onc-hero__media,
    .onc-hero__media img {
        min-height: 245px
    }

    .onc-benefit {
        min-height: 105px;
        padding: 13px 9px;
        flex-direction: column;
        gap: 5px;
        text-align: center
    }

    .onc-benefit__icon {
        height: 27px
    }

    .onc-course-card {
        grid-template-columns: 1fr
    }

    .onc-course-card__image {
        min-height: 210px;
        height: 210px
    }

    .onc-course-card__body {
        padding: 25px
    }

    .onc-course-card h3 {
        font-size: 30px
    }

    .onc-uses__grid {
        gap: 28px
    }

    .onc-tags span {
        font-size: 13px
    }

    .onc-steps {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 35px
    }

    .onc-step {
        padding: 32px 12px
    }

    .onc-step+.onc-step {
        border-top: 1px solid #dfd4c3;
        border-left: 0
    }

    .onc-step:first-child {
        padding-top: 0
    }

    .onc-teaching {
        padding: 55px 0 100px
    }

    .onc-teaching__actions {
        width: 100%;
        flex-direction: column
    }

    .onc-teaching__actions .onc-button {
        width: 100%
    }
}