:root {
    --yih-blue: #27aae2;
    --yih-blue-dark: #087eaf;
    --yih-orange: #f7b32c;
    --yih-red: #f72c25;
    --yih-ink: #111111;
    --yih-muted: #626b73;
    --yih-line: #e6eaed;
    --yih-soft: #f6f9fb;
    --yih-white: #ffffff;

    --yih-radius-sm: 14px;
    --yih-radius-md: 22px;
    --yih-radius-lg: 30px;

    --yih-shadow:
        0 24px 65px rgba(24, 48, 70, .09),
        0 4px 16px rgba(24, 48, 70, .05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--yih-ink);
    background: var(--yih-white);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

.yih-content-width {
    width: min(820px, 100%);
}

.yih-skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 9999;
    padding: 10px 14px;
    background: #111;
    color: #fff;
    border-radius: 8px;
}

.yih-skip-link:focus {
    top: 16px;
}

.yih-site-header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--yih-line);
}

.yih-header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.yih-brand {
    display: block;
    flex: 0 0 auto;
}

.yih-brand img {
    width: 238px;
    max-height: 64px;
    object-fit: contain;
    object-position: left center;
}

.yih-primary-nav {
    margin-left: auto;
}

.yih-nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.yih-nav-list li {
    margin: 0;
}

.yih-nav-list a {
    display: block;
    text-decoration: none;
    color: #30363b;
    font-size: 14px;
    font-weight: 700;
}

.yih-nav-list a:hover,
.yih-nav-list a:focus-visible {
    color: var(--yih-blue-dark);
}

.yih-menu-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border: 0;
    background: transparent;
    color: var(--yih-ink);
    cursor: pointer;
}

.yih-menu-toggle-label {
    font-size: 14px;
    font-weight: 700;
}

.yih-menu-icon {
    width: 24px;
    display: grid;
    gap: 5px;
}

.yih-menu-icon span {
    display: block;
    height: 2px;
    background: var(--yih-ink);
    border-radius: 999px;
}

.yih-main {
    min-height: 55vh;
}

.yih-eyebrow {
    margin: 0 0 14px;
    color: var(--yih-blue-dark);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.yih-foundation-hero {
    padding: 72px 0 82px;
    background:
        radial-gradient(circle at 2% 5%, rgba(39, 170, 226, .09), transparent 30%),
        linear-gradient(180deg, #fff 0%, #f9fbfc 100%);
}

.yih-foundation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
    align-items: center;
    gap: 70px;
}

.yih-foundation-copy h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(48px, 6.8vw, 84px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}

.yih-foundation-copy h1 span {
    color: var(--yih-blue);
}

.yih-lead {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--yih-muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.yih-foundation-image {
    overflow: hidden;
    border-radius: var(--yih-radius-lg);
    box-shadow: var(--yih-shadow);
    aspect-ratio: 4 / 5;
}

.yih-foundation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yih-page-header {
    padding: 74px 0 46px;
    background: var(--yih-soft);
    border-bottom: 1px solid var(--yih-line);
}

.yih-page-header h1,
.yih-page-shell h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.yih-page-content,
.yih-page-shell {
    padding: 62px 0 82px;
}

.yih-entry-content > :first-child,
.yih-page-content > :first-child {
    margin-top: 0;
}

.yih-entry-content h2,
.yih-page-content h2 {
    margin-top: 42px;
    margin-bottom: 14px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.yih-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 19px;
    border-radius: 999px;
    background: var(--yih-blue);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.yih-button:hover,
.yih-button:focus-visible {
    background: var(--yih-blue-dark);
}

.yih-site-footer {
    color: rgba(255,255,255,.78);
    background: #111519;
}

.yih-footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding-top: 58px;
    padding-bottom: 48px;
}

.yih-footer-brand img {
    width: 220px;
    max-height: 62px;
    padding: 8px 12px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
}

.yih-footer-brand p {
    max-width: 500px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.62);
}

.yih-footer-focus {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    justify-content: flex-end;
    gap: 10px;
}

.yih-footer-focus span {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.yih-footer-focus span:nth-child(1) {
    border-color: rgba(39,170,226,.62);
}

.yih-footer-focus span:nth-child(2) {
    border-color: rgba(247,179,44,.62);
}

.yih-footer-focus span:nth-child(3) {
    border-color: rgba(247,44,37,.62);
}

.yih-footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.48);
    font-size: 13px;
}

.yih-footer-bottom p {
    margin: 0;
}

.yih-footer-nav {
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.yih-footer-nav a {
    text-decoration: none;
}

@media (max-width: 900px) {

    .yih-header-inner {
        min-height: 78px;
        flex-wrap: wrap;
    }

    .yih-brand img {
        width: 205px;
    }

    .yih-menu-toggle {
        display: flex;
    }

    .yih-primary-nav {
        display: none;
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
    }

    .yih-primary-nav.is-open {
        display: block;
    }

    .yih-nav-list {
        display: grid;
        gap: 0;
    }

    .yih-nav-list a {
        padding: 12px 0;
        border-top: 1px solid var(--yih-line);
    }

    .yih-foundation-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .yih-foundation-image {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {

    .yih-container {
        width: min(100% - 30px, 1180px);
    }

    .yih-foundation-hero {
        padding: 52px 0 58px;
    }

    .yih-foundation-copy h1 {
        font-size: 48px;
    }

    .yih-foundation-image {
        border-radius: 20px;
        aspect-ratio: 5 / 4;
    }

    .yih-page-header {
        padding: 52px 0 36px;
    }

    .yih-page-content,
    .yih-page-shell {
        padding: 46px 0 62px;
    }

    .yih-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 46px;
    }

    .yih-footer-focus {
        justify-content: flex-start;
    }

    .yih-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
        gap: 12px;
    }
}


/* ============================================================
   YIH HOMEPAGE GATEWAY 0.2.0
   ============================================================ */

.yih-home {
    overflow: hidden;
}

.yih-home-hero {
    position: relative;
    padding: 62px 0 74px;
    background:
        radial-gradient(
            circle at 4% 4%,
            rgba(39, 170, 226, .10),
            transparent 31%
        ),
        #ffffff;
}

.yih-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .82fr);
    gap: 72px;
    align-items: center;
}

.yih-home-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(52px, 7vw, 88px);
    line-height: .96;
    letter-spacing: -.058em;
    font-weight: 800;
}

.yih-home-hero-copy h1 span {
    display: block;
    color: var(--yih-blue);
}

.yih-home-intro {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--yih-muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.58;
}

.yih-home-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.yih-button-primary {
    gap: 10px;
}

.yih-button-secondary {
    color: var(--yih-ink);
    background: #fff;
    border: 1px solid var(--yih-line);
}

.yih-button-secondary:hover,
.yih-button-secondary:focus-visible {
    color: var(--yih-blue-dark);
    background: #f8fbfd;
}

.yih-home-method {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 40px 0 0;
    color: #747d84;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .02em;
}

.yih-home-method span {
    display: inline-flex;
    align-items: center;
}

.yih-home-method span:not(:last-child)::after {
    content: "•";
    margin: 0 11px;
    color: #c0c6ca;
}

.yih-home-hero-visual {
    position: relative;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #dde8ee;
    box-shadow: var(--yih-shadow);
}

.yih-home-hero-visual > img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.yih-home-hero-visual figcaption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: grid;
    gap: 4px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 17px;
    color: #fff;
    background: rgba(10, 24, 33, .64);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.yih-home-hero-visual figcaption span {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.yih-home-hero-visual figcaption strong {
    font-size: 18px;
    line-height: 1.25;
}


.yih-home-gateway {
    padding: 90px 0 96px;
    background: #f5f8fa;
    border-top: 1px solid #edf0f2;
}

.yih-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    align-items: end;
    gap: 50px;
    margin-bottom: 38px;
}

.yih-section-heading h2 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.yih-section-heading > p {
    margin: 0 0 5px;
    color: var(--yih-muted);
    font-size: 17px;
    line-height: 1.55;
}

.yih-gateway-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.yih-gateway-card {
    position: relative;
    grid-column: span 4;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid #e2e7ea;
    border-radius: 24px;
    color: var(--yih-ink);
    background: #fff;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(28, 53, 70, .035);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.yih-gateway-card:hover,
.yih-gateway-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(39, 170, 226, .38);
    box-shadow: 0 18px 38px rgba(28, 53, 70, .10);
}

.yih-gateway-card-featured {
    grid-column: span 8;
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
    min-height: 390px;
}

.yih-gateway-card-image {
    overflow: hidden;
    background: #e9eef0;
}

.yih-gateway-card-featured .yih-gateway-card-image {
    min-height: 100%;
}

.yih-gateway-card-image-top .yih-gateway-card-image {
    height: 174px;
}

.yih-gateway-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.yih-gateway-card:hover .yih-gateway-card-image img {
    transform: scale(1.025);
}

.yih-gateway-card-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 25px;
}

.yih-gateway-card-image-top .yih-gateway-card-body {
    min-height: 230px;
}

.yih-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 42px;
    border-radius: 50%;
    color: #7c868d;
    background: #f1f4f5;
    font-size: 11px;
    font-weight: 800;
}

.yih-gateway-card-featured .yih-card-number {
    margin-bottom: 56px;
}

.yih-card-kicker {
    margin: 0 0 8px;
    color: #727b81;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.yih-gateway-card h3 {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.08;
    letter-spacing: -.032em;
}

.yih-gateway-card p:not(.yih-card-kicker) {
    max-width: 460px;
    margin: 12px 0 0;
    color: #687177;
    line-height: 1.5;
}

.yih-card-arrow {
    position: absolute;
    right: 24px;
    top: 24px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 50%;
    background: rgba(255,255,255,.75);
    font-size: 17px;
}

.yih-gateway-card-blue {
    color: #fff;
    background:
        radial-gradient(
            circle at 94% 5%,
            rgba(255,255,255,.18),
            transparent 31%
        ),
        var(--yih-blue);
    border-color: transparent;
}

.yih-gateway-card-blue .yih-card-number {
    color: #fff;
    background: rgba(255,255,255,.17);
}

.yih-gateway-card-blue .yih-card-kicker,
.yih-gateway-card-blue p:not(.yih-card-kicker) {
    color: rgba(255,255,255,.78);
}

.yih-gateway-card-blue .yih-card-arrow {
    color: #fff;
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.14);
}

.yih-gateway-card-orange {
    background:
        radial-gradient(
            circle at 94% 5%,
            rgba(255,255,255,.28),
            transparent 31%
        ),
        #f8bd42;
    border-color: transparent;
}

.yih-gateway-card-orange .yih-card-number {
    color: #503500;
    background: rgba(255,255,255,.30);
}

.yih-gateway-card-dark {
    color: #fff;
    background:
        radial-gradient(
            circle at 94% 5%,
            rgba(39,170,226,.28),
            transparent 37%
        ),
        #151b1f;
    border-color: transparent;
}

.yih-gateway-card-dark .yih-card-number {
    color: #fff;
    background: rgba(255,255,255,.10);
}

.yih-gateway-card-dark .yih-card-kicker,
.yih-gateway-card-dark p:not(.yih-card-kicker) {
    color: rgba(255,255,255,.66);
}

.yih-gateway-card-dark .yih-card-arrow {
    color: #fff;
    border-color: rgba(255,255,255,.17);
    background: rgba(255,255,255,.08);
}


.yih-home-pillars {
    padding: 86px 0;
    background: #fff;
}

.yih-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
}

.yih-pillar {
    padding-top: 4px;
}

.yih-pillar-mark {
    display: block;
    width: 38px;
    height: 5px;
    margin-bottom: 24px;
    border-radius: 999px;
}

.yih-pillar-blue {
    background: var(--yih-blue);
}

.yih-pillar-orange {
    background: var(--yih-orange);
}

.yih-pillar-red {
    background: var(--yih-red);
}

.yih-pillar p {
    margin: 0 0 7px;
    color: #7a8389;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.yih-pillar h3 {
    margin: 0;
    max-width: 320px;
    font-size: clamp(24px, 2.7vw, 34px);
    line-height: 1.12;
    letter-spacing: -.035em;
}


.yih-home-first-pathway {
    padding: 0 0 92px;
    background: #fff;
}

.yih-first-pathway-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    gap: 70px;
    padding: 50px 54px;
    border-radius: 27px;
    color: #fff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(39,170,226,.32),
            transparent 34%
        ),
        #11171b;
}

.yih-first-label {
    margin: 0 0 13px;
    color: var(--yih-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.yih-first-pathway-card h2 {
    margin: 0;
    max-width: 650px;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.yih-first-pathway-copy {
    align-self: end;
}

.yih-first-pathway-copy p {
    margin: 0;
    color: rgba(255,255,255,.67);
    font-size: 17px;
    line-height: 1.55;
}

.yih-first-pathway-copy a {
    display: inline-flex;
    gap: 9px;
    margin-top: 22px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}


.yih-home-close {
    padding: 88px 0 94px;
    border-top: 1px solid var(--yih-line);
    background: #f8fafb;
}

.yih-home-close-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
}

.yih-home-close h2 {
    max-width: 770px;
    margin: 0;
    font-size: clamp(38px, 5.3vw, 64px);
    line-height: 1.02;
    letter-spacing: -.047em;
}

.yih-home-close-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 6px;
}

.yih-text-link {
    display: inline-flex;
    gap: 8px;
    color: var(--yih-ink);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.yih-text-link:hover,
.yih-text-link:focus-visible {
    color: var(--yih-blue-dark);
}


@media (max-width: 980px) {

    .yih-home-hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .yih-home-hero-visual {
        min-height: 460px;
    }

    .yih-home-hero-visual > img {
        min-height: 460px;
    }

    .yih-gateway-card,
    .yih-gateway-card-featured {
        grid-column: span 6;
    }

    .yih-gateway-card-featured {
        display: block;
    }

    .yih-gateway-card-featured .yih-gateway-card-image {
        height: 250px;
        min-height: 0;
    }

    .yih-first-pathway-card {
        gap: 45px;
    }

    .yih-home-close-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 30px;
    }
}


@media (max-width: 760px) {

    .yih-home-hero {
        padding: 48px 0 58px;
    }

    .yih-home-hero-copy h1 {
        font-size: 52px;
    }

    .yih-home-hero-visual,
    .yih-home-hero-visual > img {
        min-height: 390px;
    }

    .yih-home-gateway {
        padding: 68px 0 72px;
    }

    .yih-section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .yih-gateway-grid {
        grid-template-columns: 1fr;
    }

    .yih-gateway-card,
    .yih-gateway-card-featured {
        grid-column: auto;
    }

    .yih-gateway-card {
        min-height: 280px;
    }

    .yih-gateway-card-image-top .yih-gateway-card-image,
    .yih-gateway-card-featured .yih-gateway-card-image {
        height: 220px;
    }

    .yih-pillars-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .yih-first-pathway-card {
        grid-template-columns: 1fr;
        padding: 38px 30px;
    }
}


@media (max-width: 520px) {

    .yih-home-hero-copy h1 {
        font-size: 44px;
    }

    .yih-home-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .yih-home-actions .yih-button {
        width: 100%;
    }

    .yih-home-method span:not(:last-child)::after {
        margin: 0 8px;
    }

    .yih-home-hero-visual,
    .yih-home-hero-visual > img {
        min-height: 335px;
    }

    .yih-home-hero-visual {
        border-radius: 21px;
    }

    .yih-home-hero-visual figcaption {
        right: 15px;
        bottom: 15px;
        left: 15px;
    }

    .yih-gateway-card {
        border-radius: 20px;
    }

    .yih-gateway-card-body {
        padding: 22px;
    }

    .yih-card-arrow {
        top: 20px;
        right: 20px;
    }

    .yih-home-pillars {
        padding: 66px 0;
    }

    .yih-home-first-pathway {
        padding-bottom: 68px;
    }

    .yih-home-close {
        padding: 66px 0 72px;
    }

    .yih-home-close-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ============================================================
   YIH PROGRAMS + ACADEMY 0.3.0
   ============================================================ */

.yih-inner-hero {
    padding: 72px 0 78px;
    background:
        radial-gradient(
            circle at 3% 4%,
            rgba(39,170,226,.09),
            transparent 30%
        ),
        #fff;
}

.yih-inner-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(360px,.76fr);
    align-items: center;
    gap: 72px;
}

.yih-inner-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(48px,6.4vw,78px);
    line-height: .98;
    letter-spacing: -.052em;
}

.yih-inner-lead {
    max-width: 660px;
    margin: 25px 0 30px;
    color: var(--yih-muted);
    font-size: clamp(18px,2vw,21px);
    line-height: 1.58;
}

.yih-inner-hero-image {
    min-height: 455px;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #e7ecef;
    box-shadow: var(--yih-shadow);
}

.yih-inner-hero-image img {
    width: 100%;
    height: 455px;
    object-fit: cover;
}


.yih-program-directory,
.yih-academy-entry {
    padding: 88px 0 96px;
    background: #f5f8fa;
    border-top: 1px solid #edf0f2;
}

.yih-directory-heading {
    margin-bottom: 40px;
}

.yih-program-grid {
    display: grid;
    grid-template-columns: repeat(12,minmax(0,1fr));
    gap: 18px;
}

.yih-program-card {
    grid-column: span 4;
    min-height: 345px;
    padding: 27px;
    border: 1px solid #e1e7ea;
    border-radius: 23px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(28,53,70,.035);
}

.yih-program-card:nth-child(1),
.yih-program-card:nth-child(7) {
    grid-column: span 8;
}

.yih-program-index {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 48px;
    border-radius: 50%;
    color: #7c858a;
    background: #f0f3f4;
    font-size: 11px;
    font-weight: 800;
}

.yih-program-label {
    margin: 0 0 8px;
    color: #747d82;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.yih-program-card h3 {
    max-width: 470px;
    margin: 0;
    font-size: clamp(25px,2.7vw,34px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.yih-program-card > p:not(.yih-program-label) {
    max-width: 520px;
    margin: 13px 0 0;
    color: #697278;
    line-height: 1.52;
}

.yih-program-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 27px;
}

.yih-program-topics span {
    padding: 7px 10px;
    border-radius: 999px;
    color: #59636a;
    background: #f2f5f6;
    font-size: 11px;
    font-weight: 750;
}

.yih-program-blue {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(255,255,255,.17),
            transparent 35%
        ),
        var(--yih-blue);
}

.yih-program-blue .yih-program-index,
.yih-program-blue .yih-program-topics span {
    color: #fff;
    background: rgba(255,255,255,.16);
}

.yih-program-blue .yih-program-label,
.yih-program-blue > p:not(.yih-program-label) {
    color: rgba(255,255,255,.76);
}

.yih-program-orange {
    border-color: transparent;
    background: #f8bd42;
}

.yih-program-orange .yih-program-index,
.yih-program-orange .yih-program-topics span {
    color: #503500;
    background: rgba(255,255,255,.31);
}

.yih-program-green {
    border-color: #cfe7d7;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(33,142,76,.11),
            transparent 35%
        ),
        #f3faf5;
}

.yih-program-dark {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(39,170,226,.28),
            transparent 38%
        ),
        #151b1f;
}

.yih-program-dark .yih-program-index,
.yih-program-dark .yih-program-topics span {
    color: #fff;
    background: rgba(255,255,255,.10);
}

.yih-program-dark .yih-program-label,
.yih-program-dark > p:not(.yih-program-label) {
    color: rgba(255,255,255,.68);
}


.yih-simple-cta {
    padding: 84px 0 92px;
    background: #fff;
}

.yih-simple-cta-inner {
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(280px,.65fr);
    gap: 80px;
    align-items: end;
}

.yih-simple-cta h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(36px,4.8vw,58px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.yih-simple-cta-inner > div:last-child > p {
    margin: 0 0 18px;
    color: var(--yih-muted);
}


.yih-academy-method {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 33px 0 0;
}

.yih-academy-method span {
    padding: 8px 11px;
    border: 1px solid var(--yih-line);
    border-radius: 999px;
    color: #59646b;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
}

.yih-learning-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
}

.yih-learning-card {
    min-height: 250px;
    padding: 25px;
    border: 1px solid #e0e6e9;
    border-radius: 21px;
    background: #fff;
}

.yih-learning-card > span {
    color: var(--yih-blue-dark);
    font-size: 11px;
    font-weight: 850;
}

.yih-learning-card h3 {
    margin: 46px 0 10px;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -.028em;
}

.yih-learning-card p {
    margin: 0;
    color: #6b747a;
    line-height: 1.5;
}


.yih-audience-section {
    padding: 88px 0;
    background: #fff;
}

.yih-audience-panel {
    display: grid;
    grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr);
    gap: 65px;
    padding: 48px 50px;
    border: 1px solid var(--yih-line);
    border-radius: 26px;
}

.yih-audience-heading h2 {
    margin: 0;
    font-size: clamp(34px,4vw,49px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.yih-audience-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    align-content: start;
}

.yih-audience-list span {
    padding: 16px 17px;
    border-radius: 13px;
    color: #414b51;
    background: #f4f7f8;
    font-size: 14px;
    font-weight: 750;
}


.yih-flagship-course {
    padding: 0 0 94px;
    background: #fff;
}

.yih-flagship-grid {
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr);
    gap: 72px;
    padding: 53px 55px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(39,170,226,.34),
            transparent 35%
        ),
        #11171b;
}

.yih-flagship-intro h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(37px,4.8vw,56px);
    line-height: 1.01;
    letter-spacing: -.048em;
}

.yih-flagship-intro h2 span {
    display: block;
    color: var(--yih-blue);
}

.yih-flagship-intro > p:last-child {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 17px;
}

.yih-flagship-scope {
    align-self: end;
}

.yih-scope-label {
    margin: 0 0 13px;
    color: var(--yih-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.yih-flagship-scope ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.yih-flagship-scope li {
    position: relative;
    padding-left: 21px;
    color: rgba(255,255,255,.84);
}

.yih-flagship-scope li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yih-blue);
}

.yih-curriculum-note {
    margin: 21px 0 0;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.52);
    font-size: 13px;
}

.yih-text-link-light {
    margin-top: 18px;
    color: #fff;
}

.yih-text-link-light:hover,
.yih-text-link-light:focus-visible {
    color: var(--yih-blue);
}


.yih-academy-close {
    padding: 84px 0 92px;
    background: #f5f8fa;
}

.yih-academy-close-inner {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: end;
    gap: 55px;
}

.yih-academy-close h2 {
    margin: 0;
    font-size: clamp(37px,5vw,60px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.yih-academy-close p:last-child {
    max-width: 660px;
    margin: 16px 0 0;
    color: var(--yih-muted);
    font-size: 17px;
}


.yih-nav-list .current-menu-item > a,
.yih-nav-list .current_page_item > a {
    color: var(--yih-blue-dark);
}


@media (max-width: 980px) {

    .yih-inner-hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .yih-inner-hero-image {
        min-height: 410px;
    }

    .yih-inner-hero-image img {
        height: 410px;
    }

    .yih-program-card,
    .yih-program-card:nth-child(1),
    .yih-program-card:nth-child(7) {
        grid-column: span 6;
    }

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

    .yih-audience-panel,
    .yih-flagship-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}


@media (max-width: 720px) {

    .yih-inner-hero {
        padding: 52px 0 60px;
    }

    .yih-inner-hero-copy h1 {
        font-size: 48px;
    }

    .yih-inner-hero-image {
        min-height: 330px;
        border-radius: 21px;
    }

    .yih-inner-hero-image img {
        height: 330px;
    }

    .yih-program-directory,
    .yih-academy-entry {
        padding: 68px 0 72px;
    }

    .yih-program-grid {
        grid-template-columns: 1fr;
    }

    .yih-program-card,
    .yih-program-card:nth-child(1),
    .yih-program-card:nth-child(7) {
        grid-column: auto;
        min-height: 300px;
    }

    .yih-simple-cta-inner {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .yih-learning-grid {
        grid-template-columns: 1fr;
    }

    .yih-audience-panel {
        padding: 36px 29px;
    }

    .yih-audience-list {
        grid-template-columns: 1fr;
    }

    .yih-flagship-grid {
        padding: 40px 30px;
    }

    .yih-academy-close-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 30px;
    }
}


/* ============================================================
   YIH ABOUT + IMPACT 0.4.0
   ============================================================ */

.yih-about-purpose {
    padding: 88px 0 82px;
    background: #fff;
}

.yih-purpose-grid {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(320px,1.1fr);
    gap: 82px;
    align-items: start;
}

.yih-purpose-intro h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(38px,4.8vw,58px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.yih-purpose-copy {
    padding-top: 28px;
}

.yih-purpose-copy p {
    max-width: 650px;
    margin: 0;
    color: var(--yih-muted);
    font-size: 18px;
    line-height: 1.65;
}

.yih-purpose-copy p + p {
    margin-top: 18px;
}

.yih-about-pillars {
    padding: 76px 0 84px;
    background: #f5f8fa;
    border-top: 1px solid #edf0f2;
    border-bottom: 1px solid #edf0f2;
}

.yih-about-pillar {
    padding-right: 30px;
}

.yih-about-approach {
    padding: 88px 0 94px;
    background: #fff;
}

.yih-approach-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
}

.yih-approach-grid article {
    min-height: 230px;
    padding: 25px;
    border: 1px solid var(--yih-line);
    border-radius: 20px;
    background: #fff;
}

.yih-approach-grid article > span {
    color: var(--yih-blue-dark);
    font-size: 11px;
    font-weight: 850;
}

.yih-approach-grid h3 {
    margin: 52px 0 7px;
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.yih-approach-grid p {
    margin: 0;
    color: var(--yih-muted);
}

.yih-about-ecosystem {
    padding: 0 0 94px;
    background: #fff;
}

.yih-ecosystem-panel {
    display: grid;
    grid-template-columns: minmax(300px,.75fr) minmax(0,1.25fr);
    gap: 65px;
    padding: 49px 51px;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(39,170,226,.30),
            transparent 36%
        ),
        #141a1e;
}

.yih-ecosystem-panel .yih-eyebrow {
    color: var(--yih-orange);
}

.yih-ecosystem-panel h2 {
    margin: 0;
    max-width: 540px;
    font-size: clamp(35px,4vw,49px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.yih-ecosystem-items {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    align-content: start;
}

.yih-ecosystem-items span {
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 13px;
    color: rgba(255,255,255,.83);
    background: rgba(255,255,255,.055);
    font-size: 14px;
    font-weight: 720;
}


/* Innovation & Impact */

.yih-impact-hero {
    position: relative;
    padding: 86px 0 92px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(39,170,226,.30),
            transparent 31%
        ),
        radial-gradient(
            circle at 10% 100%,
            rgba(247,179,44,.10),
            transparent 28%
        ),
        #11171b;
}

.yih-impact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(360px,.8fr);
    gap: 80px;
    align-items: center;
}

.yih-eyebrow-light {
    color: var(--yih-orange);
}

.yih-impact-hero-copy h1 {
    max-width: 750px;
    margin: 0;
    font-size: clamp(52px,7vw,84px);
    line-height: .96;
    letter-spacing: -.055em;
}

.yih-impact-hero-copy > p:not(.yih-eyebrow) {
    max-width: 650px;
    margin: 27px 0 31px;
    color: rgba(255,255,255,.68);
    font-size: 19px;
    line-height: 1.6;
}

.yih-button-impact {
    color: #111;
    background: var(--yih-orange);
}

.yih-button-impact:hover,
.yih-button-impact:focus-visible {
    color: #111;
    background: #ffc957;
}

.yih-impact-visual {
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 12px;
    padding: 38px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 27px;
    background: rgba(255,255,255,.045);
}

.yih-impact-node {
    width: min(100%,320px);
    padding: 20px 22px;
    border-radius: 17px;
    background: rgba(255,255,255,.08);
}

.yih-impact-node span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,.46);
    font-size: 11px;
    font-weight: 800;
}

.yih-impact-node strong {
    display: block;
    font-size: 28px;
    letter-spacing: -.025em;
}

.yih-impact-node-idea {
    border-left: 5px solid var(--yih-orange);
}

.yih-impact-node-build {
    border-left: 5px solid var(--yih-blue);
}

.yih-impact-node-impact {
    border-left: 5px solid var(--yih-red);
}

.yih-impact-line {
    width: 1px;
    height: 26px;
    background: rgba(255,255,255,.20);
}


.yih-impact-pathways {
    padding: 90px 0 96px;
    background: #f5f8fa;
}

.yih-impact-grid {
    display: grid;
    grid-template-columns: repeat(12,minmax(0,1fr));
    gap: 18px;
}

.yih-impact-card {
    grid-column: span 4;
    min-height: 325px;
    padding: 26px;
    border: 1px solid #e0e6e9;
    border-radius: 22px;
    background: #fff;
}

.yih-impact-card:nth-child(1),
.yih-impact-card:nth-child(4) {
    grid-column: span 8;
}

.yih-impact-card-index {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    margin-bottom: 48px;
    border-radius: 50%;
    color: #788188;
    background: #f0f3f4;
    font-size: 11px;
    font-weight: 850;
}

.yih-impact-card-label {
    margin: 0 0 8px;
    color: #727b81;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.yih-impact-card h3 {
    max-width: 540px;
    margin: 0;
    font-size: clamp(26px,2.7vw,35px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.yih-impact-card > p:last-child {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--yih-muted);
    line-height: 1.55;
}

.yih-impact-card-blue {
    color: #fff;
    border-color: transparent;
    background: var(--yih-blue);
}

.yih-impact-card-blue .yih-impact-card-index {
    color: #fff;
    background: rgba(255,255,255,.16);
}

.yih-impact-card-blue .yih-impact-card-label,
.yih-impact-card-blue > p:last-child {
    color: rgba(255,255,255,.76);
}

.yih-impact-card-orange {
    border-color: transparent;
    background: #f8bd42;
}

.yih-impact-card-orange .yih-impact-card-index {
    color: #533700;
    background: rgba(255,255,255,.30);
}

.yih-impact-card-dark {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(39,170,226,.28),
            transparent 38%
        ),
        #151b1f;
}

.yih-impact-card-dark .yih-impact-card-index {
    color: #fff;
    background: rgba(255,255,255,.10);
}

.yih-impact-card-dark .yih-impact-card-label,
.yih-impact-card-dark > p:last-child {
    color: rgba(255,255,255,.66);
}

.yih-impact-card-green {
    border-color: #cfe7d7;
    background: #f2faf5;
}


.yih-generations-section {
    padding: 88px 0;
    background: #fff;
}

.yih-generations-panel {
    display: grid;
    grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr);
    gap: 70px;
    padding: 50px 52px;
    border: 1px solid var(--yih-line);
    border-radius: 26px;
}

.yih-generations-panel h2 {
    margin: 0;
    max-width: 490px;
    font-size: clamp(35px,4vw,50px);
    line-height: 1.03;
    letter-spacing: -.042em;
}

.yih-generations-columns {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px;
}

.yih-generations-columns article {
    padding: 22px;
    border-radius: 16px;
    background: #f5f8fa;
}

.yih-generation-label {
    margin: 0 0 11px;
    color: var(--yih-blue-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.yih-generations-columns article > p:last-child {
    margin: 0;
    color: #626c72;
}


.yih-impact-climate {
    padding: 82px 0 90px;
    background:
        radial-gradient(
            circle at 95% 5%,
            rgba(41,148,80,.10),
            transparent 30%
        ),
        #f4faf6;
    border-top: 1px solid #dbece1;
    border-bottom: 1px solid #dbece1;
}

.yih-impact-climate-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(330px,.8fr);
    gap: 75px;
    align-items: end;
}

.yih-impact-climate h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(38px,4.8vw,58px);
    line-height: 1.03;
    letter-spacing: -.044em;
}

.yih-impact-climate-grid > div:last-child > p {
    margin: 0;
    color: #5e6962;
    font-size: 17px;
}

.yih-impact-climate-note {
    margin-top: 17px !important;
    padding-top: 17px;
    border-top: 1px solid #d3e7da;
    font-size: 14px !important;
}


.yih-impact-close {
    padding: 88px 0 94px;
    background: #fff;
}

.yih-impact-close-inner {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 60px;
    align-items: end;
}

.yih-impact-close h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(38px,5vw,61px);
    line-height: 1.02;
    letter-spacing: -.046em;
}

.yih-impact-close-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 5px;
}


@media (max-width: 980px) {

    .yih-purpose-grid,
    .yih-ecosystem-panel,
    .yih-impact-hero-grid,
    .yih-generations-panel,
    .yih-impact-climate-grid {
        grid-template-columns: 1fr;
        gap: 43px;
    }

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

    .yih-impact-card,
    .yih-impact-card:nth-child(1),
    .yih-impact-card:nth-child(4) {
        grid-column: span 6;
    }

    .yih-impact-close-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 30px;
    }
}


@media (max-width: 720px) {

    .yih-about-purpose,
    .yih-about-approach,
    .yih-generations-section {
        padding: 66px 0;
    }

    .yih-about-pillars {
        padding: 62px 0;
    }

    .yih-about-ecosystem {
        padding-bottom: 70px;
    }

    .yih-approach-grid,
    .yih-ecosystem-items,
    .yih-generations-columns {
        grid-template-columns: 1fr;
    }

    .yih-ecosystem-panel,
    .yih-generations-panel {
        padding: 37px 29px;
    }

    .yih-impact-hero {
        padding: 60px 0 66px;
    }

    .yih-impact-hero-copy h1 {
        font-size: 49px;
    }

    .yih-impact-visual {
        padding: 27px;
    }

    .yih-impact-pathways {
        padding: 68px 0 72px;
    }

    .yih-impact-grid {
        grid-template-columns: 1fr;
    }

    .yih-impact-card,
    .yih-impact-card:nth-child(1),
    .yih-impact-card:nth-child(4) {
        grid-column: auto;
        min-height: 290px;
    }

    .yih-impact-climate {
        padding: 65px 0 70px;
    }

    .yih-impact-close {
        padding: 66px 0 72px;
    }

    .yih-impact-close-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ============================================================
   YIH CONTACT GATEWAY 0.5.0
   ============================================================ */

.yih-contact-hero {
    padding: 82px 0 78px;
    background:
        radial-gradient(
            circle at 5% 5%,
            rgba(39,170,226,.10),
            transparent 30%
        ),
        #fff;
}

.yih-contact-hero-inner {
    max-width: 850px;
}

.yih-contact-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(50px,7vw,82px);
    line-height: .97;
    letter-spacing: -.055em;
}

.yih-contact-hero-inner > p:last-child {
    max-width: 680px;
    margin: 27px 0 0;
    color: var(--yih-muted);
    font-size: clamp(18px,2vw,21px);
    line-height: 1.6;
}


.yih-contact-options {
    padding: 88px 0 96px;
    background: #f5f8fa;
    border-top: 1px solid #edf0f2;
}

.yih-contact-grid {
    display: grid;
    grid-template-columns: repeat(12,minmax(0,1fr));
    gap: 18px;
}

.yih-contact-card {
    grid-column: span 4;
    min-height: 330px;
    padding: 27px;
    border: 1px solid #e0e6e9;
    border-radius: 23px;
    background: #fff;
}

.yih-contact-card:nth-child(2),
.yih-contact-card:nth-child(5) {
    grid-column: span 8;
}

.yih-contact-index {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 50px;
    border-radius: 50%;
    color: #79838a;
    background: #f0f3f4;
    font-size: 11px;
    font-weight: 850;
}

.yih-contact-label {
    margin: 0 0 8px;
    color: #717b81;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.yih-contact-card h2 {
    max-width: 560px;
    margin: 0;
    font-size: clamp(27px,2.9vw,37px);
    line-height: 1.07;
    letter-spacing: -.037em;
}

.yih-contact-card > p:last-child {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--yih-muted);
    line-height: 1.55;
}

.yih-contact-card-blue {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(255,255,255,.18),
            transparent 35%
        ),
        var(--yih-blue);
}

.yih-contact-card-blue .yih-contact-index {
    color: #fff;
    background: rgba(255,255,255,.16);
}

.yih-contact-card-blue .yih-contact-label,
.yih-contact-card-blue > p:last-child {
    color: rgba(255,255,255,.76);
}

.yih-contact-card-orange {
    border-color: transparent;
    background: #f8bd42;
}

.yih-contact-card-orange .yih-contact-index {
    color: #543800;
    background: rgba(255,255,255,.31);
}

.yih-contact-card-dark {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(39,170,226,.28),
            transparent 38%
        ),
        #151b1f;
}

.yih-contact-card-dark .yih-contact-index {
    color: #fff;
    background: rgba(255,255,255,.10);
}

.yih-contact-card-dark .yih-contact-label,
.yih-contact-card-dark > p:last-child {
    color: rgba(255,255,255,.67);
}


.yih-contact-channel {
    padding: 88px 0;
    background: #fff;
}

.yih-contact-channel-panel {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(320px,.75fr);
    gap: 75px;
    padding: 48px 50px;
    border: 1px solid var(--yih-line);
    border-radius: 26px;
}

.yih-contact-channel-panel h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(36px,4.6vw,55px);
    line-height: 1.03;
    letter-spacing: -.044em;
}

.yih-contact-channel-copy {
    align-self: end;
}

.yih-contact-channel-copy > p {
    margin: 0;
    color: var(--yih-muted);
    font-size: 17px;
}

.yih-contact-channel-note {
    margin-top: 17px !important;
    padding-top: 17px;
    border-top: 1px solid var(--yih-line);
    color: #858d92 !important;
    font-size: 13px !important;
}


.yih-contact-close {
    padding: 86px 0 94px;
    background: #f5f8fa;
    border-top: 1px solid #edf0f2;
}

.yih-contact-close-inner {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 60px;
    align-items: end;
}

.yih-contact-close h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(38px,5vw,60px);
    line-height: 1.02;
    letter-spacing: -.046em;
}

.yih-contact-close-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 5px;
}


@media (max-width: 980px) {

    .yih-contact-card,
    .yih-contact-card:nth-child(2),
    .yih-contact-card:nth-child(5) {
        grid-column: span 6;
    }

    .yih-contact-channel-panel {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .yih-contact-close-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }
}


@media (max-width: 720px) {

    .yih-contact-hero {
        padding: 58px 0 62px;
    }

    .yih-contact-hero h1 {
        font-size: 49px;
    }

    .yih-contact-options {
        padding: 68px 0 72px;
    }

    .yih-contact-grid {
        grid-template-columns: 1fr;
    }

    .yih-contact-card,
    .yih-contact-card:nth-child(2),
    .yih-contact-card:nth-child(5) {
        grid-column: auto;
        min-height: 290px;
    }

    .yih-contact-channel {
        padding: 66px 0;
    }

    .yih-contact-channel-panel {
        padding: 37px 29px;
    }

    .yih-contact-close {
        padding: 66px 0 72px;
    }

    .yih-contact-close-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ============================================================
   YIH HOMEPAGE GRID BALANCE 0.5.2
   Cards 03–06 form balanced two-column rows.
   ============================================================ */

@media (min-width: 981px) {

    .yih-gateway-grid > .yih-gateway-card:nth-child(3),
    .yih-gateway-grid > .yih-gateway-card:nth-child(4),
    .yih-gateway-grid > .yih-gateway-card:nth-child(5),
    .yih-gateway-grid > .yih-gateway-card:nth-child(6) {
        grid-column: span 6;
    }

}


/* ============================================================
   YIH CONTACT ENQUIRY FORM 0.5.3
   ============================================================ */

.yih-contact-card {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.yih-contact-card:hover {
    transform: translateY(-3px);
}

.yih-contact-card:focus-visible {
    outline: 3px solid #e4a21a;
    outline-offset: 4px;
}

.yih-contact-form-section {
    padding: 5rem 0;
    background: #f5f6f3;
}

.yih-contact-form-shell {
    max-width: 920px;
    margin: 0 auto;
}

.yih-contact-form-intro {
    max-width: 650px;
    margin-bottom: 2rem;
}

.yih-contact-form-intro h2 {
    margin-top: .55rem;
    margin-bottom: .8rem;
}

.yih-enquiry-form-wrap {
    background: #ffffff;
    border: 1px solid rgba(20, 27, 31, .12);
    border-radius: 22px;
    padding: clamp(1.35rem, 3vw, 2.5rem);
    box-shadow: 0 18px 50px rgba(20, 27, 31, .07);
}

.yih-enquiry-form {
    display: grid;
    gap: 1.4rem;
}

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

.yih-form-field {
    display: grid;
    gap: .55rem;
}

.yih-form-field label {
    font-weight: 700;
    color: #181e22;
}

.yih-form-field label span {
    font-weight: 400;
    color: #697178;
}

.yih-form-field input,
.yih-form-field select,
.yih-form-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cfd4d7;
    border-radius: 10px;
    background: #ffffff;
    color: #181e22;
    font: inherit;
    padding: .9rem 1rem;
}

.yih-form-field select {
    min-height: 50px;
}

.yih-form-field textarea {
    resize: vertical;
    min-height: 170px;
}

.yih-form-field input:focus,
.yih-form-field select:focus,
.yih-form-field textarea:focus {
    outline: 3px solid rgba(0, 94, 156, .18);
    border-color: #005e9c;
}

.yih-form-recaptcha {
    min-height: 78px;
}

.yih-form-notice {
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 10px;
    line-height: 1.55;
}

.yih-form-notice-success {
    background: #edf7ef;
    border: 1px solid #a8d1af;
}

.yih-form-notice-error {
    background: #fff3f1;
    border: 1px solid #e2aaa2;
}

.yih-form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.yih-contact-channel-copy a {
    color: inherit;
    font-weight: 700;
    text-underline-offset: 3px;
}

@media (max-width: 720px) {

    .yih-contact-form-section {
        padding: 3.75rem 0;
    }

    .yih-form-row {
        grid-template-columns: 1fr;
    }

    .yih-enquiry-form-wrap {
        border-radius: 16px;
    }

    .yih-form-recaptcha {
        overflow-x: auto;
    }

}


/* ============================================================
   YIH CONTACT GRID BALANCE 0.5.4
   Card 04 mirrors Card 02 on desktop.
   Corrected in 0.5.5.
   ============================================================ */

@media (min-width: 981px) {

    .yih-contact-grid > .yih-contact-card:nth-child(4) {
        grid-column: span 8;
    }

}


/* ============================================================
   YIH CONTACT FORM ALIGNMENT 0.5.5
   Form panel follows the full Contact content width.
   ============================================================ */

.yih-contact-form-shell {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.yih-contact-form-intro {
    max-width: 720px;
}

.yih-enquiry-form-wrap {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}




/* ============================================================
   YIH CONTACT FORM ALIGNMENT 0.5.6
   The standard YIH container controls the section width.
   The form panel fills that container only.
   ============================================================ */

.yih-contact-form-shell,
.yih-enquiry-form-wrap {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}


/* ============================================================
   YIH IMPACT CARD 06 WIDTH 0.5.7
   Innovation & Impact: stretch card 06 to align with card 04
   without changing its background styling.
   Desktop only.
   ============================================================ */

@media (min-width: 981px) {

    .page-id-16 .yih-impact-grid > .yih-impact-card:nth-child(6),
    .page-id-16 .yih-impact-grid > article:nth-child(6),
    .page-id-16 .yih-impact-grid > a:nth-child(6),
    .page-id-16 .yih-innovation-impact-grid > .yih-impact-card:nth-child(6),
    .page-id-16 .yih-innovation-impact-grid > article:nth-child(6),
    .page-id-16 .yih-innovation-impact-grid > a:nth-child(6),
    .page-id-16 .yih-impact-cards > .yih-impact-card:nth-child(6),
    .page-id-16 .yih-impact-cards > article:nth-child(6),
    .page-id-16 .yih-impact-cards > a:nth-child(6) {
        grid-column: span 8;
    }

}


/* ============================================================
   YIH IMPACT LOWER PANELS 0.5.8
   Subtle inset cards for Climate and closing CTA.
   Existing section backgrounds and layouts remain intact.
   ============================================================ */

.page-id-16 .yih-impact-climate-grid {
    border: 1px solid rgba(53, 112, 79, .18);
    border-radius: 22px;
    padding: clamp(1.6rem, 3vw, 2.5rem);
    background: rgba(255, 255, 255, .34);
    box-shadow: 0 16px 42px rgba(20, 27, 31, .035);
}

.page-id-16 .yih-impact-close-inner {
    border: 1px solid rgba(20, 27, 31, .12);
    border-radius: 22px;
    padding: clamp(1.6rem, 3vw, 2.5rem);
    background: rgba(247, 248, 246, .78);
    box-shadow: 0 16px 42px rgba(20, 27, 31, .04);
}

@media (max-width: 720px) {

    .page-id-16 .yih-impact-climate-grid,
    .page-id-16 .yih-impact-close-inner {
        border-radius: 16px;
        padding: 1.35rem;
    }

}


/* ============================================================
   YIH COURSE OVERVIEW LEAD 0.5.9
   Flagship / LMS course overview introduction hierarchy.
   ============================================================ */

.single-course .yih-course-lead {
    max-width: 760px;
    margin: 0 0 2rem;
    color: rgba(20, 27, 31, .78);
    font-size: clamp(1.12rem, 1.7vw, 1.35rem);
    font-weight: 600;
    line-height: 1.55;
}

.single-course .yih-course-lead + p {
    margin-top: 0;
}

@media (max-width: 700px) {
    .single-course .yih-course-lead {
        margin-bottom: 1.6rem;
        font-size: 1.08rem;
        line-height: 1.55;
    }
}


/* ============================================================
   YIH COURSE INTRO IMAGE 0.5.10
   Flagship course contextual introductory visual.
   ============================================================ */

.single-course .yih-course-intro-media {
    width: 100%;
    max-width: 860px;
    margin: .4rem 0 2.4rem;
    overflow: hidden;
    border: 1px solid rgba(20, 27, 31, .10);
    border-radius: 22px;
    background: #f5f6f5;
    box-shadow: 0 18px 46px rgba(20, 27, 31, .06);
}

.single-course .yih-course-intro-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 700px) {
    .single-course .yih-course-intro-media {
        margin-bottom: 1.8rem;
        border-radius: 16px;
    }
}

/* ============================================================
   YIH REGISTRATION 0.5.11
   Public learner account creation.
   Scoped to the dedicated Register page.
   ============================================================ */

.yih-register-hero {
    padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
    background: #ffffff;
}

.yih-register-hero-inner {
    max-width: 820px;
    text-align: center;
}

.yih-register-hero h1 {
    max-width: 760px;
    margin: .65rem auto 0;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.yih-register-lead {
    max-width: 680px;
    margin: 1.25rem auto 0;
    color: var(--yih-muted);
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.7;
}

.yih-register-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background: #f5f6f3;
}

.yih-register-layout {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

.yih-register-intro {
    padding-top: .5rem;
}

.yih-register-intro h2 {
    margin: .55rem 0 .9rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.yih-register-intro > p:not(.yih-eyebrow) {
    color: var(--yih-muted);
    line-height: 1.7;
}

.yih-register-guidance {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--yih-line);
}

.yih-register-guidance p {
    margin: .45rem 0 0;
}

.yih-register-guidance a {
    color: var(--yih-blue);
    font-weight: 800;
    text-decoration: none;
}

.yih-register-guidance a:hover,
.yih-register-guidance a:focus-visible {
    color: var(--yih-blue-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.yih-register-form-wrap {
    min-width: 0;
    padding: clamp(1.5rem, 4vw, 2.6rem);
    background: #ffffff;
    border: 1px solid rgba(20, 27, 31, .12);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(20, 27, 31, .07);
}

.yih-register-form-wrap .yih-registration form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.yih-register-form-wrap .yih-registration form > p {
    display: grid;
    gap: .55rem;
    margin: 0;
}

.yih-register-form-wrap .yih-registration form > p:nth-of-type(3),
.yih-register-form-wrap .yih-registration form > p:nth-of-type(6),
.yih-register-form-wrap .yih-registration form > p:nth-of-type(7) {
    grid-column: 1 / -1;
}

.yih-register-form-wrap .yih-registration label {
    font-weight: 700;
    color: #181e22;
}

.yih-register-form-wrap .yih-registration input[type="text"],
.yih-register-form-wrap .yih-registration input[type="email"],
.yih-register-form-wrap .yih-registration input[type="password"] {
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
    padding: .9rem 1rem;
    color: #181e22;
    background: #ffffff;
    border: 1px solid #cfd4d7;
    border-radius: 10px;
}

.yih-register-form-wrap .yih-registration input[type="text"]:focus,
.yih-register-form-wrap .yih-registration input[type="email"]:focus,
.yih-register-form-wrap .yih-registration input[type="password"]:focus {
    outline: 3px solid rgba(0, 94, 156, .18);
    border-color: #005e9c;
}

.yih-register-form-wrap .g-recaptcha {
    grid-column: 1 / -1;
    min-height: 78px;
}

.yih-register-form-wrap .yih-registration form > p:nth-of-type(6) label {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-weight: 500;
    line-height: 1.55;
}

.yih-register-form-wrap .yih-registration input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: .18rem;
    accent-color: var(--yih-blue);
}

.yih-register-form-wrap .yih-registration button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: 100%;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--yih-blue);
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.yih-register-form-wrap .yih-registration button[type="submit"]:hover,
.yih-register-form-wrap .yih-registration button[type="submit"]:focus-visible {
    background: var(--yih-blue-dark);
}

.yih-register-form-wrap .yih-registration button[type="submit"]:focus-visible {
    outline: 3px solid rgba(0, 94, 156, .22);
    outline-offset: 3px;
}

.yih-register-form-wrap .yih-registration-notice {
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px solid #a8d1af;
    border-radius: 10px;
    background: #edf7ef;
    line-height: 1.55;
}

@media (max-width: 820px) {
    .yih-register-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .yih-register-intro {
        max-width: 680px;
        padding-top: 0;
    }
}

@media (max-width: 620px) {
    .yih-register-hero {
        padding-top: 3rem;
    }

    .yih-register-section {
        padding: 3rem 0;
    }

    .yih-register-form-wrap {
        padding: 1.3rem;
        border-radius: 16px;
    }

    .yih-register-form-wrap .yih-registration form {
        grid-template-columns: 1fr;
    }

    .yih-register-form-wrap .yih-registration form > p {
        grid-column: 1 / -1;
    }

    .yih-register-form-wrap .g-recaptcha {
        overflow-x: auto;
    }
}

/* YIH REGISTRATION SUCCESS 0.5.12 */

.yih-registration-success {
    padding: clamp(.4rem, 2vw, 1rem);
}

.yih-registration-success h2 {
    margin: .55rem 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.yih-registration-success > p:not(.yih-eyebrow) {
    max-width: 580px;
    color: var(--yih-muted);
    line-height: 1.7;
}

.yih-registration-success-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.4rem;
    margin-top: 2rem;
}

.yih-registration-success-link {
    color: var(--yih-blue);
    font-weight: 800;
    text-decoration: none;
}

.yih-registration-success-link:hover,
.yih-registration-success-link:focus-visible {
    color: var(--yih-blue-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==========================================================
   YIH Integrated Registration Experience
   Offline candidate — scoped to registration page only
   ========================================================== */

.yih-register-page {
    background:
        radial-gradient(circle at 8% 12%, rgba(46, 180, 170, .12), transparent 28rem),
        radial-gradient(circle at 92% 28%, rgba(236, 122, 74, .10), transparent 24rem),
        #f7f9f8;
}

.yih-register-page .yih-register-article {
    margin: 0;
}

.yih-register-stage {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 6rem) 0;
    min-height: 680px;
    background:
        linear-gradient(135deg, rgba(8, 55, 58, .98), rgba(10, 83, 82, .94) 48%, rgba(18, 111, 103, .90));
}

.yih-register-stage::before {
    content: "";
    position: absolute;
    width: 34rem;
    height: 34rem;
    left: -15rem;
    top: -18rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow:
        0 0 0 5rem rgba(255,255,255,.025),
        0 0 0 10rem rgba(255,255,255,.018);
    pointer-events: none;
}

.yih-register-stage::after {
    content: "";
    position: absolute;
    width: 30rem;
    height: 30rem;
    right: -12rem;
    bottom: -18rem;
    border-radius: 50%;
    background: rgba(255,255,255,.035);
    pointer-events: none;
}

.yih-register-stage .yih-container {
    position: relative;
    z-index: 2;
}

.yih-register-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.yih-register-story {
    position: relative;
    color: #fff;
    padding: 1rem 0;
}

.yih-register-story .yih-eyebrow {
    margin: 0 0 1rem;
    color: #a9e0d9;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.yih-register-story h1 {
    max-width: 10ch;
    margin: 0;
    color: #fff;
    font-size: clamp(2.8rem, 5.5vw, 5.25rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.yih-register-story-lead {
    max-width: 34rem;
    margin: 1.5rem 0 0;
    color: rgba(255,255,255,.82);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.yih-register-visual {
    position: relative;
    width: min(100%, 25rem);
    height: 15rem;
    margin-top: 2.5rem;
}

.yih-register-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
}

.yih-register-orbit-one {
    width: 14rem;
    height: 14rem;
    left: 0;
    top: .5rem;
}

.yih-register-orbit-two {
    width: 9rem;
    height: 9rem;
    left: 10rem;
    top: 3rem;
    border-color: rgba(244, 154, 98, .30);
}

.yih-register-visual-card {
    position: absolute;
    left: 4.5rem;
    top: 3.1rem;
    display: flex;
    flex-direction: column;
    width: 14rem;
    padding: 1.35rem 1.45rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 1.15rem;
    background: rgba(255,255,255,.10);
    box-shadow: 0 1.25rem 3rem rgba(0,0,0,.16);
    backdrop-filter: blur(12px);
    transform: rotate(-3deg);
}

.yih-register-visual-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    margin-bottom: 1rem;
    border-radius: .8rem;
    background: #fff;
    color: #0a625e;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.yih-register-visual-card strong {
    color: #fff;
    font-size: 1rem;
}

.yih-register-visual-card small {
    margin-top: .35rem;
    color: rgba(255,255,255,.70);
    line-height: 1.5;
}

.yih-register-panel {
    position: relative;
    padding: clamp(1.6rem, 3vw, 2.5rem);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 1.35rem;
    background: rgba(255,255,255,.97);
    box-shadow: 0 2rem 5rem rgba(0, 30, 30, .24);
}

.yih-register-panel-heading {
    margin-bottom: 1.5rem;
}

.yih-register-panel .yih-eyebrow {
    margin: 0 0 .55rem;
    color: #16756e;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.yih-register-panel h2 {
    margin: 0;
    color: #173b3b;
    font-size: clamp(1.55rem, 2.3vw, 2rem);
    line-height: 1.2;
}

.yih-register-panel-heading > p:last-child,
.yih-registration-success > p {
    color: #60706f;
    line-height: 1.65;
}

.yih-register-form-wrap form {
    margin: 0;
}

.yih-register-form-wrap form > p {
    margin: 0 0 1rem;
}

.yih-register-form-wrap label {
    display: block;
    margin-bottom: .4rem;
    color: #294847;
    font-size: .88rem;
    font-weight: 700;
}

.yih-register-form-wrap input[type="text"],
.yih-register-form-wrap input[type="email"],
.yih-register-form-wrap input[type="password"] {
    box-sizing: border-box;
    width: 100%;
    min-height: 3rem;
    padding: .72rem .85rem;
    border: 1px solid #ccd9d7;
    border-radius: .65rem;
    background: #fff;
    color: #173b3b;
}

.yih-register-form-wrap input:focus {
    outline: 3px solid rgba(26, 137, 126, .14);
    border-color: #218b82;
}

.yih-register-form-wrap button[type="submit"] {
    width: 100%;
    min-height: 3.15rem;
    border: 0;
    border-radius: .7rem;
    background: #d86f3e;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.yih-register-form-wrap button[type="submit"]:hover,
.yih-register-form-wrap button[type="submit"]:focus-visible {
    filter: brightness(.94);
}

.yih-register-signin {
    display: flex;
    gap: .45rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.35rem;
    padding-top: 1.2rem;
    border-top: 1px solid #e3eae9;
    color: #687877;
    font-size: .9rem;
}

.yih-register-signin a,
.yih-registration-success-link {
    color: #16756e;
    font-weight: 800;
    text-decoration: none;
}

.yih-registration-success {
    padding: .4rem 0;
}

.yih-registration-success h2 {
    margin-bottom: 1rem;
}

.yih-registration-success-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.75rem;
}

.yih-registration-success-actions .yih-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: .75rem 1.2rem;
    border-radius: .7rem;
    background: #d86f3e;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.yih-register-stage.is-success .yih-register-panel {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 900px) {
    .yih-register-stage {
        min-height: 0;
        padding: 3.5rem 0;
    }

    .yih-register-stage-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .yih-register-story h1 {
        max-width: 12ch;
    }

    .yih-register-visual {
        height: 11rem;
        margin-top: 1.75rem;
    }

    .yih-register-orbit-one {
        width: 10rem;
        height: 10rem;
    }

    .yih-register-orbit-two {
        width: 7rem;
        height: 7rem;
        left: 8rem;
        top: 2rem;
    }

    .yih-register-visual-card {
        left: 3rem;
        top: 1.75rem;
        width: 13rem;
    }
}

@media (max-width: 560px) {
    .yih-register-stage {
        padding: 2.5rem 0;
    }

    .yih-register-story h1 {
        font-size: clamp(2.4rem, 14vw, 3.6rem);
    }

    .yih-register-visual {
        display: none;
    }

    .yih-register-panel {
        padding: 1.35rem;
        border-radius: 1rem;
    }

    .yih-register-signin {
        display: block;
        text-align: center;
    }

    .yih-register-signin a {
        display: block;
        margin-top: .35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .yih-register-visual-card {
        transform: none;
    }
}

/* ==========================================================
   YIH Registration Palette Reconciliation R1
   Blue / light-blue / orange public-site brand alignment
   ========================================================== */

.yih-register-page {
    background:
        radial-gradient(circle at 8% 12%, rgba(52, 169, 224, .10), transparent 28rem),
        radial-gradient(circle at 92% 28%, rgba(237, 112, 58, .09), transparent 24rem),
        #f7fbfd;
}

.yih-register-stage {
    background:
        linear-gradient(135deg, #087fb8 0%, #159bd2 52%, #35afe2 100%);
}

.yih-register-stage::before {
    border-color: rgba(255, 255, 255, .14);
    box-shadow:
        0 0 0 5rem rgba(255, 255, 255, .035),
        0 0 0 10rem rgba(255, 255, 255, .022);
}

.yih-register-stage::after {
    background: rgba(255, 255, 255, .06);
}

.yih-register-story .yih-eyebrow {
    color: #dff5ff;
}

.yih-register-story h1,
.yih-register-story-lead {
    color: #ffffff;
}

.yih-register-visual-card {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .24);
}

.yih-register-visual-mark {
    color: #148fc7;
}

.yih-register-panel .yih-eyebrow,
.yih-registration-success .yih-eyebrow {
    color: #168fc7;
}

.yih-register-panel h2,
.yih-registration-success h2 {
    color: #151515;
}

.yih-register-panel input:focus {
    border-color: #2fa9df;
    box-shadow: 0 0 0 3px rgba(47, 169, 223, .14);
}

.yih-register-panel .yih-button-primary,
.yih-registration-success-actions .yih-button-primary {
    background: #e8743b;
    border-color: #e8743b;
    color: #ffffff;
}

.yih-register-panel .yih-button-primary:hover,
.yih-register-panel .yih-button-primary:focus,
.yih-registration-success-actions .yih-button-primary:hover,
.yih-registration-success-actions .yih-button-primary:focus {
    background: #d9632f;
    border-color: #d9632f;
    color: #ffffff;
}

.yih-register-signin a,
.yih-registration-success-link {
    color: #168fc7;
}

.yih-register-signin a:hover,
.yih-register-signin a:focus,
.yih-registration-success-link:hover,
.yih-registration-success-link:focus {
    color: #0b6f9f;
}

.yih-register-stage.is-success .yih-register-panel {
    border-top: 4px solid #e8743b;
}

/* ==========================================================
   YIH My Learning Dashboard Presentation R1
   Native LifterLMS structure / YIH public-site presentation
   ========================================================== */

.llms-student-dashboard {
    --yih-blue: #087fb8;
    --yih-sky: #35afe2;
    --yih-orange: #e8743b;
    --yih-ink: #111827;
    --yih-muted: #5f6b76;
    --yih-line: #dce6ec;
    --yih-soft: #f5fafc;
    max-width: 100%;
}

/* Dashboard two-column workspace */







/* Main learner heading */
.llms-student-dashboard .llms-sd-header {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.llms-student-dashboard .llms-sd-title {
    color: var(--yih-ink);
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    margin: 0;
}

/* Native dashboard sections */
.llms-student-dashboard .llms-sd-widgets {
    gap: 22px;
}

.llms-student-dashboard .llms-sd-widget {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--yih-line);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(17, 24, 39, .055);
    margin-bottom: 22px;
    padding: 0;
}

.llms-student-dashboard .llms-sd-widget-title {
    position: relative;
    margin: 0;
    padding: 19px 22px 17px;
    border-bottom: 1px solid #e7eef2;
    color: var(--yih-ink);
    font-size: 1.08rem;
    font-weight: 800;
}

.llms-student-dashboard .llms-sd-widget-title::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 18px;
    margin-right: 10px;
    border-radius: 5px;
    background: var(--yih-orange);
    vertical-align: -3px;
}

.llms-student-dashboard .llms-sd-widget > :not(.llms-sd-widget-title) {
    margin-left: 22px;
    margin-right: 22px;
}

.llms-student-dashboard .llms-sd-widget-empty {
    color: var(--yih-muted);
    line-height: 1.65;
    padding-top: 4px;
}

/* Native buttons and dashboard actions */
.llms-student-dashboard a.llms-button-primary,
.llms-student-dashboard .llms-button-primary,
.llms-student-dashboard button,
.llms-student-dashboard input[type="submit"] {
    border-radius: 10px;
}

.llms-student-dashboard a.llms-button-primary,
.llms-student-dashboard .llms-button-primary {
    background: var(--yih-orange);
    border-color: var(--yih-orange);
    color: #fff;
    font-weight: 800;
    box-shadow: none;
}

.llms-student-dashboard a.llms-button-primary:hover,
.llms-student-dashboard .llms-button-primary:hover {
    background: #d9632f;
    border-color: #d9632f;
    color: #fff;
}

/* Course / achievement / certificate surfaces */
.llms-student-dashboard .llms-loop-item-content,
.llms-student-dashboard .llms-achievement-loop-item,
.llms-student-dashboard .llms-certificate-loop-item {
    border-color: var(--yih-line);
    border-radius: 14px;
}

.llms-student-dashboard a {
    text-underline-offset: 3px;
}

.llms-student-dashboard .llms-course-progress {
    border-radius: 999px;
    overflow: hidden;
}

/* Forms inside account endpoints */
.llms-student-dashboard input[type="text"],
.llms-student-dashboard input[type="email"],
.llms-student-dashboard input[type="password"],
.llms-student-dashboard input[type="tel"],
.llms-student-dashboard select,
.llms-student-dashboard textarea {
    border: 1px solid #cbd8df;
    border-radius: 10px;
    min-height: 46px;
}

.llms-student-dashboard input:focus,
.llms-student-dashboard select:focus,
.llms-student-dashboard textarea:focus {
    border-color: var(--yih-sky);
    box-shadow: 0 0 0 3px rgba(53, 175, 226, .13);
    outline: 0;
}

/* Mobile navigation remains native and usable */
@media (max-width: 768px) {
    .llms-student-dashboard .llms-sd-nav {
        border-radius: 14px;
        padding: 10px;
        margin-bottom: 22px;
    }

    .llms-student-dashboard .llms-sd-title {
        font-size: 2rem;
    }

    .llms-student-dashboard .llms-sd-widget {
        border-radius: 14px;
    }

    .llms-student-dashboard .llms-sd-widget-title {
        padding: 17px 18px 15px;
    }

    .llms-student-dashboard .llms-sd-widget > :not(.llms-sd-widget-title) {
        margin-left: 18px;
        margin-right: 18px;
    }
}

/* ==========================================================
   YIH My Learning Dashboard Presentation Refinement R1
   Native LifterLMS dashboard — presentation only
   ========================================================== */

body.page-id-44 .llms-student-dashboard {
    --yih-dashboard-blue: #087fb8;
    --yih-dashboard-sky: #35afe2;
    --yih-dashboard-orange: #e8743b;
    --yih-dashboard-ink: #172033;
    --yih-dashboard-muted: #647184;
    --yih-dashboard-line: #dce7ee;
    --yih-dashboard-soft: #f7fbfd;
    display: grid;
    grid-template-columns: minmax(180px, 210px) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

body.page-id-44 .llms-sd-header {
    margin: 0;
    padding: .85rem;
    background: #fff;
    border: 1px solid var(--yih-dashboard-line);
    border-radius: 1.1rem;
    box-shadow: 0 12px 34px rgba(23, 32, 51, .06);
}

body.page-id-44 .llms-sd-main {
    min-width: 0;
}

body.page-id-44 .llms-sd-main > h2:first-child {
    margin: 0 0 1.35rem;
    color: var(--yih-dashboard-ink);
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -.035em;
}

body.page-id-44 .llms-sd-main .llms-sd-section {
    margin: 0 0 1.25rem;
    padding: clamp(1.15rem, 2.4vw, 1.55rem);
    background: #fff;
    border: 1px solid var(--yih-dashboard-line);
    border-radius: 1rem;
    box-shadow: 0 8px 28px rgba(23, 32, 51, .045);
}

body.page-id-44 .llms-sd-main .llms-sd-section h3,
body.page-id-44 .llms-sd-main .llms-sd-section h2 {
    margin-top: 0;
    color: var(--yih-dashboard-ink);
}

body.page-id-44 .llms-sd-main .llms-sd-section p {
    color: var(--yih-dashboard-muted);
    line-height: 1.65;
}

body.page-id-44 .llms-sd-main .llms-button-secondary,
body.page-id-44 .llms-sd-main .llms-button-action,
body.page-id-44 .llms-sd-main a.llms-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .72rem 1.15rem;
    border: 0;
    border-radius: .72rem;
    background: var(--yih-dashboard-orange);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 7px 18px rgba(232, 116, 59, .16);
}

body.page-id-44 .llms-sd-main .llms-button-secondary:hover,
body.page-id-44 .llms-sd-main .llms-button-action:hover,
body.page-id-44 .llms-sd-main a.llms-button-primary:hover {
    filter: brightness(.96);
    color: #fff;
}

@media (min-width: 900px) {
    body.page-id-44 .llms-sd-main {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    body.page-id-44 .llms-sd-main > h2:first-child,
    body.page-id-44 .llms-sd-main > .llms-notice,
    body.page-id-44 .llms-sd-main > form {
        grid-column: 1 / -1;
    }

    body.page-id-44 .llms-sd-main .llms-sd-section {
        margin-bottom: 0;
    }
}

@media (max-width: 899px) {
    body.page-id-44 .llms-student-dashboard {
        grid-template-columns: 1fr;
    }
}



/* ==========================================================
   YIH My Learning Dashboard Composition R1
   Controlled dashboard-home composition; native LLMS data
   ========================================================== */

body.page-id-44 .llms-sd-main > .llms-sd-header {
    margin: 0 0 1.35rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

body.page-id-44 .llms-sd-main > .llms-sd-header .llms-sd-title {
    margin: 0;
    padding: 0;
    color: var(--yih-dashboard-ink);
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -.035em;
}

body.page-id-44 .llms-sd-tab.dashboard.yih-learning-dashboard {
    display: block;
    min-width: 0;
}

body.page-id-44 .yih-learning-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

body.page-id-44 .yih-learning-dashboard-card {
    min-width: 0;
}

body.page-id-44 .yih-learning-dashboard-card > .llms-sd-section {
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: clamp(1.2rem, 2.4vw, 1.55rem);
    background: #fff;
    border: 1px solid var(--yih-dashboard-line);
    border-radius: 1rem;
    box-shadow: 0 8px 28px rgba(23, 32, 51, .045);
}

body.page-id-44 .yih-learning-dashboard-card > .llms-sd-section > h2,
body.page-id-44 .yih-learning-dashboard-card > .llms-sd-section > h3 {
    margin-top: 0;
    color: var(--yih-dashboard-ink);
}

body.page-id-44 .yih-learning-dashboard-card > .llms-sd-section > h2::before,
body.page-id-44 .yih-learning-dashboard-card > .llms-sd-section > h3::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 18px;
    margin-right: 10px;
    border-radius: 5px;
    background: var(--yih-dashboard-orange);
    vertical-align: -2px;
}

body.page-id-44 .yih-learning-dashboard-card--courses {
    grid-column: 1 / -1;
}

body.page-id-44 .yih-learning-dashboard-card--favorites:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

body.page-id-44 .yih-learning-dashboard-card p {
    color: var(--yih-dashboard-muted);
    line-height: 1.65;
}

body.page-id-44 .yih-learning-dashboard-card .llms-button-secondary,
body.page-id-44 .yih-learning-dashboard-card .llms-button-action,
body.page-id-44 .yih-learning-dashboard-card a.llms-button-primary {
    border-radius: .72rem;
}

@media (max-width: 899px) {
    body.page-id-44 .yih-learning-dashboard-grid {
        grid-template-columns: 1fr;
    }

    body.page-id-44 .yih-learning-dashboard-card--courses,
    body.page-id-44 .yih-learning-dashboard-card--favorites:last-child:nth-child(odd) {
        grid-column: auto;
    }
}

/* ==========================================================
