/*
 * IUOAMC Public UI v2
 * Scope: public utility bar, public header, and homepage hero only.
 * Loaded after the legacy public layout styles and designed for safe rollback.
 */

:root {
    --iu-public-bg: #070d18;
    --iu-public-panel: #101a2a;
    --iu-public-panel-soft: rgba(16, 26, 42, 0.86);
    --iu-public-gold: #d4af37;
    --iu-public-gold-light: #f3d675;
    --iu-public-text: #f8fafc;
    --iu-public-muted: #aeb9ca;
    --iu-public-line: rgba(212, 175, 55, 0.25);
    --iu-public-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

html body {
    background: var(--iu-public-bg);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    text-rendering: optimizeLegibility;
}

/* Compact public actions bar */
html body .public-credential-tools {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
    min-height: 48px;
    padding: 7px clamp(14px, 3vw, 36px) !important;
    background: linear-gradient(90deg, #06140f 0%, #081c16 50%, #06140f 100%) !important;
    border-bottom: 1px solid var(--iu-public-line) !important;
}

html body .public-credential-tools form {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 !important;
}

html body .public-credential-tools input {
    width: clamp(220px, 24vw, 310px) !important;
    height: 34px !important;
    padding: 0 13px !important;
    color: var(--iu-public-text) !important;
    background: rgba(7, 13, 24, 0.78) !important;
    border: 1px solid rgba(212, 175, 55, 0.34) !important;
    border-radius: 12px !important;
    outline: none !important;
}

html body .public-credential-tools input:focus {
    border-color: var(--iu-public-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12) !important;
}

html body .public-credential-tools a,
html body .public-credential-tools button {
    min-height: 34px !important;
    padding: 7px 12px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease !important;
}

html body .public-credential-tools a:hover,
html body .public-credential-tools button:hover {
    transform: translateY(-1px);
    border-color: rgba(243, 214, 117, 0.75) !important;
}

/* Desktop public header */
html body .site-header {
    display: grid !important;
    grid-template-columns: 220px minmax(0, 1fr) auto auto !important;
    align-items: center !important;
    gap: clamp(10px, 1.4vw, 20px) !important;
    min-height: 88px !important;
    max-width: none !important;
    padding: 11px clamp(20px, 3vw, 42px) !important;
    background: rgba(11, 19, 32, 0.96) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.55) !important;
    box-shadow: var(--iu-public-shadow) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

html body .site-header .brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
    gap: 11px !important;
    width: auto !important;
    min-width: 0 !important;
    text-align: start !important;
}

html body .site-header .brand img {
    width: 76px !important;
    height: 56px !important;
    max-width: 76px !important;
    max-height: 56px !important;
    padding: 5px !important;
    object-fit: contain !important;
    background: #fff !important;
    border: 1px solid rgba(212, 175, 55, 0.28) !important;
    border-radius: 12px !important;
}

html body .site-header .brand-title {
    color: var(--iu-public-gold-light) !important;
    font-size: 23px !important;
    line-height: 1 !important;
    letter-spacing: 0.02em;
}

html body .site-header .brand-subtitle {
    max-width: 150px;
    margin-top: 5px !important;
    color: var(--iu-public-muted) !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
}

html body .site-header .site-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 7px !important;
    width: 100% !important;
    min-width: 0 !important;
}

html body .site-header .desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;
    min-width: 0 !important;
}

html body .site-header .desktop-nav > a,
html body .site-header .desktop-nav > details > summary {
    min-height: 36px !important;
    padding: 8px 10px !important;
    color: #f4f7fb !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    cursor: pointer;
}

html body .site-header .desktop-nav > a:hover,
html body .site-header .desktop-nav > details > summary:hover,
html body .site-header .desktop-nav > details[open] > summary {
    color: var(--iu-public-gold-light) !important;
    background: rgba(212, 175, 55, 0.09) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

html body .site-header .iuoamc-public-tv-link-header {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: transparent !important;
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1px solid rgba(212, 175, 55, 0.34) !important;
    border-radius: 11px !important;
    font-size: 0 !important;
    white-space: nowrap !important;
}

html body .site-header .iuoamc-public-tv-link-header::before {
    content: "📺";
    color: var(--iu-public-gold-light);
    font-size: 18px;
}

html body .site-header .lang-switch,
html body .site-header .auth-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    gap: 6px !important;
    width: auto !important;
    min-width: 0 !important;
}

html body .site-header .lang-switch a,
html body .site-header .lang-switch button,
html body .site-header .auth-links a,
html body .site-header .auth-links button {
    min-height: 36px !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

/* Homepage first screen */
html body .site-main > section:first-of-type {
    padding: clamp(58px, 6vw, 78px) 22px 54px !important;
    background:
        radial-gradient(circle at 50% -20%, rgba(39, 55, 78, 0.95) 0%, rgba(11, 19, 32, 0.92) 42%, #070b14 100%) !important;
}

html body .site-main > section:first-of-type h1 {
    max-width: 1080px !important;
    margin: 0 auto 20px !important;
    font-size: clamp(36px, 4.7vw, 58px) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.02em;
}

html body .site-main > section:first-of-type p {
    max-width: 900px !important;
    font-size: clamp(17px, 1.7vw, 20px) !important;
    line-height: 1.8 !important;
}

html body .site-main > section:first-of-type a {
    min-height: 46px !important;
    padding: 12px 19px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease !important;
}

html body .site-main > section:first-of-type a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

html body .site-main > section:first-of-type div[style*="border-radius:22px"] {
    border-radius: 17px !important;
    padding: 15px !important;
}

/* Consistent homepage magazine cards */
html body #homepage-magazine-slider {
    align-items: stretch !important;
    gap: 18px !important;
    padding: 4px 2px 16px !important;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(212, 175, 55, 0.6) rgba(255, 255, 255, 0.06);
}

html body #homepage-magazine-slider > a {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 330px !important;
    width: 330px !important;
    min-width: 330px !important;
    max-width: 330px !important;
    height: 535px !important;
    padding: 18px !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #121d2e 0%, #0e1726 100%) !important;
    border-color: rgba(212, 175, 55, 0.28) !important;
    border-radius: 20px !important;
    scroll-snap-align: start;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

html body #homepage-magazine-slider > a:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(243, 214, 117, 0.7) !important;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3) !important;
}

html body #homepage-magazine-slider > a img {
    flex: 0 0 175px !important;
    width: 100% !important;
    height: 175px !important;
    min-height: 175px !important;
    margin-bottom: 15px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
}

html body #homepage-magazine-slider > a h3 {
    display: -webkit-box !important;
    min-height: 78px !important;
    max-height: 78px !important;
    margin: 0 0 10px !important;
    overflow: hidden !important;
    color: var(--iu-public-text) !important;
    font-size: 19px !important;
    line-height: 1.38 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

html body #homepage-magazine-slider > a p {
    display: -webkit-box !important;
    max-height: 86px !important;
    margin: 0 0 12px !important;
    overflow: hidden !important;
    color: #b7c2d2 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

html body #homepage-magazine-slider > a > div:last-child {
    margin-top: auto !important;
}

html body #homepage-magazine-slider > a > div:last-child span:first-child {
    padding: 8px 12px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
}

html body .site-main > section:has(#homepage-magazine-slider) {
    padding-block: 54px !important;
}

html body .site-main > section:has(#homepage-magazine-slider) h2 {
    font-size: clamp(30px, 3.4vw, 40px) !important;
}

@media (max-width: 1180px) {
    html body .site-header {
        grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) auto auto !important;
        padding-inline: 20px !important;
    }

    html body .site-header .brand-subtitle {
        display: none !important;
    }

    html body .site-header .desktop-nav > a,
    html body .site-header .desktop-nav > details > summary {
        padding-inline: 8px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 1280px) {
    html body .site-header {
        grid-template-columns: minmax(190px, 1fr) auto auto auto !important;
        min-height: 74px !important;
    }

    html body .site-header .desktop-nav {
        display: none !important;
    }

    html body .site-header .mobile-nav {
        display: block !important;
        width: auto !important;
    }

    html body .site-header .mobile-nav > details > summary,
    html body .site-header .mobile-nav > summary {
        min-height: 40px !important;
        padding: 9px 13px !important;
        border: 1px solid rgba(212, 175, 55, 0.35) !important;
        border-radius: 11px !important;
        background: rgba(212, 175, 55, 0.09) !important;
        color: var(--iu-public-gold-light) !important;
        font-size: 13px !important;
    }
}

@media (max-width: 720px) {
    html body .public-credential-tools {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 6px !important;
        padding: 8px 10px !important;
    }

    html body .public-credential-tools form {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    html body .public-credential-tools input {
        width: 100% !important;
        min-width: 0 !important;
    }

    html body .public-credential-tools a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding-inline: 7px !important;
        font-size: 11px !important;
    }

    html body .site-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        min-height: 0 !important;
        padding: 10px 12px !important;
    }

    html body .site-header .brand {
        order: 1;
        flex: 1 1 205px !important;
    }

    html body .site-header .brand img {
        width: 58px !important;
        height: 46px !important;
        max-width: 58px !important;
        max-height: 46px !important;
    }

    html body .site-header .brand-title {
        font-size: 20px !important;
    }

    html body .site-header .site-nav {
        order: 2;
        flex: 0 0 auto !important;
        width: auto !important;
    }

    html body .site-header .iuoamc-public-tv-link-header {
        display: none !important;
    }

    html body .site-header .lang-switch {
        order: 3;
        margin-inline-start: auto !important;
    }

    html body .site-header .auth-links {
        order: 4;
    }

    html body .site-header .lang-switch a,
    html body .site-header .lang-switch button,
    html body .site-header .auth-links a,
    html body .site-header .auth-links button {
        min-height: 32px !important;
        padding: 6px 8px !important;
        font-size: 11px !important;
    }

    html body .site-main > section:first-of-type {
        padding: 44px 15px 38px !important;
    }

    html body .site-main > section:first-of-type h1 {
        margin-bottom: 16px !important;
        font-size: clamp(31px, 9vw, 40px) !important;
        line-height: 1.2 !important;
    }

    html body .site-main > section:first-of-type p {
        font-size: 16px !important;
        line-height: 1.75 !important;
    }

    html body .site-main > section:first-of-type a {
        width: 100% !important;
        max-width: 330px !important;
        text-align: center !important;
    }

    html body .site-main > section:has(#homepage-magazine-slider) {
        padding: 42px 15px !important;
    }

    html body #homepage-magazine-slider {
        gap: 12px !important;
    }

    html body #homepage-magazine-slider > a {
        flex-basis: min(84vw, 310px) !important;
        width: min(84vw, 310px) !important;
        min-width: min(84vw, 310px) !important;
        max-width: min(84vw, 310px) !important;
        height: 510px !important;
        padding: 15px !important;
    }

    html body #homepage-magazine-slider > a img {
        flex-basis: 160px !important;
        height: 160px !important;
        min-height: 160px !important;
    }
}

@media (max-width: 430px) {
    html body .site-header .brand {
        flex-basis: 180px !important;
    }

    html body .site-header .auth-links a,
    html body .site-header .auth-links button {
        max-width: 126px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .public-credential-tools *,
    html body .site-header *,
    html body .site-main > section:first-of-type * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* IUOAMC Public UI stability layer */
html body .reveal-on-scroll,
html body .reveal-on-scroll.revealed {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
    html body .reveal-on-scroll,
    html body .reveal-on-scroll.revealed {
        transition: none !important;
        animation: none !important;
    }
}

/* IUOAMC responsive public header v2 */
html body .site-header .iuoamc-public-tv-link-header {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 8px 11px !important;
    overflow: visible !important;
    color: #f3d675 !important;
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1px solid rgba(212, 175, 55, 0.36) !important;
    border-radius: 11px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

html body .site-header .iuoamc-public-tv-link-header::before {
    content: none !important;
}

@media (max-width: 1400px) {
    html body .site-header {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-rows: auto auto !important;
        align-items: center !important;
        gap: 10px 12px !important;
        min-height: 0 !important;
        padding: 11px 16px !important;
        overflow: visible !important;
    }

    html body .site-header .brand {
        grid-column: 1 !important;
        grid-row: 1 !important;
        display: flex !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        overflow: visible !important;
    }

    html body .site-header .brand img {
        flex: 0 0 64px !important;
        width: 64px !important;
        height: 50px !important;
        max-width: 64px !important;
        max-height: 50px !important;
    }

    html body .site-header .brand-title {
        font-size: 21px !important;
        white-space: nowrap !important;
    }

    html body .site-header .brand-subtitle {
        display: none !important;
    }

    html body .site-header .site-nav {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 7px !important;
        justify-self: end !important;
        width: auto !important;
        min-width: 0 !important;
        overflow: visible !important;
    }

    html body .site-header .desktop-nav {
        display: none !important;
    }

    html body .site-header .iuoamc-public-tv-link-header {
        display: inline-flex !important;
        height: 42px !important;
        padding: 9px 12px !important;
        font-size: 12px !important;
    }

    html body .site-header .mobile-nav {
        display: block !important;
        width: auto !important;
        min-width: 0 !important;
        position: relative !important;
        overflow: visible !important;
    }

    html body .site-header .mobile-nav > details {
        position: relative !important;
        width: auto !important;
        margin: 0 !important;
    }

    html body .site-header .mobile-nav > details > summary {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        min-width: 118px !important;
        min-height: 42px !important;
        padding: 9px 14px !important;
        color: #f3d675 !important;
        background: rgba(212, 175, 55, 0.09) !important;
        border: 1px solid rgba(212, 175, 55, 0.42) !important;
        border-radius: 12px !important;
        font-size: 14px !important;
        font-weight: 900 !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        cursor: pointer !important;
        list-style: none !important;
    }

    html body .site-header .mobile-nav > details > summary::-webkit-details-marker {
        display: none !important;
    }

    html body .site-header .mobile-nav > details > .mobile-menu {
        position: absolute !important;
        top: calc(100% + 9px) !important;
        left: 0 !important;
        right: auto !important;
        z-index: 5000 !important;
        display: block !important;
        width: min(360px, calc(100vw - 24px)) !important;
        max-width: calc(100vw - 24px) !important;
        max-height: min(72vh, 620px) !important;
        margin: 0 !important;
        padding: 10px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        color: #f8fafc !important;
        background: rgba(10, 18, 31, 0.99) !important;
        border: 1px solid rgba(212, 175, 55, 0.45) !important;
        border-radius: 16px !important;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.52) !important;
        overscroll-behavior: contain;
    }

    html body .site-header .mobile-menu > a,
    html body .site-header .mobile-menu > details > summary,
    html body .site-header .mobile-menu .magazine-menu-link {
        display: block !important;
        width: 100% !important;
        min-height: 0 !important;
        margin: 0 0 5px !important;
        padding: 10px 11px !important;
        color: #f4f7fb !important;
        background: rgba(255, 255, 255, 0.025) !important;
        border: 1px solid transparent !important;
        border-radius: 10px !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        line-height: 1.45 !important;
        text-align: start !important;
        white-space: normal !important;
    }

    html body .site-header .mobile-menu > a:hover,
    html body .site-header .mobile-menu .magazine-menu-link:hover,
    html body .site-header .mobile-menu details[open] > summary {
        color: #f3d675 !important;
        background: rgba(212, 175, 55, 0.09) !important;
        border-color: rgba(212, 175, 55, 0.24) !important;
    }

    html body .site-header .mobile-menu details > div,
    html body .site-header .mobile-menu .institution-submenu-box {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 2px 0 8px !important;
        padding: 5px 8px !important;
        background: rgba(0, 0, 0, 0.14) !important;
        border: 0 !important;
        border-radius: 10px !important;
        box-shadow: none !important;
    }

    html body .site-header .lang-switch {
        grid-column: 1 !important;
        grid-row: 2 !important;
        justify-self: start !important;
        margin: 0 !important;
    }

    html body .site-header .auth-links {
        grid-column: 2 !important;
        grid-row: 2 !important;
        justify-self: end !important;
        margin: 0 !important;
    }
}

@media (max-width: 520px) {
    html body .site-header {
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-rows: auto auto auto auto !important;
        padding: 9px 10px !important;
    }

    html body .site-header .brand {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        justify-self: center !important;
        justify-content: center !important;
    }

    html body .site-header .site-nav {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        justify-self: center !important;
        justify-content: center !important;
    }

    html body .site-header .brand img {
        flex-basis: 54px !important;
        width: 54px !important;
        height: 43px !important;
        max-width: 54px !important;
        max-height: 43px !important;
    }

    html body .site-header .brand-title {
        font-size: 18px !important;
    }

    html body .site-header .mobile-nav > details > summary {
        min-width: 102px !important;
        padding-inline: 10px !important;
        font-size: 12px !important;
    }

    html body .site-header .lang-switch {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        justify-self: center !important;
    }

    html body .site-header .auth-links {
        grid-column: 1 / -1 !important;
        grid-row: 4 !important;
        justify-self: center !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }
}

/* IUOAMC mobile menu viewport fix */
@media (max-width: 1400px) {
    html body .site-header .mobile-nav > details > .mobile-menu {
        position: fixed !important;
        top: var(--iu-mobile-menu-top, 92px) !important;
        left: 12px !important;
        right: 12px !important;
        z-index: 99999 !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: calc(100vh - var(--iu-mobile-menu-top, 92px) - 12px) !important;
        margin: 0 !important;
        padding: 10px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        transform: none !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch;
    }
}

@supports (height: 100dvh) {
    @media (max-width: 1400px) {
        html body .site-header .mobile-nav > details > .mobile-menu {
            max-height: calc(100dvh - var(--iu-mobile-menu-top, 92px) - 12px) !important;
        }
    }
}

/* IUOAMC continuous logo marquee v3 */
html body .site-main .no-reveal .iuoamc-logo-marquee {
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
    contain: layout paint;
}

html body .site-main .no-reveal .iuoamc-logo-track {
    display: flex !important;
    width: max-content !important;
    animation: iuoamcLogoMarqueeV3 24s linear infinite !important;
    animation-play-state: running !important;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

@keyframes iuoamcLogoMarqueeV3 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-33.333333%, 0, 0);
    }
}

@-webkit-keyframes iuoamcLogoMarqueeV3 {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        -webkit-transform: translate3d(-33.333333%, 0, 0);
        transform: translate3d(-33.333333%, 0, 0);
    }
}

@media (max-width: 700px) {
    html body .site-main .no-reveal .iuoamc-logo-track {
        gap: 14px !important;
        animation-duration: 20s !important;
    }
}

/* IUOAMC PUBLIC INSTITUTION PAGES V1 */
.institution-submenu {
    width: 100%;
    margin: 2px 0;
}

.institution-submenu > summary {
    cursor: pointer;
    list-style: none;
    white-space: normal;
}

.institution-submenu > summary::-webkit-details-marker {
    display: none;
}

.institution-submenu > summary::after {
    content: "▾";
    display: inline-block;
    margin-inline-start: 8px;
    font-size: 11px;
    transition: transform .22s ease;
}

.institution-submenu[open] > summary::after {
    transform: rotate(180deg);
}

.institution-submenu-box {
    gap: 4px;
    padding: 7px;
    margin-top: 5px;
    border: 1px solid rgba(212,175,55,.2);
    border-radius: 14px;
    background: rgba(7,11,20,.82);
    max-height: min(54vh, 430px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,.55) transparent;
}

.institution-submenu:not([open]) > .institution-submenu-box {
    display: none !important;
}

.institution-submenu[open] > .institution-submenu-box {
    display: grid !important;
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.institution-submenu-box .magazine-menu-link {
    display: block;
    width: 100%;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
}

.institution-submenu-box .institution-hub-link {
    color: #F8DE83;
    border-bottom: 1px solid rgba(212,175,55,.18);
    margin-bottom: 3px;
}

.institution-hub-page,
.institution-detail-page {
    background:
        radial-gradient(circle at 15% 0%, rgba(212,175,55,.09), transparent 30%),
        linear-gradient(180deg, #070B14 0%, #0B1320 52%, #070B14 100%);
    color: #E5E7EB;
    padding: clamp(42px, 7vw, 82px) 18px;
    min-height: 70vh;
}

.institution-page-shell {
    width: min(1180px, 100%);
    margin-inline: auto;
}

.institution-hub-hero,
.institution-detail-hero,
.institution-switcher {
    background: linear-gradient(135deg, rgba(17,24,39,.98), rgba(11,19,32,.95));
    border: 1px solid rgba(212,175,55,.34);
    box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.institution-hub-hero {
    border-radius: 34px;
    padding: clamp(28px, 5vw, 50px);
    margin-bottom: 32px;
}

.institution-eyebrow {
    color: #D4AF37;
    font-weight: 900;
    letter-spacing: .02em;
    margin-bottom: 10px;
}

.institution-hub-hero h1,
.institution-detail-heading h1 {
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.18;
    margin: 0 0 18px;
}

.institution-hub-hero p,
.institution-detail-heading p {
    color: #CBD5E1;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.9;
    max-width: 970px;
    margin: 0;
}

.institution-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.institution-hub-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: clamp(24px, 3vw, 32px);
    border: 1px solid rgba(212,175,55,.28);
    border-radius: 28px;
    color: #E5E7EB;
    text-decoration: none;
    background: linear-gradient(145deg, rgba(17,24,39,.96), rgba(11,19,32,.94));
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    scroll-margin-top: 130px;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.institution-hub-card:hover,
.institution-hub-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(248,222,131,.75);
    box-shadow: 0 26px 65px rgba(0,0,0,.3);
}

.institution-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.institution-card-icon,
.institution-detail-symbol {
    display: grid;
    place-items: center;
    background: rgba(212,175,55,.12);
    border: 1px solid rgba(212,175,55,.32);
}

.institution-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 26px;
}

.institution-card-short {
    color: #D4AF37;
    font-weight: 900;
    text-align: end;
}

.institution-hub-card h2 {
    color: #fff;
    font-size: clamp(22px, 2.4vw, 29px);
    line-height: 1.4;
    margin: 0 0 8px;
}

.institution-official-name,
.institution-detail-official {
    color: #D4AF37;
    line-height: 1.55;
    font-weight: 800;
}

.institution-official-name {
    font-size: 14px;
    margin-bottom: 13px;
}

.institution-hub-card p {
    color: #CBD5E1;
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 22px;
}

.institution-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #F8DE83;
    font-weight: 900;
    border-top: 1px solid rgba(212,175,55,.18);
    padding-top: 16px;
    margin-top: auto;
}

.institution-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #94A3B8;
    font-size: 14px;
    margin-bottom: 18px;
}

.institution-breadcrumb a {
    color: #D4AF37;
    text-decoration: none;
}

.institution-detail-hero {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: clamp(22px, 4vw, 38px);
    align-items: start;
    border-radius: 34px;
    padding: clamp(28px, 5vw, 52px);
    margin-bottom: 22px;
}

.institution-detail-symbol {
    width: 110px;
    height: 110px;
    border-radius: 30px;
    font-size: 50px;
}

.institution-detail-official {
    font-size: clamp(15px, 1.8vw, 19px);
    margin: -6px 0 16px;
}

.institution-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.institution-fact-card,
.institution-content-card {
    background: rgba(17,24,39,.91);
    border: 1px solid rgba(212,175,55,.24);
    border-radius: 22px;
}

.institution-fact-card {
    padding: 20px;
}

.institution-fact-card span {
    display: block;
    color: #94A3B8;
    font-size: 13px;
    margin-bottom: 8px;
}

.institution-fact-card strong {
    display: block;
    color: #fff;
    line-height: 1.55;
    font-size: 16px;
}

.institution-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.institution-content-card {
    position: relative;
    padding: clamp(24px, 3.5vw, 36px);
    overflow: hidden;
}

.institution-content-card-wide {
    grid-column: 1 / -1;
}

.institution-section-kicker {
    color: rgba(212,175,55,.46);
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
}

.institution-content-card h2,
.institution-switcher h2 {
    color: #fff;
    line-height: 1.35;
}

.institution-content-card h2 {
    font-size: clamp(23px, 3vw, 32px);
    margin: 10px 0 14px;
}

.institution-content-card p {
    color: #CBD5E1;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}

.institution-responsibility-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.institution-responsibility-list li {
    position: relative;
    color: #CBD5E1;
    line-height: 1.75;
    padding-inline-start: 25px;
}

.institution-responsibility-list li::before {
    content: "✓";
    position: absolute;
    inset-inline-start: 0;
    color: #D4AF37;
    font-weight: 900;
}

.institution-switcher {
    border-radius: 28px;
    padding: clamp(24px, 4vw, 38px);
    margin-top: 22px;
}

.institution-switcher h2 {
    margin: 0 0 20px;
    font-size: clamp(25px, 3.5vw, 36px);
}

.institution-switcher-links {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.institution-switcher-links a {
    display: grid;
    justify-items: center;
    gap: 7px;
    color: #E5E7EB;
    text-decoration: none;
    text-align: center;
    padding: 14px 8px;
    border: 1px solid rgba(212,175,55,.22);
    border-radius: 16px;
    background: rgba(7,11,20,.55);
    transition: border-color .22s ease, background .22s ease;
}

.institution-switcher-links a:hover,
.institution-switcher-links a:focus-visible,
.institution-switcher-links a.is-current {
    color: #07101B;
    border-color: #D4AF37;
    background: linear-gradient(135deg, #F8DE83, #D4AF37);
}

.institution-switcher-links a span {
    font-size: 22px;
}

.institution-switcher-links a strong {
    font-size: 12px;
    overflow-wrap: anywhere;
}

.institution-back-row {
    margin-top: 24px;
}

.institution-back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #07101B;
    text-decoration: none;
    font-weight: 900;
    padding: 13px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F8DE83, #D4AF37);
}

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

    .institution-switcher-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .institution-hub-page,
    .institution-detail-page {
        padding-inline: 13px;
    }

    .institution-hub-grid,
    .institution-content-grid {
        grid-template-columns: 1fr;
    }

    .institution-hub-card {
        min-height: 0;
    }

    .institution-content-card-wide {
        grid-column: auto;
    }

    .institution-detail-hero {
        grid-template-columns: 1fr;
    }

    .institution-detail-symbol {
        width: 78px;
        height: 78px;
        border-radius: 22px;
        font-size: 36px;
    }

    .institution-responsibility-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .institution-hub-hero,
    .institution-detail-hero,
    .institution-switcher {
        border-radius: 23px;
    }

    .institution-facts-grid {
        grid-template-columns: 1fr;
    }

    .institution-switcher-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .institution-hub-card,
    .institution-submenu > summary::after,
    .institution-switcher-links a {
        transition: none !important;
    }
}
/* END IUOAMC PUBLIC INSTITUTION PAGES V1 */

/* IUOAMC MOBILE NESTED MENU FIX V17 */
.mobile-nav > details[open] > .mobile-menu {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu .institution-submenu {
    max-width: 100%;
    overflow: visible;
}

.mobile-menu .institution-submenu > summary {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    touch-action: manipulation;
}

.mobile-menu .institution-submenu[open] > .institution-submenu-box {
    width: 100% !important;
    max-width: 100% !important;
    max-height: min(46vh, 380px) !important;
    box-sizing: border-box;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
}

.mobile-menu .institution-submenu-box a {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
/* END IUOAMC MOBILE NESTED MENU FIX V17 */

/* IUOAMC NESTED MENU PARENT FIX V18 */
.desktop-nav .magazine-menu:not([open]) .institution-submenu-box,
.mobile-menu .mobile-magazine-menu:not([open]) .institution-submenu-box {
    display: none !important;
}

.institution-submenu > summary.magazine-menu-link {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}
/* END IUOAMC NESTED MENU PARENT FIX V18 */

/* IUOAMC INSTITUTION LOGOS IDENTITY V19 */
.institution-card-logo-shell,
.institution-detail-logo-shell {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--entity-accent) 20%, transparent), transparent 68%),
        #F8FAFC;
    border: 2px solid color-mix(in srgb, var(--entity-accent) 72%, #D4AF37);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--entity-accent) 18%, transparent);
}

.institution-card-logo-shell {
    width: 72px;
    height: 72px;
    border-radius: 21px;
}

.institution-detail-logo-shell {
    width: 118px;
    height: 118px;
    border-radius: 30px;
}

.institution-card-logo-shell img,
.institution-detail-logo-shell img {
    display: block;
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.institution-card-logo-fallback,
.institution-detail-logo-shell > span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #0B1320;
    font-size: 34px;
    font-weight: 900;
}

.institution-detail-logo-shell > span {
    font-size: 50px;
}

.institution-card-logo-shell small,
.institution-detail-logo-shell small {
    position: absolute;
    inset-inline-end: 4px;
    bottom: 4px;
    padding: 3px 5px;
    border-radius: 7px;
    color: #fff;
    background: var(--entity-accent);
    font-size: 9px;
    font-weight: 1000;
    letter-spacing: .06em;
    line-height: 1;
}

.institution-menu-logo,
.institution-menu-fallback {
    display: inline-grid;
    place-items: center;
    width: 27px;
    height: 27px;
    margin-inline-end: 7px;
    border-radius: 8px;
    vertical-align: middle;
    flex: 0 0 27px;
}

.institution-menu-logo {
    object-fit: contain;
    padding: 2px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid rgba(212,175,55,.38);
}

.institution-menu-fallback {
    background: rgba(212,175,55,.13);
    border: 1px solid rgba(212,175,55,.28);
    font-size: 15px;
}

.institution-submenu-box .magazine-menu-link {
    display: flex !important;
    align-items: center;
}

@media (max-width: 720px) {
    .institution-detail-logo-shell {
        width: 88px;
        height: 88px;
        border-radius: 24px;
    }

    .institution-detail-logo-shell > span {
        font-size: 38px;
    }
}

@supports not (color: color-mix(in srgb, #fff 50%, #000)) {
    .institution-card-logo-shell,
    .institution-detail-logo-shell {
        border-color: #D4AF37;
        box-shadow: 0 12px 30px rgba(0,0,0,.24);
    }
}
/* END IUOAMC INSTITUTION LOGOS IDENTITY V19 */

/* IUOAMC CULINARY TITLES LOGO V20 */

/* IUOAMC_ACADEMY_COURSES_UI_V21_START */
.iuo-academy-page,
.iuo-courses-page {
    --iuo-gold: #d4af37;
    --iuo-gold-bright: #f0cf62;
    --iuo-ink: #07101d;
    --iuo-navy: #0b1320;
    --iuo-panel: #111c2c;
    --iuo-text: #f8fafc;
    --iuo-muted: #aebbd0;
    --iuo-line: rgba(212, 175, 55, .24);
    background: var(--iuo-ink);
    color: var(--iuo-text);
    overflow: hidden;
    isolation: isolate;
}

.iuo-academy-page *,
.iuo-courses-page * {
    box-sizing: border-box;
}

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

.iuo-browser-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin: 0 0 34px;
    color: #8190a8;
    font-size: 13px;
    font-weight: 750;
}

.iuo-browser-breadcrumb a {
    color: #c7d0de;
    text-decoration: none;
}

.iuo-browser-breadcrumb a:hover {
    color: var(--iuo-gold-bright);
}

.iuo-browser-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--iuo-gold-bright);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.iuo-browser-kicker::before {
    width: 26px;
    height: 1px;
    background: currentColor;
    content: "";
}

.iuo-browser-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.iuo-browser-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.iuo-browser-btn:hover {
    transform: translateY(-2px);
}

.iuo-browser-btn:focus-visible,
.iuo-academy-pathway-card:focus-visible,
.iuo-course-register:focus-visible,
.iuo-courses-pagination a:focus-visible {
    outline: 3px solid rgba(240, 207, 98, .45);
    outline-offset: 3px;
}

.iuo-browser-btn-primary {
    background: linear-gradient(135deg, var(--iuo-gold-bright), var(--iuo-gold));
    color: #101827;
    box-shadow: 0 16px 36px rgba(212, 175, 55, .18);
}

.iuo-browser-btn-secondary {
    border-color: rgba(212, 175, 55, .34);
    background: rgba(255, 255, 255, .035);
    color: #f8fafc;
}

.iuo-browser-btn-secondary:hover {
    border-color: var(--iuo-gold);
    background: rgba(212, 175, 55, .08);
    color: var(--iuo-gold-bright);
}

.iuo-academy-hero,
.iuo-courses-hero {
    position: relative;
    padding: 54px 0 88px;
    background:
        radial-gradient(circle at 12% 5%, rgba(212, 175, 55, .13), transparent 33%),
        radial-gradient(circle at 90% 72%, rgba(35, 95, 139, .15), transparent 34%),
        linear-gradient(150deg, #07101d 0%, #0b1525 52%, #08111e 100%);
}

.iuo-academy-hero::after,
.iuo-courses-hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .42), transparent);
    content: "";
}

.iuo-academy-hero-grid,
.iuo-courses-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, .75fr);
    align-items: center;
    gap: 58px;
}

.iuo-academy-hero-copy h1,
.iuo-courses-hero h1 {
    max-width: 820px;
    margin: 17px 0 20px;
    color: #fff;
    font-size: clamp(37px, 5.2vw, 68px);
    font-weight: 950;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.iuo-academy-hero-copy > p,
.iuo-courses-hero-grid > div:first-child > p {
    max-width: 780px;
    margin: 0;
    color: #bdc9da;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.9;
}

.iuo-academy-command-card,
.iuo-courses-count-card {
    position: relative;
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(20, 33, 51, .94), rgba(8, 17, 30, .96));
    box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
    overflow: hidden;
}

.iuo-academy-command-card::before,
.iuo-courses-count-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--iuo-gold-bright), transparent);
    content: "";
}

.iuo-academy-command-card {
    padding: 27px;
}

.iuo-academy-command-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 21px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.iuo-academy-command-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(212, 175, 55, .38);
    border-radius: 15px;
    background: rgba(212, 175, 55, .1);
    color: var(--iuo-gold-bright);
    font-size: 21px;
}

.iuo-academy-command-head strong {
    display: block;
    color: #fff;
    font-size: 17px;
}

.iuo-academy-command-head small {
    display: block;
    margin-top: 4px;
    color: #8493aa;
    font-size: 12px;
}

.iuo-academy-signal-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.iuo-academy-signal-list > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 11px;
    padding: 11px 0;
}

.iuo-academy-signal-list span {
    color: var(--iuo-gold);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
}

.iuo-academy-signal-list p {
    margin: 0;
    color: #d6deea;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.55;
}

.iuo-academy-pathways,
.iuo-courses-catalogue {
    padding: 84px 0;
    background: #0a1321;
}

.iuo-browser-section-head,
.iuo-courses-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 36px;
}

.iuo-browser-section-head h2,
.iuo-courses-toolbar h2 {
    max-width: 720px;
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(28px, 3.7vw, 44px);
    font-weight: 950;
    letter-spacing: -.025em;
    line-height: 1.22;
}

.iuo-browser-section-head > p {
    max-width: 410px;
    margin: 0;
    color: var(--iuo-muted);
    font-size: 15px;
    line-height: 1.8;
}

.iuo-browser-section-head-compact {
    align-items: center;
}

.iuo-academy-pathway-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.iuo-academy-pathway-card {
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 25px;
    background: linear-gradient(155deg, #111d2e, #0b1524);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.iuo-academy-pathway-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, .48);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .24);
}

.iuo-academy-pathway-number {
    position: absolute;
    inset-inline-end: 22px;
    top: 21px;
    color: rgba(212, 175, 55, .48);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
}

.iuo-academy-pathway-icon {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 18px;
    background: rgba(212, 175, 55, .08);
    font-size: 25px;
}

.iuo-academy-pathway-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.35;
}

.iuo-academy-pathway-card p {
    margin: 0 0 22px;
    color: #aab8cc;
    font-size: 14px;
    line-height: 1.85;
}

.iuo-academy-card-link {
    margin-top: auto;
    color: var(--iuo-gold-bright);
    font-size: 13px;
    font-weight: 900;
}

.iuo-academy-journey {
    padding: 84px 0 92px;
    background:
        linear-gradient(rgba(212, 175, 55, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, .035) 1px, transparent 1px),
        #07101d;
    background-size: 48px 48px;
}

.iuo-academy-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--iuo-line);
    border-radius: 26px;
    background: rgba(8, 18, 31, .88);
    overflow: hidden;
}

.iuo-academy-journey-grid > div {
    position: relative;
    min-height: 205px;
    padding: 27px;
    border-inline-end: 1px solid var(--iuo-line);
}

.iuo-academy-journey-grid > div:last-child {
    border-inline-end: 0;
}

.iuo-academy-journey-grid b {
    display: block;
    margin-bottom: 30px;
    color: var(--iuo-gold);
    font-size: 30px;
    font-weight: 950;
}

.iuo-academy-journey-grid strong {
    display: block;
    color: #fff;
    font-size: 17px;
}

.iuo-academy-journey-grid p {
    margin: 10px 0 0;
    color: #91a0b5;
    font-size: 13px;
    line-height: 1.7;
}

.iuo-academy-final-cta,
.iuo-courses-support-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 34px;
    padding: 30px 34px;
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 24px;
    background: linear-gradient(110deg, rgba(212, 175, 55, .1), rgba(17, 29, 46, .94) 48%, rgba(8, 17, 30, .96));
}

.iuo-academy-final-cta span,
.iuo-courses-support-cta > div > span {
    color: var(--iuo-gold-bright);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .1em;
}

.iuo-academy-final-cta h2,
.iuo-courses-support-cta h2 {
    margin: 7px 0 0;
    color: #fff;
    font-size: clamp(22px, 3vw, 31px);
    font-weight: 950;
}

.iuo-courses-count-card {
    min-height: 238px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.iuo-courses-count-card > span {
    color: #aab7c9;
    font-size: 13px;
    font-weight: 850;
}

.iuo-courses-count-card strong {
    display: block;
    margin: 7px 0 8px;
    color: var(--iuo-gold-bright);
    font-size: 72px;
    font-weight: 950;
    letter-spacing: -.05em;
    line-height: 1;
}

.iuo-courses-count-card small {
    color: #8290a5;
    font-size: 11px;
    line-height: 1.6;
}

.iuo-course-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.iuo-course-card {
    min-width: 0;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 25px;
    background: linear-gradient(155deg, #111d2d, #0a1422);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .14);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.iuo-course-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, .46);
    box-shadow: 0 25px 48px rgba(0, 0, 0, .24);
}

.iuo-course-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 25px;
}

.iuo-course-index {
    color: rgba(212, 175, 55, .66);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
}

.iuo-course-availability {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(74, 222, 128, .19);
    border-radius: 999px;
    background: rgba(34, 197, 94, .07);
    color: #91d6aa;
    font-size: 10px;
    font-weight: 900;
}

.iuo-course-availability::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, .09);
    content: "";
}

.iuo-course-card h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(20px, 2.1vw, 27px);
    font-weight: 950;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.iuo-course-meta {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.iuo-course-meta span {
    max-width: 100%;
    padding: 6px 9px;
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 9px;
    background: rgba(212, 175, 55, .055);
    color: #cdbd83;
    font-size: 10px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.iuo-course-description {
    display: -webkit-box;
    margin: 0 0 24px;
    color: #aebbd0;
    font-size: 14px;
    line-height: 1.85;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.iuo-course-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .075);
}

.iuo-course-price small {
    display: block;
    margin-bottom: 5px;
    color: #7f8da3;
    font-size: 10px;
    font-weight: 800;
}

.iuo-course-price strong {
    color: var(--iuo-gold-bright);
    font-size: 20px;
    font-weight: 950;
    white-space: nowrap;
}

.iuo-course-price strong span {
    font-size: 10px;
    letter-spacing: .05em;
}

.iuo-course-register {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 13px;
    background: var(--iuo-gold);
    color: #101827;
    font-size: 12px;
    font-weight: 950;
    text-align: center;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.iuo-course-register:hover {
    transform: translateY(-2px);
    background: var(--iuo-gold-bright);
}

.iuo-course-empty {
    grid-column: 1 / -1;
    padding: 54px 28px;
    border: 1px dashed rgba(212, 175, 55, .34);
    border-radius: 25px;
    background: rgba(17, 29, 45, .6);
    text-align: center;
}

.iuo-course-empty > span {
    color: var(--iuo-gold);
    font-size: 42px;
}

.iuo-course-empty h2 {
    margin: 14px 0 9px;
    color: #fff;
    font-size: 25px;
}

.iuo-course-empty p {
    margin: 0 auto 22px;
    color: var(--iuo-muted);
}

.iuo-courses-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.iuo-courses-pagination a,
.iuo-courses-pagination span {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: #101b2a;
    color: #d5deea;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.iuo-courses-pagination a:hover,
.iuo-courses-pagination .is-current {
    border-color: var(--iuo-gold);
    background: var(--iuo-gold);
    color: #101827;
}

.iuo-courses-pagination .is-disabled {
    color: #59677b;
    cursor: not-allowed;
}

.iuo-courses-support-cta {
    margin-top: 44px;
}

.iuo-courses-support-cta p {
    max-width: 680px;
    margin: 9px 0 0;
    color: #aebbd0;
    font-size: 14px;
    line-height: 1.7;
}

html[dir="ltr"] .iuo-academy-page,
html[dir="ltr"] .iuo-courses-page {
    font-family: Inter, Arial, sans-serif;
}

@media (max-width: 1020px) {
    .iuo-academy-hero-grid,
    .iuo-courses-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .iuo-academy-command-card,
    .iuo-courses-count-card {
        max-width: none;
    }

    .iuo-academy-pathway-grid,
    .iuo-academy-journey-grid,
    .iuo-course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .iuo-academy-journey-grid > div:nth-child(2) {
        border-inline-end: 0;
    }

    .iuo-academy-journey-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--iuo-line);
    }
}

@media (max-width: 700px) {
    .iuo-browser-container {
        width: min(100% - 28px, 1180px);
    }

    .iuo-academy-hero,
    .iuo-courses-hero {
        padding: 32px 0 58px;
    }

    .iuo-browser-breadcrumb {
        margin-bottom: 25px;
        font-size: 11px;
    }

    .iuo-academy-hero-copy h1,
    .iuo-courses-hero h1 {
        font-size: clamp(32px, 10.5vw, 47px);
        line-height: 1.17;
    }

    .iuo-academy-hero-copy > p,
    .iuo-courses-hero-grid > div:first-child > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .iuo-browser-actions,
    .iuo-browser-actions .iuo-browser-btn,
    .iuo-academy-final-cta .iuo-browser-btn,
    .iuo-courses-support-cta .iuo-browser-btn,
    .iuo-courses-toolbar .iuo-browser-btn {
        width: 100%;
    }

    .iuo-academy-command-card {
        padding: 21px;
        border-radius: 22px;
    }

    .iuo-academy-pathways,
    .iuo-academy-journey,
    .iuo-courses-catalogue {
        padding: 58px 0;
    }

    .iuo-browser-section-head,
    .iuo-courses-toolbar,
    .iuo-academy-final-cta,
    .iuo-courses-support-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .iuo-browser-section-head {
        gap: 15px;
    }

    .iuo-academy-pathway-grid,
    .iuo-academy-journey-grid,
    .iuo-course-grid {
        grid-template-columns: 1fr;
    }

    .iuo-academy-pathway-card {
        min-height: 300px;
    }

    .iuo-academy-journey-grid > div,
    .iuo-academy-journey-grid > div:nth-child(2) {
        min-height: 180px;
        border-inline-end: 0;
        border-bottom: 1px solid var(--iuo-line);
    }

    .iuo-academy-journey-grid > div:last-child {
        border-bottom: 0;
    }

    .iuo-academy-final-cta,
    .iuo-courses-support-cta {
        padding: 25px 22px;
    }

    .iuo-courses-count-card {
        min-height: 200px;
    }

    .iuo-courses-count-card strong {
        font-size: 61px;
    }

    .iuo-course-card {
        min-height: 0;
        padding: 21px;
    }

    .iuo-course-card-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .iuo-course-register {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .iuo-browser-container {
        width: min(100% - 20px, 1180px);
    }

    .iuo-academy-hero-copy h1,
    .iuo-courses-hero h1 {
        font-size: 30px;
    }

    .iuo-academy-command-head {
        align-items: flex-start;
    }

    .iuo-course-card-topline {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .iuo-academy-page *,
    .iuo-courses-page * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
/* IUOAMC_ACADEMY_COURSES_UI_V21_END */

/* IUOAMC_COURSE_ENROLLMENT_PAYMENT_UI_V22_START */
.iuo-enrollment-page,
.iuo-checkout-page,
.iuo-payment-result-page {
    --iuo-gold: #d4af37;
    --iuo-gold-bright: #f0cf62;
    --iuo-ink: #07101d;
    --iuo-navy: #0b1320;
    --iuo-panel: #111c2c;
    --iuo-text: #f8fafc;
    --iuo-muted: #aebbd0;
    --iuo-line: rgba(212, 175, 55, .24);
    background: var(--iuo-ink);
    color: var(--iuo-text);
    overflow: hidden;
}

.iuo-enrollment-page *,
.iuo-checkout-page *,
.iuo-payment-result-page * {
    box-sizing: border-box;
}

.iuo-enrollment-hero,
.iuo-checkout-hero {
    position: relative;
    padding: 44px 0 64px;
    border-bottom: 1px solid rgba(212, 175, 55, .22);
    background:
        radial-gradient(circle at 12% 8%, rgba(212, 175, 55, .13), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(39, 94, 132, .14), transparent 30%),
        linear-gradient(150deg, #07101d, #0b1525 52%, #08111e);
}

.iuo-enrollment-hero h1,
.iuo-checkout-hero h1 {
    max-width: 900px;
    margin: 14px 0 17px;
    color: #fff;
    font-size: clamp(34px, 4.7vw, 57px);
    font-weight: 950;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.iuo-enrollment-hero p,
.iuo-checkout-hero p {
    max-width: 760px;
    margin: 0;
    color: #b8c5d7;
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.85;
}

.iuo-enrollment-content,
.iuo-checkout-content {
    padding: 70px 0 86px;
    background: #091321;
}

.iuo-enrollment-grid,
.iuo-checkout-grid {
    display: grid;
    grid-template-columns: minmax(270px, .72fr) minmax(0, 1.55fr);
    align-items: start;
    gap: 26px;
}

.iuo-enrollment-summary,
.iuo-checkout-summary {
    position: sticky;
    top: 24px;
    padding: 28px;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 25px;
    background: linear-gradient(150deg, #111d2d, #0a1422);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .2);
}

.iuo-enrollment-summary-label,
.iuo-checkout-summary > span,
.iuo-checkout-panel-head span,
.iuo-enrollment-panel-head span {
    color: var(--iuo-gold-bright);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .12em;
}

.iuo-enrollment-summary h2,
.iuo-checkout-summary h2 {
    margin: 13px 0 14px;
    color: #fff;
    font-size: clamp(21px, 2.2vw, 29px);
    font-weight: 950;
    line-height: 1.45;
}

.iuo-enrollment-summary > p {
    display: -webkit-box;
    margin: 0;
    color: #aab8cc;
    font-size: 13px;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.iuo-enrollment-price,
.iuo-checkout-due {
    margin-top: 24px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 17px;
    background: rgba(212, 175, 55, .065);
}

.iuo-enrollment-price small,
.iuo-checkout-due small {
    display: block;
    margin-bottom: 5px;
    color: #8f9db2;
    font-size: 10px;
    font-weight: 850;
}

.iuo-enrollment-price strong,
.iuo-checkout-due strong {
    color: var(--iuo-gold-bright);
    font-size: 27px;
    font-weight: 950;
    letter-spacing: -.025em;
}

.iuo-enrollment-price strong span,
.iuo-checkout-due strong span {
    font-size: 11px;
    letter-spacing: .08em;
}

.iuo-enrollment-features {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.iuo-enrollment-features li {
    position: relative;
    padding-inline-start: 24px;
    color: #b8c4d4;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.55;
}

.iuo-enrollment-features li::before {
    position: absolute;
    inset-inline-start: 0;
    top: 3px;
    width: 15px;
    height: 15px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(74, 222, 128, .12);
    color: #75d596;
    content: "✓";
    font-size: 9px;
}

.iuo-enrollment-back {
    display: inline-flex;
    color: var(--iuo-gold-bright);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.iuo-enrollment-form-panel,
.iuo-checkout-panel {
    min-width: 0;
    padding: 31px;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 27px;
    background: linear-gradient(155deg, #111d2d, #0b1524);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .2);
}

.iuo-enrollment-panel-head,
.iuo-checkout-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.iuo-enrollment-panel-head h2,
.iuo-checkout-panel-head h2 {
    margin: 7px 0 0;
    color: #fff;
    font-size: clamp(22px, 2.7vw, 31px);
    font-weight: 950;
}

.iuo-enrollment-panel-head > b {
    color: rgba(212, 175, 55, .27);
    font-size: 43px;
    font-weight: 950;
}

.iuo-form-alert {
    margin: 22px 0;
    padding: 16px 18px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1.65;
}

.iuo-form-alert-error {
    border: 1px solid rgba(248, 113, 113, .32);
    background: rgba(127, 29, 29, .27);
    color: #fecaca;
}

.iuo-form-alert ul {
    margin: 8px 0 0;
    padding-inline-start: 19px;
}

.iuo-form-section {
    padding: 29px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .075);
}

.iuo-form-section:last-of-type {
    border-bottom: 0;
}

.iuo-form-section-title {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
}

.iuo-form-section-title > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 9px;
    background: rgba(212, 175, 55, .07);
    color: var(--iuo-gold);
    font-size: 10px;
    font-weight: 950;
}

.iuo-form-section-title h3 {
    margin: 0;
    color: #eaf0f8;
    font-size: 16px;
    font-weight: 900;
}

.iuo-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.iuo-field-full {
    grid-column: 1 / -1;
}

.iuo-field + .iuo-field,
.iuo-payment-plan-fieldset {
    margin-top: 18px;
}

.iuo-field label,
.iuo-payment-plan-fieldset legend {
    display: block;
    margin-bottom: 8px;
    color: #dbe4ef;
    font-size: 12px;
    font-weight: 850;
}

.iuo-field label em,
.iuo-payment-plan-fieldset legend em {
    color: var(--iuo-gold-bright);
    font-style: normal;
}

.iuo-field input,
.iuo-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 13px;
    outline: 0;
    background: #0b1625;
    color: #fff;
    font: inherit;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.iuo-field input {
    min-height: 51px;
    padding: 12px 14px;
}

.iuo-field textarea {
    min-height: 118px;
    padding: 14px;
    resize: vertical;
}

.iuo-field input::placeholder,
.iuo-field textarea::placeholder {
    color: #637086;
}

.iuo-field input:focus,
.iuo-field textarea:focus {
    border-color: var(--iuo-gold);
    background: #0d1929;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .1);
}

.iuo-field-help,
.iuo-field-error {
    display: block;
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.55;
}

.iuo-field-help { color: #7e8da3; }
.iuo-field-error { color: #fca5a5; font-weight: 800; }

.iuo-payment-plan-fieldset {
    padding: 0;
    border: 0;
}

.iuo-payment-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.iuo-payment-plan-grid.has-single-plan {
    grid-template-columns: 1fr;
}

.iuo-payment-plan-card {
    position: relative;
    min-height: 172px;
    display: flex;
    flex-direction: column;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 17px;
    background: #0b1625;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.iuo-payment-plan-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, .35);
}

.iuo-payment-plan-card:has(input:checked) {
    border-color: var(--iuo-gold);
    background: rgba(212, 175, 55, .075);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, .08);
}

.iuo-payment-plan-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.iuo-plan-check {
    position: absolute;
    inset-inline-end: 16px;
    top: 16px;
    width: 18px;
    height: 18px;
    border: 1px solid #58657a;
    border-radius: 50%;
}

.iuo-payment-plan-card input:checked + .iuo-plan-check {
    border: 5px solid var(--iuo-gold);
    background: #111c2c;
}

.iuo-payment-plan-card strong {
    padding-inline-end: 28px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.iuo-payment-plan-card small {
    margin-top: 8px;
    color: var(--iuo-gold-bright);
    font-size: 14px;
    font-weight: 950;
}

.iuo-payment-plan-card p {
    margin: auto 0 0;
    padding-top: 12px;
    color: #8795aa;
    font-size: 11px;
    line-height: 1.55;
}

.iuo-installment-notice,
.iuo-enrollment-legal {
    margin-top: 15px;
    padding: 16px 18px;
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 14px;
    background: rgba(212, 175, 55, .055);
    color: #b7c3d3;
    font-size: 11px;
    line-height: 1.65;
}

.iuo-installment-notice[hidden] { display: none; }

.iuo-installment-notice strong,
.iuo-installment-notice span {
    display: block;
}

.iuo-installment-notice strong,
.iuo-enrollment-legal strong {
    margin-bottom: 5px;
    color: var(--iuo-gold-bright);
    font-size: 12px;
}

.iuo-enrollment-legal p {
    margin: 7px 0 0;
}

.iuo-terms-check {
    position: relative;
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 11px;
    margin-top: 17px;
    color: #c8d2df;
    cursor: pointer;
}

.iuo-terms-check input {
    position: absolute;
    opacity: 0;
}

.iuo-terms-check > span {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border: 1px solid #67758a;
    border-radius: 6px;
    background: #0b1625;
}

.iuo-terms-check input:checked + span {
    border-color: var(--iuo-gold);
    background: var(--iuo-gold);
}

.iuo-terms-check input:checked + span::after {
    color: #101827;
    content: "✓";
    font-size: 12px;
    font-weight: 950;
}

.iuo-terms-check b {
    font-size: 12px;
    font-weight: 750;
    line-height: 1.65;
}

.iuo-enrollment-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 27px;
}

.iuo-enrollment-submit-row small {
    display: block;
    color: #7f8da2;
    font-size: 10px;
}

.iuo-enrollment-submit-row strong {
    display: block;
    margin-top: 4px;
    color: #d5deea;
    font-size: 12px;
}

.iuo-enrollment-submit-row button,
#iuo-payment-submit {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 21px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--iuo-gold-bright), var(--iuo-gold));
    color: #101827;
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 15px 32px rgba(212, 175, 55, .16);
}

.iuo-enrollment-submit-row button:disabled,
#iuo-payment-submit:disabled {
    opacity: .6;
    cursor: wait;
}

.iuo-checkout-summary dl {
    display: grid;
    gap: 0;
    margin: 23px 0 0;
}

.iuo-checkout-summary dl > div {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.iuo-checkout-summary dt {
    color: #8290a5;
    font-size: 11px;
}

.iuo-checkout-summary dd {
    margin: 0;
    color: #e7edf5;
    font-size: 11px;
    font-weight: 850;
    text-align: end;
}

.iuo-checkout-installment-note {
    color: #95a4b8;
    font-size: 11px;
    line-height: 1.7;
}

.iuo-secure-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: #9ecfac;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.55;
}

.iuo-secure-note span {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(74, 222, 128, .12);
}

.iuo-checkout-panel-head > strong {
    padding: 9px 12px;
    border: 1px solid rgba(212, 175, 55, .23);
    border-radius: 10px;
    color: var(--iuo-gold-bright);
    font-size: 13px;
    letter-spacing: .04em;
}

#iuo-payment-form {
    margin-top: 26px;
}

#iuo-payment-element {
    min-height: 170px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 17px;
    background: #0d1828;
}

#iuo-payment-submit {
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
    padding-inline: 22px;
}

#iuo-payment-submit strong {
    font-size: 11px;
}

#iuo-payment-message {
    margin-top: 14px;
    color: #fca5a5;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.55;
}

.iuo-checkout-security-row {
    display: flex;
    justify-content: center;
    gap: 13px 20px;
    flex-wrap: wrap;
    margin-top: 21px;
    color: #748299;
    font-size: 9px;
    font-weight: 750;
}

.iuo-payment-result-section {
    min-height: 75vh;
    display: grid;
    place-items: center;
    padding: 72px 18px;
    background:
        radial-gradient(circle at 50% 15%, rgba(212, 175, 55, .13), transparent 35%),
        linear-gradient(150deg, #07101d, #0b1525 58%, #08111e);
}

.iuo-payment-result-card {
    width: min(790px, 100%);
    padding: 45px;
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 30px;
    background: linear-gradient(150deg, rgba(17, 29, 45, .97), rgba(8, 17, 30, .98));
    box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
    text-align: center;
}

.iuo-payment-success-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(74, 222, 128, .3);
    border-radius: 50%;
    background: rgba(34, 197, 94, .08);
    box-shadow: 0 0 0 12px rgba(34, 197, 94, .035);
}

.iuo-payment-success-icon span {
    color: #75d596;
    font-size: 36px;
    font-weight: 950;
}

.iuo-payment-verified-label {
    color: #7bd59a;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .12em;
}

.iuo-payment-result-card > h1 {
    margin: 12px 0 14px;
    color: #fff;
    font-size: clamp(31px, 4.5vw, 49px);
    font-weight: 950;
    letter-spacing: -.03em;
}

.iuo-payment-result-card > p {
    max-width: 610px;
    margin: 0 auto;
    color: #acb9cb;
    font-size: 14px;
    line-height: 1.8;
}

.iuo-payment-result-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: rgba(8, 17, 30, .55);
    overflow: hidden;
}

.iuo-payment-result-summary > div {
    padding: 19px 13px;
    border-inline-end: 1px solid rgba(255, 255, 255, .08);
}

.iuo-payment-result-summary > div:last-child { border-inline-end: 0; }

.iuo-payment-result-summary small,
.iuo-payment-course-name small {
    display: block;
    color: #79879c;
    font-size: 9px;
    font-weight: 800;
}

.iuo-payment-result-summary strong {
    display: block;
    margin-top: 6px;
    color: var(--iuo-gold-bright);
    font-size: 13px;
    font-weight: 950;
}

.iuo-payment-course-name {
    margin-top: 16px;
    padding: 17px;
    border-radius: 15px;
    background: rgba(212, 175, 55, .055);
}

.iuo-payment-course-name strong {
    display: block;
    margin-top: 6px;
    color: #e7edf5;
    font-size: 14px;
}

.iuo-payment-next-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    margin-top: 17px;
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 16px;
    text-align: start;
}

.iuo-payment-next-step > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(212, 175, 55, .1);
    color: var(--iuo-gold);
    font-size: 11px;
    font-weight: 950;
}

.iuo-payment-next-step strong { color: #fff; font-size: 13px; }
.iuo-payment-next-step p { margin: 5px 0 0; color: #8f9db1; font-size: 11px; line-height: 1.6; }

.iuo-payment-result-actions {
    display: flex;
    justify-content: center;
    gap: 11px;
    flex-wrap: wrap;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .iuo-enrollment-grid,
    .iuo-checkout-grid {
        grid-template-columns: 1fr;
    }

    .iuo-enrollment-summary,
    .iuo-checkout-summary {
        position: static;
    }
}

@media (max-width: 650px) {
    .iuo-enrollment-hero,
    .iuo-checkout-hero {
        padding: 31px 0 48px;
    }

    .iuo-enrollment-content,
    .iuo-checkout-content {
        padding: 42px 0 58px;
    }

    .iuo-enrollment-form-panel,
    .iuo-checkout-panel,
    .iuo-enrollment-summary,
    .iuo-checkout-summary {
        padding: 21px;
        border-radius: 21px;
    }

    .iuo-form-grid,
    .iuo-payment-plan-grid,
    .iuo-payment-result-summary {
        grid-template-columns: 1fr;
    }

    .iuo-field-full { grid-column: auto; }

    .iuo-enrollment-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .iuo-enrollment-submit-row button { width: 100%; }

    .iuo-payment-result-section { padding: 48px 13px; }

    .iuo-payment-result-card {
        padding: 29px 20px;
        border-radius: 24px;
    }

    .iuo-payment-result-summary > div {
        border-inline-end: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .iuo-payment-result-summary > div:last-child { border-bottom: 0; }

    .iuo-payment-result-actions,
    .iuo-payment-result-actions .iuo-browser-btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .iuo-enrollment-panel-head,
    .iuo-checkout-panel-head {
        align-items: flex-start;
    }

    .iuo-enrollment-panel-head > b,
    .iuo-checkout-panel-head > strong {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .iuo-enrollment-page *,
    .iuo-checkout-page *,
    .iuo-payment-result-page * {
        transition: none !important;
    }
}
/* IUOAMC_COURSE_ENROLLMENT_PAYMENT_UI_V22_END */
