/* ==========================================================
   PICC Excellence New Look UI

   Shared styling for administrative and non-course PHP pages.

   Course content, tests, and evaluations continue to use
   account_center/modern-course-ui.css.
   ========================================================== */
   /* ==========================================================
   Shared Design Variables
   ========================================================== */

.newlook-ui {
    --newlook-bg: #020d1f;
    --newlook-bg-deep: #010817;
    --newlook-sidebar: #03152c;
    --newlook-panel: #06172f;

    --newlook-blue: #1388ff;
    --newlook-blue-dark: #0754c7;
    --newlook-text: #f4f7fb;
    --newlook-muted: #aebace;
    --newlook-border: rgba(79, 147, 214, 0.34);

    min-height: 100vh;
    margin: 0;
    color: var(--newlook-text);
    background:
        radial-gradient(
            circle at 72% 35%,
            rgba(0, 91, 196, 0.18),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            var(--newlook-bg-deep) 0%,
            var(--newlook-bg) 58%,
            #031a38 100%
        );
    font-family: "Public Sans", Arial, Helvetica, sans-serif;
}

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

.newlook-ui a {
    color: inherit;
}

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


/* ==========================================================
   Main Page Structure
   ========================================================== */

.newlook-ui .newlook-shell {
    display: grid;
    grid-template-columns: 256px minmax(0, 1fr);
    min-height: 100vh;
}

.newlook-ui .newlook-main {
    min-width: 0;
    min-height: 100vh;
}

.newlook-ui .newlook-login-content {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 56px 64px 48px;
}


/* ==========================================================
   Sidebar
   ========================================================== */

.newlook-ui .newlook-sidebar {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 28px 15px 30px;
    background:
        linear-gradient(
            180deg,
            rgba(3, 25, 54, 0.99),
            rgba(2, 15, 34, 0.99)
        );
    border-right: 1px solid rgba(104, 160, 215, 0.2);
}

.newlook-ui .newlook-sidebar-brand {
    padding: 0 18px 28px;
    text-align: center;
    border-bottom: 1px solid rgba(132, 176, 219, 0.25);
}

.newlook-ui .newlook-sidebar-logo {
    width: 180px;
    margin: 0 auto 20px;
}

.newlook-ui .newlook-sidebar-title {
    margin: 0;
    color: #2d9cff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* ==========================================================
   Sidebar Navigation
   ========================================================== */

.newlook-ui .newlook-sidebar-nav {
    display: grid;
    gap: 12px;
    padding: 30px 0;
}

.newlook-ui .newlook-sidebar-link {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 60px;
    padding: 14px 22px;
    color: #f1f5fa;
    font-size: 18px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 8px;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
}

.newlook-ui .newlook-sidebar-link i {
    width: 26px;
    color: #d8e5f3;
    font-size: 22px;
    text-align: center;
}

.newlook-ui .newlook-sidebar-link:hover {
    color: #ffffff;
    background: rgba(20, 94, 184, 0.28);
    border-color: rgba(40, 137, 255, 0.4);
}

.newlook-ui .newlook-sidebar-link.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            rgba(10, 76, 177, 0.9),
            rgba(5, 47, 118, 0.9)
        );
    border-color: rgba(35, 137, 255, 0.7);
}

.newlook-ui .newlook-sidebar-link.is-active i {
    color: #ffffff;
}


/* ==========================================================
   Sidebar Security Message
   ========================================================== */

.newlook-ui .newlook-sidebar-security {
    display: flex;
    gap: 14px;
    margin-top: auto;
    padding: 24px 18px 0;
    color: var(--newlook-muted);
    border-top: 1px solid rgba(132, 176, 219, 0.25);
}

.newlook-ui .newlook-sidebar-security > i {
    margin-top: 3px;
    color: #2898ff;
    font-size: 27px;
}

.newlook-ui .newlook-sidebar-security strong {
    display: block;
    margin-bottom: 7px;
    color: #269bff;
    font-size: 16px;
}

.newlook-ui .newlook-sidebar-security p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}


/* ==========================================================
   Responsive Foundation
   ========================================================== */

@media (max-width: 900px) {
    .newlook-ui .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-sidebar {
        min-height: auto;
    }

    .newlook-ui .newlook-sidebar-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .newlook-ui .newlook-sidebar-security {
        display: none;
    }

    .newlook-ui .newlook-login-content {
        padding: 36px 24px;
    }
}

@media (max-width: 600px) {
    .newlook-ui .newlook-sidebar-nav {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-login-content {
        padding: 28px 16px;
    }
}
/* ==========================================================
   Login Hero Image
   ========================================================== */

.newlook-ui .newlook-login-visual {
    min-width: 0;
}

.newlook-ui .newlook-login-hero {
    width: 100%;
    max-width: 660px;
    margin: 20px auto 30px;
}

.newlook-ui .newlook-login-hero img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
/* ==========================================================
   Login Page Layout
   ========================================================== */

.newlook-ui .newlook-page-heading {
    margin-bottom: 32px;
}

.newlook-ui .newlook-page-heading .newlook-eyebrow {
    margin: 0 0 12px;
    color: var(--newlook-blue);
    font-size: 18px;
    font-weight: 700;
}

.newlook-ui .newlook-page-heading h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
}

.newlook-ui .newlook-page-heading > p:last-child {
    margin: 0;
    color: var(--newlook-muted);
    font-size: 18px;
    line-height: 1.55;
}

.newlook-ui .newlook-login-grid {
    display: grid;
    grid-template-columns: minmax(440px, 540px) minmax(420px, 1fr);
    gap: 64px;
    align-items: start;
}

.newlook-ui .newlook-login-card {
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 25, 53, 0.96),
            rgba(2, 15, 34, 0.94)
        );
    border: 1px solid var(--newlook-border);
    border-radius: 14px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-card-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 34px 34px 28px;
    border-bottom: 1px solid rgba(114, 164, 215, 0.24);
}

.newlook-ui .newlook-card-icon {
    display: grid;
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    place-items: center;
    color: var(--newlook-blue);
    font-size: 32px;
    border: 2px solid var(--newlook-blue);
    border-radius: 50%;
}

.newlook-ui .newlook-card-heading h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.2;
}

.newlook-ui .newlook-card-heading p {
    margin: 0;
    color: var(--newlook-muted);
    font-size: 15px;
    line-height: 1.5;
}

.newlook-ui .newlook-login-form {
    padding: 30px 34px 34px;
}

.newlook-ui .newlook-login-visual {
    padding-top: 10px;
}

.newlook-ui .newlook-login-hero {
    max-width: 680px;
    margin: 0 auto 26px;
}

.newlook-ui .newlook-visual-copy {
    max-width: 590px;
    margin: 0 auto;
}

.newlook-ui .newlook-visual-copy h2 {
    margin: 0 0 16px;
    color: var(--newlook-blue);
    font-size: 24px;
    line-height: 1.3;
}

.newlook-ui .newlook-visual-copy p {
    margin: 0;
    color: #e4eaf2;
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    .newlook-ui .newlook-login-grid {
        grid-template-columns: minmax(400px, 500px) minmax(340px, 1fr);
        gap: 38px;
    }
}

@media (max-width: 980px) {
    .newlook-ui .newlook-login-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-login-card {
        width: 100%;
        max-width: 600px;
    }

    .newlook-ui .newlook-login-visual {
        max-width: 700px;
    }
}
/* ==========================================================
   Login Form
   ========================================================== */

.newlook-ui .newlook-field {
    margin-bottom: 24px;
}

.newlook-ui .newlook-field label {
    display: block;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.newlook-ui .newlook-input-wrap {
    position: relative;
}

.newlook-ui .newlook-input-wrap > i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 1;
    color: #8397ae;
    font-size: 19px;
    transform: translateY(-50%);
    pointer-events: none;
}

.newlook-ui .newlook-input-wrap input {
    display: block;
    width: 100%;
    height: 56px;
    margin: 0;
    padding: 12px 16px 12px 52px;
    color: #ffffff;
    font-size: 16px;
    background: rgba(1, 12, 29, 0.72);
    border: 1px solid rgba(108, 155, 205, 0.55);
    border-radius: 8px;
    outline: none;
    appearance: none;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.newlook-ui .newlook-input-wrap input::placeholder {
    color: #7f8da0;
    opacity: 1;
}

.newlook-ui .newlook-input-wrap input:hover {
    border-color: rgba(49, 150, 255, 0.75);
}

.newlook-ui .newlook-input-wrap input:focus {
    background: rgba(2, 18, 42, 0.95);
    border-color: var(--newlook-blue);
    box-shadow: 0 0 0 3px rgba(19, 136, 255, 0.18);
}


/* ==========================================================
   Login Options
   ========================================================== */

.newlook-ui .newlook-login-options {
    display: flex;
    justify-content: flex-end;
    margin: -5px 0 25px;
}

.newlook-ui .newlook-login-options a {
    color: #269bff;
    font-size: 15px;
    text-decoration: none;
}

.newlook-ui .newlook-login-options a:hover {
    color: #75bdff;
    text-decoration: underline;
}


/* ==========================================================
   Buttons
   ========================================================== */

.newlook-ui .newlook-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 12px 22px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.newlook-ui .newlook-button:hover {
    transform: translateY(-1px);
}

.newlook-ui .newlook-button-primary {
    background:
        linear-gradient(
            180deg,
            #126fe6 0%,
            #0647ae 100%
        );
    border: 1px solid #1988ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 10px 28px rgba(0, 74, 184, 0.24);
}

.newlook-ui .newlook-button-primary:hover {
    background:
        linear-gradient(
            180deg,
            #1989ff 0%,
            #0759cb 100%
        );
}

.newlook-ui .newlook-button-primary:focus-visible,
.newlook-ui .newlook-button-secondary:focus-visible {
    outline: 3px solid rgba(53, 158, 255, 0.42);
    outline-offset: 3px;
}

.newlook-ui .newlook-button-secondary {
    color: #35a3ff;
    background: rgba(1, 13, 31, 0.38);
    border: 1px solid rgba(35, 139, 255, 0.72);
}

.newlook-ui .newlook-button-secondary:hover {
    color: #ffffff;
    background: rgba(12, 75, 153, 0.35);
    border-color: #35a3ff;
}


/* ==========================================================
   New Account Divider
   ========================================================== */

.newlook-ui .newlook-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 27px 0 22px;
    color: #8e9eb2;
    font-size: 14px;
    text-align: center;
}

.newlook-ui .newlook-divider::before,
.newlook-ui .newlook-divider::after {
    flex: 1;
    height: 1px;
    content: "";
    background: rgba(112, 159, 207, 0.25);
}

.newlook-ui .newlook-divider span {
    flex: 0 0 auto;
}


/* ==========================================================
   Login Error Message
   ========================================================== */

.newlook-ui .newlook-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 34px 0;
    padding: 15px 17px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 8px;
}

.newlook-ui .newlook-alert-error {
    color: #ffd9d9;
    background: rgba(151, 27, 40, 0.24);
    border: 1px solid rgba(255, 95, 110, 0.55);
}

.newlook-ui .newlook-alert-error > i {
    margin-top: 3px;
    color: #ff6976;
}


/* ==========================================================
   Login Card Footer
   ========================================================== */

.newlook-ui .newlook-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 58px;
    padding: 15px 24px;
    color: #9baabc;
    font-size: 14px;
    text-align: center;
    background: rgba(1, 11, 27, 0.46);
    border-top: 1px solid rgba(111, 159, 208, 0.22);
}

.newlook-ui .newlook-card-footer > i {
    color: #bdcad9;
    font-size: 18px;
}

.newlook-ui .newlook-footer-divider {
    width: 1px;
    height: 22px;
    background: rgba(120, 166, 211, 0.32);
}


/* ==========================================================
   Small-Screen Form Adjustments
   ========================================================== */

@media (max-width: 600px) {
    .newlook-ui .newlook-card-heading {
        padding: 26px 22px 22px;
    }

    .newlook-ui .newlook-login-form {
        padding: 24px 22px 28px;
    }

    .newlook-ui .newlook-alert {
        margin-right: 22px;
        margin-left: 22px;
    }

    .newlook-ui .newlook-card-footer {
        flex-wrap: wrap;
    }

    .newlook-ui .newlook-footer-divider {
        display: none;
    }
}
/* ==========================================================
   Site-License Pathway Page
   ========================================================== */

.newlook-ui .newlook-main {
    overflow-x: hidden;
}

.newlook-ui .newlook-license-content {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 56px 64px 48px;
}

.newlook-ui .newlook-company-name {
    margin: 12px 0 0;
    color: #2d9cff;
    font-size: 21px;
    font-weight: 700;
}

.newlook-ui .newlook-license-grid {
    display: grid;
    grid-template-columns:
        minmax(480px, 590px)
        minmax(360px, 1fr);
    gap: 60px;
    align-items: start;
}

.newlook-ui .newlook-license-grid > * {
    min-width: 0;
}


/* ==========================================================
   Site-License Card
   ========================================================== */

.newlook-ui .newlook-license-card {
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 25, 53, 0.96),
            rgba(2, 15, 34, 0.94)
        );
    border: 1px solid var(--newlook-border);
    border-radius: 14px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-license-notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 28px 34px 0;
    padding: 16px 18px;
    color: #d9e9f8;
    background: rgba(13, 91, 157, 0.19);
    border: 1px solid rgba(48, 153, 230, 0.42);
    border-radius: 8px;
}

.newlook-ui .newlook-license-notice > i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #2da2ff;
    font-size: 19px;
}

.newlook-ui .newlook-license-notice p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.newlook-ui .newlook-license-form {
    padding: 28px 34px 34px;
}


/* ==========================================================
   Pathway Select
   ========================================================== */

.newlook-ui .newlook-select-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
}

.newlook-ui .newlook-select-wrap > i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 1;
    color: #8397ae;
    font-size: 19px;
    transform: translateY(-50%);
    pointer-events: none;
}

.newlook-ui .newlook-select-wrap::after {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    content: "";
    border-right: 2px solid #8fa6bd;
    border-bottom: 2px solid #8fa6bd;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.newlook-ui .newlook-select-wrap select {
    display: block;
    width: 100%;
    min-width: 0;
    height: 58px;
    margin: 0;
    padding: 10px 48px 10px 52px;
    color: #ffffff;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: rgba(1, 12, 29, 0.72);
    border: 1px solid rgba(108, 155, 205, 0.55);
    border-radius: 8px;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.newlook-ui .newlook-select-wrap select:hover {
    border-color: rgba(49, 150, 255, 0.75);
}

.newlook-ui .newlook-select-wrap select:focus {
    background: rgba(2, 18, 42, 0.95);
    border-color: var(--newlook-blue);
    box-shadow: 0 0 0 3px rgba(19, 136, 255, 0.18);
}

.newlook-ui .newlook-select-wrap option {
    color: #111827;
    background: #ffffff;
}

.newlook-ui .newlook-select-wrap option:disabled {
    color: #7f8793;
}

.newlook-ui .newlook-field-help {
    margin: 9px 0 0;
    color: #8293a8;
    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================================
   Site-License Hero
   ========================================================== */

.newlook-ui .newlook-license-visual {
    min-width: 0;
    padding-top: 10px;
}

.newlook-ui .newlook-license-hero {
    width: 100%;
    max-width: 650px;
    margin: 0 auto 28px;
}

.newlook-ui .newlook-license-hero img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.newlook-ui .newlook-license-visual .newlook-visual-copy {
    max-width: 590px;
    margin: 0 auto;
}


/* ==========================================================
   Site-License Responsive Layout
   ========================================================== */

@media (max-width: 1180px) {
    .newlook-ui .newlook-license-grid {
        grid-template-columns:
            minmax(430px, 540px)
            minmax(320px, 1fr);
        gap: 38px;
    }
}

@media (max-width: 980px) {
    .newlook-ui .newlook-license-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-license-card {
        width: 100%;
        max-width: 650px;
    }

    .newlook-ui .newlook-license-visual {
        width: 100%;
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    .newlook-ui .newlook-license-content {
        padding: 28px 16px;
    }

    .newlook-ui .newlook-license-notice {
        margin-right: 22px;
        margin-left: 22px;
    }

    .newlook-ui .newlook-license-form {
        padding: 24px 22px 28px;
    }
}
/* ==========================================================
   My Account Page
   ========================================================== */

.newlook-ui.newlook-account-page .newlook-shell {
    grid-template-columns: 285px minmax(0, 1fr);
}

.newlook-ui .newlook-account-content {
    width: min(100%, 1500px);
    margin: 0 auto;
    padding: 52px 44px 50px;
}


/* ==========================================================
   Account Sidebar
   ========================================================== */

.newlook-ui .newlook-account-sidebar {
    padding-right: 18px;
    padding-left: 18px;
}

.newlook-ui .newlook-account-sidebar .newlook-sidebar-brand {
    padding-bottom: 26px;
}

.newlook-ui .newlook-account-sidebar .newlook-sidebar-logo {
    width: 195px;
    margin-bottom: 0;
}


.newlook-ui .newlook-account-nav {
    display: grid;
    gap: 12px;
    padding: 25px 0;
}

.newlook-ui .newlook-account-nav-link {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 16px;
    gap: 11px;
    align-items: center;
    min-height: 81px;
    padding: 13px 14px;
    color: #f0f5fb;
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
    background: rgba(5, 27, 57, 0.76);
    border: 1px solid rgba(91, 149, 207, 0.38);
    border-radius: 9px;
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.newlook-ui .newlook-account-nav-link:hover {
    color: #ffffff;
    background: rgba(8, 54, 111, 0.82);
    border-color: #1693ff;
    box-shadow: 0 10px 28px rgba(0, 73, 168, 0.18);
    transform: translateY(-1px);
}

.newlook-ui .newlook-account-nav-link:first-child {
    background:
        linear-gradient(
            145deg,
            rgba(7, 73, 150, 0.88),
            rgba(4, 34, 81, 0.92)
        );
    border-color: #159cff;
    box-shadow:
        0 0 20px rgba(0, 132, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.newlook-ui .newlook-account-nav-link > i:first-child {
    color: #29a4ff;
    font-size: 28px;
    text-align: center;
}

.newlook-ui .newlook-account-nav-link > i:last-child {
    color: #22a4ff;
    font-size: 14px;
    text-align: right;
}


/* ==========================================================
   Account Header
   ========================================================== */

.newlook-ui .newlook-account-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 34px;
}

.newlook-ui .newlook-account-header .newlook-eyebrow {
    margin: 0 0 12px;
    color: #179bff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-account-header h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.05;
}

.newlook-ui .newlook-account-intro {
    margin: 0;
    color: #aab8c9;
    font-size: 18px;
    line-height: 1.55;
}

.newlook-ui .newlook-account-status {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 13px;
    align-items: center;
    min-height: 58px;
    margin-top: 35px;
    padding: 12px 22px;
    color: #dce7f3;
    font-size: 16px;
    font-weight: 700;
    background: rgba(4, 23, 48, 0.82);
    border: 1px solid rgba(91, 149, 207, 0.48);
    border-radius: 10px;
}

.newlook-ui .newlook-status-dot {
    width: 15px;
    height: 15px;
    background: #10d985;
    border-radius: 50%;
    box-shadow:
        0 0 8px rgba(16, 217, 133, 0.9),
        0 0 20px rgba(16, 217, 133, 0.5);
}

.newlook-ui .newlook-account-status.is-inactive .newlook-status-dot {
    background: #ff5b6b;
    box-shadow:
        0 0 8px rgba(255, 91, 107, 0.9),
        0 0 20px rgba(255, 91, 107, 0.42);
}


/* ==========================================================
   Account Notices
   ========================================================== */

.newlook-ui .newlook-account-notices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.newlook-ui .newlook-account-notice {
    display: flex;
    gap: 18px;
    align-items: center;
    min-height: 108px;
    padding: 20px 24px;
    background: rgba(4, 23, 48, 0.82);
    border: 1px solid rgba(91, 149, 207, 0.38);
    border-radius: 12px;
}

.newlook-ui .newlook-account-notice:only-child {
    grid-column: 1 / -1;
}

.newlook-ui .newlook-notice-icon {
    display: grid;
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    place-items: center;
    font-size: 27px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.newlook-ui .newlook-account-notice h2 {
    margin: 0 0 7px;
    font-size: 18px;
    line-height: 1.25;
}

.newlook-ui .newlook-account-notice p {
    margin: 0;
    color: #d8e1ec;
    font-size: 15px;
    line-height: 1.5;
}

.newlook-ui .newlook-account-notice .newlook-notice-company {
    margin-bottom: 4px;
    color: #ffffff;
    font-weight: 700;
}

.newlook-ui .newlook-notice-success {
    color: #16e39a;
    background:
        linear-gradient(
            145deg,
            rgba(0, 96, 90, 0.22),
            rgba(3, 28, 50, 0.9)
        );
    border-color: rgba(20, 218, 157, 0.55);
}

.newlook-ui .newlook-notice-info {
    color: #27a8ff;
    border-color: rgba(39, 168, 255, 0.5);
}

.newlook-ui .newlook-notice-warning {
    color: #ffba08;
    background:
        linear-gradient(
            145deg,
            rgba(104, 72, 0, 0.2),
            rgba(3, 27, 51, 0.9)
        );
    border-color: rgba(255, 176, 0, 0.5);
}

.newlook-ui .newlook-notice-danger {
    color: #ff6474;
    background:
        linear-gradient(
            145deg,
            rgba(104, 18, 33, 0.24),
            rgba(3, 27, 51, 0.9)
        );
    border-color: rgba(255, 83, 104, 0.55);
}


/* ==========================================================
   Account Dashboard Grid
   ========================================================== */

.newlook-ui .newlook-account-dashboard-grid {
    display: grid;
    grid-template-columns:
        minmax(410px, 1fr)
        minmax(400px, 0.95fr)
        minmax(270px, 0.72fr);
    gap: 22px;
    align-items: stretch;
}

.newlook-ui .newlook-account-dashboard-grid > * {
    min-width: 0;
}

.newlook-ui .newlook-profile-card,
.newlook-ui .newlook-license-info-card {
    padding: 28px 26px 26px;
    background:
        linear-gradient(
            145deg,
            rgba(5, 27, 57, 0.96),
            rgba(2, 16, 36, 0.94)
        );
    border: 1px solid rgba(84, 146, 209, 0.45);
    border-radius: 13px;
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-card-label {
    margin: 0 0 28px;
    color: #159cff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


/* ==========================================================
   Account Profile Card
   ========================================================== */

.newlook-ui .newlook-profile-heading {
    display: flex;
    gap: 22px;
    align-items: center;
    padding: 0 4px 22px;
    border-bottom: 1px solid rgba(116, 160, 206, 0.28);
}

.newlook-ui .newlook-profile-initials {
    display: grid;
    flex: 0 0 94px;
    width: 94px;
    height: 94px;
    place-items: center;
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    background:
        radial-gradient(
            circle at 40% 30%,
            rgba(25, 119, 255, 0.36),
            rgba(6, 26, 70, 0.95)
        );
    border: 3px solid #078fff;
    border-radius: 50%;
    box-shadow:
        0 0 15px rgba(0, 145, 255, 0.65),
        0 0 34px rgba(0, 94, 255, 0.28);
}

.newlook-ui .newlook-profile-heading h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.2;
}

.newlook-ui .newlook-profile-heading p {
    margin: 0;
    color: #a8b6c7;
    font-size: 15px;
}

.newlook-ui .newlook-profile-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    margin-bottom: 26px;
}

.newlook-ui .newlook-profile-detail {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 92px;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(103, 151, 199, 0.22);
}

.newlook-ui .newlook-profile-detail > i {
    color: #159cff;
    font-size: 23px;
    text-align: center;
}

.newlook-ui .newlook-profile-detail span {
    display: block;
    margin-bottom: 5px;
    color: #169dff;
    font-size: 13px;
}

.newlook-ui .newlook-profile-detail strong {
    display: block;
    overflow-wrap: anywhere;
    color: #eef4fb;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}


/* ==========================================================
   Site License Information Card
   ========================================================== */

.newlook-ui .newlook-license-info-card > h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.3;
}

.newlook-ui .newlook-license-organization {
    margin: 0 0 26px;
    padding-bottom: 25px;
    color: #159cff;
    font-size: 16px;
    line-height: 1.45;
    border-bottom: 1px solid rgba(116, 160, 206, 0.28);
}

.newlook-ui .newlook-license-details {
    display: grid;
}

.newlook-ui .newlook-license-detail {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(103, 151, 199, 0.22);
}

.newlook-ui .newlook-license-detail > span {
    display: flex;
    gap: 11px;
    align-items: center;
    color: #dce6f1;
    font-size: 15px;
}

.newlook-ui .newlook-license-detail > span i {
    width: 22px;
    color: #159cff;
    font-size: 20px;
    text-align: center;
}

.newlook-ui .newlook-license-detail > strong {
    color: #edf3fa;
    font-size: 15px;
    font-weight: 400;
    text-align: right;
}

.newlook-ui .newlook-license-detail > strong.is-active {
    color: #17e7a0;
}

.newlook-ui .newlook-license-detail > strong.is-inactive {
    color: #ff6373;
}


/* ==========================================================
   License Usage Bar
   ========================================================== */

.newlook-ui .newlook-license-usage {
    padding: 20px 4px;
    border-bottom: 1px solid rgba(103, 151, 199, 0.22);
}

.newlook-ui .newlook-license-usage-heading {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 14px;
    color: #dce6f1;
    font-size: 15px;
}

.newlook-ui .newlook-license-usage-heading strong {
    color: #edf3fa;
    font-weight: 400;
}

.newlook-ui .newlook-license-usage-track {
    overflow: hidden;
    width: calc(100% - 58px);
    height: 13px;
    background: rgba(83, 117, 153, 0.28);
    border-radius: 20px;
}

.newlook-ui .newlook-license-usage-track > span {
    display: block;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            #075bd8,
            #159cff
        );
    border-radius: inherit;
    box-shadow: 0 0 12px rgba(20, 145, 255, 0.45);
}

.newlook-ui .newlook-license-usage > p {
    float: right;
    margin: -19px 0 0;
    color: #159cff;
    font-size: 15px;
    font-weight: 700;
}


/* ==========================================================
   Account Hero
   ========================================================== */

.newlook-ui .newlook-account-visual {
    display: flex;
    min-height: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.newlook-ui .newlook-account-visual img {
    display: block;
    width: 135%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
}


/* ==========================================================
   Account Responsive Layout
   ========================================================== */

@media (max-width: 1380px) {
    .newlook-ui .newlook-account-dashboard-grid {
        grid-template-columns:
            minmax(380px, 1fr)
            minmax(370px, 0.95fr);
    }

    .newlook-ui .newlook-account-visual {
        grid-column: 1 / -1;
        max-height: 420px;
    }

    .newlook-ui .newlook-account-visual img {
        width: 75%;
        max-width: 650px;
    }
}

@media (max-width: 1080px) {
    .newlook-ui.newlook-account-page .newlook-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .newlook-ui .newlook-account-content {
        padding-right: 28px;
        padding-left: 28px;
    }

    .newlook-ui .newlook-account-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-account-notices {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-profile-card,
    .newlook-ui .newlook-license-info-card {
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .newlook-ui.newlook-account-page .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-account-sidebar {
        min-height: auto;
    }

    .newlook-ui .newlook-account-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .newlook-ui .newlook-account-nav-link {
        min-height: 70px;
    }
}

@media (max-width: 650px) {
    .newlook-ui .newlook-account-content {
        padding: 28px 16px;
    }

    .newlook-ui .newlook-account-header {
        display: block;
    }

    .newlook-ui .newlook-account-status {
        margin-top: 22px;
    }

    .newlook-ui .newlook-account-nav {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-profile-details {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-profile-heading {
        align-items: flex-start;
    }

    .newlook-ui .newlook-profile-initials {
        flex-basis: 76px;
        width: 76px;
        height: 76px;
        font-size: 28px;
    }

    .newlook-ui .newlook-license-detail {
        display: grid;
        gap: 8px;
    }

    .newlook-ui .newlook-license-detail > strong {
        padding-left: 33px;
        text-align: left;
    }

    .newlook-ui .newlook-account-visual img {
        width: 100%;
    }
}
/* ==========================================================
   Account Logout Link
   ========================================================== */

.newlook-ui .newlook-account-nav-link.newlook-account-logout {
    margin-top: 10px;
    color: #ffdce0;
    background: rgba(105, 22, 39, 0.22);
    border-color: rgba(255, 91, 111, 0.48);
}

.newlook-ui .newlook-account-nav-link.newlook-account-logout
    > i:first-child,
.newlook-ui .newlook-account-nav-link.newlook-account-logout
    > i:last-child {
    color: #ff6575;
}

.newlook-ui .newlook-account-nav-link.newlook-account-logout:hover {
    color: #ffffff;
    background: rgba(145, 28, 49, 0.38);
    border-color: #ff6575;
    box-shadow: 0 10px 28px rgba(135, 16, 38, 0.2);
}
/* ==========================================================
   Private Account Layout
   ========================================================== */

.newlook-ui .newlook-account-content.is-private-account {
    width: min(100%, 1080px);
}

.newlook-ui
.newlook-account-content.is-private-account
.newlook-account-dashboard-grid {
    grid-template-columns:
        minmax(440px, 520px)
        minmax(360px, 440px);
    justify-content: center;
    gap: 34px;
}

.newlook-ui
.newlook-account-content.is-private-account
.newlook-profile-card {
    width: 100%;
}

.newlook-ui
.newlook-account-content.is-private-account
.newlook-account-visual {
    width: 100%;
    min-height: 650px;
    justify-content: center;
}

.newlook-ui
.newlook-account-content.is-private-account
.newlook-account-visual img {
    width: 100%;
    max-width: 440px;
}
@media (max-width: 1150px) {
    .newlook-ui
    .newlook-account-content.is-private-account
    .newlook-account-dashboard-grid {
        grid-template-columns: minmax(420px, 560px);
    }

    .newlook-ui
    .newlook-account-content.is-private-account
    .newlook-account-visual {
        min-height: auto;
        max-height: 520px;
    }

    .newlook-ui
    .newlook-account-content.is-private-account
    .newlook-account-visual img {
        width: 80%;
        max-width: 500px;
    }
}
/* ==========================================================
   Completed Course Report
   ========================================================== */

.newlook-ui.newlook-completed-report-page .newlook-shell {
    grid-template-columns: 285px minmax(0, 1fr);
}

.newlook-ui .newlook-report-content {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 52px 48px 60px;
}


/* ==========================================================
   Report Sidebar
   ========================================================== */

.newlook-ui .newlook-report-sidebar {
    padding-right: 18px;
    padding-left: 18px;
}

.newlook-ui .newlook-report-sidebar .newlook-sidebar-logo {
    width: 195px;
    margin-bottom: 18px;
}

.newlook-ui .newlook-report-sidebar .newlook-account-nav {
    padding-top: 28px;
}

.newlook-ui .newlook-report-print-button {
    width: 100%;
    margin: 0;
    font: inherit;
    text-align: left;
    appearance: none;
    cursor: pointer;
}


/* ==========================================================
   Report Page Header
   ========================================================== */

.newlook-ui .newlook-report-page-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.newlook-ui .newlook-report-page-header .newlook-eyebrow {
    margin: 0 0 12px;
    color: #179bff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-report-page-header h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
}

.newlook-ui .newlook-report-page-header p:last-child {
    margin: 0;
    color: #aab8c9;
    font-size: 18px;
    line-height: 1.55;
}

.newlook-ui .newlook-report-header-print {
    flex: 0 0 auto;
    width: auto;
    min-width: 175px;
    margin-top: 35px;
    background:
        linear-gradient(
            180deg,
            #126fe6 0%,
            #0647ae 100%
        );
    border: 1px solid #1988ff;
}


/* ==========================================================
   Report Summary Cards
   ========================================================== */

.newlook-ui .newlook-report-summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 20px;
    margin-bottom: 24px;
}

.newlook-ui .newlook-report-student-card,
.newlook-ui .newlook-report-count-card {
    padding: 24px 26px;
    background:
        linear-gradient(
            145deg,
            rgba(5, 27, 57, 0.96),
            rgba(2, 16, 36, 0.94)
        );
    border: 1px solid rgba(84, 146, 209, 0.45);
    border-radius: 13px;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-report-student-card .newlook-card-label {
    margin-bottom: 20px;
}

.newlook-ui .newlook-report-student-name {
    display: flex;
    gap: 18px;
    align-items: center;
}

.newlook-ui .newlook-report-student-name > i {
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #159cff;
    font-size: 27px;
    border: 2px solid #159cff;
    border-radius: 50%;
}

.newlook-ui .newlook-report-student-name h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.3;
}

.newlook-ui .newlook-report-student-name p {
    margin: 0;
    color: #aebccc;
    font-size: 15px;
}

.newlook-ui .newlook-report-student-name strong {
    color: #ffffff;
    font-weight: 600;
}

.newlook-ui .newlook-report-count-card {
    display: flex;
    gap: 18px;
    align-items: center;
}

.newlook-ui .newlook-report-count-icon {
    display: grid;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    place-items: center;
    color: #159cff;
    font-size: 28px;
    background: rgba(10, 89, 177, 0.2);
    border: 2px solid #159cff;
    border-radius: 50%;
}

.newlook-ui .newlook-report-count-card strong {
    display: block;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
}

.newlook-ui .newlook-report-count-card span {
    display: block;
    margin-top: 7px;
    color: #aebccc;
    font-size: 15px;
}


/* ==========================================================
   Report Document
   ========================================================== */

.newlook-ui .newlook-report-document {
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(6, 29, 59, 0.98),
            rgba(2, 16, 35, 0.97)
        );
    border: 1px solid rgba(84, 146, 209, 0.5);
    border-radius: 14px;
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-report-document-header {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 26px 32px;
    background:
        linear-gradient(
            90deg,
            rgba(7, 66, 137, 0.4),
            rgba(4, 25, 54, 0.3)
        );
    border-bottom: 1px solid rgba(91, 149, 207, 0.34);
}

.newlook-ui .newlook-report-document-header img {
    width: 110px;
    height: auto;
}

.newlook-ui .newlook-report-document-header p {
    margin: 0 0 5px;
    color: #179bff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.newlook-ui .newlook-report-document-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.25;
}


/* ==========================================================
   Completed Courses Table
   ========================================================== */

.newlook-ui .newlook-report-table-wrap {
    overflow-x: auto;
    padding: 30px 32px 10px;
}

.newlook-ui .newlook-report-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.newlook-ui .newlook-report-table th,
.newlook-ui .newlook-report-table td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(105, 153, 201, 0.22);
}

.newlook-ui .newlook-report-table thead th {
    color: #159cff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(6, 46, 91, 0.34);
    border-top: 1px solid rgba(105, 153, 201, 0.25);
}

.newlook-ui .newlook-report-table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.newlook-ui .newlook-report-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.newlook-ui .newlook-report-table tbody td {
    color: #e7eef7;
    font-size: 15px;
    line-height: 1.45;
}

.newlook-ui .newlook-report-table tbody tr:hover {
    background: rgba(15, 86, 159, 0.16);
}

.newlook-ui .newlook-report-table th:last-child,
.newlook-ui .newlook-report-table td:last-child {
    width: 130px;
    text-align: center;
}

.newlook-ui .newlook-report-table tfoot th,
.newlook-ui .newlook-report-table tfoot td {
    padding-top: 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    background: rgba(8, 66, 131, 0.23);
    border-bottom: none;
}

.newlook-ui .newlook-report-table tfoot th {
    text-align: right;
}

.newlook-ui .newlook-report-table tfoot td {
    color: #22a6ff;
    font-size: 20px;
}

.newlook-ui .newlook-report-empty {
    padding: 40px 20px !important;
    color: #aebccc !important;
    text-align: center !important;
}


/* ==========================================================
   Provider Information
   ========================================================== */

.newlook-ui .newlook-report-provider-info {
    margin: 22px 32px 0;
    padding: 24px 26px;
    color: #becada;
    background: rgba(4, 23, 48, 0.58);
    border: 1px solid rgba(91, 149, 207, 0.3);
    border-radius: 10px;
}

.newlook-ui .newlook-report-provider-info h3 {
    margin: 0 0 15px;
    color: #159cff;
    font-size: 19px;
}

.newlook-ui .newlook-report-provider-info p {
    margin: 0 0 13px;
    font-size: 14px;
    line-height: 1.65;
}

.newlook-ui .newlook-report-provider-info p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   Signature Area
   ========================================================== */

.newlook-ui .newlook-report-signatures {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    padding: 42px 50px 46px;
}

.newlook-ui .newlook-report-signature {
    color: #c4cfdd;
    font-size: 14px;
    line-height: 1.55;
}

.newlook-ui .newlook-signature-name,
.newlook-ui .newlook-signature-line {
    min-height: 42px;
    margin: 0 0 10px;
    padding-bottom: 7px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-style: italic;
    border-bottom: 1px solid rgba(214, 227, 240, 0.65);
}

.newlook-ui .newlook-report-signature > p:not(
    .newlook-signature-name,
    .newlook-signature-line
) {
    margin: 0;
}

.newlook-ui .newlook-report-signature small {
    display: block;
    margin-top: 5px;
    color: #8697aa;
    font-size: 12px;
}


/* ==========================================================
   Report Responsive Layout
   ========================================================== */

@media (max-width: 1050px) {
    .newlook-ui.newlook-completed-report-page .newlook-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .newlook-ui .newlook-report-content {
        padding-right: 28px;
        padding-left: 28px;
    }

    .newlook-ui .newlook-report-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .newlook-ui.newlook-completed-report-page .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-report-sidebar {
        min-height: auto;
    }

    .newlook-ui .newlook-report-sidebar .newlook-account-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .newlook-ui .newlook-report-content {
        padding: 28px 16px;
    }

    .newlook-ui .newlook-report-page-header {
        display: block;
    }

    .newlook-ui .newlook-report-header-print {
        width: 100%;
        margin-top: 22px;
    }

    .newlook-ui .newlook-report-sidebar .newlook-account-nav {
    grid-template-columns: 1fr;
}

    .newlook-ui .newlook-report-document-header {
        align-items: flex-start;
        padding: 22px;
    }

    .newlook-ui .newlook-report-document-header img {
        width: 82px;
    }

    .newlook-ui .newlook-report-document-header h2 {
        font-size: 22px;
    }

    .newlook-ui .newlook-report-table-wrap {
        padding: 22px 18px 8px;
    }

    .newlook-ui .newlook-report-provider-info {
        margin-right: 18px;
        margin-left: 18px;
    }

    .newlook-ui .newlook-report-signatures {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 34px 24px 38px;
    }
}


/* ==========================================================
   Printable Report
   ========================================================== */

@media print {
    .newlook-ui {
        color: #000000 !important;
        background: #ffffff !important;
    }

    .newlook-ui .newlook-report-sidebar,
    .newlook-ui .newlook-report-page-header,
    .newlook-ui .newlook-report-summary-grid,
    .newlook-ui footer {
        display: none !important;
    }

    .newlook-ui.newlook-completed-report-page .newlook-shell {
        display: block;
    }

    .newlook-ui .newlook-report-content {
        width: 100%;
        padding: 0;
    }

    .newlook-ui .newlook-report-document {
        color: #000000;
        background: #ffffff;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .newlook-ui .newlook-report-document-header {
        color: #000000;
        background: #ffffff;
        border-bottom: 2px solid #000000;
    }

    .newlook-ui .newlook-report-document-header img {
        filter: invert(1);
    }

    .newlook-ui .newlook-report-document-header p,
    .newlook-ui .newlook-report-document-header h2,
    .newlook-ui .newlook-report-table th,
    .newlook-ui .newlook-report-table td,
    .newlook-ui .newlook-report-provider-info,
    .newlook-ui .newlook-report-provider-info h3,
    .newlook-ui .newlook-report-signature,
    .newlook-ui .newlook-signature-name,
    .newlook-ui .newlook-signature-line {
        color: #000000 !important;
    }

    .newlook-ui .newlook-report-table thead th,
    .newlook-ui .newlook-report-table tfoot th,
    .newlook-ui .newlook-report-table tfoot td {
        background: #eeeeee !important;
    }

    .newlook-ui .newlook-report-table th,
    .newlook-ui .newlook-report-table td {
        border-color: #cccccc;
    }

    .newlook-ui .newlook-report-provider-info {
        background: #ffffff;
        border-color: #aaaaaa;
    }

    .newlook-ui .newlook-report-signatures {
        page-break-inside: avoid;
    }
}
/* ==========================================================
   Document Library
   ========================================================== */

.newlook-ui.newlook-document-library-page .newlook-shell {
    grid-template-columns: 285px minmax(0, 1fr);
}

.newlook-ui .newlook-document-content {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 52px 48px 70px;
}


/* ==========================================================
   Document Library Sidebar
   ========================================================== */

.newlook-ui .newlook-document-sidebar {
    padding-right: 18px;
    padding-left: 18px;
}

.newlook-ui .newlook-document-sidebar .newlook-sidebar-logo {
    width: 195px;
    margin-bottom: 18px;
}

.newlook-ui .newlook-document-sidebar .newlook-account-nav {
    padding-top: 28px;
}

.newlook-ui
.newlook-document-sidebar
.newlook-account-nav-link.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            rgba(7, 73, 150, 0.88),
            rgba(4, 34, 81, 0.92)
        );
    border-color: #159cff;
    box-shadow:
        0 0 20px rgba(0, 132, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


/* ==========================================================
   Document Library Page Header
   ========================================================== */

.newlook-ui .newlook-document-page-header {
    margin-bottom: 30px;
}

.newlook-ui .newlook-document-page-header .newlook-eyebrow {
    margin: 0 0 12px;
    color: #179bff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-document-page-header h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.08;
}

.newlook-ui .newlook-document-page-header > p:last-child {
    max-width: 760px;
    margin: 0;
    color: #aab8c9;
    font-size: 18px;
    line-height: 1.55;
}


/* ==========================================================
   Shared Document Library Cards
   ========================================================== */

.newlook-ui .newlook-document-intro-card,
.newlook-ui .newlook-document-upload-card,
.newlook-ui .newlook-document-library-card {
    margin-bottom: 24px;
    padding: 28px 30px;
    background:
        linear-gradient(
            145deg,
            rgba(5, 27, 57, 0.96),
            rgba(2, 16, 36, 0.94)
        );
    border: 1px solid rgba(84, 146, 209, 0.45);
    border-radius: 14px;
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}


/* ==========================================================
   Document Introduction
   ========================================================== */

.newlook-ui .newlook-document-intro-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.newlook-ui .newlook-document-intro-icon {
    display: grid;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    place-items: center;
    color: #159cff;
    font-size: 31px;
    background: rgba(12, 90, 180, 0.2);
    border: 2px solid #159cff;
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(21, 156, 255, 0.17);
}

.newlook-ui .newlook-document-intro-card h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.3;
}

.newlook-ui .newlook-document-intro-card p {
    margin: 0 0 11px;
    color: #b5c2d1;
    font-size: 15px;
    line-height: 1.65;
}

.newlook-ui .newlook-document-intro-card p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   Upload Response Message
   ========================================================== */

.newlook-ui .newlook-document-response {
    margin-bottom: 24px;
}

.newlook-ui .newlook-document-response p {
    overflow-wrap: anywhere;
}


/* ==========================================================
   Document Card Headers
   ========================================================== */

.newlook-ui .newlook-document-card-header {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(103, 151, 199, 0.25);
}

.newlook-ui .newlook-document-card-header .newlook-card-label {
    margin: 0 0 8px;
    color: #159cff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newlook-ui .newlook-document-card-header h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.25;
}

.newlook-ui .newlook-document-card-header p {
    margin: 0;
    color: #aab8c9;
    font-size: 15px;
    line-height: 1.5;
}

.newlook-ui .newlook-document-header-icon {
    display: grid;
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    place-items: center;
    color: #159cff;
    font-size: 30px;
    background: rgba(12, 90, 180, 0.2);
    border: 2px solid #159cff;
    border-radius: 50%;
}


/* ==========================================================
   Upload Form
   ========================================================== */

.newlook-ui .newlook-document-upload-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 20px;
    align-items: stretch;
    padding-top: 26px;
}

.newlook-ui .newlook-document-file-picker {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: center;
    min-height: 104px;
    padding: 20px 22px;
    color: #ffffff;
    background: rgba(4, 24, 50, 0.72);
    border: 2px dashed rgba(61, 151, 240, 0.56);
    border-radius: 11px;
    cursor: pointer;
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease;
}

.newlook-ui .newlook-document-file-picker:hover {
    background: rgba(7, 48, 94, 0.64);
    border-color: #159cff;
    box-shadow: 0 0 24px rgba(21, 156, 255, 0.12);
}

.newlook-ui .newlook-document-file-picker > i {
    grid-row: 1 / 3;
    color: #159cff;
    font-size: 38px;
    text-align: center;
}

.newlook-ui .newlook-document-file-picker > span {
    align-self: end;
    font-size: 17px;
    font-weight: 700;
}

.newlook-ui .newlook-document-file-picker > small {
    align-self: start;
    color: #899aad;
    font-size: 13px;
}

.newlook-ui .newlook-document-file-picker input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.newlook-ui .newlook-document-upload-button {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 104px;
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    background:
        linear-gradient(
            180deg,
            #147cf0 0%,
            #0750bd 100%
        );
    border: 1px solid #2597ff;
    border-radius: 11px;
    cursor: pointer;
    box-shadow:
        0 12px 30px rgba(0, 91, 205, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        filter 160ms ease;
}

.newlook-ui .newlook-document-upload-button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow:
        0 16px 35px rgba(0, 91, 205, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.newlook-ui .newlook-document-upload-button i {
    font-size: 21px;
}


/* ==========================================================
   Document Count
   ========================================================== */

.newlook-ui .newlook-document-count {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    align-items: center;
    min-width: 145px;
    padding: 13px 18px;
    background: rgba(6, 46, 91, 0.48);
    border: 1px solid rgba(52, 143, 233, 0.45);
    border-radius: 9px;
}

.newlook-ui .newlook-document-count strong {
    color: #159cff;
    font-size: 28px;
    line-height: 1;
}

.newlook-ui .newlook-document-count span {
    color: #c4d0dd;
    font-size: 14px;
}


/* ==========================================================
   Document Table
   ========================================================== */

.newlook-ui .newlook-document-table-wrap {
    overflow-x: auto;
    padding-top: 26px;
}

.newlook-ui .newlook-document-table {
    width: 100%;
    min-width: 660px;
    border-collapse: collapse;
}

.newlook-ui .newlook-document-table th,
.newlook-ui .newlook-document-table td {
    padding: 17px 18px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(104, 151, 198, 0.23);
}

.newlook-ui .newlook-document-table thead th {
    color: #159cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(6, 46, 91, 0.34);
    border-top: 1px solid rgba(104, 151, 198, 0.25);
}

.newlook-ui .newlook-document-table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.newlook-ui .newlook-document-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.newlook-ui .newlook-document-table tbody td {
    color: #dfe8f2;
    font-size: 15px;
    line-height: 1.45;
}

.newlook-ui .newlook-document-table tbody tr:hover {
    background: rgba(15, 86, 159, 0.15);
}

.newlook-ui .newlook-document-table th:nth-child(2),
.newlook-ui .newlook-document-table td:nth-child(2) {
    width: 190px;
}

.newlook-ui .newlook-document-table th:last-child,
.newlook-ui .newlook-document-table td:last-child {
    width: 125px;
    text-align: center;
}


/* ==========================================================
   File Links and Actions
   ========================================================== */

.newlook-ui .newlook-document-file {
    display: flex;
    gap: 13px;
    align-items: center;
}

.newlook-ui .newlook-document-file > i {
    flex: 0 0 auto;
    color: #159cff;
    font-size: 23px;
}

.newlook-ui .newlook-document-file a {
    overflow-wrap: anywhere;
    color: #e8f2fc;
    font-weight: 600;
    text-decoration: none;
}

.newlook-ui .newlook-document-file a:hover {
    color: #159cff;
    text-decoration: underline;
}

.newlook-ui .newlook-document-delete,
.newlook-ui .newlook-document-protected {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.newlook-ui .newlook-document-delete {
    color: #ff7180;
    text-decoration: none;
}

.newlook-ui .newlook-document-delete:hover {
    color: #ff9ca6;
    text-decoration: underline;
}

.newlook-ui .newlook-document-protected {
    color: #8293a6;
}


/* ==========================================================
   Empty Library
   ========================================================== */

.newlook-ui .newlook-document-empty {
    padding: 55px 20px !important;
    color: #8293a6 !important;
    text-align: center !important;
}

.newlook-ui .newlook-document-empty > i {
    display: block;
    margin-bottom: 14px;
    color: #159cff;
    font-size: 42px;
}

.newlook-ui .newlook-document-empty strong {
    display: block;
    margin-bottom: 6px;
    color: #dfe8f2;
    font-size: 17px;
}

.newlook-ui .newlook-document-empty span {
    display: block;
    font-size: 14px;
}


/* ==========================================================
   Document Library Responsive Layout
   ========================================================== */

@media (max-width: 1050px) {
    .newlook-ui.newlook-document-library-page .newlook-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .newlook-ui .newlook-document-content {
        padding-right: 28px;
        padding-left: 28px;
    }

    .newlook-ui .newlook-document-upload-form {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-document-upload-button {
        min-height: 62px;
    }
}

@media (max-width: 900px) {
    .newlook-ui.newlook-document-library-page .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-document-sidebar {
        min-height: auto;
    }

    .newlook-ui
    .newlook-document-sidebar
    .newlook-account-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .newlook-ui .newlook-document-content {
        padding: 28px 16px 50px;
    }

    .newlook-ui
    .newlook-document-sidebar
    .newlook-account-nav {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-document-intro-card {
        display: block;
        padding: 24px 22px;
    }

    .newlook-ui .newlook-document-intro-icon {
        margin-bottom: 20px;
    }

    .newlook-ui .newlook-document-upload-card,
    .newlook-ui .newlook-document-library-card {
        padding: 24px 20px;
    }

    .newlook-ui .newlook-document-card-header {
        align-items: flex-start;
    }

    .newlook-ui .newlook-document-header-icon,
    .newlook-ui .newlook-document-count {
        display: none;
    }

    .newlook-ui .newlook-document-file-picker {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 18px;
    }

    .newlook-ui .newlook-document-file-picker > i {
        font-size: 31px;
    }
}
/* ==========================================================
   Document Library Hero
   ========================================================== */

.newlook-ui .newlook-document-content {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 420px);
    gap: 24px 30px;
    align-items: stretch;
}

.newlook-ui .newlook-document-page-header {
    grid-column: 1 / -1;
    margin-bottom: 6px;
}

.newlook-ui .newlook-document-hero {
    display: flex;
    grid-column: 2;
    grid-row: 2;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
}

.newlook-ui .newlook-document-hero img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
}

.newlook-ui .newlook-document-intro-card {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
}

.newlook-ui .newlook-document-response,
.newlook-ui .newlook-document-upload-card,
.newlook-ui .newlook-document-library-card {
    grid-column: 1 / -1;
}


/* Stack the hero on smaller screens */

@media (max-width: 1050px) {
    .newlook-ui .newlook-document-content {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-document-page-header,
    .newlook-ui .newlook-document-hero,
    .newlook-ui .newlook-document-intro-card,
    .newlook-ui .newlook-document-response,
    .newlook-ui .newlook-document-upload-card,
    .newlook-ui .newlook-document-library-card {
        grid-column: 1;
        grid-row: auto;
    }

    .newlook-ui .newlook-document-hero {
        max-height: 400px;
    }

    .newlook-ui .newlook-document-hero img {
        width: 75%;
        max-width: 520px;
    }
}

@media (max-width: 650px) {
    .newlook-ui .newlook-document-hero img {
        width: 100%;
    }
}
/* ==========================================================
   New Look Footer
   ========================================================== */

.newlook-ui .footer-container {
    clear: both;
    width: 100%;
    margin: 0;
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            #03152c 0%,
            #020d1f 100%
        );
    border-top: 1px solid rgba(84, 146, 209, 0.35);
}

.newlook-ui .footer-grid {
    color: #ffffff;
}

.newlook-ui .footer-container .footerItem,
.newlook-ui .footer-container .footerItem1,
.newlook-ui .footer-container .footerItem2,
.newlook-ui .footer-container .footerItem3,
.newlook-ui .footer-container .footerItem4 {
    color: #ffffff;
}

.newlook-ui .footer-container p,
.newlook-ui .footer-container li,
.newlook-ui .footer-container span {
    color: #ffffff;
}

.newlook-ui .footer-container .footerTitle {
    color: #ffffff;
    font-weight: 700;
}

.newlook-ui .footer-container a {
    color: #ffffff;
    text-decoration: none;
}

.newlook-ui .footer-container a:hover {
    color: #35a3ff;
    text-decoration: underline;
}

.newlook-ui .footer-container .footerList {
    color: #ffffff;
}

.newlook-ui .footer-container .footerList li {
    color: #ffffff;
}

.newlook-ui .footer-container .footerList a {
    color: #ffffff;
}

.newlook-ui .footerBottom {
    color: #ffffff;
    background: #010817;
    border-top: 1px solid rgba(84, 146, 209, 0.28);
}

.newlook-ui .footerBottom .footerText {
    color: #ffffff;
}

.newlook-ui .footerItem4 p,
.newlook-ui .footerItem4 a {
    color: #ffffff;
}
/* Force the main footer area to use the new dark background */

.newlook-ui footer.footer-container {
    background:
        linear-gradient(
            180deg,
            #03152c 0%,
            #020d1f 100%
        ) !important;
}

.newlook-ui footer.footer-container .footer-grid {
    background: transparent !important;
}

.newlook-ui footer.footer-container .footerItem,
.newlook-ui footer.footer-container .footerItem1,
.newlook-ui footer.footer-container .footerItem2,
.newlook-ui footer.footer-container .footerItem3,
.newlook-ui footer.footer-container .footerItem4 {
    color: #ffffff !important;
    background: transparent !important;
}

.newlook-ui footer.footer-container p,
.newlook-ui footer.footer-container li,
.newlook-ui footer.footer-container a,
.newlook-ui footer.footer-container .footerTitle {
    color: #ffffff !important;
}
/* ==========================================================
   UGPIV Audit Summary Page
   ========================================================== */

.newlook-ui.newlook-audit-summary-page .newlook-shell {
    grid-template-columns: 285px minmax(0, 1fr);
}

.newlook-ui .newlook-audit-content {
    display: grid;
    grid-template-columns:
        minmax(480px, 1fr)
        minmax(340px, 440px);
    gap: 30px 40px;
    align-items: center;
    width: min(100%, 1450px);
    margin: 0 auto;
    padding: 52px 48px 70px;
}


/* ==========================================================
   Audit Sidebar
   ========================================================== */

.newlook-ui .newlook-audit-sidebar {
    padding-right: 18px;
    padding-left: 18px;
}

.newlook-ui .newlook-audit-sidebar .newlook-sidebar-logo {
    width: 195px;
}

.newlook-ui .newlook-audit-sidebar .newlook-account-nav {
    padding-top: 28px;
}


/* ==========================================================
   Audit Introduction
   ========================================================== */

.newlook-ui .newlook-audit-intro {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.newlook-ui .newlook-audit-heading {
    margin-bottom: 26px;
}

.newlook-ui .newlook-audit-heading .newlook-eyebrow {
    margin: 0 0 12px;
    color: #179bff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-audit-heading h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.06;
}

.newlook-ui .newlook-audit-description {
    max-width: 760px;
    margin: 0 0 12px;
    color: #aebccc;
    font-size: 17px;
    line-height: 1.65;
}

.newlook-ui .newlook-audit-description:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   Audit Hero
   ========================================================== */

.newlook-ui .newlook-audit-hero {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
}

.newlook-ui .newlook-audit-hero img {
    display: block;
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
}


/* ==========================================================
   Audit Student Card
   ========================================================== */

.newlook-ui .newlook-audit-student-card {
    max-width: 700px;
    padding: 26px 28px;
    background:
        linear-gradient(
            145deg,
            rgba(5, 27, 57, 0.96),
            rgba(2, 16, 36, 0.94)
        );
    border: 1px solid rgba(84, 146, 209, 0.45);
    border-radius: 13px;
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui
.newlook-audit-student-card
.newlook-card-label {
    margin: 0 0 19px;
}

.newlook-ui .newlook-audit-student {
    display: flex;
    gap: 18px;
    align-items: center;
}

.newlook-ui .newlook-audit-student-icon {
    display: grid;
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    place-items: center;
    color: #159cff;
    font-size: 29px;
    background: rgba(10, 89, 177, 0.18);
    border: 2px solid #159cff;
    border-radius: 50%;
}

.newlook-ui .newlook-audit-student h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.3;
}

.newlook-ui .newlook-audit-student p {
    margin: 0;
    color: #aebccc;
    font-size: 15px;
}

.newlook-ui .newlook-audit-student strong {
    color: #ffffff;
    font-weight: 600;
}


/* The existing audit table section spans the full page width */

.newlook-ui .newlook-audit-content > .section {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
}


/* ==========================================================
   Audit Responsive Layout
   ========================================================== */

@media (max-width: 1100px) {
    .newlook-ui.newlook-audit-summary-page .newlook-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .newlook-ui .newlook-audit-content {
        grid-template-columns: 1fr;
        padding-right: 28px;
        padding-left: 28px;
    }

    .newlook-ui .newlook-audit-intro,
    .newlook-ui .newlook-audit-hero,
    .newlook-ui .newlook-audit-content > .section {
        grid-column: 1;
        grid-row: auto;
    }

    .newlook-ui .newlook-audit-hero {
        max-height: 420px;
    }

    .newlook-ui .newlook-audit-hero img {
        width: 72%;
        max-width: 520px;
    }
}

@media (max-width: 900px) {
    .newlook-ui.newlook-audit-summary-page .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-audit-sidebar {
        min-height: auto;
    }
}

@media (max-width: 650px) {
    .newlook-ui .newlook-audit-content {
        padding: 28px 16px 50px;
    }

    .newlook-ui .newlook-audit-hero img {
        width: 100%;
    }

    .newlook-ui .newlook-audit-student-card {
        padding: 23px 21px;
    }

    .newlook-ui .newlook-audit-student {
        align-items: flex-start;
    }

    .newlook-ui .newlook-audit-student-icon {
        flex-basis: 56px;
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}
/* ==========================================================
   Add UGPIV Audit Record Page
   ========================================================== */

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
) .newlook-shell {
    grid-template-columns: 285px minmax(0, 1fr);
}

.newlook-ui .newlook-add-audit-content {
    width: min(100%, 1450px);
    margin: 0 auto;
    padding: 52px 48px 70px;
}

.newlook-ui .newlook-add-audit-inner {
    width: 100%;
}


/* ==========================================================
   Add Audit Page Header
   ========================================================== */

.newlook-ui .newlook-add-audit-header {
    display: grid;
    grid-template-columns:
        minmax(480px, 1fr)
        minmax(340px, 440px);
    gap: 40px;
    align-items: center;
    margin-bottom: 34px;
}

.newlook-ui .newlook-add-audit-heading {
    min-width: 0;
}

.newlook-ui
.newlook-add-audit-heading
.newlook-eyebrow {
    margin: 0 0 12px;
    color: #179bff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-add-audit-heading > h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.06;
}

.newlook-ui
.newlook-add-audit-heading
> p:not(.newlook-eyebrow) {
    max-width: 720px;
    margin: 0 0 26px;
    color: #aebccc;
    font-size: 17px;
    line-height: 1.65;
}


/* ==========================================================
   Add Audit Hero
   ========================================================== */

.newlook-ui .newlook-add-audit-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
}

.newlook-ui .newlook-add-audit-hero img {
    display: block;
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
}


/* ==========================================================
   Student Card Adjustment
   ========================================================== */

.newlook-ui
.newlook-add-audit-heading
.newlook-audit-student-card {
    max-width: 700px;
    margin: 0;
}


/* ==========================================================
   Existing Form Section Reset
   ========================================================== */

.newlook-ui .newlook-add-audit-content .section {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    clear: both;
}


/* ==========================================================
   Add Audit Responsive Layout
   ========================================================== */

@media (max-width: 1100px) {
    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
) .newlook-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .newlook-ui .newlook-add-audit-content {
        padding-right: 28px;
        padding-left: 28px;
    }

    .newlook-ui .newlook-add-audit-header {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-add-audit-hero {
        max-height: 420px;
    }

    .newlook-ui .newlook-add-audit-hero img {
        width: 72%;
        max-width: 520px;
    }
}

@media (max-width: 900px) {
    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
) .newlook-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .newlook-ui .newlook-add-audit-content {
        padding: 28px 16px 50px;
    }

    .newlook-ui .newlook-add-audit-header {
        gap: 26px;
    }

    .newlook-ui .newlook-add-audit-hero img {
        width: 100%;
    }
}
/* ==========================================================
   Add Audit Record Form
   ========================================================== */

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-add-audit-form-section form {
    display: grid;
    gap: 26px;
}


/* ==========================================================
   Form Cards
   ========================================================== */

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
) .newlook-form-card {
    overflow: hidden;
    padding: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(5, 27, 57, 0.97),
            rgba(2, 16, 36, 0.96)
        );
    border: 1px solid rgba(84, 146, 209, 0.4);
    border-radius: 14px;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-card-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(112, 160, 207, 0.25);
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-card-header h2 {
    margin: 5px 0 8px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.25;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-card-header p:not(.newlook-card-label) {
    max-width: 720px;
    margin: 0;
    color: #aebccc;
    font-size: 15px;
    line-height: 1.55;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-card-header .newlook-card-label {
    margin: 0;
    color: #179bff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
) .newlook-form-step {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    background:
        linear-gradient(
            145deg,
            #137fd5,
            #0864ad
        );
    border: 1px solid rgba(127, 205, 255, 0.72);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0, 108, 194, 0.3);
}


/* ==========================================================
   Form Grids
   ========================================================== */

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
) .newlook-form-grid {
    display: grid;
    gap: 22px;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-audit-insertion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-audit-daily-grid {
    grid-template-columns: repeat(7, minmax(110px, 1fr));
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-audit-outcome-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field-wide {
    grid-column: 1 / -1;
}


/* ==========================================================
   Labels and Controls
   ========================================================== */

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
) .newlook-form-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field label {
    margin-bottom: 8px;
    color: #dbe8f5;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field input,
.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field select,
.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: #ffffff;
    font: inherit;
    background: rgba(0, 11, 27, 0.76);
    border: 1px solid rgba(108, 151, 194, 0.55);
    border-radius: 8px;
    outline: none;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field textarea {
    min-height: 112px;
    resize: vertical;
    line-height: 1.5;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field select {
    cursor: pointer;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field select option {
    color: #ffffff;
    background: #061a34;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field input::placeholder,
.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field textarea::placeholder {
    color: #72869c;
    opacity: 1;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field input:hover,
.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field select:hover,
.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field textarea:hover {
    border-color: rgba(63, 166, 239, 0.8);
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field input:focus,
.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field select:focus,
.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-field textarea:focus {
    background: rgba(2, 20, 43, 0.92);
    border-color: #189dff;
    box-shadow:
        0 0 0 3px rgba(24, 157, 255, 0.14),
        0 8px 22px rgba(0, 0, 0, 0.14);
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.newlook-form-help {
    margin-top: 7px;
    color: #8799ab;
    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================================
   Form Buttons
   ========================================================== */

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
) .button-row {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
    margin: 2px 0 0;
    padding: 24px 0 0;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.button-row .btn {
    min-width: 140px;
    min-height: 48px;
    padding: 11px 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    background:
        linear-gradient(
            145deg,
            #168bdc,
            #0869b8
        );
    border: 1px solid rgba(120, 205, 255, 0.72);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 103, 181, 0.25);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.button-row .btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 103, 181, 0.34);
}

.newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
.button-row .btn:last-child {
    color: #dbe8f5;
    background: rgba(7, 31, 61, 0.88);
    border-color: rgba(113, 153, 194, 0.52);
    box-shadow: none;
}


/* ==========================================================
   Form Responsive Layout
   ========================================================== */

@media (max-width: 1250px) {
    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .newlook-audit-insertion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .newlook-audit-daily-grid {
        grid-template-columns: repeat(4, minmax(110px, 1fr));
    }
}

@media (max-width: 800px) {
    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .newlook-audit-insertion-grid,
    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .newlook-audit-outcome-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .newlook-audit-daily-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .newlook-form-field-wide {
        grid-column: 1;
    }
}

@media (max-width: 520px) {
    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .newlook-form-card {
        padding: 22px 18px;
    }

    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .newlook-form-card-header {
        gap: 15px;
    }

    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .newlook-form-step {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .newlook-audit-daily-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .newlook-ui:is(
    .newlook-add-audit-page,
    .newlook-edit-audit-page
)
    .button-row .btn {
        width: 100%;
    }
}
/* Audit record edit link */

.newlook-ui .newlook-audit-room-link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    justify-content: space-between;
    min-width: 105px;
    padding: 7px 10px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(18, 120, 198, 0.18);
    border: 1px solid rgba(49, 163, 239, 0.55);
    border-radius: 7px;
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.newlook-ui .newlook-audit-room-link:hover {
    color: #ffffff;
    background: rgba(18, 120, 198, 0.38);
    border-color: #31a3ef;
    transform: translateY(-1px);
}

.newlook-ui .newlook-audit-room-number {
    font-weight: 700;
}

.newlook-ui .newlook-audit-edit-label {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    color: #69c4ff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.newlook-ui .newlook-audit-room-link:hover
.newlook-audit-edit-label {
    color: #ffffff;
}
/* Audit record deleted confirmation */

.newlook-ui .newlook-audit-delete-success {
    display: flex;
    grid-column: 1 / -1;
    gap: 12px;
    align-items: center;
    margin: 0 0 8px;
    padding: 15px 18px;
    color: #d9ffe8;
    font-size: 15px;
    font-weight: 600;
    background: rgba(22, 128, 76, 0.22);
    border: 1px solid rgba(64, 201, 126, 0.55);
    border-radius: 9px;
}

.newlook-ui .newlook-audit-delete-success i {
    color: #48d88b;
    font-size: 20px;
}
/* ==========================================================
   Edit Audit Record — Delete Button
   ========================================================== */

.newlook-ui.newlook-edit-audit-page
.newlook-audit-delete-form {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin: 22px 0 0;
}

.newlook-ui.newlook-edit-audit-page
.newlook-audit-delete-button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 170px;
    min-height: 48px;
    margin: 0;
    padding: 11px 22px;
    color: #ffdce1;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    background:
        linear-gradient(
            145deg,
            rgba(112, 20, 38, 0.55),
            rgba(68, 12, 27, 0.68)
        );
    border: 1px solid rgba(255, 94, 116, 0.72);
    border-radius: 8px;
    appearance: none;
    cursor: pointer;
    box-shadow:
        0 10px 24px rgba(83, 7, 25, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.newlook-ui.newlook-edit-audit-page
.newlook-audit-delete-button i {
    color: #ff7184;
    font-size: 16px;
}

.newlook-ui.newlook-edit-audit-page
.newlook-audit-delete-button:hover {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            rgba(168, 30, 55, 0.78),
            rgba(102, 15, 35, 0.88)
        );
    border-color: #ff7184;
    box-shadow:
        0 13px 28px rgba(112, 8, 31, 0.32),
        0 0 0 3px rgba(255, 83, 108, 0.08);
    transform: translateY(-1px);
}

.newlook-ui.newlook-edit-audit-page
.newlook-audit-delete-button:hover i {
    color: #ffffff;
}

.newlook-ui.newlook-edit-audit-page
.newlook-audit-delete-button:focus-visible {
    outline: 3px solid rgba(255, 92, 116, 0.34);
    outline-offset: 3px;
}

@media (max-width: 520px) {
    .newlook-ui.newlook-edit-audit-page
    .newlook-audit-delete-form {
        justify-content: stretch;
    }

    .newlook-ui.newlook-edit-audit-page
    .newlook-audit-delete-button {
        width: 100%;
    }
}
/* ==========================================================
   Courses in Account Page
   ========================================================== */

.newlook-ui.newlook-courses-account-page .newlook-shell {
    grid-template-columns: 285px minmax(0, 1fr);
}

.newlook-ui .newlook-courses-content {
    width: min(100%, 1380px);
    margin: 0 auto;
    padding: 52px 48px 70px;
}

.newlook-ui .newlook-courses-inner {
    width: 100%;
    min-width: 0;
}


/* ==========================================================
   Courses Sidebar
   ========================================================== */

.newlook-ui .newlook-courses-sidebar {
    padding-right: 18px;
    padding-left: 18px;
}

.newlook-ui
.newlook-courses-sidebar
.newlook-sidebar-logo {
    width: 195px;
}


/* ==========================================================
   Page Header
   ========================================================== */

.newlook-ui .newlook-courses-page-header {
    display: grid;
    grid-template-columns:
        minmax(480px, 1fr)
        minmax(340px, 440px);
    gap: 40px;
    align-items: center;
    margin-bottom: 34px;
}

.newlook-ui .newlook-courses-heading {
    min-width: 0;
}

.newlook-ui .newlook-courses-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
}

.newlook-ui .newlook-courses-hero img {
    display: block;
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
}

.newlook-ui
.newlook-courses-page-header
.newlook-eyebrow {
    margin: 0 0 12px;
    color: #179bff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-courses-page-header h1 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.06;
}

.newlook-ui .newlook-courses-intro {
    max-width: 820px;
    margin: 0;
    color: #aebccc;
    font-size: 18px;
    line-height: 1.6;
}


/* ==========================================================
   Page Notices
   ========================================================== */

.newlook-ui .newlook-courses-notice {
    width: 100%;
    margin: 0 0 24px;
}

.newlook-ui
.newlook-courses-notice
a {
    color: #65bdff;
}

.newlook-ui
.newlook-courses-notice
a:hover {
    color: #ffffff;
}


/* ==========================================================
   Student Information Card
   ========================================================== */

.newlook-ui .newlook-courses-student-card {
    margin-bottom: 26px;
    padding: 25px 28px;
    background:
        linear-gradient(
            145deg,
            rgba(5, 27, 57, 0.97),
            rgba(2, 16, 36, 0.95)
        );
    border: 1px solid rgba(84, 146, 209, 0.44);
    border-radius: 13px;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui
.newlook-courses-student-card
.newlook-card-label {
    margin-bottom: 19px;
}

.newlook-ui .newlook-courses-student {
    display: flex;
    gap: 19px;
    align-items: center;
}

.newlook-ui .newlook-courses-student-icon {
    display: grid;
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    place-items: center;
    color: #159cff;
    font-size: 29px;
    background: rgba(10, 89, 177, 0.18);
    border: 2px solid #159cff;
    border-radius: 50%;
}

.newlook-ui .newlook-courses-student-details {
    min-width: 0;
}

.newlook-ui .newlook-courses-student-details h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.3;
}

.newlook-ui .newlook-courses-student-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: #aebccc;
    font-size: 14px;
}

.newlook-ui .newlook-courses-student-meta span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.newlook-ui .newlook-courses-student-meta i {
    color: #2aa5ff;
}

.newlook-ui .newlook-courses-student-meta strong {
    color: #ffffff;
    font-weight: 600;
}


/* ==========================================================
   Completed Courses Card
   ========================================================== */

.newlook-ui .newlook-courses-list-card {
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 27, 57, 0.98),
            rgba(2, 16, 36, 0.97)
        );
    border: 1px solid rgba(84, 146, 209, 0.42);
    border-radius: 14px;
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-courses-list-header {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px;
    border-bottom: 1px solid rgba(112, 160, 207, 0.25);
}

.newlook-ui
.newlook-courses-list-header
.newlook-card-label {
    margin: 0 0 7px;
}

.newlook-ui .newlook-courses-list-header h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.25;
}

.newlook-ui
.newlook-courses-list-header
p:not(.newlook-card-label) {
    margin: 0;
    color: #aebccc;
    font-size: 15px;
    line-height: 1.5;
}


/* ==========================================================
   Course Count
   ========================================================== */

.newlook-ui .newlook-courses-count {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    align-items: baseline;
    min-width: 125px;
    padding: 15px 18px;
    background: rgba(8, 67, 133, 0.25);
    border: 1px solid rgba(45, 156, 239, 0.45);
    border-radius: 9px;
}

.newlook-ui .newlook-courses-count strong {
    color: #ffffff;
    font-size: 31px;
    line-height: 1;
}

.newlook-ui .newlook-courses-count span {
    color: #8fcfff;
    font-size: 14px;
    font-weight: 700;
}


/* ==========================================================
   Courses Table
   ========================================================== */

.newlook-ui .newlook-courses-table-wrap {
    overflow-x: auto;
    width: 100%;
}

.newlook-ui .newlook-courses-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.newlook-ui .newlook-courses-table th {
    padding: 16px 22px;
    color: #7fc9ff;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(2, 13, 31, 0.64);
    border-bottom: 1px solid rgba(93, 147, 200, 0.32);
}

.newlook-ui .newlook-courses-table th:nth-child(2) {
    width: 220px;
}

.newlook-ui .newlook-courses-table th:nth-child(3) {
    width: 210px;
}

.newlook-ui .newlook-courses-table td {
    padding: 19px 22px;
    color: #dce6f1;
    vertical-align: middle;
    border-bottom: 1px solid rgba(91, 139, 187, 0.2);
}

.newlook-ui .newlook-courses-table tbody tr:last-child td {
    border-bottom: 0;
}

.newlook-ui .newlook-courses-table tbody tr {
    transition: background-color 0.18s ease;
}

.newlook-ui .newlook-courses-table tbody tr:hover {
    background: rgba(11, 75, 143, 0.16);
}


/* ==========================================================
   Course Name
   ========================================================== */

.newlook-ui .newlook-course-name {
    display: flex;
    gap: 16px;
    align-items: center;
}

.newlook-ui .newlook-course-icon {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #169dff;
    font-size: 21px;
    background: rgba(12, 102, 183, 0.18);
    border: 1px solid rgba(44, 161, 239, 0.52);
    border-radius: 9px;
}

.newlook-ui .newlook-course-name a,
.newlook-ui .newlook-course-name > div > span {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.newlook-ui .newlook-course-name a:hover {
    color: #59b9ff;
    text-decoration: underline;
}

.newlook-ui .newlook-course-name small {
    display: block;
    margin-top: 5px;
    color: #ff9b9b;
    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================================
   Completion Date
   ========================================================== */

.newlook-ui .newlook-course-date {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: #b9c8d8;
    font-size: 14px;
    white-space: nowrap;
}

.newlook-ui .newlook-course-date i {
    color: #35adff;
    font-size: 17px;
}


/* ==========================================================
   Certificate Button
   ========================================================== */

.newlook-ui .newlook-certificate-button {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 15px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    background:
        linear-gradient(
            145deg,
            #147fd0,
            #0860a6
        );
    border: 1px solid rgba(99, 193, 255, 0.68);
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(0, 96, 170, 0.2);
    transition:
        filter 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.newlook-ui .newlook-certificate-button:hover {
    color: #ffffff;
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 11px 24px rgba(0, 96, 170, 0.3);
}


/* ==========================================================
   Empty State
   ========================================================== */

.newlook-ui .newlook-courses-empty {
    padding: 52px 24px !important;
    text-align: center;
}

.newlook-ui .newlook-courses-empty i {
    display: block;
    margin-bottom: 14px;
    color: #179bff;
    font-size: 38px;
}

.newlook-ui .newlook-courses-empty strong,
.newlook-ui .newlook-courses-empty span {
    display: block;
}

.newlook-ui .newlook-courses-empty strong {
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 18px;
}

.newlook-ui .newlook-courses-empty span {
    color: #91a3b7;
    font-size: 14px;
}


/* ==========================================================
   Responsive Courses Layout
   ========================================================== */

@media (max-width: 1100px) {
    .newlook-ui.newlook-courses-account-page .newlook-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .newlook-ui .newlook-courses-content {
        padding-right: 28px;
        padding-left: 28px;
    }
}

@media (max-width: 900px) {
    .newlook-ui.newlook-courses-account-page .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-courses-sidebar {
        min-height: auto;
    }
}

@media (max-width: 650px) {
    .newlook-ui .newlook-courses-content {
        padding: 28px 16px 50px;
    }

    .newlook-ui .newlook-courses-list-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .newlook-ui .newlook-courses-count {
        min-width: 0;
    }

    .newlook-ui .newlook-courses-student {
        align-items: flex-start;
    }

    .newlook-ui .newlook-courses-student-meta {
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 1100px) {
    .newlook-ui .newlook-courses-page-header {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-courses-hero {
        max-height: 420px;
    }

    .newlook-ui .newlook-courses-hero img {
        width: 72%;
        max-width: 520px;
    }
}

@media (max-width: 650px) {
    .newlook-ui .newlook-courses-page-header {
        gap: 26px;
    }

    .newlook-ui .newlook-courses-hero img {
        width: 100%;
    }
}
/* ==========================================================
   Started Courses — Launch Controls
   ========================================================== */

.newlook-ui .newlook-course-launch-button {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    min-height: 42px;
    padding: 9px 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    background:
        linear-gradient(
            145deg,
            #1487dc,
            #0864ad
        );
    border: 1px solid rgba(100, 196, 255, 0.72);
    border-radius: 7px;
    cursor: pointer;
    box-shadow:
        0 8px 20px rgba(0, 96, 170, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
        filter 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.newlook-ui .newlook-course-launch-button:hover {
    color: #ffffff;
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow:
        0 11px 25px rgba(0, 96, 170, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.newlook-ui .newlook-course-launch-button i {
    font-size: 13px;
}


/* Disabled course control */

.newlook-ui .newlook-course-launch-button.is-disabled {
    color: #8e9bac;
    background: rgba(35, 48, 65, 0.62);
    border-color: rgba(119, 137, 156, 0.38);
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.newlook-ui .newlook-course-launch-button.is-disabled i {
    color: #76869a;
}


/* Started-course table sizing */

.newlook-ui
.newlook-started-courses-table
th:nth-child(2) {
    width: 220px;
}

.newlook-ui
.newlook-started-courses-table
th:nth-child(3) {
    width: 205px;
}


/* Mobile adjustment */

@media (max-width: 650px) {
    .newlook-ui .newlook-course-launch-button {
        min-width: 150px;
    }
}
/* ==========================================================
   Available Courses — Status and CE Columns
   ========================================================== */

.newlook-ui .newlook-course-status-badge {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    color: #8fd0ff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    background: rgba(18, 108, 177, 0.18);
    border: 1px solid rgba(59, 166, 239, 0.48);
    border-radius: 20px;
}

.newlook-ui .newlook-course-status-badge i {
    font-size: 12px;
}


/* Course already assigned */

.newlook-ui .newlook-course-status-badge.is-assigned {
    color: #75e6b0;
    background: rgba(17, 135, 83, 0.18);
    border-color: rgba(64, 207, 135, 0.52);
}

.newlook-ui
.newlook-course-status-badge.is-assigned i {
    color: #43d995;
}


/* Continuing-education credits */

.newlook-ui .newlook-course-ce {
    display: inline-flex;
    gap: 5px;
    align-items: baseline;
    color: #aebccc;
    font-size: 13px;
    white-space: nowrap;
}

.newlook-ui .newlook-course-ce strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}

.newlook-ui .newlook-course-ce span {
    color: #7fc9ff;
    font-weight: 700;
}


/* Available-course table sizing */

.newlook-ui
.newlook-available-courses-table
th:nth-child(2) {
    width: 190px;
}

.newlook-ui
.newlook-available-courses-table
th:nth-child(3) {
    width: 90px;
}

.newlook-ui
.newlook-available-courses-table
th:nth-child(4) {
    width: 190px;
}


/* Keep status and action columns aligned */

.newlook-ui
.newlook-available-courses-table
td:nth-child(2),
.newlook-ui
.newlook-available-courses-table
td:nth-child(3),
.newlook-ui
.newlook-available-courses-table
td:nth-child(4) {
    vertical-align: middle;
}


/* Mobile adjustments */

@media (max-width: 650px) {
    .newlook-ui .newlook-course-status-badge {
        white-space: normal;
    }
}
/* ==========================================================================
   CREATE ACCOUNT PORTAL
   ========================================================================== */

.newlook-create-account-page {
    --create-navy: #03172d;
    --create-navy-deep: #001126;
    --create-panel: rgba(3, 29, 57, 0.88);
    --create-border: rgba(54, 151, 226, 0.48);
    --create-blue: #2f91ff;
    --create-blue-bright: #29adff;
    --create-green: #15c987;
    --create-text: #f5f9ff;
    --create-muted: #b9c7d7;

    min-height: 100vh;
    margin: 0;
    color: var(--create-text);
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;
    background:
        radial-gradient(
            circle at 73% 34%,
            rgba(0, 83, 184, 0.22),
            transparent 33%
        ),
        linear-gradient(
            135deg,
            #001126 0%,
            #03172d 54%,
            #001329 100%
        );
}

.newlook-create-account-page *,
.newlook-create-account-page *::before,
.newlook-create-account-page *::after {
    box-sizing: border-box;
}

.create-account-shell {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    min-height: 100vh;
}


/* LEFT SIDEBAR */

.create-account-sidebar {
    display: flex;
    position: sticky;
    z-index: 20;
    top: 0;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding: 25px 18px 24px;
    background:
        linear-gradient(
            180deg,
            rgba(3, 28, 54, 0.99),
            rgba(0, 18, 36, 0.99)
        );
    border-right: 1px solid rgba(71, 140, 199, 0.36);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.18);
}

.create-account-brand {
    display: block;
    padding: 0 12px 29px;
    color: #41afff;
    text-decoration: none;
    border-bottom: 1px solid rgba(102, 148, 188, 0.28);
}

.create-account-brand img {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
    object-fit: contain;
}

.create-account-brand span {
    display: block;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.42;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.create-account-navigation {
    display: grid;
    gap: 14px;
    margin-top: 29px;
}

.create-account-navigation__item {
    display: flex;
    min-height: 60px;
    padding: 14px 20px;
    color: #edf6ff;
    align-items: center;
    gap: 17px;
    font-size: 17px;
    font-weight: 650;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 8px;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        transform 160ms ease;
}

.create-account-navigation__item svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.create-account-navigation__item:hover,
.create-account-navigation__item:focus-visible {
    color: #ffffff;
    background: rgba(30, 119, 224, 0.18);
    border-color: rgba(56, 158, 255, 0.5);
    outline: none;
    transform: translateX(3px);
}

.create-account-navigation__item.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            rgba(17, 94, 194, 0.96),
            rgba(7, 64, 153, 0.96)
        );
    border-color: #249dff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 28px rgba(0, 79, 178, 0.24);
}

.create-account-security {
    display: flex;
    padding: 25px 14px 0;
    color: var(--create-muted);
    gap: 13px;
    border-top: 1px solid rgba(102, 148, 188, 0.28);
}

.create-account-security svg {
    flex: 0 0 auto;
    width: 29px;
    height: 29px;
    fill: none;
    color: #29adff;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.create-account-security strong {
    display: block;
    margin-bottom: 7px;
    color: #30afff;
    font-size: 15px;
}

.create-account-security p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}


/* MAIN AREA */

.create-account-main {
    display: flex;
    min-width: 0;
    min-height: 100vh;
    padding: 22px 42px 25px;
    flex-direction: column;
}

.create-account-topbar {
    display: flex;
    position: relative;
    z-index: 5;
    min-height: 66px;
    align-items: flex-start;
    justify-content: space-between;
}

.create-account-status {
    display: flex;
    min-width: 210px;
    padding: 13px 20px;
    align-items: center;
    gap: 13px;
    background: rgba(3, 25, 49, 0.72);
    border: 1px solid rgba(62, 148, 218, 0.44);
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

.create-account-status > span {
    width: 17px;
    height: 17px;
    background: var(--create-green);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(21, 201, 135, 0.58);
}

.create-account-status strong,
.create-account-status small {
    display: block;
}

.create-account-status strong {
    color: #ffffff;
    font-size: 14px;
}

.create-account-status small {
    margin-top: 3px;
    color: var(--create-muted);
    font-size: 12px;
}


/* MAIN STAGE */

.create-account-stage {
    position: relative;
    flex: 1 0 auto;
    min-height: 650px;
}

.create-account-stage__visual {
    position: absolute;
    z-index: 0;
    top: 25px;
    right: -42px;
    width: min(58%, 720px);
    height: 630px;
    pointer-events: none;
    background-image:
        linear-gradient(
            90deg,
            #03172d 0%,
            rgba(3, 23, 45, 0.35) 25%,
            transparent 58%
        ),
        var(--create-account-visual);
    background-repeat: no-repeat;
    background-position:
        center,
        right center;
    background-size:
        cover,
        contain;
    opacity: 0.96;
}

.create-account-content {
    position: relative;
    z-index: 2;
    width: min(670px, 100%);
}

.create-account-alert {
    margin-bottom: 20px;
    padding: 15px 18px;
    color: #ffffff;
    background: rgba(171, 42, 42, 0.28);
    border: 1px solid rgba(255, 112, 112, 0.65);
    border-radius: 8px;
}

.create-account-heading {
    margin-bottom: 36px;
}

.create-account-eyebrow {
    display: block;
    margin-bottom: 13px;
    color: #35a8ff;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.create-account-heading h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(37px, 4vw, 49px);
    font-weight: 720;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.create-account-heading__line {
    width: 59px;
    height: 4px;
    margin: 23px 0 22px;
    background: linear-gradient(
        90deg,
        #1d8eff,
        #3db2ff
    );
    border-radius: 10px;
}

.create-account-heading p {
    max-width: 600px;
    margin: 0;
    color: #edf4fb;
    font-size: 17px;
    line-height: 1.6;
}


/* ACCOUNT CARDS */

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

.create-account-card {
    display: flex;
    min-height: 430px;
    padding: 28px 23px 20px;
    flex-direction: column;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            rgba(3, 34, 66, 0.94),
            rgba(1, 25, 50, 0.95)
        );
    border: 1px solid rgba(38, 141, 234, 0.76);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(11px);
}

.create-account-card--individual {
    background:
        linear-gradient(
            180deg,
            rgba(2, 53, 64, 0.94),
            rgba(0, 32, 45, 0.96)
        );
    border-color: rgba(13, 168, 130, 0.7);
}

.create-account-card__icon {
    display: grid;
    width: 95px;
    height: 95px;
    margin: 0 auto 18px;
    color: #ffffff;
    place-items: center;
    background:
        radial-gradient(
            circle at 35% 27%,
            #3f9cff,
            #0750c7 55%,
            #00296b 100%
        );
    border: 1px solid #248cff;
    border-radius: 50%;
    box-shadow:
        inset 0 3px 10px rgba(255, 255, 255, 0.16),
        0 10px 25px rgba(0, 86, 209, 0.32);
}

.create-account-card--individual
.create-account-card__icon {
    background:
        radial-gradient(
            circle at 35% 27%,
            #35bd8d,
            #006b50 58%,
            #00352d 100%
        );
    border-color: #1ac98f;
    box-shadow:
        inset 0 3px 10px rgba(255, 255, 255, 0.14),
        0 10px 25px rgba(0, 139, 95, 0.28);
}

.create-account-card__icon svg {
    width: 52px;
    height: 52px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.create-account-card h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2;
}

.create-account-card__summary {
    min-height: 53px;
    margin: 0;
    color: #e8f0f8;
    font-size: 16px;
    line-height: 1.5;
}

.create-account-card__details {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    margin-top: 19px;
    padding-top: 18px;
    text-align: left;
    gap: 13px;
    border-top: 1px solid rgba(63, 145, 218, 0.38);
}

.create-account-card--individual
.create-account-card__details {
    border-top-color: rgba(24, 176, 135, 0.36);
}

.create-account-card__details svg {
    width: 31px;
    height: 31px;
    fill: none;
    color: #3198ff;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.create-account-card--individual
.create-account-card__details svg {
    color: #1ac98f;
}

.create-account-card__details p {
    margin: 0;
    color: #f0f5fa;
    font-size: 15px;
    line-height: 1.55;
}

.create-account-button {
    display: flex;
    min-height: 55px;
    margin-top: auto;
    padding: 13px 17px;
    color: #ffffff;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background:
        linear-gradient(
            180deg,
            #176add,
            #0642ad
        );
    border: 1px solid #278fff;
    border-radius: 9px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        0 10px 24px rgba(0, 69, 173, 0.28);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        filter 160ms ease;
}

.create-account-button--individual {
    background:
        linear-gradient(
            180deg,
            #0c996a,
            #006444
        );
    border-color: #12b67c;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 24px rgba(0, 119, 80, 0.25);
}

.create-account-button:hover,
.create-account-button:focus-visible {
    color: #ffffff;
    outline: none;
    filter: brightness(1.12);
    transform: translateY(-2px);
}

.create-account-login-link {
    margin: 27px 0 25px;
    text-align: center;
}

.create-account-login-link a {
    display: inline-flex;
    min-width: 235px;
    min-height: 54px;
    padding: 13px 24px;
    color: #41a8ff;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 16px;
    font-weight: 650;
    text-decoration: none;
    background: rgba(1, 20, 42, 0.72);
    border: 1px solid #2697f3;
    border-radius: 8px;
    transition:
        color 160ms ease,
        background 160ms ease,
        transform 160ms ease;
}

.create-account-login-link a:hover,
.create-account-login-link a:focus-visible {
    color: #ffffff;
    background: rgba(15, 83, 157, 0.44);
    outline: none;
    transform: translateY(-2px);
}


/* TRUST STRIP */

.create-account-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 13px;
    padding: 22px 29px;
    background: rgba(2, 26, 51, 0.68);
    border: 1px solid rgba(65, 139, 198, 0.42);
    border-radius: 11px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.17);
    backdrop-filter: blur(10px);
}

.create-account-trust article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    min-width: 0;
    padding: 0 28px;
    align-items: center;
    gap: 14px;
}

.create-account-trust article + article {
    border-left: 1px solid rgba(104, 149, 185, 0.35);
}

.create-account-trust svg {
    width: 43px;
    height: 43px;
    fill: none;
    color: #3197ff;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.create-account-trust strong {
    display: block;
    margin-bottom: 4px;
    color: #3da4ff;
    font-size: 15px;
}

.create-account-trust p {
    margin: 0;
    color: #d3deea;
    font-size: 13px;
    line-height: 1.45;
}


/* FOOTER */

.create-account-footer {
    display: flex;
    padding: 28px 145px 8px;
    color: #b9c5d2;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 13px;
}

.create-account-footer nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.create-account-footer nav a {
    padding: 0 27px;
    color: #cbd6e1;
    text-decoration: none;
}

.create-account-footer nav a + a {
    border-left: 1px solid rgba(126, 154, 179, 0.39);
}

.create-account-footer a:hover,
.create-account-footer a:focus-visible {
    color: #42adff;
    outline: none;
}


/* RESPONSIVE */

@media only screen and (max-width: 1220px) {

    .create-account-stage__visual {
        width: 54%;
        opacity: 0.48;
    }

    .create-account-content {
        width: min(710px, 72%);
    }

    .create-account-footer {
        padding-right: 35px;
        padding-left: 35px;
    }
}


@media only screen and (max-width: 980px) {

    .create-account-shell {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .create-account-sidebar {
        padding-right: 12px;
        padding-left: 12px;
    }

    .create-account-main {
        padding-right: 25px;
        padding-left: 25px;
    }

    .create-account-content {
        width: 100%;
    }

    .create-account-stage__visual {
        opacity: 0.18;
    }

    .create-account-trust {
        grid-template-columns: 1fr;
    }

    .create-account-trust article {
        padding: 18px 4px;
    }

    .create-account-trust article + article {
        border-top: 1px solid rgba(104, 149, 185, 0.35);
        border-left: 0;
    }

    .create-account-footer {
        flex-direction: column;
    }
}


@media only screen and (max-width: 760px) {

    .create-account-shell {
        display: block;
    }

    .create-account-sidebar {
        position: relative;
        height: auto;
    }

    .create-account-brand {
        display: grid;
        grid-template-columns: 110px minmax(0, 1fr);
        align-items: center;
        gap: 18px;
    }

    .create-account-brand img {
        width: 110px;
        margin: 0;
    }

    .create-account-navigation {
        grid-template-columns: repeat(3, 1fr);
    }

    .create-account-navigation__item {
        min-height: 75px;
        padding: 12px 8px;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        text-align: center;
        font-size: 13px;
    }

    .create-account-security {
        display: none;
    }

    .create-account-main {
        padding: 20px;
    }

    .create-account-topbar {
        min-height: 75px;
    }

    .create-account-card-grid {
        grid-template-columns: 1fr;
    }

    .create-account-card {
        min-height: 410px;
    }

    .create-account-stage__visual {
        display: none;
    }

    .create-account-footer nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .create-account-footer nav a {
        padding: 8px 14px;
    }
}


@media only screen and (max-width: 480px) {

    .create-account-heading h1 {
        font-size: 35px;
    }

    .create-account-heading p {
        font-size: 16px;
    }

    .create-account-status {
        min-width: 0;
    }

    .create-account-card {
        padding: 25px 18px 18px;
    }

    .create-account-login-link a {
        width: 100%;
        min-width: 0;
    }

    .create-account-footer nav {
        display: grid;
        text-align: center;
    }

    .create-account-footer nav a + a {
        border-left: 0;
    }
}
/* ==========================================================================
   CREATE ACCOUNT SIDEBAR CORRECTIONS
   ========================================================================== */

.newlook-create-account-page,
.newlook-create-account-page a,
.newlook-create-account-page button,
.newlook-create-account-page input,
.newlook-create-account-page select,
.newlook-create-account-page textarea {
    font-family:
        "Roboto",
        Arial,
        Helvetica,
        sans-serif;
}


/* LOGO AND PORTAL TITLE */

.create-account-brand {
    display: block;
    padding: 0 12px 31px;
    text-align: center;
    color: #2da4ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(76, 130, 176, 0.38);
}

.create-account-brand__logo {
    display: block;
    width: 182px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 25px;
    object-fit: contain;
}

.create-account-brand span {
    display: block;
    color: #2da4ff;
    font-family:
        "Roboto",
        Arial,
        Helvetica,
        sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.8px;
    text-align: left;
    text-transform: uppercase;
}


/* NAVIGATION */

.create-account-navigation {
    display: grid;
    gap: 14px;
    margin-top: 29px;
}

.create-account-navigation__item {
    display: flex;
    min-height: 60px;
    padding: 14px 20px;
    align-items: center;
    gap: 17px;

    color: #edf5ff;
    font-family:
        "Roboto",
        Arial,
        Helvetica,
        sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;

    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
}

.create-account-navigation__item.is-active {
    color: #ffffff;
    font-weight: 500;
    background:
        linear-gradient(
            180deg,
            #1457b8 0%,
            #073a91 100%
        );
    border-color: #238cff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        0 8px 22px rgba(0, 74, 180, 0.25);
}

.create-account-navigation__item svg {
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* SECURITY MESSAGE */

.create-account-security {
    display: flex;
    padding: 25px 14px 0;
    align-items: flex-start;
    gap: 14px;
    color: #aebed2;
    border-top: 1px solid rgba(76, 130, 176, 0.38);
}

.create-account-security strong {
    display: block;
    margin-bottom: 8px;
    color: #22a2ff;
    font-family:
        "Roboto",
        Arial,
        Helvetica,
        sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.create-account-security p {
    margin: 0;
    color: #b8c5d6;
    font-family:
        "Roboto",
        Arial,
        Helvetica,
        sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}
/* Center the Select Account Type content area */

@media only screen and (min-width: 981px) {

    .create-account-content {
        width: min(710px, 100%);
        margin-left: clamp(45px, 6vw, 105px);
    }

}

/* ==========================================================================
   SHOPPING CART — PORTAL DESIGN
   Portal-style cart interface using the account hero background.
   ========================================================================== */

.newlook-ui.shopping-cart-page,
.shopping-cart-page {
    background: #010817;
}

.shopping-cart-page .portal-cart-page {
    --portal-cart-blue: #159cff;
    --portal-cart-blue-bright: #27b0ff;
    --portal-cart-blue-deep: #0754c7;
    --portal-cart-text: #f4f7fb;
    --portal-cart-muted: #aebace;
    --portal-cart-panel: rgba(4, 23, 48, 0.88);
    --portal-cart-panel-deep: rgba(2, 14, 34, 0.94);
    --portal-cart-border: rgba(79, 147, 214, 0.42);
    --portal-cart-divider: rgba(112, 159, 207, 0.23);

    position: relative;
    isolation: isolate;
    min-height: 100vh;
    overflow: hidden;
    padding: clamp(16px, 2vw, 28px);
    color: var(--portal-cart-text);
    font-family: "Public Sans", Arial, Helvetica, sans-serif;
    background:
        radial-gradient(
            circle at 76% 16%,
            rgba(0, 102, 255, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #010817 0%,
            #02142f 58%,
            #031b3c 100%
        );
}

.shopping-cart-page .portal-cart-page *,
.shopping-cart-page .portal-cart-page *::before,
.shopping-cart-page .portal-cart-page *::after {
    box-sizing: border-box;
}

.shopping-cart-page .portal-cart-page::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        radial-gradient(
            circle at 71% 18%,
            rgba(0, 105, 255, 0.22),
            transparent 31%
        ),
        radial-gradient(
            circle at 31% 80%,
            rgba(0, 177, 255, 0.09),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            rgba(4, 34, 75, 0.15),
            transparent 48%
        );
    pointer-events: none;
}

.shopping-cart-page .portal-cart-page::after {
    position: absolute;
    top: -260px;
    right: -210px;
    z-index: -1;
    width: 820px;
    height: 820px;
    content: "";
    opacity: 0.56;
    background:
        repeating-radial-gradient(
            ellipse at center,
            transparent 0 17px,
            rgba(22, 145, 255, 0.14) 18px 19px,
            transparent 20px 34px
        );
    border-radius: 50%;
    transform: rotate(-18deg) scaleY(0.46);
    pointer-events: none;
}

.shopping-cart-page .portal-cart-background-effects {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shopping-cart-page .portal-cart-background-effects::before,
.shopping-cart-page .portal-cart-background-effects::after {
    position: absolute;
    content: "";
}

.shopping-cart-page .portal-cart-background-effects::before {
    top: 15px;
    right: 2.5%;
    width: 230px;
    height: 155px;
    opacity: 0.34;
    background-image:
        radial-gradient(
            circle,
            rgba(30, 157, 255, 0.82) 0 1.4px,
            transparent 1.8px
        );
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom left, #000, transparent 82%);
}

.shopping-cart-page .portal-cart-background-effects::after {
    bottom: 24px;
    left: 2.5%;
    width: 175px;
    height: 120px;
    opacity: 0.25;
    background-image:
        radial-gradient(
            circle,
            rgba(30, 157, 255, 0.78) 0 1.2px,
            transparent 1.7px
        );
    background-size: 20px 20px;
    mask-image: linear-gradient(to top right, #000, transparent 82%);
}

.shopping-cart-page .portal-cart-shell {
    position: relative;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    width: min(1500px, 100%);
    min-height: calc(100vh - clamp(32px, 4vw, 56px));
    margin: 0 auto;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(2, 18, 43, 0.78),
            rgba(1, 11, 29, 0.7)
        );
    border: 1px solid rgba(78, 151, 221, 0.35);
    border-radius: 22px;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        inset 0 0 85px rgba(0, 71, 163, 0.06);
    backdrop-filter: blur(7px);
}

/* Sidebar */

.shopping-cart-page .portal-cart-sidebar {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 26px 18px 24px;
    background:
        linear-gradient(
            180deg,
            rgba(4, 29, 62, 0.94),
            rgba(2, 15, 35, 0.96)
        );
    border-right: 1px solid rgba(88, 154, 216, 0.32);
}

.shopping-cart-page .portal-cart-sidebar__brand {
    padding: 2px 14px 25px;
    text-align: center;
    border-bottom: 1px solid rgba(112, 159, 207, 0.24);
}

.shopping-cart-page .portal-cart-sidebar__brand a {
    display: inline-block;
}

.shopping-cart-page .portal-cart-sidebar__logo {
    display: block;
    width: min(190px, 100%);
    height: auto;
    margin: 0 auto 18px;
}

.shopping-cart-page .portal-cart-sidebar__title {
    margin: 0;
    color: #2ba4ff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.shopping-cart-page .portal-cart-sidebar__nav {
    display: grid;
    gap: 12px;
    padding: 26px 0;
}

.shopping-cart-page .portal-cart-sidebar__link {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 14px;
    gap: 10px;
    min-height: 68px;
    padding: 13px 14px;
    align-items: center;
    color: #eef5fc;
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
    background: rgba(5, 27, 57, 0.72);
    border: 1px solid rgba(91, 149, 207, 0.36);
    border-radius: 10px;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.shopping-cart-page .portal-cart-sidebar__link > i:first-child {
    color: #2aa6ff;
    font-size: 23px;
    text-align: center;
}

.shopping-cart-page .portal-cart-sidebar__link > i:last-child {
    color: #2aa6ff;
    font-size: 13px;
    text-align: right;
}

.shopping-cart-page .portal-cart-sidebar__link:hover,
.shopping-cart-page .portal-cart-sidebar__link:focus-visible {
    color: #ffffff;
    background: rgba(8, 54, 111, 0.86);
    border-color: #1693ff;
    box-shadow: 0 10px 28px rgba(0, 73, 168, 0.18);
    outline: none;
    transform: translateY(-1px);
}

.shopping-cart-page .portal-cart-sidebar__link.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            rgba(7, 73, 150, 0.92),
            rgba(4, 34, 81, 0.96)
        );
    border-color: #159cff;
    box-shadow:
        0 0 22px rgba(0, 132, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.shopping-cart-page .portal-cart-sidebar__link.is-logout {
    margin-top: 4px;
    color: #ffdce0;
    background: rgba(105, 22, 39, 0.22);
    border-color: rgba(255, 91, 111, 0.46);
}

.shopping-cart-page .portal-cart-sidebar__link.is-logout > i {
    color: #ff6575;
}

.shopping-cart-page .portal-cart-sidebar__security {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
    margin-top: auto;
    padding: 20px 10px 0;
    color: #91a6bb;
    border-top: 1px solid rgba(112, 159, 207, 0.24);
}

.shopping-cart-page .portal-cart-sidebar__security > i {
    color: #2aa6ff;
    font-size: 25px;
    text-align: center;
}

.shopping-cart-page .portal-cart-sidebar__security strong {
    display: block;
    margin-bottom: 5px;
    color: #6dc2ff;
    font-size: 14px;
}

.shopping-cart-page .portal-cart-sidebar__security p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}

/* Main content and visible account hero */

.shopping-cart-page .portal-cart-content {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: clamp(34px, 4vw, 56px);
}

.shopping-cart-page .portal-cart-content > *:not(.portal-cart-hero-art) {
    position: relative;
    z-index: 2;
}

.shopping-cart-page .portal-cart-hero-art {
    position: absolute;
    top: -12px;
    right: -70px;
    z-index: 0;
    width: min(48vw, 660px);
    max-height: 560px;
    overflow: hidden;
    opacity: 0.72;
    pointer-events: none;
}

.shopping-cart-page .portal-cart-hero-art::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            90deg,
            #02122c 0%,
            rgba(2, 18, 44, 0.72) 25%,
            rgba(2, 18, 44, 0.08) 68%,
            transparent 100%
        ),
        linear-gradient(
            180deg,
            transparent 62%,
            rgba(2, 16, 38, 0.92) 100%
        );
}

.shopping-cart-page .portal-cart-hero-art img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top right;
    filter: saturate(1.06) contrast(1.03);
}

.shopping-cart-page .portal-cart-header {
    padding-right: min(26vw, 330px);
}


/* Header */

.shopping-cart-page .portal-cart-header {
    display: flex;
    gap: 34px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 34px;
}

.shopping-cart-page .portal-cart-header__content {
    max-width: 760px;
}

.shopping-cart-page .portal-cart-eyebrow,
.shopping-cart-page .portal-cart-panel__label {
    display: block;
    color: var(--portal-cart-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.shopping-cart-page .portal-cart-eyebrow {
    margin-bottom: 13px;
}

.shopping-cart-page .portal-cart-header h1 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.025em;
}

.shopping-cart-page .portal-cart-header__content > p {
    max-width: 720px;
    margin: 0;
    color: #b6c3d3;
    font-size: 18px;
    line-height: 1.62;
}

.shopping-cart-page .portal-cart-status {
    display: flex;
    flex: 0 0 auto;
    gap: 14px;
    min-width: 250px;
    margin-top: 20px;
    padding: 16px 20px;
    align-items: center;
    background:
        linear-gradient(
            145deg,
            rgba(4, 27, 58, 0.9),
            rgba(2, 17, 40, 0.84)
        );
    border: 1px solid rgba(70, 158, 230, 0.5);
    border-radius: 12px;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.shopping-cart-page .portal-cart-status__icon,
.shopping-cart-page .portal-cart-payment-note__icon,
.shopping-cart-page .portal-cart-agreement__icon,
.shopping-cart-page .portal-cart-empty__icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--portal-cart-blue-bright);
    background: rgba(8, 90, 178, 0.18);
    border: 1px solid rgba(40, 157, 255, 0.52);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(0, 130, 255, 0.12);
}

.shopping-cart-page .portal-cart-status__icon {
    width: 45px;
    height: 45px;
}

.shopping-cart-page .portal-cart-status__icon svg,
.shopping-cart-page .portal-cart-payment-note__icon svg,
.shopping-cart-page .portal-cart-agreement__icon svg,
.shopping-cart-page .portal-cart-empty__icon svg,
.shopping-cart-page .portal-cart-remove svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shopping-cart-page .portal-cart-status strong,
.shopping-cart-page .portal-cart-status span {
    display: block;
}

.shopping-cart-page .portal-cart-status strong {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 16px;
}

.shopping-cart-page .portal-cart-status div > span {
    color: #93a8bd;
    font-size: 13px;
}

/* Alerts */

.shopping-cart-page .portal-cart-alert {
    margin: 0 0 24px;
    padding: 16px 18px;
    color: #ffd9dd;
    font-size: 15px;
    line-height: 1.55;
    background: rgba(132, 20, 42, 0.3);
    border: 1px solid rgba(255, 91, 111, 0.58);
    border-radius: 10px;
    box-shadow: 0 14px 32px rgba(71, 4, 18, 0.18);
}

/* Main cart grid and shared panels */

.shopping-cart-page .portal-cart-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.72fr);
    gap: 24px;
    align-items: start;
}

.shopping-cart-page .portal-cart-grid > * {
    min-width: 0;
}

.shopping-cart-page .portal-cart-panel,
.shopping-cart-page .portal-cart-agreement {
    background:
        linear-gradient(
            145deg,
            rgba(5, 28, 59, 0.94),
            rgba(2, 16, 37, 0.92)
        );
    border: 1px solid var(--portal-cart-border);
    border-radius: 14px;
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
}

.shopping-cart-page .portal-cart-panel__header {
    display: flex;
    gap: 18px;
    min-height: 92px;
    padding: 22px 24px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--portal-cart-divider);
}

.shopping-cart-page .portal-cart-panel__label {
    margin-bottom: 7px;
    font-size: 12px;
}

.shopping-cart-page .portal-cart-panel__header h2,
.shopping-cart-page .portal-cart-agreement h2 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
}

.shopping-cart-page .portal-cart-course-count {
    flex: 0 0 auto;
    padding: 7px 11px;
    color: #9fd8ff;
    font-size: 12px;
    font-weight: 700;
    background: rgba(9, 92, 181, 0.2);
    border: 1px solid rgba(39, 157, 255, 0.42);
    border-radius: 999px;
}

/* Course table */

.shopping-cart-page .portal-cart-update-form,
.shopping-cart-page .portal-cart-checkout-form {
    margin: 0;
}

.shopping-cart-page .portal-cart-table-wrap {
    overflow: hidden;
}

.shopping-cart-page .portal-cart-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.shopping-cart-page .portal-cart-table th {
    padding: 14px 18px;
    color: #7fc8ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
    background: rgba(2, 15, 36, 0.74);
    border-bottom: 1px solid rgba(92, 148, 205, 0.28);
}

.shopping-cart-page .portal-cart-table th:nth-child(2),
.shopping-cart-page .portal-cart-table th:nth-child(3),
.shopping-cart-page .portal-cart-table th:nth-child(4) {
    text-align: center;
}

.shopping-cart-page .portal-cart-table th:nth-child(1) {
    width: 59%;
}

.shopping-cart-page .portal-cart-table th:nth-child(2) {
    width: 11%;
}

.shopping-cart-page .portal-cart-table th:nth-child(3) {
    width: 15%;
}

.shopping-cart-page .portal-cart-table th:nth-child(4) {
    width: 15%;
}

.shopping-cart-page .portal-cart-table tbody tr {
    transition: background-color 160ms ease;
}

.shopping-cart-page .portal-cart-table tbody tr + tr {
    border-top: 1px solid rgba(105, 154, 203, 0.2);
}

.shopping-cart-page .portal-cart-table tbody tr:not(.portal-cart-empty-row):hover {
    background: rgba(7, 63, 123, 0.14);
}

.shopping-cart-page .portal-cart-table td {
    padding: 22px 18px;
    color: #dce6f1;
    vertical-align: middle;
}

.shopping-cart-page .portal-cart-table__course-name,
.shopping-cart-page .portal-cart-table__course-type,
.shopping-cart-page .portal-cart-table__quantity {
    display: block;
}

.shopping-cart-page .portal-cart-table__course-name {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.shopping-cart-page .portal-cart-table__course-type {
    color: #8ea2b8;
    font-size: 13px;
    line-height: 1.5;
}

.shopping-cart-page .portal-cart-table__quantity {
    margin-top: 7px;
    color: #65baff;
    font-size: 12px;
    font-weight: 700;
}

.shopping-cart-page .portal-cart-table__ce,
.shopping-cart-page .portal-cart-table__price,
.shopping-cart-page .portal-cart-table__remove {
    text-align: center;
}

.shopping-cart-page .portal-cart-table__ce {
    color: #b5c6d8;
}

.shopping-cart-page .portal-cart-table__price {
    color: #ffffff;
    font-weight: 700;
}

.shopping-cart-page .portal-cart-remove {
    display: inline-flex;
    gap: 7px;
    min-height: 36px;
    padding: 7px 10px;
    align-items: center;
    justify-content: center;
    color: #ff8290;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(126, 20, 41, 0.21);
    border: 1px solid rgba(255, 99, 119, 0.43);
    border-radius: 8px;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.shopping-cart-page .portal-cart-remove svg {
    width: 17px;
    height: 17px;
}

.shopping-cart-page .portal-cart-remove:hover,
.shopping-cart-page .portal-cart-remove:focus-visible {
    color: #ffffff;
    background: rgba(172, 31, 56, 0.48);
    border-color: #ff6476;
    outline: none;
    transform: translateY(-1px);
}

/* Empty cart */

.shopping-cart-page .portal-cart-empty-row td {
    padding: 0;
}

.shopping-cart-page .portal-cart-empty {
    display: grid;
    min-height: 260px;
    padding: 42px 24px;
    place-items: center;
    align-content: center;
    gap: 10px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(9, 83, 169, 0.12),
            transparent 45%
        );
}

.shopping-cart-page .portal-cart-empty__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 6px;
}

.shopping-cart-page .portal-cart-empty__icon svg {
    width: 30px;
    height: 30px;
}

.shopping-cart-page .portal-cart-empty strong {
    color: #ffffff;
    font-size: 20px;
}

.shopping-cart-page .portal-cart-empty > span:last-child {
    color: #94a8bd;
    font-size: 14px;
}

/* Late fee */

.shopping-cart-page .portal-cart-late-fee {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 14px;
    margin: 20px 22px 0;
    padding: 16px 18px;
    align-items: center;
    color: #ffe2a1;
    background:
        linear-gradient(
            145deg,
            rgba(106, 70, 0, 0.28),
            rgba(38, 30, 12, 0.46)
        );
    border: 1px solid rgba(255, 183, 39, 0.5);
    border-radius: 10px;
}

.shopping-cart-page .portal-cart-late-fee__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffbc19;
    font-size: 23px;
    font-weight: 800;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 176, 0, 0.12);
}

.shopping-cart-page .portal-cart-late-fee strong,
.shopping-cart-page .portal-cart-late-fee span {
    display: block;
}

.shopping-cart-page .portal-cart-late-fee div > strong {
    margin-bottom: 4px;
    color: #ffd67d;
}

.shopping-cart-page .portal-cart-late-fee div > span {
    color: #d9c28b;
    font-size: 13px;
}

.shopping-cart-page .portal-cart-late-fee__amount {
    color: #ffffff;
    font-size: 19px;
}

/* Discount code */

.shopping-cart-page .portal-cart-discount {
    margin: 22px;
    padding: 21px;
    background: rgba(2, 16, 37, 0.6);
    border: 1px solid rgba(80, 145, 208, 0.31);
    border-radius: 11px;
}

.shopping-cart-page .portal-cart-discount__heading h3 {
    margin: 4px 0 7px;
    color: #ffffff;
    font-size: 18px;
}

.shopping-cart-page .portal-cart-discount__heading p {
    margin: 0 0 16px;
    color: #93a7bc;
    font-size: 13px;
    line-height: 1.55;
}

.shopping-cart-page .portal-cart-discount__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.shopping-cart-page .portal-cart-discount__input {
    display: block;
    width: 100%;
    min-width: 0;
    height: 48px;
    margin: 0;
    padding: 10px 14px;
    color: #ffffff;
    font: inherit;
    background: rgba(1, 11, 28, 0.8);
    border: 1px solid rgba(104, 155, 205, 0.58);
    border-radius: 8px;
    outline: none;
    appearance: none;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.shopping-cart-page .portal-cart-discount__input::placeholder {
    color: #7f91a6;
    opacity: 1;
}

.shopping-cart-page .portal-cart-discount__input:hover {
    border-color: rgba(49, 150, 255, 0.78);
}

.shopping-cart-page .portal-cart-discount__input:focus {
    background: rgba(2, 18, 42, 0.96);
    border-color: var(--portal-cart-blue);
    box-shadow: 0 0 0 3px rgba(19, 136, 255, 0.18);
}

.shopping-cart-page .portal-cart-discount__button,
.shopping-cart-page .portal-cart-button {
    font-family: inherit;
    cursor: pointer;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease,
        filter 160ms ease;
}

.shopping-cart-page .portal-cart-discount__button {
    min-height: 48px;
    padding: 10px 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background:
        linear-gradient(
            180deg,
            #1688f5 0%,
            #0754c7 100%
        );
    border: 1px solid #2399ff;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 79, 190, 0.24);
}

.shopping-cart-page .portal-cart-discount__button:hover,
.shopping-cart-page .portal-cart-discount__button:focus-visible {
    filter: brightness(1.1);
    outline: none;
    transform: translateY(-1px);
}

.shopping-cart-page .portal-cart-discount__message {
    display: block;
    margin-top: 12px;
    color: #ff8794;
    font-size: 13px;
    line-height: 1.45;
}

/* Order summary */

.shopping-cart-page .portal-cart-summary {
    position: sticky;
    top: 24px;
}

.shopping-cart-page .portal-cart-summary__totals {
    padding: 14px 24px 8px;
}

.shopping-cart-page .portal-cart-summary__row {
    display: flex;
    gap: 20px;
    min-height: 52px;
    padding: 13px 0;
    align-items: center;
    justify-content: space-between;
    color: #b5c3d2;
    font-size: 15px;
    border-bottom: 1px solid var(--portal-cart-divider);
}

.shopping-cart-page .portal-cart-summary__row strong {
    color: #f0f5fb;
    font-size: 15px;
}

.shopping-cart-page .portal-cart-summary__row--total {
    min-height: 70px;
    margin-top: 5px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 0;
}

.shopping-cart-page .portal-cart-summary__row--total strong {
    color: #2aa7ff;
    font-size: 28px;
    text-shadow: 0 0 18px rgba(0, 140, 255, 0.18);
}

.shopping-cart-page .portal-cart-checkout-form {
    padding: 0 24px 24px;
}

.shopping-cart-page .portal-cart-actions {
    display: grid;
    gap: 11px;
}

.shopping-cart-page .portal-cart-button {
    display: flex;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 12px 18px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
}

.shopping-cart-page .portal-cart-button--primary {
    background:
        linear-gradient(
            180deg,
            #1688f5 0%,
            #0754c7 100%
        );
    border: 1px solid #2399ff;
    box-shadow:
        0 12px 28px rgba(0, 72, 180, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.shopping-cart-page .portal-cart-button--secondary {
    color: #6bc0ff;
    background: rgba(1, 13, 31, 0.45);
    border: 1px solid rgba(35, 139, 255, 0.66);
}

.shopping-cart-page .portal-cart-button:hover,
.shopping-cart-page .portal-cart-button:focus-visible {
    color: #ffffff;
    filter: brightness(1.08);
    outline: none;
    transform: translateY(-1px);
}

.shopping-cart-page .portal-cart-button:focus-visible,
.shopping-cart-page .portal-cart-discount__button:focus-visible,
.shopping-cart-page .portal-cart-remove:focus-visible {
    box-shadow: 0 0 0 3px rgba(45, 157, 255, 0.28);
}

.shopping-cart-page .portal-cart-button[disabled] {
    color: #7f91a5;
    cursor: not-allowed;
    background: rgba(73, 91, 111, 0.22);
    border-color: rgba(112, 137, 162, 0.3);
    box-shadow: none;
    filter: none;
    transform: none;
}

/* Secure payment note */

.shopping-cart-page .portal-cart-payment-note {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    margin: 0 24px 24px;
    padding-top: 22px;
    border-top: 1px solid var(--portal-cart-divider);
}

.shopping-cart-page .portal-cart-payment-note__icon {
    width: 44px;
    height: 44px;
}

.shopping-cart-page .portal-cart-payment-note strong {
    display: block;
    margin-bottom: 7px;
    color: #73c6ff;
    font-size: 14px;
}

.shopping-cart-page .portal-cart-payment-note p {
    margin: 0;
    color: #92a5b9;
    font-size: 12px;
    line-height: 1.6;
}

.shopping-cart-page .portal-cart-payment-note p + p {
    margin-top: 7px;
}

/* Purchase agreement */

.shopping-cart-page .portal-cart-agreement {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    margin-top: 24px;
    padding: 24px 26px;
}

.shopping-cart-page .portal-cart-agreement__icon {
    width: 56px;
    height: 56px;
}

.shopping-cart-page .portal-cart-agreement h2 {
    margin: 5px 0 11px;
    font-size: 21px;
}

.shopping-cart-page .portal-cart-agreement p {
    margin: 0;
    color: #9cafc2;
    font-size: 13px;
    line-height: 1.68;
}

.shopping-cart-page .portal-cart-agreement p + p {
    margin-top: 10px;
}

/* Screen-reader utility retained because the revised cart markup uses it. */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
}

/* Responsive */

@media (max-width: 1180px) {
    .shopping-cart-page .portal-cart-shell {
        grid-template-columns: 235px minmax(0, 1fr);
    }

    .shopping-cart-page .portal-cart-content {
        padding: 38px 30px 46px;
    }

    .shopping-cart-page .portal-cart-hero-art {
        right: -95px;
        width: min(52vw, 590px);
        opacity: 0.6;
    }

    .shopping-cart-page .portal-cart-header {
        padding-right: min(22vw, 250px);
    }

    .shopping-cart-page .portal-cart-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.78fr);
    }

    .shopping-cart-page .portal-cart-table th:nth-child(1) {
        width: 52%;
    }

    .shopping-cart-page .portal-cart-table th:nth-child(4) {
        width: 22%;
    }
}

@media (max-width: 940px) {

    .shopping-cart-page .portal-cart-page {
        padding: 14px;
    }

    .shopping-cart-page .portal-cart-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .shopping-cart-page .portal-cart-sidebar {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(88, 154, 216, 0.32);
    }

    .shopping-cart-page .portal-cart-sidebar__brand {
        display: flex;
        gap: 22px;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    .shopping-cart-page .portal-cart-sidebar__logo {
        width: 145px;
        margin: 0;
    }

    .shopping-cart-page .portal-cart-sidebar__nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shopping-cart-page .portal-cart-sidebar__security {
        display: none;
    }

    .shopping-cart-page .portal-cart-content {
        padding: 34px 26px 42px;
    }

    .shopping-cart-page .portal-cart-hero-art {
        top: -8px;
        right: -80px;
        width: 520px;
        opacity: 0.42;
    }

    .shopping-cart-page .portal-cart-header {
        padding-right: 170px;
    }

    .shopping-cart-page .portal-cart-header {
        display: block;
    }

    .shopping-cart-page .portal-cart-status {
        width: min(100%, 320px);
        margin-top: 24px;
    }

    .shopping-cart-page .portal-cart-grid {
        grid-template-columns: 1fr;
    }

    .shopping-cart-page .portal-cart-summary {
        position: static;
    }
}

@media (max-width: 720px) {
    .shopping-cart-page .portal-cart-page {
        padding: 10px;
    }

    .shopping-cart-page .portal-cart-shell {
        border-radius: 16px;
    }

    .shopping-cart-page .portal-cart-sidebar {
        padding: 20px 14px;
    }

    .shopping-cart-page .portal-cart-sidebar__brand {
        padding-right: 4px;
        padding-left: 4px;
    }

    .shopping-cart-page .portal-cart-sidebar__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .shopping-cart-page .portal-cart-sidebar__link {
        min-height: 62px;
        padding: 11px 12px;
        font-size: 14px;
    }

    .shopping-cart-page .portal-cart-content {
        padding: 28px 18px 36px;
    }

    .shopping-cart-page .portal-cart-hero-art {
        top: 5px;
        right: -105px;
        width: 430px;
        opacity: 0.28;
    }

    .shopping-cart-page .portal-cart-header {
        padding-right: 0;
    }

    .shopping-cart-page .portal-cart-header h1 {
        font-size: 42px;
    }

    .shopping-cart-page .portal-cart-header__content > p {
        font-size: 16px;
    }

    .shopping-cart-page .portal-cart-table-wrap {
        overflow: visible;
    }

    .shopping-cart-page .portal-cart-table,
    .shopping-cart-page .portal-cart-table thead,
    .shopping-cart-page .portal-cart-table tbody,
    .shopping-cart-page .portal-cart-table tr,
    .shopping-cart-page .portal-cart-table th,
    .shopping-cart-page .portal-cart-table td {
        display: block;
        width: 100%;
    }

    .shopping-cart-page .portal-cart-table thead {
        display: none;
    }

    .shopping-cart-page .portal-cart-table tbody tr {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 13px 20px;
        padding: 20px;
    }

    .shopping-cart-page .portal-cart-table tbody tr + tr {
        border-top: 1px solid rgba(105, 154, 203, 0.26);
    }

    .shopping-cart-page .portal-cart-table td {
        padding: 0;
    }

    .shopping-cart-page .portal-cart-table__course {
        grid-column: 1 / -1;
    }

    .shopping-cart-page .portal-cart-table__ce,
    .shopping-cart-page .portal-cart-table__price,
    .shopping-cart-page .portal-cart-table__remove {
        text-align: left;
    }

    .shopping-cart-page .portal-cart-table__ce::before,
    .shopping-cart-page .portal-cart-table__price::before {
        display: block;
        margin-bottom: 3px;
        color: #65baff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .shopping-cart-page .portal-cart-table__ce::before {
        content: "CE";
    }

    .shopping-cart-page .portal-cart-table__price::before {
        content: "Price";
    }

    .shopping-cart-page .portal-cart-table__remove {
        grid-column: 1 / -1;
    }

    .shopping-cart-page .portal-cart-remove {
        width: 100%;
    }

    .shopping-cart-page .portal-cart-empty-row {
        display: block !important;
        padding: 0 !important;
    }

    .shopping-cart-page .portal-cart-empty-row td {
        display: block;
    }

    .shopping-cart-page .portal-cart-late-fee {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .shopping-cart-page .portal-cart-late-fee__amount {
        grid-column: 2;
    }

    .shopping-cart-page .portal-cart-discount__controls {
        grid-template-columns: 1fr;
    }

    .shopping-cart-page .portal-cart-discount__button {
        width: 100%;
    }

    .shopping-cart-page .portal-cart-agreement {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .shopping-cart-page .portal-cart-sidebar__brand {
        display: block;
        text-align: center;
    }

    .shopping-cart-page .portal-cart-sidebar__logo {
        width: 150px;
        margin: 0 auto 14px;
    }

    .shopping-cart-page .portal-cart-sidebar__nav {
        grid-template-columns: 1fr;
    }

    .shopping-cart-page .portal-cart-content {
        padding: 24px 14px 32px;
    }

    .shopping-cart-page .portal-cart-hero-art {
        right: -125px;
        width: 390px;
        opacity: 0.22;
    }

    .shopping-cart-page .portal-cart-header h1 {
        font-size: 36px;
    }

    .shopping-cart-page .portal-cart-status {
        min-width: 0;
        width: 100%;
    }

    .shopping-cart-page .portal-cart-panel__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .shopping-cart-page .portal-cart-course-count {
        align-self: flex-start;
    }

    .shopping-cart-page .portal-cart-discount,
    .shopping-cart-page .portal-cart-summary__totals,
    .shopping-cart-page .portal-cart-checkout-form {
        margin-right: 0;
        margin-left: 0;
    }

    .shopping-cart-page .portal-cart-discount {
        margin: 18px 14px;
        padding: 18px;
    }

    .shopping-cart-page .portal-cart-summary__totals,
    .shopping-cart-page .portal-cart-checkout-form {
        padding-right: 18px;
        padding-left: 18px;
    }

    .shopping-cart-page .portal-cart-payment-note {
        margin-right: 18px;
        margin-left: 18px;
    }

    .shopping-cart-page .portal-cart-agreement {
        padding: 22px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shopping-cart-page .portal-cart-button,
    .shopping-cart-page .portal-cart-discount__button,
    .shopping-cart-page .portal-cart-remove,
    .shopping-cart-page .portal-cart-table tbody tr,
    .shopping-cart-page .portal-cart-sidebar__link {
        transition: none;
    }
}
/* ==========================================================
   CPUI / CNPI Certification Registry
   ========================================================== */

.newlook-ui.newlook-cpui-registry-page .newlook-shell,
.newlook-ui.newlook-piv-registry-page .newlook-shell {
    grid-template-columns: 265px minmax(0, 1fr);
}

.newlook-ui.newlook-cpui-registry-page .newlook-main {
    position: relative;
    overflow-x: hidden;
}

.newlook-ui .newlook-registry-content {
    width: min(100%, 1460px);
    margin: 0 auto;
    padding: 48px 44px 64px;
}


/* ==========================================================
   Registry Sidebar
   ========================================================== */

.newlook-ui .newlook-registry-sidebar {
    position: relative;
    z-index: 5;
}

.newlook-ui .newlook-registry-sidebar .newlook-sidebar-brand {
    padding-bottom: 24px;
}

.newlook-ui .newlook-registry-sidebar .newlook-sidebar-logo {
    width: 180px;
    margin-bottom: 0;
}


/* ==========================================================
   Registry Header and Hero
   ========================================================== */

.newlook-ui .newlook-registry-header {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(430px, 0.95fr)
        minmax(420px, 0.8fr);
    gap: 42px;
    align-items: center;
    min-height: 310px;
    margin-bottom: 30px;
    padding: 34px 36px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 26%,
            rgba(15, 139, 255, 0.22),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(5, 29, 62, 0.96),
            rgba(2, 15, 35, 0.94)
        );
    border: 1px solid rgba(78, 150, 217, 0.42);
    border-radius: 16px;
    box-shadow:
        0 24px 58px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.newlook-ui .newlook-registry-header::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            rgba(65, 150, 231, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(65, 150, 231, 0.035) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
    mask-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.7),
            transparent 82%
        );
}

.newlook-ui .newlook-registry-header__copy,
.newlook-ui .newlook-registry-hero {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.newlook-ui .newlook-registry-header .newlook-eyebrow {
    margin: 0 0 12px;
    color: #179cff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-registry-header h1 {
    max-width: 720px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.06;
}

.newlook-ui .newlook-registry-intro {
    max-width: 710px;
    margin: 0;
    color: #b7c5d5;
    font-size: 17px;
    line-height: 1.65;
}

.newlook-ui .newlook-registry-hero {
    display: flex;
    min-height: 235px;
    align-items: center;
    justify-content: center;
}

.newlook-ui .newlook-registry-hero img {
    display: block;
    width: 115%;
    max-width: 570px;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(
            0 22px 30px rgba(0, 0, 0, 0.25)
        );
}


/* ==========================================================
   Registry Panel
   ========================================================== */

.newlook-ui .newlook-registry-panel {
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 27, 57, 0.96),
            rgba(2, 16, 36, 0.95)
        );
    border: 1px solid rgba(84, 146, 209, 0.45);
    border-radius: 15px;
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-registry-panel__header {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px;
    border-bottom: 1px solid rgba(108, 157, 205, 0.26);
}

.newlook-ui .newlook-registry-panel__header > div:first-child {
    min-width: 0;
}

.newlook-ui .newlook-registry-panel .newlook-card-label {
    margin: 0 0 8px;
    color: #169cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newlook-ui .newlook-registry-panel__header h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.25;
}

.newlook-ui .newlook-registry-panel__header p:last-child {
    margin: 0;
    color: #9fb0c3;
    font-size: 15px;
    line-height: 1.5;
}


/* ==========================================================
   Registry Count
   ========================================================== */

.newlook-ui .newlook-registry-count {
    display: grid;
    flex: 0 0 auto;
    min-width: 120px;
    min-height: 92px;
    padding: 14px 20px;
    place-items: center;
    align-content: center;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(8, 80, 162, 0.42),
            rgba(3, 28, 64, 0.7)
        );
    border: 1px solid rgba(30, 151, 255, 0.56);
    border-radius: 11px;
    box-shadow:
        0 0 22px rgba(0, 125, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-registry-count strong {
    display: block;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
}

.newlook-ui .newlook-registry-count span {
    display: block;
    margin-top: 7px;
    color: #a9c7e2;
    font-size: 12px;
    line-height: 1.3;
}


/* ==========================================================
   Alphabet Navigation
   ========================================================== */

.newlook-ui .newlook-registry-alphabet {
    display: grid;
    grid-template-columns:
        repeat(13, minmax(36px, 1fr));
    gap: 8px;
    padding: 22px 30px;
    background: rgba(1, 13, 31, 0.38);
    border-bottom: 1px solid rgba(108, 157, 205, 0.26);
}

.newlook-ui .newlook-registry-letter {
    display: grid;
    min-height: 40px;
    padding: 7px 5px;
    place-items: center;
    color: #bdd0e2;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    background: rgba(5, 32, 67, 0.72);
    border: 1px solid rgba(89, 145, 201, 0.4);
    border-radius: 7px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-registry-letter:hover,
.newlook-ui .newlook-registry-letter:focus-visible {
    color: #ffffff;
    background: rgba(10, 79, 159, 0.76);
    border-color: #229fff;
    box-shadow: 0 0 16px rgba(0, 137, 255, 0.17);
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-registry-letter.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            #168fff,
            #0754bd
        );
    border-color: #39a9ff;
    box-shadow:
        0 0 16px rgba(0, 143, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}


/* ==========================================================
   Registry Table
   ========================================================== */

.newlook-ui .newlook-registry-table-wrap {
    overflow-x: auto;
    width: 100%;
}

.newlook-ui .newlook-registry-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    table-layout: fixed;
}

.newlook-ui .newlook-registry-table th {
    padding: 17px 20px;
    color: #dce9f5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-align: left;
    text-transform: uppercase;
    background:
        linear-gradient(
            180deg,
            rgba(9, 56, 108, 0.82),
            rgba(5, 38, 78, 0.82)
        );
    border-bottom: 1px solid rgba(92, 157, 217, 0.38);
}

.newlook-ui .newlook-registry-table th:first-child {
    width: 29%;
}

.newlook-ui .newlook-registry-table th:nth-child(2) {
    width: 17%;
}

.newlook-ui .newlook-registry-table th:nth-child(3) {
    width: 12%;
}

.newlook-ui .newlook-registry-table th:nth-child(4) {
    width: 22%;
}

.newlook-ui .newlook-registry-table th:nth-child(5) {
    width: 20%;
}

.newlook-ui .newlook-registry-table td {
    padding: 18px 20px;
    color: #d4deea;
    font-size: 15px;
    line-height: 1.45;
    vertical-align: middle;
    border-bottom: 1px solid rgba(88, 137, 186, 0.21);
}

.newlook-ui .newlook-registry-table tbody tr {
    background: rgba(2, 17, 38, 0.18);
    transition:
        background-color 150ms ease,
        box-shadow 150ms ease;
}

.newlook-ui .newlook-registry-table tbody tr:nth-child(even) {
    background: rgba(6, 34, 69, 0.26);
}

.newlook-ui .newlook-registry-table tbody tr:hover {
    background: rgba(10, 73, 143, 0.27);
    box-shadow:
        inset 4px 0 0 #169cff;
}

.newlook-ui .newlook-registry-table tbody tr:last-child td {
    border-bottom: 0;
}

.newlook-ui .newlook-registry-name {
    color: #ffffff;
    font-weight: 700;
}

.newlook-ui .newlook-registry-designation {
    display: inline-flex;
    min-width: 65px;
    min-height: 30px;
    padding: 5px 11px;
    align-items: center;
    justify-content: center;
    color: #42b4ff;
    font-size: 13px;
    font-weight: 700;
    background: rgba(10, 104, 189, 0.18);
    border: 1px solid rgba(37, 161, 255, 0.46);
    border-radius: 20px;
}


/* ==========================================================
   Registry Messages
   ========================================================== */

.newlook-ui .newlook-registry-message {
    padding: 48px 28px !important;
    color: #aebfd1 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

.newlook-ui .newlook-registry-message strong {
    color: #ffffff;
}

.newlook-ui .newlook-registry-message--error {
    color: #ffd1d7 !important;
    background: rgba(115, 20, 37, 0.2);
}


/* ==========================================================
   Registry Pagination
   ========================================================== */

.newlook-ui .newlook-registry-pagination {
    display: grid;
    grid-template-columns:
        minmax(120px, 1fr)
        auto
        minmax(120px, 1fr);
    gap: 18px;
    align-items: center;
    padding: 22px 30px;
    background: rgba(1, 13, 31, 0.42);
    border-top: 1px solid rgba(108, 157, 205, 0.26);
}

.newlook-ui .newlook-registry-page-link {
    display: inline-flex;
    width: max-content;
    min-height: 43px;
    padding: 9px 16px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #dbe9f6;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(8, 57, 116, 0.54);
    border: 1px solid rgba(42, 145, 233, 0.52);
    border-radius: 8px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-registry-page-link:last-child {
    justify-self: end;
}

.newlook-ui .newlook-registry-page-link:hover,
.newlook-ui .newlook-registry-page-link:focus-visible {
    color: #ffffff;
    background: rgba(13, 90, 178, 0.72);
    border-color: #2ba3ff;
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-registry-page-link.is-disabled {
    color: #63778c;
    background: rgba(26, 46, 69, 0.28);
    border-color: rgba(95, 123, 151, 0.22);
    cursor: not-allowed;
}

.newlook-ui .newlook-registry-page-status {
    color: #9fb0c2;
    font-size: 14px;
    text-align: center;
}

.newlook-ui .newlook-registry-page-status strong {
    color: #ffffff;
}


/* ==========================================================
   Registry Responsive Layout
   ========================================================== */

@media (max-width: 1250px) {

   .newlook-ui.newlook-cpui-registry-page .newlook-shell,
.newlook-ui.newlook-piv-registry-page .newlook-shell {
    grid-template-columns: 240px minmax(0, 1fr);
}

    .newlook-ui .newlook-registry-content {
        padding-right: 28px;
        padding-left: 28px;
    }

    .newlook-ui .newlook-registry-header {
        grid-template-columns:
            minmax(390px, 1fr)
            minmax(330px, 0.72fr);
        gap: 24px;
    }

    .newlook-ui .newlook-registry-hero img {
        width: 125%;
    }

    .newlook-ui .newlook-registry-alphabet {
        grid-template-columns:
            repeat(9, minmax(36px, 1fr));
    }

}


@media (max-width: 1000px) {

    .newlook-ui .newlook-registry-header {
        grid-template-columns: 1fr;
        padding-bottom: 16px;
    }

    .newlook-ui .newlook-registry-header__copy {
        max-width: 760px;
    }

    .newlook-ui .newlook-registry-hero {
        min-height: 200px;
    }

    .newlook-ui .newlook-registry-hero img {
        width: 75%;
        max-width: 610px;
    }

}


@media (max-width: 900px) {

    .newlook-ui.newlook-cpui-registry-page .newlook-shell,
.newlook-ui.newlook-piv-registry-page .newlook-shell {
    grid-template-columns: 1fr;
}

    .newlook-ui
    .newlook-registry-sidebar
    .newlook-account-nav {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .newlook-ui
    .newlook-registry-sidebar
    .newlook-account-nav-link {
        min-height: 70px;
    }

    .newlook-ui .newlook-registry-panel__header {
        align-items: flex-start;
    }

    .newlook-ui .newlook-registry-alphabet {
        grid-template-columns:
            repeat(7, minmax(36px, 1fr));
    }

}


@media (max-width: 700px) {

    .newlook-ui .newlook-registry-content {
        padding: 28px 16px 44px;
    }

    .newlook-ui .newlook-registry-header {
        min-height: auto;
        padding: 28px 24px 18px;
    }

    .newlook-ui .newlook-registry-header h1 {
        font-size: 39px;
    }

    .newlook-ui .newlook-registry-intro {
        font-size: 16px;
    }

    .newlook-ui .newlook-registry-hero {
        min-height: 160px;
    }

    .newlook-ui .newlook-registry-hero img {
        width: 100%;
    }

    .newlook-ui .newlook-registry-panel__header {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 18px;
        padding: 24px 20px;
    }

    .newlook-ui .newlook-registry-count {
        min-width: 94px;
        min-height: 78px;
        padding: 12px;
    }

    .newlook-ui .newlook-registry-count strong {
        font-size: 25px;
    }

    .newlook-ui .newlook-registry-alphabet {
        grid-template-columns:
            repeat(5, minmax(36px, 1fr));
        padding: 18px 20px;
    }

    /*
     * Convert the registry table into stacked cards.
     */
    .newlook-ui .newlook-registry-table-wrap {
        overflow: visible;
        padding: 16px;
    }

    .newlook-ui .newlook-registry-table {
        min-width: 0;
    }

    .newlook-ui .newlook-registry-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .newlook-ui .newlook-registry-table,
    .newlook-ui .newlook-registry-table tbody,
    .newlook-ui .newlook-registry-table tr,
    .newlook-ui .newlook-registry-table td {
        display: block;
        width: 100%;
    }

    .newlook-ui .newlook-registry-table tbody {
        display: grid;
        gap: 14px;
    }

    .newlook-ui .newlook-registry-table tbody tr {
        overflow: hidden;
        background:
            linear-gradient(
                145deg,
                rgba(6, 37, 76, 0.84),
                rgba(2, 20, 45, 0.9)
            );
        border: 1px solid rgba(74, 143, 209, 0.4);
        border-radius: 11px;
        box-shadow:
            0 12px 28px rgba(0, 0, 0, 0.17);
    }

    .newlook-ui .newlook-registry-table tbody tr:hover {
        box-shadow:
            0 12px 28px rgba(0, 0, 0, 0.17);
    }

    .newlook-ui .newlook-registry-table td {
        display: grid;
        grid-template-columns:
            minmax(125px, 0.85fr)
            minmax(0, 1.15fr);
        gap: 14px;
        padding: 13px 16px;
        text-align: right;
        border-bottom: 1px solid rgba(88, 137, 186, 0.2);
    }

    .newlook-ui .newlook-registry-table td::before {
        content: attr(data-label);
        color: #199cff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.055em;
        text-align: left;
        text-transform: uppercase;
    }

    .newlook-ui .newlook-registry-table td:last-child {
        border-bottom: 0;
    }

    .newlook-ui .newlook-registry-name {
        color: #ffffff;
    }

    .newlook-ui .newlook-registry-message {
        display: block !important;
        padding: 38px 20px !important;
        text-align: center !important;
    }

    .newlook-ui .newlook-registry-message::before {
        display: none;
    }

    .newlook-ui .newlook-registry-pagination {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
        gap: 12px;
        padding: 18px 20px;
    }

    .newlook-ui .newlook-registry-page-status {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .newlook-ui .newlook-registry-page-link {
        grid-row: 2;
        width: 100%;
    }

}


@media (max-width: 600px) {

    .newlook-ui
    .newlook-registry-sidebar
    .newlook-account-nav {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-registry-panel__header {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-registry-count {
        width: 100%;
        min-height: 68px;
    }

    .newlook-ui .newlook-registry-alphabet {
        grid-template-columns:
            repeat(4, minmax(36px, 1fr));
    }

}


@media (max-width: 430px) {

    .newlook-ui .newlook-registry-header {
        padding-right: 18px;
        padding-left: 18px;
    }

    .newlook-ui .newlook-registry-header h1 {
        font-size: 34px;
    }

    .newlook-ui .newlook-registry-alphabet {
        grid-template-columns:
            repeat(3, minmax(36px, 1fr));
    }

    .newlook-ui .newlook-registry-table-wrap {
        padding: 12px;
    }

    .newlook-ui .newlook-registry-table td {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: left;
    }

}
/* ==========================================================
   PIV / UGPIV Mastery Registry
   ========================================================== */

/*
 * Give the PIV Registry the same primary layout as the
 * CPUI Registry.
 */
.newlook-ui.newlook-piv-registry-page .newlook-shell {
    grid-template-columns: 265px minmax(0, 1fr);
}


/* ==========================================================
   PIV Registry Table Widths
   ========================================================== */

.newlook-ui.newlook-piv-registry-page
.newlook-registry-table {
    min-width: 980px;
}

.newlook-ui.newlook-piv-registry-page
.newlook-registry-table th:first-child {
    width: 24%;
}

.newlook-ui.newlook-piv-registry-page
.newlook-registry-table th:nth-child(2) {
    width: 15%;
}

.newlook-ui.newlook-piv-registry-page
.newlook-registry-table th:nth-child(3) {
    width: 8%;
}

.newlook-ui.newlook-piv-registry-page
.newlook-registry-table th:nth-child(4) {
    width: 20%;
}

.newlook-ui.newlook-piv-registry-page
.newlook-registry-table th:nth-child(5) {
    width: 18%;
}

.newlook-ui.newlook-piv-registry-page
.newlook-registry-table th:nth-child(6) {
    width: 15%;
}


/* Keep certificate-type labels from wrapping awkwardly. */

.newlook-ui.newlook-piv-registry-page
.newlook-registry-designation {
    min-width: 108px;
    white-space: nowrap;
}


/* ==========================================================
   PIV Registry Responsive Layout
   ========================================================== */

@media (max-width: 1250px) {

    .newlook-ui.newlook-piv-registry-page .newlook-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

}


@media (max-width: 900px) {

    .newlook-ui.newlook-piv-registry-page .newlook-shell {
        grid-template-columns: 1fr;
    }

}


/*
 * The shared registry CSS converts the table into stacked
 * cards below 700px. Remove the desktop minimum width there.
 */

@media (max-width: 700px) {

    .newlook-ui.newlook-piv-registry-page
    .newlook-registry-table {
        min-width: 0;
    }

    .newlook-ui.newlook-piv-registry-page
    .newlook-registry-designation {
        min-width: 0;
        white-space: normal;
    }

}
/* ==========================================================
   Site License Usage Review
   ========================================================== */

.newlook-ui.newlook-license-review-page .newlook-shell {
    grid-template-columns: 265px minmax(0, 1fr);
}

.newlook-ui.newlook-license-review-page .newlook-main {
    position: relative;
    min-width: 0;
    overflow-x: hidden;
}

.newlook-ui .newlook-license-review-content {
    width: min(100%, 1460px);
    margin: 0 auto;
    padding: 48px 44px 64px;
}


/* ==========================================================
   License Review Sidebar
   ========================================================== */

.newlook-ui .newlook-license-review-sidebar {
    position: relative;
    z-index: 5;
}

.newlook-ui
.newlook-license-review-sidebar
.newlook-sidebar-brand {
    padding-bottom: 24px;
}

.newlook-ui
.newlook-license-review-sidebar
.newlook-sidebar-logo {
    width: 180px;
    margin-bottom: 0;
}


/* ==========================================================
   License Review Hero
   ========================================================== */

.newlook-ui .newlook-license-review-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(430px, 1fr)
        minmax(390px, 0.78fr);
    gap: 40px;
    align-items: center;
    min-height: 310px;
    margin-bottom: 30px;
    padding: 34px 38px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(17, 147, 255, 0.23),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(5, 30, 64, 0.97),
            rgba(2, 16, 36, 0.95)
        );
    border: 1px solid rgba(75, 150, 218, 0.43);
    border-radius: 16px;
    box-shadow:
        0 24px 58px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-license-review-hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            rgba(66, 151, 232, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(66, 151, 232, 0.035) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
}

.newlook-ui .newlook-license-review-hero__copy,
.newlook-ui .newlook-license-review-hero__image {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.newlook-ui
.newlook-license-review-hero
.newlook-eyebrow {
    margin: 0 0 12px;
    color: #179cff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-license-review-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.06;
}

.newlook-ui .newlook-license-review-intro {
    max-width: 720px;
    margin: 0;
    color: #b6c5d5;
    font-size: 17px;
    line-height: 1.65;
}

.newlook-ui .newlook-license-review-hero__image {
    display: flex;
    min-height: 235px;
    align-items: center;
    justify-content: center;
}

.newlook-ui .newlook-license-review-hero__image img {
    display: block;
    width: 112%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(
            0 22px 30px rgba(0, 0, 0, 0.26)
        );
}


/* ==========================================================
   License Review Main Grid
   ========================================================== */

.newlook-ui .newlook-license-review-grid {
    display: grid;
    grid-template-columns:
        minmax(380px, 0.88fr)
        minmax(430px, 1.12fr);
    gap: 30px;
    align-items: start;
}


/* ==========================================================
   Shared Review Cards
   ========================================================== */

.newlook-ui .newlook-license-review-information,
.newlook-ui .newlook-license-review-card {
    min-width: 0;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 28, 59, 0.97),
            rgba(2, 17, 38, 0.96)
        );
    border: 1px solid rgba(82, 147, 211, 0.43);
    border-radius: 15px;
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.newlook-ui .newlook-license-review-information {
    padding: 30px;
}

.newlook-ui .newlook-license-review-card {
    padding: 0;
}

.newlook-ui
.newlook-license-review-section-heading,
.newlook-ui
.newlook-license-review-card__header {
    display: flex;
    gap: 17px;
    align-items: flex-start;
}

.newlook-ui
.newlook-license-review-section-heading {
    margin-bottom: 24px;
}

.newlook-ui
.newlook-license-review-card__header {
    padding: 30px 30px 26px;
    background:
        linear-gradient(
            180deg,
            rgba(8, 54, 108, 0.47),
            rgba(3, 25, 55, 0.2)
        );
    border-bottom: 1px solid rgba(92, 151, 207, 0.27);
}

.newlook-ui .newlook-license-review-heading-icon,
.newlook-ui .newlook-license-review-card__icon {
    display: grid;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    place-items: center;
    color: #2ba8ff;
    font-size: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(13, 101, 190, 0.36),
            rgba(4, 43, 92, 0.55)
        );
    border: 1px solid rgba(48, 159, 248, 0.48);
    border-radius: 11px;
    box-shadow:
        0 0 20px rgba(0, 130, 255, 0.1);
}

.newlook-ui
.newlook-license-review-section-heading
.newlook-card-label,
.newlook-ui
.newlook-license-review-card__header
.newlook-card-label {
    margin: 0 0 7px;
    color: #169cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.newlook-ui
.newlook-license-review-section-heading h2,
.newlook-ui
.newlook-license-review-card__header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.25;
}

.newlook-ui
.newlook-license-review-card__header p:last-child {
    max-width: 620px;
    margin: 10px 0 0;
    color: #a9bacb;
    font-size: 14px;
    line-height: 1.55;
}


/* ==========================================================
   Information Panel
   ========================================================== */

.newlook-ui .newlook-license-review-information > p {
    margin: 0 0 18px;
    color: #b1c0d0;
    font-size: 15px;
    line-height: 1.65;
}

.newlook-ui .newlook-license-review-feature-list {
    display: grid;
    gap: 13px;
    margin-top: 26px;
}

.newlook-ui .newlook-license-review-feature {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(4, 35, 72, 0.52);
    border: 1px solid rgba(76, 137, 194, 0.3);
    border-radius: 10px;
}

.newlook-ui .newlook-license-review-feature > i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #25a5ff;
    font-size: 16px;
    background: rgba(13, 98, 181, 0.23);
    border: 1px solid rgba(38, 155, 243, 0.34);
    border-radius: 8px;
}

.newlook-ui .newlook-license-review-feature strong {
    display: block;
    margin-bottom: 5px;
    color: #eef6ff;
    font-size: 15px;
    line-height: 1.3;
}

.newlook-ui .newlook-license-review-feature span {
    display: block;
    color: #9dafc1;
    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================================
   Contact Assistance Box
   ========================================================== */

.newlook-ui .newlook-license-review-contact {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(8, 77, 147, 0.28),
            rgba(3, 37, 78, 0.48)
        );
    border: 1px solid rgba(39, 152, 238, 0.43);
    border-radius: 11px;
}

.newlook-ui .newlook-license-review-contact > i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #34b2ff;
    font-size: 21px;
    background: rgba(8, 91, 172, 0.28);
    border: 1px solid rgba(47, 164, 249, 0.38);
    border-radius: 50%;
}

.newlook-ui .newlook-license-review-contact strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 15px;
}

.newlook-ui .newlook-license-review-contact p {
    margin: 0 0 8px;
    color: #a9bbcc;
    font-size: 13px;
    line-height: 1.5;
}

.newlook-ui .newlook-license-review-contact a {
    color: #32adff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.newlook-ui .newlook-license-review-contact a:hover,
.newlook-ui .newlook-license-review-contact a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}


/* ==========================================================
   Error Alerts
   ========================================================== */

.newlook-ui .newlook-license-review-alert {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    margin: 24px 30px 0;
    padding: 15px 17px;
    color: #f4d8dc;
    font-size: 14px;
    line-height: 1.5;
    background: rgba(120, 23, 41, 0.23);
    border: 1px solid rgba(255, 91, 111, 0.47);
    border-radius: 9px;
}

.newlook-ui .newlook-license-review-alert > i {
    margin-top: 2px;
    color: #ff6879;
    font-size: 18px;
}

.newlook-ui .newlook-license-review-alert a {
    color: #ffffff;
}


/* ==========================================================
   License Review Form
   ========================================================== */

.newlook-ui .newlook-license-review-form {
    display: grid;
    gap: 22px;
    padding: 30px;
}

.newlook-ui .newlook-license-review-field {
    display: grid;
    gap: 9px;
}

.newlook-ui .newlook-license-review-field label {
    color: #dbe7f2;
    font-size: 14px;
    font-weight: 700;
}

.newlook-ui .newlook-license-review-control {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 54px;
    padding: 0 16px;
    background: rgba(1, 15, 34, 0.74);
    border: 1px solid rgba(89, 145, 199, 0.46);
    border-radius: 9px;
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        background-color 150ms ease;
}

.newlook-ui
.newlook-license-review-control.newlook-license-review-select {
    grid-template-columns:
        22px minmax(0, 1fr) 14px;
}

.newlook-ui .newlook-license-review-control:focus-within {
    background: rgba(3, 28, 60, 0.88);
    border-color: #249fff;
    box-shadow:
        0 0 0 3px rgba(25, 151, 255, 0.13),
        0 0 20px rgba(0, 125, 255, 0.1);
}

.newlook-ui
.newlook-license-review-control > i:first-child {
    color: #269fff;
    font-size: 16px;
    text-align: center;
}

.newlook-ui
.newlook-license-review-control > i:last-child {
    color: #6fa9d7;
    font-size: 12px;
    pointer-events: none;
}

.newlook-ui .newlook-license-review-control input,
.newlook-ui .newlook-license-review-control select {
    width: 100%;
    min-width: 0;
    height: 52px;
    margin: 0;
    padding: 0;
    color: #f3f8fd;
    font-family: inherit;
    font-size: 15px;
    background: transparent;
    border: 0;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

.newlook-ui .newlook-license-review-control select {
    appearance: none;
    cursor: pointer;
}

.newlook-ui
.newlook-license-review-control
input::placeholder {
    color: #74879a;
    opacity: 1;
}

.newlook-ui
.newlook-license-review-control
select:invalid {
    color: #8192a3;
}

.newlook-ui
.newlook-license-review-control
select option {
    color: #17293b;
    background: #ffffff;
}

.newlook-ui
.newlook-license-review-control
input:-webkit-autofill,
.newlook-ui
.newlook-license-review-control
input:-webkit-autofill:hover,
.newlook-ui
.newlook-license-review-control
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #f3f8fd;
    transition:
        background-color 9999s ease-out 0s;
}

.newlook-ui
.newlook-license-review-control
select:disabled,
.newlook-ui
.newlook-license-review-control
input:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}


/* ==========================================================
   Form Actions
   ========================================================== */

.newlook-ui .newlook-license-review-actions {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    gap: 14px;
    align-items: center;
    margin-top: 2px;
}

.newlook-ui .newlook-license-review-submit,
.newlook-ui .newlook-license-review-back {
    display: inline-flex;
    min-height: 50px;
    padding: 11px 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-license-review-submit {
    color: #ffffff;
    cursor: pointer;
    background:
        linear-gradient(
            180deg,
            #159dff,
            #0759c4
        );
    border: 1px solid #35aaff;
    box-shadow:
        0 10px 24px rgba(0, 105, 218, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.newlook-ui .newlook-license-review-submit:hover,
.newlook-ui .newlook-license-review-submit:focus-visible {
    background:
        linear-gradient(
            180deg,
            #30adff,
            #0868d7
        );
    border-color: #6ac4ff;
    box-shadow:
        0 14px 30px rgba(0, 111, 225, 0.28);
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-license-review-submit:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.newlook-ui .newlook-license-review-back {
    color: #c5d3e0;
    text-decoration: none;
    background: rgba(4, 34, 69, 0.66);
    border: 1px solid rgba(84, 143, 199, 0.47);
}

.newlook-ui .newlook-license-review-back:hover,
.newlook-ui .newlook-license-review-back:focus-visible {
    color: #ffffff;
    background: rgba(9, 70, 139, 0.7);
    border-color: #219cff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   Form Footer
   ========================================================== */

.newlook-ui .newlook-license-review-card__footer {
    display: grid;
    grid-template-columns: 21px minmax(0, 1fr);
    gap: 11px;
    align-items: flex-start;
    padding: 18px 30px 22px;
    color: #8fa3b6;
    background: rgba(1, 13, 30, 0.42);
    border-top: 1px solid rgba(92, 151, 207, 0.24);
}

.newlook-ui
.newlook-license-review-card__footer > i {
    margin-top: 2px;
    color: #258fdc;
    font-size: 15px;
}

.newlook-ui
.newlook-license-review-card__footer p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}


/* ==========================================================
   License Review Responsive Layout
   ========================================================== */

@media (max-width: 1250px) {

    .newlook-ui.newlook-license-review-page .newlook-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .newlook-ui .newlook-license-review-content {
        padding-right: 28px;
        padding-left: 28px;
    }

    .newlook-ui .newlook-license-review-hero {
        grid-template-columns:
            minmax(390px, 1fr)
            minmax(320px, 0.7fr);
        gap: 24px;
    }

    .newlook-ui .newlook-license-review-grid {
        grid-template-columns:
            minmax(340px, 0.8fr)
            minmax(410px, 1.2fr);
    }

}


@media (max-width: 1050px) {

    .newlook-ui .newlook-license-review-hero {
        grid-template-columns: 1fr;
        padding-bottom: 18px;
    }

    .newlook-ui .newlook-license-review-hero__copy {
        max-width: 760px;
    }

    .newlook-ui .newlook-license-review-hero__image {
        min-height: 190px;
    }

    .newlook-ui .newlook-license-review-hero__image img {
        width: 72%;
        max-width: 600px;
    }

    .newlook-ui .newlook-license-review-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-license-review-information,
    .newlook-ui .newlook-license-review-card {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

}


@media (max-width: 900px) {

    .newlook-ui.newlook-license-review-page .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui
    .newlook-license-review-sidebar
    .newlook-account-nav {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .newlook-ui
    .newlook-license-review-sidebar
    .newlook-account-nav-link {
        min-height: 70px;
    }

}


@media (max-width: 700px) {

    .newlook-ui .newlook-license-review-content {
        padding: 28px 16px 44px;
    }

    .newlook-ui .newlook-license-review-hero {
        min-height: auto;
        padding: 28px 24px 18px;
    }

    .newlook-ui .newlook-license-review-hero h1 {
        font-size: 39px;
    }

    .newlook-ui .newlook-license-review-intro {
        font-size: 16px;
    }

    .newlook-ui .newlook-license-review-hero__image {
        min-height: 155px;
    }

    .newlook-ui .newlook-license-review-hero__image img {
        width: 100%;
    }

    .newlook-ui .newlook-license-review-information {
        padding: 24px 20px;
    }

    .newlook-ui
    .newlook-license-review-card__header {
        padding: 24px 20px 22px;
    }

    .newlook-ui .newlook-license-review-form {
        padding: 24px 20px;
    }

    .newlook-ui .newlook-license-review-alert {
        margin-right: 20px;
        margin-left: 20px;
    }

    .newlook-ui
    .newlook-license-review-card__footer {
        padding-right: 20px;
        padding-left: 20px;
    }

}


@media (max-width: 600px) {

    .newlook-ui
    .newlook-license-review-sidebar
    .newlook-account-nav {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-license-review-actions {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-license-review-submit,
    .newlook-ui .newlook-license-review-back {
        width: 100%;
    }

}


@media (max-width: 430px) {

    .newlook-ui .newlook-license-review-hero {
        padding-right: 18px;
        padding-left: 18px;
    }

    .newlook-ui .newlook-license-review-hero h1 {
        font-size: 34px;
    }

    .newlook-ui
    .newlook-license-review-section-heading,
    .newlook-ui
    .newlook-license-review-card__header {
        display: grid;
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-license-review-feature {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-license-review-contact {
        grid-template-columns: 1fr;
    }

}
/* ==========================================================
   Company License Usage Report
   ========================================================== */

.newlook-ui.newlook-company-usage-page .newlook-shell {
    grid-template-columns: 265px minmax(0, 1fr);
}

.newlook-ui.newlook-company-usage-page .newlook-main {
    position: relative;
    min-width: 0;
    overflow-x: hidden;
}

.newlook-ui .newlook-company-usage-content {
    width: min(100%, 1500px);
    margin: 0 auto;
    padding: 48px 44px 64px;
}


/* ==========================================================
   Company Usage Sidebar
   ========================================================== */

.newlook-ui .newlook-company-usage-sidebar {
    position: relative;
    z-index: 5;
}

.newlook-ui
.newlook-company-usage-sidebar
.newlook-sidebar-brand {
    padding-bottom: 24px;
}

.newlook-ui
.newlook-company-usage-sidebar
.newlook-sidebar-logo {
    width: 180px;
    margin-bottom: 0;
}


/* ==========================================================
   Company Usage Hero
   ========================================================== */

.newlook-ui .newlook-company-usage-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(430px, 1fr)
        minmax(380px, 0.75fr);
    gap: 40px;
    align-items: center;
    min-height: 310px;
    margin-bottom: 30px;
    padding: 34px 38px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 24%,
            rgba(18, 149, 255, 0.23),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(5, 30, 64, 0.97),
            rgba(2, 16, 36, 0.95)
        );
    border: 1px solid rgba(75, 150, 218, 0.43);
    border-radius: 16px;
    box-shadow:
        0 24px 58px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-company-usage-hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            rgba(66, 151, 232, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(66, 151, 232, 0.035) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
}

.newlook-ui .newlook-company-usage-hero__copy,
.newlook-ui .newlook-company-usage-hero__image {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.newlook-ui
.newlook-company-usage-hero
.newlook-eyebrow {
    margin: 0 0 12px;
    color: #179cff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-company-usage-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.06;
}

.newlook-ui .newlook-company-usage-intro {
    max-width: 720px;
    margin: 0;
    color: #b6c5d5;
    font-size: 17px;
    line-height: 1.65;
}

.newlook-ui .newlook-company-usage-change {
    display: inline-flex;
    width: max-content;
    min-height: 44px;
    margin-top: 24px;
    padding: 9px 16px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #d9e8f5;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(5, 54, 108, 0.6);
    border: 1px solid rgba(43, 150, 238, 0.53);
    border-radius: 8px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-company-usage-change:hover,
.newlook-ui .newlook-company-usage-change:focus-visible {
    color: #ffffff;
    background: rgba(11, 83, 163, 0.75);
    border-color: #28a2ff;
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-company-usage-hero__image {
    display: flex;
    min-height: 235px;
    align-items: center;
    justify-content: center;
}

.newlook-ui .newlook-company-usage-hero__image img {
    display: block;
    width: 112%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(
            0 22px 30px rgba(0, 0, 0, 0.26)
        );
}


/* ==========================================================
   Report Error
   ========================================================== */

.newlook-ui .newlook-company-usage-alert {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    color: #f5dce0;
    background:
        linear-gradient(
            145deg,
            rgba(113, 21, 39, 0.3),
            rgba(62, 15, 29, 0.4)
        );
    border: 1px solid rgba(255, 91, 111, 0.5);
    border-radius: 12px;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.2);
}

.newlook-ui .newlook-company-usage-alert > i {
    margin-top: 2px;
    color: #ff6879;
    font-size: 23px;
}

.newlook-ui .newlook-company-usage-alert strong {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 17px;
}

.newlook-ui .newlook-company-usage-alert p {
    margin: 0 0 12px;
    color: #d9bfc4;
    font-size: 14px;
    line-height: 1.55;
}

.newlook-ui .newlook-company-usage-alert a {
    color: #ffffff;
    font-weight: 700;
}


/* ==========================================================
   Organization Header
   ========================================================== */

.newlook-ui .newlook-company-usage-organization {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
    padding: 24px 28px;
    background:
        linear-gradient(
            145deg,
            rgba(5, 30, 64, 0.96),
            rgba(2, 17, 38, 0.96)
        );
    border: 1px solid rgba(77, 145, 208, 0.42);
    border-radius: 14px;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.newlook-ui
.newlook-company-usage-organization__icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    color: #2ba8ff;
    font-size: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(14, 104, 196, 0.36),
            rgba(4, 43, 92, 0.54)
        );
    border: 1px solid rgba(48, 159, 248, 0.48);
    border-radius: 13px;
}

.newlook-ui
.newlook-company-usage-organization
.newlook-card-label {
    margin: 0 0 6px;
    color: #169cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.newlook-ui
.newlook-company-usage-organization h2 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.25;
}

.newlook-ui .newlook-company-usage-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 11px;
}

.newlook-ui .newlook-company-usage-contact span,
.newlook-ui .newlook-company-usage-contact a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #aebfd0;
    font-size: 14px;
    line-height: 1.4;
}

.newlook-ui .newlook-company-usage-contact a {
    color: #31aaff;
    text-decoration: none;
}

.newlook-ui .newlook-company-usage-contact a:hover,
.newlook-ui .newlook-company-usage-contact a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}


/* ==========================================================
   Organization Summary
   ========================================================== */

.newlook-ui .newlook-company-usage-summary {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.newlook-ui .newlook-company-usage-stat {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 105px;
    padding: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(5, 37, 76, 0.94),
            rgba(2, 21, 47, 0.94)
        );
    border: 1px solid rgba(76, 143, 205, 0.4);
    border-radius: 12px;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.18);
}

.newlook-ui .newlook-company-usage-stat > i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #2ca9ff;
    font-size: 18px;
    background: rgba(11, 95, 180, 0.25);
    border: 1px solid rgba(42, 155, 242, 0.37);
    border-radius: 10px;
}

.newlook-ui .newlook-company-usage-stat strong {
    display: block;
    color: #ffffff;
    font-size: 29px;
    line-height: 1;
}

.newlook-ui .newlook-company-usage-stat span {
    display: block;
    margin-top: 7px;
    color: #9eb1c3;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.newlook-ui
.newlook-company-usage-stat.is-over-capacity {
    background:
        linear-gradient(
            145deg,
            rgba(105, 22, 39, 0.42),
            rgba(54, 13, 26, 0.52)
        );
    border-color: rgba(255, 91, 111, 0.5);
}

.newlook-ui
.newlook-company-usage-stat.is-over-capacity > i {
    color: #ff6979;
    background: rgba(145, 27, 48, 0.27);
    border-color: rgba(255, 91, 111, 0.42);
}


/* ==========================================================
   License Cards
   ========================================================== */

.newlook-ui .newlook-company-license-card {
    min-width: 0;
    margin-bottom: 26px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 28, 59, 0.97),
            rgba(2, 17, 38, 0.96)
        );
    border: 1px solid rgba(82, 147, 211, 0.43);
    border-radius: 15px;
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}



.newlook-ui .newlook-company-license-header {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    padding: 25px 28px;
    background:
        linear-gradient(
            180deg,
            rgba(8, 55, 109, 0.5),
            rgba(3, 25, 55, 0.2)
        );
    border-bottom: 1px solid rgba(92, 151, 207, 0.27);
}

.newlook-ui .newlook-company-license-heading {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-width: 0;
}

.newlook-ui .newlook-company-license-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #2ca8ff;
    font-size: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(13, 101, 190, 0.36),
            rgba(4, 43, 92, 0.55)
        );
    border: 1px solid rgba(48, 159, 248, 0.48);
    border-radius: 11px;
}

.newlook-ui
.newlook-company-license-heading
.newlook-card-label {
    margin: 0 0 6px;
    color: #169cff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}

.newlook-ui .newlook-company-license-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.3;
}

.newlook-ui .newlook-company-license-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 16px;
    margin-top: 8px;
}

.newlook-ui .newlook-company-license-contact span,
.newlook-ui .newlook-company-license-contact a {
    color: #9eb1c4;
    font-size: 13px;
    line-height: 1.4;
}

.newlook-ui .newlook-company-license-contact a {
    color: #2fa9ff;
    text-decoration: none;
}

.newlook-ui .newlook-company-license-contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}


/* ==========================================================
   License Seat Metrics
   ========================================================== */

.newlook-ui .newlook-company-license-metrics {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(95px, 1fr));
    flex: 0 0 auto;
    gap: 10px;
}

.newlook-ui .newlook-company-license-metrics > div {
    display: grid;
    min-width: 100px;
    min-height: 72px;
    padding: 11px 14px;
    align-content: center;
    text-align: center;
    background: rgba(3, 32, 68, 0.64);
    border: 1px solid rgba(74, 139, 201, 0.35);
    border-radius: 9px;
}

.newlook-ui .newlook-company-license-metrics span {
    display: block;
    color: #8fa5b9;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.045em;
    line-height: 1.3;
    text-transform: uppercase;
}

.newlook-ui .newlook-company-license-metrics strong {
    display: block;
    margin-top: 6px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.newlook-ui
.newlook-company-license-metrics
.is-over-capacity {
    background: rgba(111, 20, 38, 0.32);
    border-color: rgba(255, 91, 111, 0.46);
}

.newlook-ui
.newlook-company-license-metrics
.is-over-capacity strong {
    color: #ff8491;
}


/* ==========================================================
   License User Area
   ========================================================== */

.newlook-ui .newlook-company-license-users {
    padding: 0;
}

.newlook-ui
.newlook-company-license-users__header {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    background: rgba(1, 15, 34, 0.38);
    border-bottom: 1px solid rgba(83, 137, 189, 0.22);
}

.newlook-ui
.newlook-company-license-users__header h3 {
    margin: 0;
    color: #e8f1f9;
    font-size: 16px;
    line-height: 1.35;
}

.newlook-ui
.newlook-company-license-users__header span {
    display: inline-flex;
    min-height: 30px;
    padding: 5px 11px;
    align-items: center;
    color: #38afff;
    font-size: 12px;
    font-weight: 700;
    background: rgba(8, 91, 170, 0.22);
    border: 1px solid rgba(38, 155, 243, 0.4);
    border-radius: 20px;
}


/* ==========================================================
   Empty License Message
   ========================================================== */

.newlook-ui .newlook-company-license-empty {
    display: grid;
    gap: 12px;
    min-height: 145px;
    padding: 30px;
    place-items: center;
    align-content: center;
    color: #91a5b8;
    text-align: center;
}

.newlook-ui .newlook-company-license-empty > i {
    color: #267fbe;
    font-size: 30px;
}

.newlook-ui .newlook-company-license-empty p {
    max-width: 520px;
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}


/* ==========================================================
   License User Tables
   ========================================================== */

.newlook-ui .newlook-company-license-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.newlook-ui .newlook-company-license-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    table-layout: fixed;
}

.newlook-ui .newlook-company-license-table th {
    padding: 15px 20px;
    color: #d8e7f3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-align: left;
    text-transform: uppercase;
    background:
        linear-gradient(
            180deg,
            rgba(8, 55, 106, 0.82),
            rgba(5, 37, 76, 0.82)
        );
    border-bottom: 1px solid rgba(91, 155, 215, 0.37);
}

.newlook-ui .newlook-company-license-table td {
    padding: 16px 20px;
    color: #cedae6;
    font-size: 14px;
    line-height: 1.45;
    vertical-align: middle;
    border-bottom: 1px solid rgba(88, 137, 186, 0.2);
}

.newlook-ui
.newlook-company-license-table
tbody tr {
    background: rgba(2, 17, 38, 0.18);
    transition:
        background-color 150ms ease,
        box-shadow 150ms ease;
}

.newlook-ui
.newlook-company-license-table
tbody tr:nth-child(even) {
    background: rgba(6, 34, 69, 0.25);
}

.newlook-ui
.newlook-company-license-table
tbody tr:hover {
    background: rgba(10, 73, 143, 0.26);
    box-shadow:
        inset 4px 0 0 #169cff;
}

.newlook-ui
.newlook-company-license-table
tbody tr:last-child td {
    border-bottom: 0;
}

.newlook-ui
.newlook-company-license-table th:first-child {
    width: 28%;
}

.newlook-ui
.newlook-company-license-table th:nth-child(2) {
    width: 44%;
}

.newlook-ui
.newlook-company-license-table th:nth-child(3) {
    width: 28%;
}

.newlook-ui
.newlook-company-license-table.is-child-license-table
th:first-child {
    width: 38%;
}

.newlook-ui
.newlook-company-license-table.is-child-license-table
th:nth-child(2) {
    width: 62%;
}

.newlook-ui .newlook-company-license-table a {
    color: #31aaff;
    text-decoration: none;
}

.newlook-ui .newlook-company-license-table a:hover,
.newlook-ui .newlook-company-license-table a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

.newlook-ui .newlook-company-license-muted {
    color: #71869a;
    font-style: italic;
}

.newlook-ui .newlook-company-license-report-link {
    display: inline-flex;
    min-height: 36px;
    padding: 7px 12px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #dbeaf6 !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    background: rgba(7, 69, 137, 0.55);
    border: 1px solid rgba(35, 147, 237, 0.48);
    border-radius: 7px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-company-license-report-link:hover,
.newlook-ui .newlook-company-license-report-link:focus-visible {
    color: #ffffff !important;
    background: rgba(11, 91, 178, 0.72);
    border-color: #29a5ff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   Child License Section
   ========================================================== */

.newlook-ui .newlook-company-child-licenses {
    margin-top: 34px;
}

.newlook-ui
.newlook-company-child-licenses__header {
    display: flex;
    gap: 22px;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 0 4px;
}

.newlook-ui
.newlook-company-child-licenses__header
.newlook-card-label {
    margin: 0 0 6px;
    color: #169cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.newlook-ui
.newlook-company-child-licenses__header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.3;
}

.newlook-ui
.newlook-company-child-licenses__header > span {
    display: inline-flex;
    min-height: 34px;
    padding: 6px 13px;
    align-items: center;
    color: #40b1ff;
    font-size: 13px;
    font-weight: 700;
    background: rgba(8, 91, 170, 0.22);
    border: 1px solid rgba(38, 155, 243, 0.4);
    border-radius: 20px;
}


/* ==========================================================
   Company Usage Responsive Layout
   ========================================================== */

@media (max-width: 1250px) {

    .newlook-ui.newlook-company-usage-page .newlook-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .newlook-ui .newlook-company-usage-content {
        padding-right: 28px;
        padding-left: 28px;
    }

    .newlook-ui .newlook-company-usage-hero {
        grid-template-columns:
            minmax(390px, 1fr)
            minmax(320px, 0.7fr);
        gap: 24px;
    }

    .newlook-ui .newlook-company-usage-summary {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .newlook-ui .newlook-company-license-header {
        align-items: flex-start;
    }

    .newlook-ui .newlook-company-license-metrics {
        grid-template-columns: 1fr;
        min-width: 145px;
    }

}


@media (max-width: 1050px) {

    .newlook-ui .newlook-company-usage-hero {
        grid-template-columns: 1fr;
        padding-bottom: 18px;
    }

    .newlook-ui .newlook-company-usage-hero__copy {
        max-width: 760px;
    }

    .newlook-ui .newlook-company-usage-hero__image {
        min-height: 190px;
    }

    .newlook-ui .newlook-company-usage-hero__image img {
        width: 72%;
        max-width: 600px;
    }

    .newlook-ui .newlook-company-license-header {
        display: grid;
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-company-license-metrics {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        width: 100%;
    }

}


@media (max-width: 900px) {

    .newlook-ui.newlook-company-usage-page .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui
    .newlook-company-usage-sidebar
    .newlook-account-nav {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .newlook-ui
    .newlook-company-usage-sidebar
    .newlook-account-nav-link {
        min-height: 70px;
    }

}


@media (max-width: 700px) {

    .newlook-ui .newlook-company-usage-content {
        padding: 28px 16px 44px;
    }

    .newlook-ui .newlook-company-usage-hero {
        min-height: auto;
        padding: 28px 24px 18px;
    }

    .newlook-ui .newlook-company-usage-hero h1 {
        font-size: 39px;
    }

    .newlook-ui .newlook-company-usage-intro {
        font-size: 16px;
    }

    .newlook-ui .newlook-company-usage-hero__image {
        min-height: 155px;
    }

    .newlook-ui .newlook-company-usage-hero__image img {
        width: 100%;
    }

    .newlook-ui .newlook-company-usage-organization {
        grid-template-columns: 1fr;
        padding: 22px 20px;
    }

    .newlook-ui .newlook-company-usage-summary {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-company-license-header {
        padding: 22px 20px;
    }

    .newlook-ui .newlook-company-license-heading {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-company-license-metrics {
        grid-template-columns: 1fr;
    }

    .newlook-ui
    .newlook-company-license-users__header {
        padding-right: 20px;
        padding-left: 20px;
    }

    /*
     * Convert user tables into stacked cards.
     */
    .newlook-ui .newlook-company-license-table-wrap {
        overflow: visible;
        padding: 14px;
    }

    .newlook-ui .newlook-company-license-table {
        min-width: 0;
    }

    .newlook-ui .newlook-company-license-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .newlook-ui .newlook-company-license-table,
    .newlook-ui .newlook-company-license-table tbody,
    .newlook-ui .newlook-company-license-table tr,
    .newlook-ui .newlook-company-license-table td {
        display: block;
        width: 100%;
    }

    .newlook-ui .newlook-company-license-table tbody {
        display: grid;
        gap: 12px;
    }

    .newlook-ui
    .newlook-company-license-table tbody tr {
        overflow: hidden;
        background:
            linear-gradient(
                145deg,
                rgba(6, 37, 76, 0.84),
                rgba(2, 20, 45, 0.9)
            );
        border: 1px solid rgba(74, 143, 209, 0.4);
        border-radius: 10px;
        box-shadow:
            0 12px 26px rgba(0, 0, 0, 0.16);
    }

    .newlook-ui
    .newlook-company-license-table tbody tr:hover {
        box-shadow:
            0 12px 26px rgba(0, 0, 0, 0.16);
    }

    .newlook-ui .newlook-company-license-table td {
        display: grid;
        grid-template-columns:
            minmax(120px, 0.8fr)
            minmax(0, 1.2fr);
        gap: 12px;
        padding: 12px 15px;
        text-align: right;
        border-bottom:
            1px solid rgba(88, 137, 186, 0.2);
    }

    .newlook-ui
    .newlook-company-license-table td::before {
        content: attr(data-label);
        color: #199cff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.055em;
        text-align: left;
        text-transform: uppercase;
    }

    .newlook-ui
    .newlook-company-license-table td:last-child {
        border-bottom: 0;
    }

    .newlook-ui
    .newlook-company-license-report-link {
        justify-self: end;
    }

    .newlook-ui
    .newlook-company-child-licenses__header {
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .newlook-ui
    .newlook-company-usage-sidebar
    .newlook-account-nav {
        grid-template-columns: 1fr;
    }

    .newlook-ui
    .newlook-company-child-licenses__header {
        display: grid;
        grid-template-columns: 1fr;
    }

    .newlook-ui
    .newlook-company-child-licenses__header > span {
        width: max-content;
    }

}


@media (max-width: 430px) {

    .newlook-ui .newlook-company-usage-hero {
        padding-right: 18px;
        padding-left: 18px;
    }

    .newlook-ui .newlook-company-usage-hero h1 {
        font-size: 34px;
    }

    .newlook-ui
    .newlook-company-license-users__header {
        display: grid;
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-company-license-table td {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: left;
    }

    .newlook-ui
    .newlook-company-license-report-link {
        justify-self: start;
    }

}
/* ==========================================================
   PUBLIC COURSE CATALOG
   Page class: newlook-public-catalog-page
   ========================================================== */

.newlook-ui.newlook-public-catalog-page {
    min-height: 100vh;
    color: #dbe8f4;
    background:
        radial-gradient(
            circle at 82% 8%,
            rgba(0, 113, 255, 0.13),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #020914 0%,
            #031225 52%,
            #020a15 100%
        );
}

.newlook-ui.newlook-public-catalog-page .newlook-public-main {
    width: min(100%, 1580px);
    margin: 0 auto;
    padding: 30px 34px 70px;
}


/* ==========================================================
   PUBLIC HEADER
   ========================================================== */

.newlook-ui .newlook-public-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background:
        linear-gradient(
            180deg,
            rgba(2, 10, 24, 0.98),
            rgba(2, 12, 28, 0.94)
        );
    border-bottom: 1px solid rgba(64, 137, 210, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.newlook-ui .newlook-public-header__inner {
    display: grid;
    grid-template-columns: minmax(280px, auto) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    width: min(100%, 1580px);
    min-height: 90px;
    margin: 0 auto;
    padding: 14px 34px;
}

.newlook-ui .newlook-public-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
    color: #ffffff;
    text-decoration: none;
}

.newlook-ui .newlook-public-brand img {
    display: block;
    width: 116px;
    height: auto;
}

.newlook-ui .newlook-public-brand span {
    padding-left: 18px;
    color: #24a8ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.35;
    text-transform: uppercase;
    border-left: 1px solid rgba(72, 141, 203, 0.32);
}

.newlook-ui .newlook-public-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    align-items: center;
    justify-content: flex-end;
}

.newlook-ui .newlook-public-navigation a {
    position: relative;
    display: inline-flex;
    min-height: 40px;
    padding: 8px 0;
    align-items: center;
    color: #d8e3ee;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 150ms ease,
        text-shadow 150ms ease;
}

.newlook-ui .newlook-public-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    content: "";
    background: #168dff;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 150ms ease;
}

.newlook-ui .newlook-public-navigation a:hover,
.newlook-ui .newlook-public-navigation a:focus-visible,
.newlook-ui .newlook-public-navigation a.is-active {
    color: #ffffff;
    outline: none;
    text-shadow: 0 0 14px rgba(44, 164, 255, 0.24);
}

.newlook-ui .newlook-public-navigation a:hover::after,
.newlook-ui .newlook-public-navigation a:focus-visible::after,
.newlook-ui .newlook-public-navigation a.is-active::after {
    transform: scaleX(1);
}

.newlook-ui .newlook-public-menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: #ffffff;
    cursor: pointer;
    background: rgba(4, 40, 82, 0.7);
    border: 1px solid rgba(55, 153, 234, 0.45);
    border-radius: 8px;
}

.newlook-ui .newlook-public-menu-toggle i {
    font-size: 18px;
}


/* ==========================================================
   CATALOG HERO
   ========================================================== */

.newlook-ui .newlook-catalog-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(480px, 1fr)
        minmax(430px, 0.9fr);
    gap: 38px;
    align-items: center;
    min-height: 470px;
    padding: 48px 48px 38px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 34%,
            rgba(0, 118, 255, 0.22),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(4, 28, 61, 0.98),
            rgba(2, 14, 34, 0.97)
        );
    border: 1px solid rgba(62, 145, 220, 0.42);
    border-radius: 18px;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-catalog-hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            rgba(70, 151, 226, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(70, 151, 226, 0.035) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
}

.newlook-ui .newlook-catalog-hero__copy,
.newlook-ui .newlook-catalog-hero__image {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.newlook-ui .newlook-catalog-hero .newlook-eyebrow {
    margin: 0 0 14px;
    color: #1da1ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.newlook-ui .newlook-catalog-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #f7fbff;
    font-size: clamp(46px, 5.4vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.newlook-ui .newlook-catalog-hero h1 span {
    display: block;
    color: #1686ff;
    text-shadow: 0 0 28px rgba(0, 118, 255, 0.16);
}

.newlook-ui .newlook-catalog-hero__intro {
    max-width: 760px;
    margin: 22px 0 0;
    color: #b7c5d4;
    font-size: 18px;
    line-height: 1.65;
}

.newlook-ui .newlook-catalog-hero__image {
    display: flex;
    min-height: 340px;
    align-items: center;
    justify-content: center;
}

.newlook-ui .newlook-catalog-hero__image img {
    display: block;
    width: 118%;
    max-width: 660px;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(
            0 30px 38px rgba(0, 0, 0, 0.32)
        );
}


/* ==========================================================
   HERO SEARCH
   ========================================================== */

.newlook-ui .newlook-catalog-search {
    max-width: 780px;
    margin-top: 30px;
}

.newlook-ui .newlook-catalog-search__control {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 62px;
    padding: 5px 6px 5px 18px;
    background: rgba(1, 15, 34, 0.84);
    border: 1px solid rgba(63, 150, 222, 0.5);
    border-radius: 11px;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.newlook-ui .newlook-catalog-search__control:focus-within {
    border-color: #1d9eff;
    box-shadow:
        0 0 0 3px rgba(27, 153, 255, 0.13),
        0 16px 38px rgba(0, 0, 0, 0.22);
}

.newlook-ui .newlook-catalog-search__control > i {
    color: #2ba7ff;
    font-size: 17px;
}

.newlook-ui .newlook-catalog-search input {
    width: 100%;
    min-width: 0;
    height: 50px;
    margin: 0;
    padding: 0;
    color: #f4f8fc;
    font: inherit;
    font-size: 15px;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
}

.newlook-ui .newlook-catalog-search input::placeholder {
    color: #74879b;
    opacity: 1;
}

.newlook-ui .newlook-catalog-search button {
    min-width: 112px;
    min-height: 50px;
    padding: 10px 18px;
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    background:
        linear-gradient(
            180deg,
            #1ba5ff,
            #075ecb
        );
    border: 1px solid #3eb2ff;
    border-radius: 8px;
    box-shadow:
        0 10px 24px rgba(0, 103, 215, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.newlook-ui .newlook-catalog-search button:hover,
.newlook-ui .newlook-catalog-search button:focus-visible {
    border-color: #7dcaff;
    outline: none;
    box-shadow:
        0 13px 30px rgba(0, 112, 226, 0.3);
    transform: translateY(-1px);
}


/* ==========================================================
   HERO FACTS
   ========================================================== */

.newlook-ui .newlook-catalog-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 34px;
    margin-top: 28px;
}

.newlook-ui .newlook-catalog-hero__facts > div {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    align-items: baseline;
}

.newlook-ui .newlook-catalog-hero__facts > div:not(:last-child)::after {
    position: absolute;
    top: 2px;
    right: -18px;
    width: 1px;
    height: 34px;
    content: "";
    background: rgba(87, 145, 199, 0.28);
}

.newlook-ui .newlook-catalog-hero__facts strong {
    color: #2aaaff;
    font-size: 23px;
    line-height: 1;
}

.newlook-ui .newlook-catalog-hero__facts span {
    color: #9caec0;
    font-size: 12px;
    line-height: 1.35;
}


/* ==========================================================
   SECTION HEADINGS
   ========================================================== */

.newlook-ui .newlook-catalog-filter-section,
.newlook-ui .newlook-catalog-results {
    margin-top: 34px;
}

.newlook-ui .newlook-catalog-section-heading,
.newlook-ui .newlook-catalog-results__header {
    display: flex;
    gap: 30px;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 3px;
}

.newlook-ui .newlook-catalog-section-heading .newlook-card-label,
.newlook-ui .newlook-catalog-results__header .newlook-card-label {
    margin: 0 0 7px;
    color: #149cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.newlook-ui .newlook-catalog-section-heading h2,
.newlook-ui .newlook-catalog-results__header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.25;
}

.newlook-ui .newlook-catalog-section-heading > p,
.newlook-ui .newlook-catalog-results__header > div > p:last-child {
    max-width: 580px;
    margin: 0;
    color: #95a9bb;
    font-size: 14px;
    line-height: 1.55;
}

.newlook-ui .newlook-catalog-results__header > div > p:last-child {
    margin-top: 7px;
}


/* ==========================================================
   PRODUCT TYPE FILTERS
   ========================================================== */

.newlook-ui .newlook-catalog-type-filters {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.newlook-ui .newlook-catalog-type-filter {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    min-height: 84px;
    padding: 15px 16px;
    color: #dce8f3;
    text-decoration: none;
    background:
        linear-gradient(
            145deg,
            rgba(5, 37, 76, 0.88),
            rgba(2, 21, 47, 0.92)
        );
    border: 1px solid rgba(68, 141, 207, 0.4);
    border-radius: 11px;
    box-shadow:
        0 13px 28px rgba(0, 0, 0, 0.16);
    transition:
        transform 150ms ease,
        border-color 150ms ease,
        background-color 150ms ease,
        box-shadow 150ms ease;
}

.newlook-ui .newlook-catalog-type-filter:hover,
.newlook-ui .newlook-catalog-type-filter:focus-visible,
.newlook-ui .newlook-catalog-type-filter.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            rgba(8, 69, 138, 0.92),
            rgba(3, 36, 76, 0.95)
        );
    border-color: #1d9eff;
    outline: none;
    box-shadow:
        0 17px 34px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(0, 127, 255, 0.08);
    transform: translateY(-2px);
}

.newlook-ui .newlook-catalog-type-filter > i {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #2aa8ff;
    font-size: 18px;
    background: rgba(11, 96, 182, 0.26);
    border: 1px solid rgba(42, 155, 242, 0.38);
    border-radius: 9px;
}

.newlook-ui .newlook-catalog-type-filter span {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.newlook-ui .newlook-catalog-type-filter strong {
    color: inherit;
    font-size: 14px;
    line-height: 1.35;
}

.newlook-ui .newlook-catalog-type-filter small {
    display: inline-flex;
    min-width: 28px;
    height: 28px;
    padding: 0 7px;
    align-items: center;
    justify-content: center;
    color: #39afff;
    font-size: 11px;
    font-weight: 700;
    background: rgba(6, 75, 148, 0.28);
    border: 1px solid rgba(37, 147, 233, 0.35);
    border-radius: 20px;
}


/* ==========================================================
   CLEAR FILTER BUTTON
   ========================================================== */

.newlook-ui .newlook-catalog-clear {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 14px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #d6e3ef;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(4, 38, 78, 0.68);
    border: 1px solid rgba(70, 142, 209, 0.46);
    border-radius: 8px;
    transition:
        color 150ms ease,
        border-color 150ms ease,
        background-color 150ms ease;
}

.newlook-ui .newlook-catalog-clear:hover,
.newlook-ui .newlook-catalog-clear:focus-visible {
    color: #ffffff;
    background: rgba(8, 68, 135, 0.77);
    border-color: #1c9eff;
    outline: none;
}


/* ==========================================================
   PRODUCT GRID
   ========================================================== */

.newlook-ui .newlook-catalog-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.newlook-ui .newlook-catalog-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 0;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 31, 65, 0.97),
            rgba(2, 17, 38, 0.97)
        );
    border: 1px solid rgba(68, 139, 205, 0.43);
    border-radius: 13px;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.newlook-ui .newlook-catalog-card:hover {
    border-color: rgba(37, 160, 249, 0.72);
    box-shadow:
        0 26px 54px rgba(0, 0, 0, 0.26),
        0 0 24px rgba(0, 125, 255, 0.08);
    transform: translateY(-4px);
}

.newlook-ui .newlook-catalog-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(8, 60, 120, 0.62),
            rgba(2, 25, 55, 0.8)
        );
    border-bottom: 1px solid rgba(71, 143, 210, 0.34);
}

.newlook-ui .newlook-catalog-card__image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(1, 12, 28, 0.68) 100%
        );
}

.newlook-ui .newlook-catalog-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.newlook-ui .newlook-catalog-card:hover .newlook-catalog-card__image img {
    transform: scale(1.035);
}

.newlook-ui .newlook-catalog-card__type {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    display: inline-flex;
    min-height: 32px;
    padding: 6px 10px;
    align-items: center;
    gap: 7px;
    color: #e7f5ff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    background: rgba(1, 24, 53, 0.84);
    border: 1px solid rgba(47, 163, 249, 0.48);
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.newlook-ui .newlook-catalog-card__type i {
    color: #2aa8ff;
}

.newlook-ui .newlook-catalog-card__body {
    padding: 22px 22px 18px;
}

.newlook-ui .newlook-catalog-card__body h3 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.3;
}

.newlook-ui .newlook-catalog-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.newlook-ui .newlook-catalog-card__body h3 a:hover,
.newlook-ui .newlook-catalog-card__body h3 a:focus-visible {
    color: #3bb0ff;
    outline: none;
}

.newlook-ui .newlook-catalog-card__body > p {
    margin: 13px 0 0;
    color: #a9bacb;
    font-size: 14px;
    line-height: 1.58;
}

.newlook-ui .newlook-catalog-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 18px;
}

.newlook-ui .newlook-catalog-card__details span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: #8fa5b8;
    font-size: 12px;
    line-height: 1.4;
}

.newlook-ui .newlook-catalog-card__details i {
    color: #269fef;
}

.newlook-ui .newlook-catalog-card__footer {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 17px 22px;
    background: rgba(1, 14, 31, 0.44);
    border-top: 1px solid rgba(76, 137, 193, 0.25);
}

.newlook-ui .newlook-catalog-card__footer > strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}

.newlook-ui .newlook-catalog-card__footer > a {
    display: inline-flex;
    min-height: 38px;
    padding: 8px 13px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #e6f3fd;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(7, 70, 140, 0.58);
    border: 1px solid rgba(37, 149, 238, 0.47);
    border-radius: 7px;
    transition:
        transform 150ms ease,
        border-color 150ms ease,
        background-color 150ms ease;
}

.newlook-ui .newlook-catalog-card__footer > a:hover,
.newlook-ui .newlook-catalog-card__footer > a:focus-visible {
    color: #ffffff;
    background: rgba(11, 91, 180, 0.76);
    border-color: #2aa7ff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   EMPTY AND ERROR MESSAGES
   ========================================================== */

.newlook-ui .newlook-catalog-message {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    color: #dce8f2;
    background:
        linear-gradient(
            145deg,
            rgba(5, 36, 74, 0.9),
            rgba(2, 20, 44, 0.93)
        );
    border: 1px solid rgba(71, 142, 207, 0.42);
    border-radius: 12px;
}

.newlook-ui .newlook-catalog-message > i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #2ca8ff;
    font-size: 19px;
    background: rgba(8, 88, 170, 0.27);
    border: 1px solid rgba(42, 155, 242, 0.38);
    border-radius: 10px;
}

.newlook-ui .newlook-catalog-message strong {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 17px;
}

.newlook-ui .newlook-catalog-message p {
    margin: 0;
    color: #a5b6c6;
    font-size: 14px;
    line-height: 1.55;
}

.newlook-ui .newlook-catalog-message a {
    display: inline-block;
    margin-top: 12px;
    color: #31aaff;
    font-weight: 700;
}

.newlook-ui .newlook-catalog-message.is-error {
    background:
        linear-gradient(
            145deg,
            rgba(105, 21, 39, 0.35),
            rgba(52, 14, 27, 0.44)
        );
    border-color: rgba(255, 91, 111, 0.5);
}

.newlook-ui .newlook-catalog-message.is-error > i {
    color: #ff6e7e;
    background: rgba(142, 27, 48, 0.28);
    border-color: rgba(255, 91, 111, 0.45);
}


/* ==========================================================
   PAGINATION
   ========================================================== */

.newlook-ui .newlook-catalog-pagination {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 30px;
}

.newlook-ui .newlook-catalog-pagination > a,
.newlook-ui .newlook-catalog-pagination > span,
.newlook-ui .newlook-catalog-pagination__pages a {
    display: inline-flex;
    min-height: 40px;
    padding: 8px 13px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #dbe8f3;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(4, 39, 80, 0.69);
    border: 1px solid rgba(69, 143, 210, 0.45);
    border-radius: 8px;
    transition:
        color 150ms ease,
        border-color 150ms ease,
        background-color 150ms ease;
}

.newlook-ui .newlook-catalog-pagination > a:hover,
.newlook-ui .newlook-catalog-pagination > a:focus-visible,
.newlook-ui .newlook-catalog-pagination__pages a:hover,
.newlook-ui .newlook-catalog-pagination__pages a:focus-visible,
.newlook-ui .newlook-catalog-pagination__pages a.is-active {
    color: #ffffff;
    background: rgba(8, 82, 161, 0.8);
    border-color: #21a1ff;
    outline: none;
}

.newlook-ui .newlook-catalog-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.newlook-ui .newlook-catalog-pagination__pages a {
    min-width: 40px;
    padding-right: 8px;
    padding-left: 8px;
}

.newlook-ui .newlook-catalog-pagination .is-disabled {
    cursor: not-allowed;
    opacity: 0.42;
}


/* ==========================================================
   RESPONSIVE LAYOUT
   ========================================================== */

@media (max-width: 1320px) {

    .newlook-ui .newlook-public-header__inner,
    .newlook-ui.newlook-public-catalog-page .newlook-public-main {
        padding-right: 26px;
        padding-left: 26px;
    }

    .newlook-ui .newlook-catalog-hero {
        grid-template-columns:
            minmax(430px, 1fr)
            minmax(340px, 0.74fr);
    }

    .newlook-ui .newlook-catalog-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 1100px) {

    .newlook-ui .newlook-public-header__inner {
        grid-template-columns: 1fr auto;
    }

    .newlook-ui .newlook-public-menu-toggle {
        display: grid;
    }

    .newlook-ui .newlook-public-navigation {
        position: absolute;
        top: 100%;
        right: 20px;
        left: 20px;
        display: none;
        padding: 14px;
        background:
            linear-gradient(
                180deg,
                rgba(3, 20, 44, 0.99),
                rgba(2, 13, 30, 0.99)
            );
        border: 1px solid rgba(66, 143, 212, 0.46);
        border-radius: 10px;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.33);
    }

    .newlook-ui .newlook-public-navigation.is-open {
        display: grid;
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .newlook-ui .newlook-public-navigation a {
        min-height: 44px;
        padding: 9px 12px;
        justify-content: center;
        background: rgba(5, 45, 91, 0.45);
        border: 1px solid rgba(60, 132, 198, 0.34);
        border-radius: 7px;
    }

    .newlook-ui .newlook-public-navigation a::after {
        display: none;
    }

    .newlook-ui .newlook-catalog-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .newlook-ui .newlook-catalog-hero__copy {
        max-width: 860px;
    }

    .newlook-ui .newlook-catalog-hero__image {
        min-height: 250px;
    }

    .newlook-ui .newlook-catalog-hero__image img {
        width: 76%;
        max-width: 680px;
    }

    .newlook-ui .newlook-catalog-type-filters {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .newlook-ui .newlook-catalog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 780px) {

    .newlook-ui .newlook-public-brand span {
        display: none;
    }

    .newlook-ui .newlook-catalog-section-heading,
    .newlook-ui .newlook-catalog-results__header {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .newlook-ui .newlook-catalog-type-filters {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .newlook-ui .newlook-catalog-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-catalog-pagination {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-catalog-pagination > a,
    .newlook-ui .newlook-catalog-pagination > span {
        width: 100%;
    }

}


@media (max-width: 620px) {

    .newlook-ui .newlook-public-header__inner {
        min-height: 78px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .newlook-ui .newlook-public-brand img {
        width: 100px;
    }

    .newlook-ui .newlook-public-navigation {
        right: 12px;
        left: 12px;
    }

    .newlook-ui .newlook-public-navigation.is-open {
        grid-template-columns: 1fr;
    }

    .newlook-ui.newlook-public-catalog-page .newlook-public-main {
        padding: 20px 14px 50px;
    }

    .newlook-ui .newlook-catalog-hero {
        padding: 28px 20px 18px;
        border-radius: 14px;
    }

    .newlook-ui .newlook-catalog-hero h1 {
        font-size: 43px;
    }

    .newlook-ui .newlook-catalog-hero__intro {
        font-size: 16px;
    }

    .newlook-ui .newlook-catalog-search__control {
        grid-template-columns: 22px minmax(0, 1fr);
        padding: 8px 14px;
    }

    .newlook-ui .newlook-catalog-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .newlook-ui .newlook-catalog-hero__facts {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .newlook-ui .newlook-catalog-hero__facts > div:not(:last-child)::after {
        display: none;
    }

    .newlook-ui .newlook-catalog-hero__image {
        min-height: 190px;
    }

    .newlook-ui .newlook-catalog-hero__image img {
        width: 100%;
    }

    .newlook-ui .newlook-catalog-type-filters {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-catalog-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .newlook-ui .newlook-catalog-card__footer > a {
        width: 100%;
    }

}


@media (max-width: 430px) {

    .newlook-ui .newlook-catalog-hero h1 {
        font-size: 37px;
    }

    .newlook-ui .newlook-catalog-section-heading h2,
    .newlook-ui .newlook-catalog-results__header h2 {
        font-size: 27px;
    }

    .newlook-ui .newlook-catalog-type-filter {
        grid-template-columns: 40px minmax(0, 1fr);
        min-height: 76px;
        padding: 13px;
    }

    .newlook-ui .newlook-catalog-type-filter > i {
        width: 40px;
        height: 40px;
    }

}


/* ==========================================================
   PRINT
   ========================================================== */

@media print {

    .newlook-ui .newlook-public-header,
    .newlook-ui .newlook-catalog-search,
    .newlook-ui .newlook-catalog-type-filters,
    .newlook-ui .newlook-catalog-clear,
    .newlook-ui .newlook-catalog-pagination {
        display: none !important;
    }

    .newlook-ui.newlook-public-catalog-page {
        color: #000000;
        background: #ffffff;
    }

    .newlook-ui.newlook-public-catalog-page .newlook-public-main {
        width: 100%;
        padding: 0;
    }

    .newlook-ui .newlook-catalog-hero,
    .newlook-ui .newlook-catalog-card {
        color: #000000;
        background: #ffffff;
        border: 1px solid #cccccc;
        box-shadow: none;
    }

}

/* ==========================================================
   PUBLIC PRODUCT DETAIL PAGE
   Page class: newlook-public-product-page
   Requires the shared public header and catalog-card CSS.
   ========================================================== */

.newlook-ui.newlook-public-product-page {
    min-height: 100vh;
    color: #dbe8f4;
    background:
        radial-gradient(
            circle at 82% 7%,
            rgba(0, 113, 255, 0.12),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #020914 0%,
            #031225 52%,
            #020a15 100%
        );
}

.newlook-ui.newlook-public-product-page .newlook-public-main {
    width: min(100%, 1580px);
    margin: 0 auto;
    padding: 26px 34px 72px;
}


/* ==========================================================
   BREADCRUMB
   ========================================================== */

.newlook-ui .newlook-product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
    margin: 0 0 22px;
    padding: 0 3px;
    color: #72889d;
    font-size: 12px;
    line-height: 1.45;
}

.newlook-ui .newlook-product-breadcrumb a {
    color: #9fb3c6;
    text-decoration: none;
    transition: color 150ms ease;
}

.newlook-ui .newlook-product-breadcrumb a:hover,
.newlook-ui .newlook-product-breadcrumb a:focus-visible {
    color: #35adff;
    outline: none;
}

.newlook-ui .newlook-product-breadcrumb i {
    color: #41647f;
    font-size: 9px;
}

.newlook-ui .newlook-product-breadcrumb span {
    max-width: 620px;
    overflow: hidden;
    color: #d8e4ef;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* ==========================================================
   PRODUCT ERROR
   ========================================================== */

.newlook-ui .newlook-product-error {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 22px;
    align-items: flex-start;
    padding: 34px;
    background:
        linear-gradient(
            145deg,
            rgba(89, 21, 39, 0.4),
            rgba(41, 13, 27, 0.56)
        );
    border: 1px solid rgba(255, 91, 111, 0.48);
    border-radius: 15px;
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.24);
}

.newlook-ui .newlook-product-error__icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: #ff7181;
    font-size: 26px;
    background: rgba(143, 29, 50, 0.28);
    border: 1px solid rgba(255, 91, 111, 0.44);
    border-radius: 13px;
}

.newlook-ui .newlook-product-error .newlook-card-label {
    margin: 0 0 8px;
    color: #ff8190;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.newlook-ui .newlook-product-error h1 {
    margin: 0;
    color: #ffffff;
    font-size: 33px;
    line-height: 1.22;
}

.newlook-ui .newlook-product-error p {
    margin: 14px 0 0;
    color: #d5bfc4;
    font-size: 15px;
    line-height: 1.6;
}

.newlook-ui .newlook-product-error a {
    display: inline-flex;
    width: max-content;
    min-height: 43px;
    margin-top: 22px;
    padding: 9px 15px;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(118, 28, 47, 0.52);
    border: 1px solid rgba(255, 108, 124, 0.47);
    border-radius: 8px;
    transition:
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-product-error a:hover,
.newlook-ui .newlook-product-error a:focus-visible {
    background: rgba(151, 35, 58, 0.72);
    border-color: #ff8592;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   PRODUCT HERO
   ========================================================== */

.newlook-ui .newlook-product-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(390px, 0.82fr)
        minmax(520px, 1.18fr);
    gap: 42px;
    align-items: center;
    min-height: 410px;
    padding: 38px 46px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 74% 28%,
            rgba(0, 119, 255, 0.2),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(5, 31, 67, 0.98),
            rgba(2, 15, 35, 0.97)
        );
    border: 1px solid rgba(64, 145, 218, 0.43);
    border-radius: 18px;
    box-shadow:
        0 28px 68px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-product-hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            rgba(70, 151, 226, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(70, 151, 226, 0.035) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
}

.newlook-ui .newlook-product-hero__image,
.newlook-ui .newlook-product-hero__copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.newlook-ui .newlook-product-hero__image {
    min-height: 310px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(7, 58, 117, 0.6),
            rgba(2, 26, 57, 0.82)
        );
    border: 1px solid rgba(64, 148, 220, 0.4);
    border-radius: 15px;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.26);
}

.newlook-ui .newlook-product-hero__image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(1, 12, 28, 0.52) 100%
        );
}

.newlook-ui .newlook-product-hero__image img {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.newlook-ui .newlook-product-type-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: inline-flex;
    min-height: 34px;
    padding: 7px 11px;
    align-items: center;
    gap: 8px;
    color: #edf7ff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    background: rgba(1, 24, 53, 0.86);
    border: 1px solid rgba(47, 163, 249, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.newlook-ui .newlook-product-type-badge i {
    color: #2ba9ff;
}

.newlook-ui .newlook-product-hero .newlook-eyebrow {
    margin: 0 0 13px;
    color: #169cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-product-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1.06;
    letter-spacing: -0.025em;
}

.newlook-ui .newlook-product-hero__intro {
    max-width: 820px;
    margin: 20px 0 0;
    color: #b8c7d5;
    font-size: 17px;
    line-height: 1.65;
}

.newlook-ui .newlook-product-hero__metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 27px;
}

.newlook-ui .newlook-product-hero__metadata span {
    display: inline-flex;
    min-height: 38px;
    padding: 8px 12px;
    align-items: center;
    gap: 8px;
    color: #d6e5f1;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    background: rgba(4, 42, 87, 0.6);
    border: 1px solid rgba(62, 139, 207, 0.4);
    border-radius: 8px;
}

.newlook-ui .newlook-product-hero__metadata i {
    color: #2da9ff;
}


/* ==========================================================
   PRODUCT LAYOUT
   ========================================================== */

.newlook-ui .newlook-product-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(330px, 390px);
    gap: 28px;
    align-items: start;
    margin-top: 30px;
}

.newlook-ui .newlook-product-main-column,
.newlook-ui .newlook-product-purchase-column {
    display: grid;
    gap: 24px;
    min-width: 0;
}


/* ==========================================================
   CONTENT CARDS
   ========================================================== */

.newlook-ui .newlook-product-content-card,
.newlook-ui .newlook-product-purchase-card,
.newlook-ui .newlook-product-seat-pricing {
    min-width: 0;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 30, 63, 0.97),
            rgba(2, 17, 38, 0.97)
        );
    border: 1px solid rgba(72, 143, 207, 0.42);
    border-radius: 14px;
    box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.21),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.newlook-ui .newlook-product-content-card {
    padding: 30px;
}

.newlook-ui .newlook-product-overview {
    border-color: rgba(35, 155, 241, 0.54);
}

.newlook-ui .newlook-product-section-heading {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 17px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.newlook-ui .newlook-product-section-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #2ba8ff;
    font-size: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(13, 101, 190, 0.36),
            rgba(4, 43, 92, 0.55)
        );
    border: 1px solid rgba(48, 159, 248, 0.47);
    border-radius: 11px;
}

.newlook-ui .newlook-product-section-heading .newlook-card-label {
    margin: 0 0 6px;
    color: #159cff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.newlook-ui .newlook-product-section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.3;
}

.newlook-ui .newlook-product-section-heading > div:last-child > p:last-child {
    max-width: 720px;
    margin: 9px 0 0;
    color: #94a9bb;
    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================================
   DATABASE RICH TEXT
   ========================================================== */

.newlook-ui .newlook-product-rich-text {
    color: #b6c5d3;
    font-size: 15px;
    line-height: 1.72;
}

.newlook-ui .newlook-product-rich-text > :first-child {
    margin-top: 0;
}

.newlook-ui .newlook-product-rich-text > :last-child {
    margin-bottom: 0;
}

.newlook-ui .newlook-product-rich-text p {
    margin: 0 0 18px;
}

.newlook-ui .newlook-product-rich-text br + br {
    line-height: 2;
}

.newlook-ui .newlook-product-rich-text h2,
.newlook-ui .newlook-product-rich-text h3,
.newlook-ui .newlook-product-rich-text h4 {
    margin: 27px 0 12px;
    color: #f1f7fc;
    line-height: 1.3;
}

.newlook-ui .newlook-product-rich-text h2 {
    font-size: 24px;
}

.newlook-ui .newlook-product-rich-text h3 {
    font-size: 20px;
}

.newlook-ui .newlook-product-rich-text h4 {
    font-size: 17px;
}

.newlook-ui .newlook-product-rich-text strong,
.newlook-ui .newlook-product-rich-text b {
    color: #f1f7fc;
}

.newlook-ui .newlook-product-rich-text ul,
.newlook-ui .newlook-product-rich-text ol {
    display: grid;
    gap: 9px;
    margin: 15px 0 21px;
    padding-left: 24px;
}

.newlook-ui .newlook-product-rich-text li {
    padding-left: 4px;
}

.newlook-ui .newlook-product-rich-text li::marker {
    color: #28a7ff;
    font-weight: 700;
}

.newlook-ui .newlook-product-rich-text a {
    color: #31aaff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(49, 170, 255, 0.42);
    text-underline-offset: 3px;
}

.newlook-ui .newlook-product-rich-text a:hover,
.newlook-ui .newlook-product-rich-text a:focus-visible {
    color: #ffffff;
    outline: none;
    text-decoration-color: #ffffff;
}

.newlook-ui .newlook-product-rich-text blockquote {
    margin: 22px 0;
    padding: 17px 20px;
    color: #c9d8e4;
    background: rgba(5, 51, 101, 0.48);
    border-left: 4px solid #1da0ff;
    border-radius: 0 9px 9px 0;
}

.newlook-ui .newlook-product-accreditation .newlook-product-rich-text {
    padding: 18px 20px;
    color: #abc0d1;
    background: rgba(3, 36, 75, 0.48);
    border: 1px solid rgba(60, 140, 208, 0.34);
    border-radius: 10px;
}


/* ==========================================================
   INCLUDED COMPONENT LIST
   ========================================================== */

.newlook-ui .newlook-product-included-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: included-item;
}

.newlook-ui .newlook-product-included-list li {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 70px;
    padding: 13px 14px;
    background: rgba(3, 34, 71, 0.5);
    border: 1px solid rgba(66, 135, 199, 0.32);
    border-radius: 9px;
    counter-increment: included-item;
}

.newlook-ui .newlook-product-included-list li::before {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    content: counter(included-item);
    color: #35adff;
    font-size: 13px;
    font-weight: 700;
    background: rgba(8, 89, 173, 0.25);
    border: 1px solid rgba(40, 154, 241, 0.37);
    border-radius: 8px;
}

.newlook-ui .newlook-product-included-list li > div {
    min-width: 0;
}

.newlook-ui .newlook-product-included-list strong {
    display: block;
    color: #edf5fb;
    font-size: 14px;
    line-height: 1.4;
}

.newlook-ui .newlook-product-included-list span {
    display: block;
    margin-top: 4px;
    color: #849bad;
    font-size: 11px;
    line-height: 1.45;
}

.newlook-ui .newlook-product-included-list li > a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #29a7ff;
    text-decoration: none;
    background: rgba(5, 68, 135, 0.52);
    border: 1px solid rgba(35, 145, 231, 0.4);
    border-radius: 7px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-product-included-list li > a:hover,
.newlook-ui .newlook-product-included-list li > a:focus-visible {
    color: #ffffff;
    background: rgba(9, 91, 179, 0.74);
    border-color: #27a6ff;
    outline: none;
    transform: translateX(2px);
}


/* ==========================================================
   PURCHASE CARD
   ========================================================== */

.newlook-ui .newlook-product-purchase-card {
    position: sticky;
    top: 116px;
}

.newlook-ui .newlook-product-purchase-card > header {
    padding: 27px 26px 23px;
    background:
        linear-gradient(
            180deg,
            rgba(8, 58, 115, 0.5),
            rgba(3, 25, 55, 0.18)
        );
    border-bottom: 1px solid rgba(80, 144, 203, 0.26);
}

.newlook-ui .newlook-product-purchase-card .newlook-card-label,
.newlook-ui .newlook-product-seat-pricing .newlook-card-label {
    margin: 0 0 7px;
    color: #169cff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.newlook-ui .newlook-product-price {
    color: #ffffff;
    font-size: 39px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.newlook-ui .newlook-product-purchase-card > header > p:last-child {
    margin: 13px 0 0;
    color: #9fb2c4;
    font-size: 13px;
    line-height: 1.55;
}

.newlook-ui .newlook-product-purchase-facts {
    display: grid;
    padding: 8px 26px;
}

.newlook-ui .newlook-product-purchase-facts > div {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 68px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(78, 135, 188, 0.2);
}

.newlook-ui .newlook-product-purchase-facts > div:last-child {
    border-bottom: 0;
}

.newlook-ui .newlook-product-purchase-facts i {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    color: #2ba8ff;
    font-size: 15px;
    background: rgba(7, 83, 163, 0.24);
    border: 1px solid rgba(39, 151, 238, 0.34);
    border-radius: 8px;
}

.newlook-ui .newlook-product-purchase-facts span {
    min-width: 0;
}

.newlook-ui .newlook-product-purchase-facts small {
    display: block;
    color: #71889c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-transform: uppercase;
}

.newlook-ui .newlook-product-purchase-facts strong {
    display: block;
    margin-top: 4px;
    color: #e8f1f8;
    font-size: 13px;
    line-height: 1.4;
}

.newlook-ui .newlook-product-purchase-card form {
    margin: 0;
    padding: 0 26px;
}

.newlook-ui .newlook-product-primary-action,
.newlook-ui .newlook-product-secondary-action {
    display: inline-flex;
    width: calc(100% - 52px);
    min-height: 52px;
    margin-right: 26px;
    margin-left: 26px;
    padding: 11px 18px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 9px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-product-purchase-card form .newlook-product-primary-action {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.newlook-ui .newlook-product-primary-action {
    color: #ffffff;
    cursor: pointer;
    background:
        linear-gradient(
            180deg,
            #1ba5ff,
            #075ecb
        );
    border: 1px solid #3eb2ff;
    box-shadow:
        0 11px 26px rgba(0, 103, 215, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.newlook-ui .newlook-product-primary-action:hover,
.newlook-ui .newlook-product-primary-action:focus-visible {
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            #35b1ff,
            #086bdc
        );
    border-color: #79c9ff;
    box-shadow:
        0 14px 31px rgba(0, 112, 226, 0.3);
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-product-secondary-action {
    margin-top: 12px;
    color: #cbd9e5;
    background: rgba(4, 39, 80, 0.62);
    border: 1px solid rgba(67, 139, 205, 0.43);
}

.newlook-ui .newlook-product-secondary-action:hover,
.newlook-ui .newlook-product-secondary-action:focus-visible {
    color: #ffffff;
    background: rgba(8, 69, 139, 0.73);
    border-color: #219fff;
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-product-purchase-card > footer {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: flex-start;
    margin-top: 22px;
    padding: 18px 26px 21px;
    color: #7f95a9;
    background: rgba(1, 13, 29, 0.42);
    border-top: 1px solid rgba(77, 134, 188, 0.2);
}

.newlook-ui .newlook-product-purchase-card > footer i {
    margin-top: 2px;
    color: #288ed2;
    font-size: 13px;
}

.newlook-ui .newlook-product-purchase-card > footer p {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
}


/* ==========================================================
   SITE LICENSE SEAT PRICING
   ========================================================== */

.newlook-ui .newlook-product-seat-pricing {
    padding: 24px;
}

.newlook-ui .newlook-product-seat-pricing h2 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.3;
}

.newlook-ui .newlook-product-seat-pricing > div {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.newlook-ui .newlook-product-seat-pricing span {
    display: flex;
    min-height: 50px;
    padding: 11px 13px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(3, 35, 73, 0.5);
    border: 1px solid rgba(66, 136, 201, 0.3);
    border-radius: 8px;
}

.newlook-ui .newlook-product-seat-pricing strong {
    color: #dce8f2;
    font-size: 13px;
}

.newlook-ui .newlook-product-seat-pricing small {
    color: #35adff;
    font-size: 14px;
    font-weight: 700;
}


/* ==========================================================
   RELATED PRODUCTS
   ========================================================== */

.newlook-ui .newlook-product-related {
    margin-top: 40px;
}

.newlook-ui .newlook-product-view-all {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 14px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #dce9f4;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(4, 41, 83, 0.66);
    border: 1px solid rgba(65, 140, 207, 0.44);
    border-radius: 8px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-product-view-all:hover,
.newlook-ui .newlook-product-view-all:focus-visible {
    color: #ffffff;
    background: rgba(8, 77, 153, 0.75);
    border-color: #219fff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   RESPONSIVE LAYOUT
   ========================================================== */

@media (max-width: 1320px) {

    .newlook-ui.newlook-public-product-page .newlook-public-main {
        padding-right: 26px;
        padding-left: 26px;
    }

    .newlook-ui .newlook-product-hero {
        grid-template-columns:
            minmax(340px, 0.75fr)
            minmax(470px, 1.25fr);
        gap: 32px;
        padding-right: 36px;
        padding-left: 36px;
    }

    .newlook-ui .newlook-product-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(315px, 355px);
    }

}


@media (max-width: 1050px) {

    .newlook-ui .newlook-product-hero {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-product-hero__image {
        width: min(100%, 760px);
        min-height: 300px;
    }

    .newlook-ui .newlook-product-hero__image img {
        height: 300px;
    }

    .newlook-ui .newlook-product-hero__copy {
        max-width: 900px;
    }

    .newlook-ui .newlook-product-layout {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-product-purchase-column {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.72fr);
        align-items: start;
    }

    .newlook-ui .newlook-product-purchase-card {
        position: static;
    }

}


@media (max-width: 780px) {

    .newlook-ui .newlook-product-purchase-column {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-product-section-heading {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .newlook-ui .newlook-product-section-icon {
        width: 46px;
        height: 46px;
    }

    .newlook-ui .newlook-product-related .newlook-catalog-section-heading {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .newlook-ui .newlook-product-view-all {
        width: max-content;
    }

}


@media (max-width: 620px) {

    .newlook-ui.newlook-public-product-page .newlook-public-main {
        padding: 18px 14px 52px;
    }

    .newlook-ui .newlook-product-breadcrumb span {
        max-width: 260px;
    }

    .newlook-ui .newlook-product-hero {
        min-height: auto;
        padding: 22px 18px 26px;
        border-radius: 14px;
    }

    .newlook-ui .newlook-product-hero__image {
        min-height: 220px;
    }

    .newlook-ui .newlook-product-hero__image img {
        height: 220px;
    }

    .newlook-ui .newlook-product-hero h1 {
        font-size: 38px;
    }

    .newlook-ui .newlook-product-hero__intro {
        font-size: 16px;
    }

    .newlook-ui .newlook-product-content-card {
        padding: 23px 19px;
    }

    .newlook-ui .newlook-product-section-heading {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-product-included-list li {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .newlook-ui .newlook-product-included-list li::before {
        width: 38px;
        height: 38px;
    }

    .newlook-ui .newlook-product-included-list li > a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .newlook-ui .newlook-product-error {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }

}


@media (max-width: 430px) {

    .newlook-ui .newlook-product-breadcrumb {
        align-items: flex-start;
    }

    .newlook-ui .newlook-product-breadcrumb span {
        max-width: 210px;
    }

    .newlook-ui .newlook-product-hero h1 {
        font-size: 33px;
    }

    .newlook-ui .newlook-product-hero__metadata {
        display: grid;
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-product-hero__metadata span {
        width: 100%;
    }

    .newlook-ui .newlook-product-content-card {
        padding-right: 16px;
        padding-left: 16px;
    }

    .newlook-ui .newlook-product-purchase-card > header,
    .newlook-ui .newlook-product-purchase-facts,
    .newlook-ui .newlook-product-purchase-card form,
    .newlook-ui .newlook-product-purchase-card > footer {
        padding-right: 20px;
        padding-left: 20px;
    }

    .newlook-ui .newlook-product-primary-action,
    .newlook-ui .newlook-product-secondary-action {
        width: calc(100% - 40px);
        margin-right: 20px;
        margin-left: 20px;
    }

    .newlook-ui .newlook-product-purchase-card form .newlook-product-primary-action {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

}


/* ==========================================================
   PRINT
   ========================================================== */

@media print {

    .newlook-ui .newlook-public-header,
    .newlook-ui .newlook-product-breadcrumb,
    .newlook-ui .newlook-product-purchase-column,
    .newlook-ui .newlook-product-related {
        display: none !important;
    }

    .newlook-ui.newlook-public-product-page {
        color: #000000;
        background: #ffffff;
    }

    .newlook-ui.newlook-public-product-page .newlook-public-main {
        width: 100%;
        padding: 0;
    }

    .newlook-ui .newlook-product-hero,
    .newlook-ui .newlook-product-content-card {
        color: #000000;
        background: #ffffff;
        border: 1px solid #cccccc;
        box-shadow: none;
    }

    .newlook-ui .newlook-product-layout {
        display: block;
    }

    .newlook-ui .newlook-product-main-column {
        display: block;
    }

    .newlook-ui .newlook-product-content-card {
        margin-top: 18px;
        break-inside: avoid;
    }

}
/* ==========================================================
   PUBLIC PRODUCT DETAIL PAGE
   Page class: newlook-public-product-page
   Requires the shared public header and catalog-card CSS.
   ========================================================== */

.newlook-ui.newlook-public-product-page {
    min-height: 100vh;
    color: #dbe8f4;
    background:
        radial-gradient(
            circle at 82% 7%,
            rgba(0, 113, 255, 0.12),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #020914 0%,
            #031225 52%,
            #020a15 100%
        );
}

.newlook-ui.newlook-public-product-page .newlook-public-main {
    width: min(100%, 1580px);
    margin: 0 auto;
    padding: 26px 34px 72px;
}


/* ==========================================================
   BREADCRUMB
   ========================================================== */

.newlook-ui .newlook-product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
    margin: 0 0 22px;
    padding: 0 3px;
    color: #72889d;
    font-size: 12px;
    line-height: 1.45;
}

.newlook-ui .newlook-product-breadcrumb a {
    color: #9fb3c6;
    text-decoration: none;
    transition: color 150ms ease;
}

.newlook-ui .newlook-product-breadcrumb a:hover,
.newlook-ui .newlook-product-breadcrumb a:focus-visible {
    color: #35adff;
    outline: none;
}

.newlook-ui .newlook-product-breadcrumb i {
    color: #41647f;
    font-size: 9px;
}

.newlook-ui .newlook-product-breadcrumb span {
    max-width: 620px;
    overflow: hidden;
    color: #d8e4ef;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* ==========================================================
   PRODUCT ERROR
   ========================================================== */

.newlook-ui .newlook-product-error {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 22px;
    align-items: flex-start;
    padding: 34px;
    background:
        linear-gradient(
            145deg,
            rgba(89, 21, 39, 0.4),
            rgba(41, 13, 27, 0.56)
        );
    border: 1px solid rgba(255, 91, 111, 0.48);
    border-radius: 15px;
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.24);
}

.newlook-ui .newlook-product-error__icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: #ff7181;
    font-size: 26px;
    background: rgba(143, 29, 50, 0.28);
    border: 1px solid rgba(255, 91, 111, 0.44);
    border-radius: 13px;
}

.newlook-ui .newlook-product-error .newlook-card-label {
    margin: 0 0 8px;
    color: #ff8190;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.newlook-ui .newlook-product-error h1 {
    margin: 0;
    color: #ffffff;
    font-size: 33px;
    line-height: 1.22;
}

.newlook-ui .newlook-product-error p {
    margin: 14px 0 0;
    color: #d5bfc4;
    font-size: 15px;
    line-height: 1.6;
}

.newlook-ui .newlook-product-error a {
    display: inline-flex;
    width: max-content;
    min-height: 43px;
    margin-top: 22px;
    padding: 9px 15px;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(118, 28, 47, 0.52);
    border: 1px solid rgba(255, 108, 124, 0.47);
    border-radius: 8px;
    transition:
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-product-error a:hover,
.newlook-ui .newlook-product-error a:focus-visible {
    background: rgba(151, 35, 58, 0.72);
    border-color: #ff8592;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   PRODUCT HERO
   ========================================================== */

.newlook-ui .newlook-product-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(390px, 0.82fr)
        minmax(520px, 1.18fr);
    gap: 42px;
    align-items: center;
    min-height: 410px;
    padding: 38px 46px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 74% 28%,
            rgba(0, 119, 255, 0.2),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(5, 31, 67, 0.98),
            rgba(2, 15, 35, 0.97)
        );
    border: 1px solid rgba(64, 145, 218, 0.43);
    border-radius: 18px;
    box-shadow:
        0 28px 68px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-product-hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            rgba(70, 151, 226, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(70, 151, 226, 0.035) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
}

.newlook-ui .newlook-product-hero__image,
.newlook-ui .newlook-product-hero__copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.newlook-ui .newlook-product-hero__image {
    min-height: 310px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(7, 58, 117, 0.6),
            rgba(2, 26, 57, 0.82)
        );
    border: 1px solid rgba(64, 148, 220, 0.4);
    border-radius: 15px;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.26);
}

.newlook-ui .newlook-product-hero__image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(1, 12, 28, 0.52) 100%
        );
}

.newlook-ui .newlook-product-hero__image img {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.newlook-ui .newlook-product-type-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: inline-flex;
    min-height: 34px;
    padding: 7px 11px;
    align-items: center;
    gap: 8px;
    color: #edf7ff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    background: rgba(1, 24, 53, 0.86);
    border: 1px solid rgba(47, 163, 249, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.newlook-ui .newlook-product-type-badge i {
    color: #2ba9ff;
}

.newlook-ui .newlook-product-hero .newlook-eyebrow {
    margin: 0 0 13px;
    color: #169cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-product-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1.06;
    letter-spacing: -0.025em;
}

.newlook-ui .newlook-product-hero__intro {
    max-width: 820px;
    margin: 20px 0 0;
    color: #b8c7d5;
    font-size: 17px;
    line-height: 1.65;
}

.newlook-ui .newlook-product-hero__metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 27px;
}

.newlook-ui .newlook-product-hero__metadata span {
    display: inline-flex;
    min-height: 38px;
    padding: 8px 12px;
    align-items: center;
    gap: 8px;
    color: #d6e5f1;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    background: rgba(4, 42, 87, 0.6);
    border: 1px solid rgba(62, 139, 207, 0.4);
    border-radius: 8px;
}

.newlook-ui .newlook-product-hero__metadata i {
    color: #2da9ff;
}


/* ==========================================================
   PRODUCT LAYOUT
   ========================================================== */

.newlook-ui .newlook-product-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(330px, 390px);
    gap: 28px;
    align-items: start;
    margin-top: 30px;
}

.newlook-ui .newlook-product-main-column,
.newlook-ui .newlook-product-purchase-column {
    display: grid;
    gap: 24px;
    min-width: 0;
}


/* ==========================================================
   CONTENT CARDS
   ========================================================== */

.newlook-ui .newlook-product-content-card,
.newlook-ui .newlook-product-purchase-card,
.newlook-ui .newlook-product-seat-pricing {
    min-width: 0;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 30, 63, 0.97),
            rgba(2, 17, 38, 0.97)
        );
    border: 1px solid rgba(72, 143, 207, 0.42);
    border-radius: 14px;
    box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.21),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.newlook-ui .newlook-product-content-card {
    padding: 30px;
}

.newlook-ui .newlook-product-overview {
    border-color: rgba(35, 155, 241, 0.54);
}

.newlook-ui .newlook-product-section-heading {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 17px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.newlook-ui .newlook-product-section-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #2ba8ff;
    font-size: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(13, 101, 190, 0.36),
            rgba(4, 43, 92, 0.55)
        );
    border: 1px solid rgba(48, 159, 248, 0.47);
    border-radius: 11px;
}

.newlook-ui .newlook-product-section-heading .newlook-card-label {
    margin: 0 0 6px;
    color: #159cff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.newlook-ui .newlook-product-section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.3;
}

.newlook-ui .newlook-product-section-heading > div:last-child > p:last-child {
    max-width: 720px;
    margin: 9px 0 0;
    color: #94a9bb;
    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================================
   DATABASE RICH TEXT
   ========================================================== */

.newlook-ui .newlook-product-rich-text {
    color: #b6c5d3;
    font-size: 15px;
    line-height: 1.72;
}

.newlook-ui .newlook-product-rich-text > :first-child {
    margin-top: 0;
}

.newlook-ui .newlook-product-rich-text > :last-child {
    margin-bottom: 0;
}

.newlook-ui .newlook-product-rich-text p {
    margin: 0 0 18px;
}

.newlook-ui .newlook-product-rich-text br + br {
    line-height: 2;
}

.newlook-ui .newlook-product-rich-text h2,
.newlook-ui .newlook-product-rich-text h3,
.newlook-ui .newlook-product-rich-text h4 {
    margin: 27px 0 12px;
    color: #f1f7fc;
    line-height: 1.3;
}

.newlook-ui .newlook-product-rich-text h2 {
    font-size: 24px;
}

.newlook-ui .newlook-product-rich-text h3 {
    font-size: 20px;
}

.newlook-ui .newlook-product-rich-text h4 {
    font-size: 17px;
}

.newlook-ui .newlook-product-rich-text strong,
.newlook-ui .newlook-product-rich-text b {
    color: #f1f7fc;
}

.newlook-ui .newlook-product-rich-text ul,
.newlook-ui .newlook-product-rich-text ol {
    display: grid;
    gap: 9px;
    margin: 15px 0 21px;
    padding-left: 24px;
}

.newlook-ui .newlook-product-rich-text li {
    padding-left: 4px;
}

.newlook-ui .newlook-product-rich-text li::marker {
    color: #28a7ff;
    font-weight: 700;
}

.newlook-ui .newlook-product-rich-text a {
    color: #31aaff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(49, 170, 255, 0.42);
    text-underline-offset: 3px;
}

.newlook-ui .newlook-product-rich-text a:hover,
.newlook-ui .newlook-product-rich-text a:focus-visible {
    color: #ffffff;
    outline: none;
    text-decoration-color: #ffffff;
}

.newlook-ui .newlook-product-rich-text blockquote {
    margin: 22px 0;
    padding: 17px 20px;
    color: #c9d8e4;
    background: rgba(5, 51, 101, 0.48);
    border-left: 4px solid #1da0ff;
    border-radius: 0 9px 9px 0;
}

.newlook-ui .newlook-product-accreditation .newlook-product-rich-text {
    padding: 18px 20px;
    color: #abc0d1;
    background: rgba(3, 36, 75, 0.48);
    border: 1px solid rgba(60, 140, 208, 0.34);
    border-radius: 10px;
}


/* ==========================================================
   INCLUDED COMPONENT LIST
   ========================================================== */

.newlook-ui .newlook-product-included-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: included-item;
}

.newlook-ui .newlook-product-included-list li {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 70px;
    padding: 13px 14px;
    background: rgba(3, 34, 71, 0.5);
    border: 1px solid rgba(66, 135, 199, 0.32);
    border-radius: 9px;
    counter-increment: included-item;
}

.newlook-ui .newlook-product-included-list li::before {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    content: counter(included-item);
    color: #35adff;
    font-size: 13px;
    font-weight: 700;
    background: rgba(8, 89, 173, 0.25);
    border: 1px solid rgba(40, 154, 241, 0.37);
    border-radius: 8px;
}

.newlook-ui .newlook-product-included-list li > div {
    min-width: 0;
}

.newlook-ui .newlook-product-included-list strong {
    display: block;
    color: #edf5fb;
    font-size: 14px;
    line-height: 1.4;
}

.newlook-ui .newlook-product-included-list span {
    display: block;
    margin-top: 4px;
    color: #849bad;
    font-size: 11px;
    line-height: 1.45;
}

.newlook-ui .newlook-product-included-list li > a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #29a7ff;
    text-decoration: none;
    background: rgba(5, 68, 135, 0.52);
    border: 1px solid rgba(35, 145, 231, 0.4);
    border-radius: 7px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-product-included-list li > a:hover,
.newlook-ui .newlook-product-included-list li > a:focus-visible {
    color: #ffffff;
    background: rgba(9, 91, 179, 0.74);
    border-color: #27a6ff;
    outline: none;
    transform: translateX(2px);
}


/* ==========================================================
   PURCHASE CARD
   ========================================================== */

.newlook-ui .newlook-product-purchase-card {
    position: sticky;
    top: 116px;
}

.newlook-ui .newlook-product-purchase-card > header {
    padding: 27px 26px 23px;
    background:
        linear-gradient(
            180deg,
            rgba(8, 58, 115, 0.5),
            rgba(3, 25, 55, 0.18)
        );
    border-bottom: 1px solid rgba(80, 144, 203, 0.26);
}

.newlook-ui .newlook-product-purchase-card .newlook-card-label,
.newlook-ui .newlook-product-seat-pricing .newlook-card-label {
    margin: 0 0 7px;
    color: #169cff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.newlook-ui .newlook-product-price {
    color: #ffffff;
    font-size: 39px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.newlook-ui .newlook-product-purchase-card > header > p:last-child {
    margin: 13px 0 0;
    color: #9fb2c4;
    font-size: 13px;
    line-height: 1.55;
}

.newlook-ui .newlook-product-purchase-facts {
    display: grid;
    padding: 8px 26px;
}

.newlook-ui .newlook-product-purchase-facts > div {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 68px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(78, 135, 188, 0.2);
}

.newlook-ui .newlook-product-purchase-facts > div:last-child {
    border-bottom: 0;
}

.newlook-ui .newlook-product-purchase-facts i {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    color: #2ba8ff;
    font-size: 15px;
    background: rgba(7, 83, 163, 0.24);
    border: 1px solid rgba(39, 151, 238, 0.34);
    border-radius: 8px;
}

.newlook-ui .newlook-product-purchase-facts span {
    min-width: 0;
}

.newlook-ui .newlook-product-purchase-facts small {
    display: block;
    color: #71889c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-transform: uppercase;
}

.newlook-ui .newlook-product-purchase-facts strong {
    display: block;
    margin-top: 4px;
    color: #e8f1f8;
    font-size: 13px;
    line-height: 1.4;
}

.newlook-ui .newlook-product-purchase-card form {
    margin: 0;
    padding: 0 26px;
}

.newlook-ui .newlook-product-primary-action,
.newlook-ui .newlook-product-secondary-action {
    display: inline-flex;
    width: calc(100% - 52px);
    min-height: 52px;
    margin-right: 26px;
    margin-left: 26px;
    padding: 11px 18px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 9px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-product-purchase-card form .newlook-product-primary-action {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.newlook-ui .newlook-product-primary-action {
    color: #ffffff;
    cursor: pointer;
    background:
        linear-gradient(
            180deg,
            #1ba5ff,
            #075ecb
        );
    border: 1px solid #3eb2ff;
    box-shadow:
        0 11px 26px rgba(0, 103, 215, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.newlook-ui .newlook-product-primary-action:hover,
.newlook-ui .newlook-product-primary-action:focus-visible {
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            #35b1ff,
            #086bdc
        );
    border-color: #79c9ff;
    box-shadow:
        0 14px 31px rgba(0, 112, 226, 0.3);
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-product-secondary-action {
    margin-top: 12px;
    color: #cbd9e5;
    background: rgba(4, 39, 80, 0.62);
    border: 1px solid rgba(67, 139, 205, 0.43);
}

.newlook-ui .newlook-product-secondary-action:hover,
.newlook-ui .newlook-product-secondary-action:focus-visible {
    color: #ffffff;
    background: rgba(8, 69, 139, 0.73);
    border-color: #219fff;
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-product-purchase-card > footer {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: flex-start;
    margin-top: 22px;
    padding: 18px 26px 21px;
    color: #7f95a9;
    background: rgba(1, 13, 29, 0.42);
    border-top: 1px solid rgba(77, 134, 188, 0.2);
}

.newlook-ui .newlook-product-purchase-card > footer i {
    margin-top: 2px;
    color: #288ed2;
    font-size: 13px;
}

.newlook-ui .newlook-product-purchase-card > footer p {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
}


/* ==========================================================
   SITE LICENSE SEAT PRICING
   ========================================================== */

.newlook-ui .newlook-product-seat-pricing {
    padding: 24px;
}

.newlook-ui .newlook-product-seat-pricing h2 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.3;
}

.newlook-ui .newlook-product-seat-pricing > div {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.newlook-ui .newlook-product-seat-pricing span {
    display: flex;
    min-height: 50px;
    padding: 11px 13px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(3, 35, 73, 0.5);
    border: 1px solid rgba(66, 136, 201, 0.3);
    border-radius: 8px;
}

.newlook-ui .newlook-product-seat-pricing strong {
    color: #dce8f2;
    font-size: 13px;
}

.newlook-ui .newlook-product-seat-pricing small {
    color: #35adff;
    font-size: 14px;
    font-weight: 700;
}


/* ==========================================================
   RELATED PRODUCTS
   ========================================================== */

.newlook-ui .newlook-product-related {
    margin-top: 40px;
}

.newlook-ui .newlook-product-view-all {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 14px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #dce9f4;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(4, 41, 83, 0.66);
    border: 1px solid rgba(65, 140, 207, 0.44);
    border-radius: 8px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-product-view-all:hover,
.newlook-ui .newlook-product-view-all:focus-visible {
    color: #ffffff;
    background: rgba(8, 77, 153, 0.75);
    border-color: #219fff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   RESPONSIVE LAYOUT
   ========================================================== */

@media (max-width: 1320px) {

    .newlook-ui.newlook-public-product-page .newlook-public-main {
        padding-right: 26px;
        padding-left: 26px;
    }

    .newlook-ui .newlook-product-hero {
        grid-template-columns:
            minmax(340px, 0.75fr)
            minmax(470px, 1.25fr);
        gap: 32px;
        padding-right: 36px;
        padding-left: 36px;
    }

    .newlook-ui .newlook-product-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(315px, 355px);
    }

}


@media (max-width: 1050px) {

    .newlook-ui .newlook-product-hero {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-product-hero__image {
        width: min(100%, 760px);
        min-height: 300px;
    }

    .newlook-ui .newlook-product-hero__image img {
        height: 300px;
    }

    .newlook-ui .newlook-product-hero__copy {
        max-width: 900px;
    }

    .newlook-ui .newlook-product-layout {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-product-purchase-column {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.72fr);
        align-items: start;
    }

    .newlook-ui .newlook-product-purchase-card {
        position: static;
    }

}


@media (max-width: 780px) {

    .newlook-ui .newlook-product-purchase-column {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-product-section-heading {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .newlook-ui .newlook-product-section-icon {
        width: 46px;
        height: 46px;
    }

    .newlook-ui .newlook-product-related .newlook-catalog-section-heading {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .newlook-ui .newlook-product-view-all {
        width: max-content;
    }

}


@media (max-width: 620px) {

    .newlook-ui.newlook-public-product-page .newlook-public-main {
        padding: 18px 14px 52px;
    }

    .newlook-ui .newlook-product-breadcrumb span {
        max-width: 260px;
    }

    .newlook-ui .newlook-product-hero {
        min-height: auto;
        padding: 22px 18px 26px;
        border-radius: 14px;
    }

    .newlook-ui .newlook-product-hero__image {
        min-height: 220px;
    }

    .newlook-ui .newlook-product-hero__image img {
        height: 220px;
    }

    .newlook-ui .newlook-product-hero h1 {
        font-size: 38px;
    }

    .newlook-ui .newlook-product-hero__intro {
        font-size: 16px;
    }

    .newlook-ui .newlook-product-content-card {
        padding: 23px 19px;
    }

    .newlook-ui .newlook-product-section-heading {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-product-included-list li {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .newlook-ui .newlook-product-included-list li::before {
        width: 38px;
        height: 38px;
    }

    .newlook-ui .newlook-product-included-list li > a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .newlook-ui .newlook-product-error {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }

}


@media (max-width: 430px) {

    .newlook-ui .newlook-product-breadcrumb {
        align-items: flex-start;
    }

    .newlook-ui .newlook-product-breadcrumb span {
        max-width: 210px;
    }

    .newlook-ui .newlook-product-hero h1 {
        font-size: 33px;
    }

    .newlook-ui .newlook-product-hero__metadata {
        display: grid;
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-product-hero__metadata span {
        width: 100%;
    }

    .newlook-ui .newlook-product-content-card {
        padding-right: 16px;
        padding-left: 16px;
    }

    .newlook-ui .newlook-product-purchase-card > header,
    .newlook-ui .newlook-product-purchase-facts,
    .newlook-ui .newlook-product-purchase-card form,
    .newlook-ui .newlook-product-purchase-card > footer {
        padding-right: 20px;
        padding-left: 20px;
    }

    .newlook-ui .newlook-product-primary-action,
    .newlook-ui .newlook-product-secondary-action {
        width: calc(100% - 40px);
        margin-right: 20px;
        margin-left: 20px;
    }

    .newlook-ui .newlook-product-purchase-card form .newlook-product-primary-action {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

}


/* ==========================================================
   PRINT
   ========================================================== */

@media print {

    .newlook-ui .newlook-public-header,
    .newlook-ui .newlook-product-breadcrumb,
    .newlook-ui .newlook-product-purchase-column,
    .newlook-ui .newlook-product-related {
        display: none !important;
    }

    .newlook-ui.newlook-public-product-page {
        color: #000000;
        background: #ffffff;
    }

    .newlook-ui.newlook-public-product-page .newlook-public-main {
        width: 100%;
        padding: 0;
    }

    .newlook-ui .newlook-product-hero,
    .newlook-ui .newlook-product-content-card {
        color: #000000;
        background: #ffffff;
        border: 1px solid #cccccc;
        box-shadow: none;
    }

    .newlook-ui .newlook-product-layout {
        display: block;
    }

    .newlook-ui .newlook-product-main-column {
        display: block;
    }

    .newlook-ui .newlook-product-content-card {
        margin-top: 18px;
        break-inside: avoid;
    }

}
/* ==========================================================
   PICC EXCELLENCE PUBLIC HOME PAGE
   Page class: newlook-public-home-page

   This block assumes the shared public-header and catalog-card
   styles from the course catalog CSS have already been added to
   newlook-ui.css.
   ========================================================== */

.newlook-ui.newlook-public-home-page {
    min-height: 100vh;
    color: #dbe8f4;
    background:
        radial-gradient(
            circle at 82% 7%,
            rgba(0, 113, 255, 0.13),
            transparent 27%
        ),
        radial-gradient(
            circle at 8% 48%,
            rgba(0, 90, 210, 0.07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #020914 0%,
            #031225 52%,
            #020a15 100%
        );
}

.newlook-ui .newlook-home-main {
    width: min(100%, 1580px);
    margin: 0 auto;
    padding: 24px 34px 72px;
}


/* ==========================================================
   HOME BUTTONS
   ========================================================== */

.newlook-ui .newlook-home-button {
    display: inline-flex;
    min-height: 48px;
    padding: 10px 19px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-home-button--primary {
    background:
        linear-gradient(
            180deg,
            #1ba5ff,
            #075ecb
        );
    border: 1px solid #3eb2ff;
    box-shadow:
        0 11px 26px rgba(0, 103, 215, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.newlook-ui .newlook-home-button--primary:hover,
.newlook-ui .newlook-home-button--primary:focus-visible {
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            #35b1ff,
            #086bdc
        );
    border-color: #7bcaff;
    box-shadow:
        0 14px 31px rgba(0, 112, 226, 0.31);
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-home-button--secondary {
    color: #dce9f4;
    background: rgba(4, 40, 82, 0.64);
    border: 1px solid rgba(61, 148, 222, 0.55);
}

.newlook-ui .newlook-home-button--secondary:hover,
.newlook-ui .newlook-home-button--secondary:focus-visible {
    color: #ffffff;
    background: rgba(7, 71, 145, 0.77);
    border-color: #27a7ff;
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-home-button--outline {
    min-width: 290px;
    color: #e5f1fb;
    background: rgba(4, 34, 72, 0.52);
    border: 1px solid #1c93f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.newlook-ui .newlook-home-button--outline:hover,
.newlook-ui .newlook-home-button--outline:focus-visible {
    color: #ffffff;
    background: rgba(8, 74, 149, 0.73);
    border-color: #44b6ff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   HOME HERO
   ========================================================== */

.newlook-ui .newlook-home-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(560px, 1.08fr)
        minmax(470px, 0.92fr);
    gap: 28px;
    align-items: center;
    min-height: 550px;
    padding: 52px 42px 40px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 77% 40%,
            rgba(0, 119, 255, 0.24),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(4, 27, 59, 0.98),
            rgba(2, 14, 33, 0.97)
        );
    border: 1px solid rgba(62, 145, 220, 0.42);
    border-radius: 18px;
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.29),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-home-hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            rgba(70, 151, 226, 0.032) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(70, 151, 226, 0.032) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
}

.newlook-ui .newlook-home-hero::after {
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 620px;
    height: 620px;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            rgba(0, 116, 255, 0.13),
            transparent 68%
        );
    border-radius: 50%;
}

.newlook-ui .newlook-home-hero__copy,
.newlook-ui .newlook-home-hero__image {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.newlook-ui .newlook-home-hero .newlook-eyebrow {
    margin: 0 0 15px;
    color: #1ba3ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.105em;
    text-transform: uppercase;
}

.newlook-ui .newlook-home-hero h1 {
    max-width: 790px;
    margin: 0;
    color: #f7fbff;
    font-size: clamp(50px, 5.7vw, 78px);
    line-height: 1.01;
    letter-spacing: -0.038em;
}

.newlook-ui .newlook-home-hero h1 span {
    display: block;
    color: #1686ff;
    text-shadow: 0 0 30px rgba(0, 118, 255, 0.17);
}

.newlook-ui .newlook-home-hero__intro {
    max-width: 700px;
    margin: 22px 0 0;
    color: #b8c7d5;
    font-size: 18px;
    line-height: 1.62;
}

.newlook-ui .newlook-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

.newlook-ui .newlook-home-hero__image {
    display: flex;
    min-height: 390px;
    align-items: center;
    justify-content: center;
}

.newlook-ui .newlook-home-hero__image img {
    display: block;
    width: 118%;
    max-width: 720px;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(
            0 30px 42px rgba(0, 0, 0, 0.34)
        );
}


/* ==========================================================
   HERO BENEFITS
   ========================================================== */

.newlook-ui .newlook-home-hero__benefits {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 38px;
}

.newlook-ui .newlook-home-hero__benefits > div {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    min-width: 0;
    padding: 0 17px;
    align-items: flex-start;
}

.newlook-ui .newlook-home-hero__benefits > div:first-child {
    padding-left: 0;
}

.newlook-ui .newlook-home-hero__benefits > div:last-child {
    padding-right: 0;
}

.newlook-ui .newlook-home-hero__benefits > div:not(:last-child)::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 54px;
    content: "";
    background: rgba(75, 137, 194, 0.26);
}

.newlook-ui .newlook-home-hero__benefits > div > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #2ba8ff;
    font-size: 18px;
    background: rgba(8, 87, 170, 0.21);
    border: 1px solid rgba(41, 153, 239, 0.36);
    border-radius: 9px;
}

.newlook-ui .newlook-home-hero__benefits span {
    min-width: 0;
}

.newlook-ui .newlook-home-hero__benefits strong {
    display: block;
    color: #e7f1f8;
    font-size: 12px;
    line-height: 1.35;
}

.newlook-ui .newlook-home-hero__benefits small {
    display: block;
    margin-top: 4px;
    color: #7f94a7;
    font-size: 10px;
    line-height: 1.45;
}


/* ==========================================================
   HOME SECTIONS
   ========================================================== */

.newlook-ui .newlook-home-section {
    margin-top: 34px;
}

.newlook-ui .newlook-home-section-heading {
    max-width: 830px;
    margin: 0 auto 24px;
    text-align: center;
}

.newlook-ui .newlook-home-section-heading .newlook-card-label,
.newlook-ui .newlook-home-featured-header .newlook-card-label,
.newlook-ui .newlook-home-impact .newlook-card-label,
.newlook-ui .newlook-home-testimonial .newlook-card-label {
    margin: 0 0 8px;
    color: #149cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.newlook-ui .newlook-home-section-heading h2,
.newlook-ui .newlook-home-featured-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.22;
    letter-spacing: -0.018em;
}

.newlook-ui .newlook-home-section-heading > p:last-child,
.newlook-ui .newlook-home-featured-header > div > p:last-child {
    margin: 10px 0 0;
    color: #95a9bb;
    font-size: 15px;
    line-height: 1.55;
}


/* ==========================================================
   TRAINING PATH CARDS
   ========================================================== */

.newlook-ui .newlook-home-training {
    padding: 12px 0 0;
}

.newlook-ui .newlook-home-training-grid {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.newlook-ui .newlook-home-training-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 0;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 31, 65, 0.97),
            rgba(2, 17, 38, 0.97)
        );
    border: 1px solid rgba(68, 139, 205, 0.43);
    border-radius: 13px;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.newlook-ui .newlook-home-training-card:hover {
    border-color: rgba(37, 160, 249, 0.74);
    box-shadow:
        0 26px 54px rgba(0, 0, 0, 0.25),
        0 0 24px rgba(0, 125, 255, 0.08);
    transform: translateY(-4px);
}

.newlook-ui .newlook-home-training-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(8, 60, 120, 0.62),
            rgba(2, 25, 55, 0.82)
        );
    border-bottom: 1px solid rgba(71, 143, 210, 0.34);
}

.newlook-ui .newlook-home-training-card__image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 18, 42, 0.04) 25%,
            rgba(1, 12, 28, 0.65) 100%
        );
}

.newlook-ui .newlook-home-training-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.newlook-ui .newlook-home-training-card:hover .newlook-home-training-card__image img {
    transform: scale(1.04);
}

.newlook-ui .newlook-home-training-card__image span {
    position: absolute;
    z-index: 2;
    bottom: 14px;
    left: 14px;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: #34afff;
    font-size: 21px;
    background: rgba(0, 31, 67, 0.84);
    border: 1px solid rgba(41, 165, 255, 0.66);
    border-radius: 50%;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.25),
        0 0 18px rgba(0, 130, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.newlook-ui .newlook-home-training-card__body {
    padding: 18px 18px 15px;
}

.newlook-ui .newlook-home-training-card__body h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.24;
}

.newlook-ui .newlook-home-training-card__body p {
    margin: 10px 0 0;
    color: #a9bacb;
    font-size: 13px;
    line-height: 1.55;
}

.newlook-ui .newlook-home-training-card__action {
    display: flex;
    min-height: 45px;
    margin: 0 15px 15px;
    padding: 9px 13px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #eef7ff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    background:
        linear-gradient(
            180deg,
            rgba(14, 126, 233, 0.88),
            rgba(5, 73, 155, 0.94)
        );
    border: 1px solid rgba(48, 166, 255, 0.65);
    border-radius: 7px;
    box-shadow:
        0 9px 20px rgba(0, 92, 190, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition:
        border-color 150ms ease,
        background-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-home-training-card__action:hover,
.newlook-ui .newlook-home-training-card__action:focus-visible {
    color: #ffffff;
    border-color: #73c5ff;
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-home-centered-action {
    display: flex;
    margin-top: 20px;
    justify-content: center;
}


/* ==========================================================
   FEATURED PRODUCTS
   ========================================================== */

.newlook-ui .newlook-home-featured {
    padding: 30px;
    background:
        radial-gradient(
            circle at 87% 18%,
            rgba(0, 112, 255, 0.1),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(4, 27, 58, 0.82),
            rgba(2, 16, 35, 0.88)
        );
    border: 1px solid rgba(61, 136, 202, 0.36);
    border-radius: 15px;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.newlook-ui .newlook-home-featured-header {
    display: flex;
    gap: 28px;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 23px;
}

.newlook-ui .newlook-home-view-all {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 14px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #dce9f4;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(4, 41, 83, 0.66);
    border: 1px solid rgba(65, 140, 207, 0.44);
    border-radius: 8px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-home-view-all:hover,
.newlook-ui .newlook-home-view-all:focus-visible {
    color: #ffffff;
    background: rgba(8, 77, 153, 0.75);
    border-color: #219fff;
    outline: none;
    transform: translateY(-1px);
}

.newlook-ui .newlook-home-featured-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.newlook-ui .newlook-home-message {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 18px;
    color: #b7c9d8;
    background: rgba(3, 36, 74, 0.52);
    border: 1px solid rgba(63, 138, 204, 0.36);
    border-radius: 10px;
}

.newlook-ui .newlook-home-message i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #2ca8ff;
    background: rgba(8, 88, 170, 0.27);
    border: 1px solid rgba(42, 155, 242, 0.38);
    border-radius: 8px;
}

.newlook-ui .newlook-home-message p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================================
   IMPACT SECTION
   ========================================================== */

.newlook-ui .newlook-home-impact {
    display: grid;
    grid-template-columns:
        minmax(310px, 0.9fr)
        minmax(0, 2.1fr);
    gap: 0;
    margin-top: 34px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 30, 63, 0.97),
            rgba(2, 17, 38, 0.97)
        );
    border: 1px solid rgba(66, 141, 208, 0.42);
    border-radius: 15px;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-home-impact__intro {
    padding: 34px 30px;
    background:
        linear-gradient(
            145deg,
            rgba(6, 53, 107, 0.46),
            rgba(3, 25, 56, 0.22)
        );
    border-right: 1px solid rgba(74, 139, 198, 0.28);
}

.newlook-ui .newlook-home-impact__intro h2 {
    margin: 0;
    color: #f2f7fb;
    font-size: 35px;
    line-height: 1.13;
}

.newlook-ui .newlook-home-impact__intro h2::first-line {
    color: #1d9fff;
}

.newlook-ui .newlook-home-impact__intro > p:not(.newlook-card-label) {
    max-width: 430px;
    margin: 16px 0 0;
    color: #a5b8c8;
    font-size: 14px;
    line-height: 1.6;
}

.newlook-ui .newlook-home-impact__intro .newlook-home-button {
    margin-top: 22px;
}

.newlook-ui .newlook-home-impact__statistics {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.newlook-ui .newlook-home-impact__statistics > div {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 30px 20px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.newlook-ui .newlook-home-impact__statistics > div:not(:last-child)::after {
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 30px;
    width: 1px;
    content: "";
    background: rgba(74, 139, 198, 0.28);
}

.newlook-ui .newlook-home-impact__statistics i {
    color: #178eff;
    font-size: 42px;
    line-height: 1;
}

.newlook-ui .newlook-home-impact__statistics strong {
    display: block;
    margin-top: 18px;
    color: #168eff;
    font-size: 33px;
    line-height: 1;
}

.newlook-ui .newlook-home-impact__statistics span {
    display: block;
    margin-top: 8px;
    color: #edf5fb;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.newlook-ui .newlook-home-impact__statistics small {
    display: block;
    max-width: 180px;
    margin-top: 8px;
    color: #8196a8;
    font-size: 10px;
    line-height: 1.45;
}


/* ==========================================================
   TESTIMONIAL
   ========================================================== */

.newlook-ui .newlook-home-testimonial {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(370px, 0.65fr);
    gap: 0;
    min-height: 260px;
    margin-top: 34px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 63% 50%,
            rgba(0, 114, 255, 0.12),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(4, 29, 62, 0.97),
            rgba(2, 17, 38, 0.97)
        );
    border: 1px solid rgba(66, 141, 208, 0.42);
    border-radius: 15px;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-home-testimonial__copy {
    display: flex;
    padding: 30px 34px;
    flex-direction: column;
    justify-content: center;
}

.newlook-ui .newlook-home-testimonial blockquote {
    position: relative;
    margin: 9px 0 0;
    padding: 0 0 0 58px;
}

.newlook-ui .newlook-home-testimonial blockquote > i {
    position: absolute;
    top: 2px;
    left: 0;
    color: #168eff;
    font-size: 38px;
}

.newlook-ui .newlook-home-testimonial blockquote p {
    max-width: 760px;
    margin: 0;
    color: #edf5fb;
    font-size: 18px;
    line-height: 1.55;
}

.newlook-ui .newlook-home-testimonial cite {
    display: block;
    margin-top: 15px;
    color: #2ca8ff;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.newlook-ui .newlook-home-testimonial__image {
    position: relative;
    min-height: 260px;
    overflow: hidden;
}

.newlook-ui .newlook-home-testimonial__image::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(2, 17, 38, 0.96) 0%,
            rgba(2, 17, 38, 0.18) 45%,
            transparent 100%
        );
}

.newlook-ui .newlook-home-testimonial__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    object-position: center;
}


/* ==========================================================
   FINAL CTA
   ========================================================== */

.newlook-ui .newlook-home-final-cta {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-top: 24px;
    padding: 22px 28px;
    background:
        radial-gradient(
            circle at 8% 50%,
            rgba(0, 117, 255, 0.16),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            rgba(5, 38, 78, 0.96),
            rgba(2, 20, 44, 0.97)
        );
    border: 1px solid rgba(59, 150, 225, 0.48);
    border-radius: 13px;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.newlook-ui .newlook-home-final-cta__icon {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    color: #1b9dff;
    font-size: 32px;
    background: rgba(8, 91, 179, 0.24);
    border: 1px solid rgba(42, 160, 248, 0.47);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(0, 125, 255, 0.09);
}

.newlook-ui .newlook-home-final-cta h2 {
    margin: 0;
    color: #219fff;
    font-size: 23px;
    line-height: 1.3;
}

.newlook-ui .newlook-home-final-cta p {
    margin: 6px 0 0;
    color: #99adbf;
    font-size: 13px;
    line-height: 1.5;
}

.newlook-ui .newlook-home-final-cta .newlook-home-button {
    min-width: 245px;
}


/* ==========================================================
   RESPONSIVE LAYOUT
   ========================================================== */

@media (max-width: 1380px) {

    .newlook-ui .newlook-home-main {
        padding-right: 26px;
        padding-left: 26px;
    }

    .newlook-ui .newlook-home-hero {
        grid-template-columns:
            minmax(500px, 1.08fr)
            minmax(400px, 0.92fr);
    }

    .newlook-ui .newlook-home-training-grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
        gap: 13px;
    }

    .newlook-ui .newlook-home-training-card__body h3 {
        font-size: 18px;
    }

}


@media (max-width: 1180px) {

    .newlook-ui .newlook-home-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .newlook-ui .newlook-home-hero__copy {
        max-width: 950px;
    }

    .newlook-ui .newlook-home-hero__image {
        min-height: 300px;
    }

    .newlook-ui .newlook-home-hero__image img {
        width: 78%;
        max-width: 720px;
    }

    .newlook-ui .newlook-home-training-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .newlook-ui .newlook-home-impact {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-home-impact__intro {
        border-right: 0;
        border-bottom: 1px solid rgba(74, 139, 198, 0.28);
    }

}


@media (max-width: 920px) {

    .newlook-ui .newlook-home-hero__benefits {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 18px 0;
    }

    .newlook-ui .newlook-home-hero__benefits > div:nth-child(2)::after {
        display: none;
    }

    .newlook-ui .newlook-home-featured-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .newlook-ui .newlook-home-impact__statistics {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .newlook-ui .newlook-home-impact__statistics > div:nth-child(2)::after {
        display: none;
    }

    .newlook-ui .newlook-home-impact__statistics > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(74, 139, 198, 0.22);
    }

    .newlook-ui .newlook-home-testimonial {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-home-testimonial__image {
        min-height: 230px;
    }

    .newlook-ui .newlook-home-testimonial__image::before {
        background:
            linear-gradient(
                180deg,
                rgba(2, 17, 38, 0.96) 0%,
                rgba(2, 17, 38, 0.12) 50%,
                transparent 100%
            );
    }

    .newlook-ui .newlook-home-final-cta {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .newlook-ui .newlook-home-final-cta .newlook-home-button {
        grid-column: 1 / -1;
        width: 100%;
    }

}


@media (max-width: 700px) {

    .newlook-ui .newlook-home-featured-header {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .newlook-ui .newlook-home-view-all {
        width: max-content;
    }

    .newlook-ui .newlook-home-training-grid,
    .newlook-ui .newlook-home-featured-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 620px) {

    .newlook-ui .newlook-home-main {
        padding: 18px 14px 52px;
    }

    .newlook-ui .newlook-home-hero {
        padding: 30px 20px 22px;
        border-radius: 14px;
    }

    .newlook-ui .newlook-home-hero h1 {
        font-size: 44px;
    }

    .newlook-ui .newlook-home-hero__intro {
        font-size: 16px;
    }

    .newlook-ui .newlook-home-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-home-hero__actions .newlook-home-button {
        width: 100%;
    }

    .newlook-ui .newlook-home-hero__benefits {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .newlook-ui .newlook-home-hero__benefits > div {
        padding: 0;
    }

    .newlook-ui .newlook-home-hero__benefits > div::after {
        display: none !important;
    }

    .newlook-ui .newlook-home-hero__image {
        min-height: 210px;
    }

    .newlook-ui .newlook-home-hero__image img {
        width: 100%;
    }

    .newlook-ui .newlook-home-section-heading h2,
    .newlook-ui .newlook-home-featured-header h2 {
        font-size: 29px;
    }

    .newlook-ui .newlook-home-training-grid,
    .newlook-ui .newlook-home-featured-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-home-featured {
        padding: 22px 16px;
    }

    .newlook-ui .newlook-home-impact__statistics {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-home-impact__statistics > div {
        padding: 24px 18px;
        border-bottom: 1px solid rgba(74, 139, 198, 0.22);
    }

    .newlook-ui .newlook-home-impact__statistics > div:last-child {
        border-bottom: 0;
    }

    .newlook-ui .newlook-home-impact__statistics > div::after {
        display: none !important;
    }

    .newlook-ui .newlook-home-testimonial__copy {
        padding: 25px 20px;
    }

    .newlook-ui .newlook-home-testimonial blockquote {
        padding-left: 45px;
    }

    .newlook-ui .newlook-home-testimonial blockquote > i {
        font-size: 31px;
    }

    .newlook-ui .newlook-home-testimonial blockquote p {
        font-size: 16px;
    }

    .newlook-ui .newlook-home-final-cta {
        grid-template-columns: 1fr;
        padding: 22px 19px;
        text-align: center;
    }

    .newlook-ui .newlook-home-final-cta__icon {
        margin: 0 auto;
    }

    .newlook-ui .newlook-home-button--outline {
        width: 100%;
        min-width: 0;
    }

}


@media (max-width: 430px) {

    .newlook-ui .newlook-home-hero h1 {
        font-size: 38px;
    }

    .newlook-ui .newlook-home-impact__intro h2 {
        font-size: 31px;
    }

    .newlook-ui .newlook-home-training-card__body h3 {
        font-size: 19px;
    }

}


/* ==========================================================
   PRINT
   ========================================================== */

@media print {

    .newlook-ui .newlook-public-header,
    .newlook-ui .newlook-home-hero__actions,
    .newlook-ui .newlook-home-centered-action,
    .newlook-ui .newlook-home-view-all,
    .newlook-ui .newlook-home-final-cta {
        display: none !important;
    }

    .newlook-ui.newlook-public-home-page {
        color: #000000;
        background: #ffffff;
    }

    .newlook-ui .newlook-home-main {
        width: 100%;
        padding: 0;
    }

    .newlook-ui .newlook-home-hero,
    .newlook-ui .newlook-home-training-card,
    .newlook-ui .newlook-home-featured,
    .newlook-ui .newlook-home-impact,
    .newlook-ui .newlook-home-testimonial {
        color: #000000;
        background: #ffffff;
        border: 1px solid #cccccc;
        box-shadow: none;
    }

}
/* ==========================================================
   SITE-LICENSE-FOCUSED HOME PAGE ADDITIONS
   Append after the existing homepage CSS in newlook-ui.css.
   ========================================================== */


/* ==========================================================
   HERO EMPHASIS
   ========================================================== */

.newlook-ui.newlook-site-license-home-page
.newlook-home-hero h1 {
    max-width: 900px;
    font-size: clamp(46px, 5.1vw, 70px);
}

.newlook-ui.newlook-site-license-home-page
.newlook-home-hero h1 span {
    margin-top: 5px;
}

.newlook-ui.newlook-site-license-home-page
.newlook-home-hero__intro {
    max-width: 780px;
}

.newlook-ui.newlook-site-license-home-page
.newlook-home-hero__actions
.newlook-home-button--primary {
    min-width: 215px;
}


/* ==========================================================
   ORGANIZATION BENEFITS
   ========================================================== */

.newlook-ui .newlook-home-organization {
    padding: 30px;
    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(0, 112, 255, 0.09),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            rgba(4, 27, 58, 0.84),
            rgba(2, 16, 35, 0.9)
        );
    border: 1px solid rgba(61, 136, 202, 0.36);
    border-radius: 15px;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.newlook-ui .newlook-home-organization-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.newlook-ui .newlook-home-organization-card {
    min-width: 0;
    padding: 23px 20px;
    background:
        linear-gradient(
            145deg,
            rgba(6, 40, 81, 0.78),
            rgba(3, 24, 52, 0.82)
        );
    border: 1px solid rgba(65, 139, 205, 0.38);
    border-radius: 11px;
    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.16);
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.newlook-ui .newlook-home-organization-card:hover {
    border-color: rgba(39, 160, 248, 0.69);
    box-shadow:
        0 20px 39px rgba(0, 0, 0, 0.21),
        0 0 22px rgba(0, 125, 255, 0.07);
    transform: translateY(-3px);
}

.newlook-ui .newlook-home-organization-card > i {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: #2ba8ff;
    font-size: 21px;
    background: rgba(8, 87, 170, 0.24);
    border: 1px solid rgba(41, 153, 239, 0.39);
    border-radius: 10px;
}

.newlook-ui .newlook-home-organization-card h3 {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.3;
}

.newlook-ui .newlook-home-organization-card p {
    margin: 10px 0 0;
    color: #9fb1c1;
    font-size: 13px;
    line-height: 1.58;
}


/* ==========================================================
   SITE LICENSE PRODUCT SECTION
   ========================================================== */

.newlook-ui .newlook-home-site-licenses {
    padding: 30px;
    background:
        radial-gradient(
            circle at 88% 14%,
            rgba(0, 118, 255, 0.12),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(5, 31, 66, 0.96),
            rgba(2, 17, 38, 0.97)
        );
    border: 1px solid rgba(61, 145, 217, 0.44);
    border-radius: 15px;
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-home-site-license-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.newlook-ui .newlook-home-site-license-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 0;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(7, 41, 83, 0.96),
            rgba(2, 21, 46, 0.98)
        );
    border: 1px solid rgba(72, 145, 211, 0.45);
    border-radius: 13px;
    box-shadow:
        0 20px 43px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.newlook-ui .newlook-home-site-license-card:hover {
    border-color: rgba(38, 164, 253, 0.75);
    box-shadow:
        0 27px 55px rgba(0, 0, 0, 0.26),
        0 0 26px rgba(0, 126, 255, 0.09);
    transform: translateY(-4px);
}

.newlook-ui .newlook-home-site-license-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 8.8;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(8, 60, 120, 0.62),
            rgba(2, 25, 55, 0.82)
        );
    border-bottom: 1px solid rgba(71, 143, 210, 0.34);
}

.newlook-ui .newlook-home-site-license-card__image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(1, 12, 28, 0.72) 100%
        );
}

.newlook-ui .newlook-home-site-license-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.newlook-ui
.newlook-home-site-license-card:hover
.newlook-home-site-license-card__image img {
    transform: scale(1.04);
}

.newlook-ui .newlook-home-site-license-card__image > span {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    display: inline-flex;
    min-height: 33px;
    padding: 7px 11px;
    align-items: center;
    gap: 8px;
    color: #edf7ff;
    font-size: 11px;
    font-weight: 700;
    background: rgba(1, 24, 53, 0.86);
    border: 1px solid rgba(47, 163, 249, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.newlook-ui .newlook-home-site-license-card__image > span i {
    color: #2ba9ff;
}

.newlook-ui .newlook-home-site-license-card__body {
    padding: 21px 21px 18px;
}

.newlook-ui .newlook-home-site-license-card__body h3 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.3;
}

.newlook-ui .newlook-home-site-license-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.newlook-ui .newlook-home-site-license-card__body h3 a:hover,
.newlook-ui .newlook-home-site-license-card__body h3 a:focus-visible {
    color: #35adff;
    outline: none;
}

.newlook-ui .newlook-home-site-license-card__body > p {
    margin: 13px 0 0;
    color: #a9bacb;
    font-size: 13px;
    line-height: 1.58;
}

.newlook-ui .newlook-home-site-license-card__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 15px;
    margin-top: 18px;
}

.newlook-ui .newlook-home-site-license-card__facts span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: #8fa5b8;
    font-size: 11px;
    line-height: 1.4;
}

.newlook-ui .newlook-home-site-license-card__facts i {
    color: #279fef;
}

.newlook-ui .newlook-home-site-license-card__footer {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 17px 21px;
    background: rgba(1, 14, 31, 0.46);
    border-top: 1px solid rgba(76, 137, 193, 0.25);
}

.newlook-ui .newlook-home-site-license-card__footer > strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
}

.newlook-ui .newlook-home-site-license-card__footer > a {
    display: inline-flex;
    min-height: 39px;
    padding: 8px 13px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #eef7ff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    background:
        linear-gradient(
            180deg,
            rgba(15, 132, 240, 0.9),
            rgba(5, 75, 158, 0.96)
        );
    border: 1px solid rgba(51, 169, 255, 0.62);
    border-radius: 7px;
    transition:
        transform 150ms ease,
        border-color 150ms ease;
}

.newlook-ui .newlook-home-site-license-card__footer > a:hover,
.newlook-ui .newlook-home-site-license-card__footer > a:focus-visible {
    color: #ffffff;
    border-color: #78caff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   SITE LICENSE PROCESS
   ========================================================== */

.newlook-ui .newlook-home-license-process {
    display: grid;
    grid-template-columns:
        minmax(310px, 0.82fr)
        minmax(0, 1.68fr);
    gap: 30px;
    align-items: center;
    margin-top: 34px;
    padding: 31px;
    background:
        radial-gradient(
            circle at 8% 50%,
            rgba(0, 116, 255, 0.12),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(5, 34, 70, 0.96),
            rgba(2, 19, 42, 0.98)
        );
    border: 1px solid rgba(64, 146, 217, 0.43);
    border-radius: 14px;
    box-shadow:
        0 21px 46px rgba(0, 0, 0, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-home-license-process__intro .newlook-card-label {
    margin: 0 0 8px;
    color: #149cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.newlook-ui .newlook-home-license-process__intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.23;
}

.newlook-ui .newlook-home-license-process__intro > p:last-child {
    margin: 14px 0 0;
    color: #9fb1c1;
    font-size: 13px;
    line-height: 1.6;
}

.newlook-ui .newlook-home-license-process__steps {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.newlook-ui .newlook-home-license-process__steps li {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    min-width: 0;
    padding: 18px 16px;
    background: rgba(4, 40, 81, 0.58);
    border: 1px solid rgba(66, 140, 205, 0.36);
    border-radius: 10px;
}

.newlook-ui .newlook-home-license-process__steps li > span {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    background:
        linear-gradient(
            180deg,
            #1aa4ff,
            #075fca
        );
    border: 1px solid #3eb2ff;
    border-radius: 50%;
    box-shadow:
        0 8px 19px rgba(0, 102, 211, 0.22);
}

.newlook-ui .newlook-home-license-process__steps strong {
    display: block;
    color: #edf5fb;
    font-size: 14px;
    line-height: 1.4;
}

.newlook-ui .newlook-home-license-process__steps p {
    margin: 7px 0 0;
    color: #8fa4b7;
    font-size: 11px;
    line-height: 1.52;
}


/* ==========================================================
   SECONDARY INDIVIDUAL SALES
   ========================================================== */

.newlook-ui .newlook-home-individual-training {
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid rgba(68, 135, 196, 0.25);
}

.newlook-ui .newlook-home-individual-training
.newlook-home-training-card {
    background:
        linear-gradient(
            145deg,
            rgba(4, 28, 59, 0.92),
            rgba(2, 16, 36, 0.94)
        );
}

.newlook-ui .newlook-home-individual-featured {
    margin-top: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(4, 25, 53, 0.78),
            rgba(2, 15, 33, 0.84)
        );
    border-color: rgba(61, 132, 195, 0.3);
}


/* ==========================================================
   FINAL SITE LICENSE CTA
   ========================================================== */

.newlook-ui .newlook-home-site-license-cta {
    margin-top: 34px;
    border-color: rgba(56, 157, 234, 0.58);
    background:
        radial-gradient(
            circle at 9% 50%,
            rgba(0, 127, 255, 0.2),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            rgba(6, 49, 99, 0.98),
            rgba(2, 22, 49, 0.98)
        );
}

.newlook-ui .newlook-home-site-license-cta h2 {
    color: #33acff;
}

.newlook-ui .newlook-home-site-license-cta
.newlook-home-button {
    min-width: 300px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1180px) {

    .newlook-ui .newlook-home-organization-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .newlook-ui .newlook-home-site-license-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .newlook-ui .newlook-home-license-process {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 820px) {

    .newlook-ui .newlook-home-license-process__steps {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .newlook-ui .newlook-home-site-license-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 620px) {

    .newlook-ui.newlook-site-license-home-page
    .newlook-home-hero h1 {
        font-size: 41px;
    }

    .newlook-ui .newlook-home-organization,
    .newlook-ui .newlook-home-site-licenses,
    .newlook-ui .newlook-home-license-process {
        padding: 22px 16px;
    }

    .newlook-ui .newlook-home-organization-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-home-license-process__intro h2 {
        font-size: 27px;
    }

    .newlook-ui .newlook-home-site-license-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .newlook-ui .newlook-home-site-license-card__footer > a {
        width: 100%;
    }

    .newlook-ui .newlook-home-site-license-cta
    .newlook-home-button {
        min-width: 0;
    }

}


/* ==========================================================
   PRINT
   ========================================================== */

@media print {

    .newlook-ui .newlook-home-organization,
    .newlook-ui .newlook-home-site-licenses,
    .newlook-ui .newlook-home-license-process {
        color: #000000;
        background: #ffffff;
        border: 1px solid #cccccc;
        box-shadow: none;
    }

}
/* ==========================================================
   PUBLIC ACCOUNT DROPDOWN
   ========================================================== */

.newlook-ui .newlook-public-account-menu {
    position: relative;
    margin: 0;
}

.newlook-ui .newlook-public-account-menu summary {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    color: #dce9f4;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    list-style: none;
    cursor: pointer;
    border-radius: 7px;
    transition:
        color 150ms ease,
        background-color 150ms ease;
}

.newlook-ui .newlook-public-account-menu summary::-webkit-details-marker {
    display: none;
}

.newlook-ui .newlook-public-account-menu summary::marker {
    display: none;
    content: "";
}

.newlook-ui .newlook-public-account-menu summary:hover,
.newlook-ui .newlook-public-account-menu summary:focus-visible,
.newlook-ui .newlook-public-account-menu[open] summary {
    color: #ffffff;
    background: rgba(16, 111, 207, 0.24);
    outline: none;
}

.newlook-ui
.newlook-public-account-menu__arrow {
    margin-left: 2px;
    font-size: 10px;
    transition: transform 160ms ease;
}

.newlook-ui
.newlook-public-account-menu[open]
.newlook-public-account-menu__arrow {
    transform: rotate(180deg);
}


/* Dropdown panel */

.newlook-ui .newlook-public-account-dropdown {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: 275px;
    padding: 8px;
    background:
        linear-gradient(
            145deg,
            rgba(7, 35, 71, 0.99),
            rgba(2, 18, 40, 0.99)
        );
    border: 1px solid rgba(65, 149, 220, 0.55);
    border-radius: 10px;
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-public-account-dropdown::before {
    position: absolute;
    top: -7px;
    right: 23px;
    width: 12px;
    height: 12px;
    content: "";
    background: #06264d;
    border-top: 1px solid rgba(65, 149, 220, 0.55);
    border-left: 1px solid rgba(65, 149, 220, 0.55);
    transform: rotate(45deg);
}

.newlook-ui .newlook-public-account-dropdown a {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    min-height: 47px;
    padding: 10px 12px;
    align-items: center;
    color: #dce9f4;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 7px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-public-account-dropdown a i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: #2ba8ff;
    background: rgba(8, 87, 170, 0.24);
    border: 1px solid rgba(41, 153, 239, 0.32);
    border-radius: 7px;
}

.newlook-ui .newlook-public-account-dropdown a:hover,
.newlook-ui .newlook-public-account-dropdown a:focus-visible {
    color: #ffffff;
    background: rgba(15, 104, 197, 0.28);
    outline: none;
    transform: translateX(2px);
}


/* Mobile dropdown */

@media (max-width: 780px) {

    .newlook-ui .newlook-public-account-menu {
        width: 100%;
    }

    .newlook-ui .newlook-public-account-menu summary {
        width: 100%;
        justify-content: flex-start;
    }

    .newlook-ui
    .newlook-public-account-menu__arrow {
        margin-left: auto;
    }

    .newlook-ui .newlook-public-account-dropdown {
        position: static;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
    }

    .newlook-ui .newlook-public-account-dropdown::before {
        display: none;
    }

}
/* Certifications links that are not active yet */

.newlook-ui
.newlook-public-certifications-menu
.newlook-public-account-dropdown
a.is-disabled {
    opacity: 0.52;
    cursor: default;
    pointer-events: none;
}

.newlook-ui
.newlook-public-certifications-menu
.newlook-public-account-dropdown
a.is-disabled:hover {
    background: transparent;
    transform: none;
}
/* ==========================================================
   EXPLORE CERTIFICATIONS
   Append to /_includes/assets/css/newlook-ui.css
   ========================================================== */

.newlook-ui.newlook-public-certifications-page {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 78% 14%,
            rgba(0, 124, 255, 0.12),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #03162f 0%,
            #021126 46%,
            #020c1c 100%
        );
}

.newlook-ui.newlook-public-certifications-page
.newlook-certification-main {
    width: min(100%, 1500px);
    margin: 0 auto;
    padding: 28px 42px 70px;
}

.newlook-ui .newlook-public-certifications-page,
.newlook-ui .newlook-certification-main {
    color: #d8e5ef;
}


/* ==========================================================
   ACTIVE CERTIFICATION MENU
   ========================================================== */

.newlook-ui.newlook-public-certifications-page
.newlook-public-certifications-menu > summary,
.newlook-ui.newlook-public-certifications-page
.newlook-public-certifications-menu[open] > summary {
    color: #ffffff;
    background: rgba(16, 111, 207, 0.25);
}

.newlook-ui
.newlook-public-certifications-menu
.newlook-public-account-dropdown a.is-disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.newlook-ui
.newlook-public-certifications-menu
.newlook-public-account-dropdown a.is-active {
    color: #ffffff;
    background: rgba(15, 104, 197, 0.34);
}


/* ==========================================================
   MESSAGE
   ========================================================== */

.newlook-ui .newlook-certification-message {
    display: flex;
    gap: 13px;
    margin-bottom: 22px;
    padding: 15px 17px;
    align-items: center;
    color: #ffd6dc;
    background: rgba(105, 22, 39, 0.34);
    border: 1px solid rgba(255, 91, 111, 0.5);
    border-radius: 10px;
}

.newlook-ui .newlook-certification-message i {
    color: #ff7181;
}

.newlook-ui .newlook-certification-message p {
    margin: 0;
}


/* ==========================================================
   HERO
   ========================================================== */

.newlook-ui .newlook-certification-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(500px, 1.14fr)
        minmax(390px, 0.86fr);
    gap: 42px;
    min-height: 590px;
    padding: 48px;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 13%,
            rgba(0, 139, 255, 0.2),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            rgba(7, 46, 92, 0.97),
            rgba(2, 20, 44, 0.99)
        );
    border: 1px solid rgba(67, 151, 223, 0.5);
    border-radius: 18px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-certification-hero::before {
    position: absolute;
    inset: auto auto -170px -150px;
    width: 430px;
    height: 430px;
    content: "";
    pointer-events: none;
    background: rgba(0, 119, 255, 0.11);
    border: 1px solid rgba(32, 145, 232, 0.16);
    border-radius: 50%;
}

.newlook-ui .newlook-certification-hero__copy,
.newlook-ui .newlook-certification-hero__visual {
    position: relative;
    z-index: 1;
}

.newlook-ui .newlook-certification-hero .newlook-card-label,
.newlook-ui .newlook-certification-pathway-card .newlook-card-label,
.newlook-ui .newlook-certification-organization-cta .newlook-card-label {
    margin: 0 0 10px;
    color: #26a7ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.newlook-ui .newlook-certification-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 4.7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.newlook-ui .newlook-certification-hero h1 span {
    display: block;
    color: #36adff;
}

.newlook-ui .newlook-certification-hero__lead {
    max-width: 760px;
    margin: 24px 0 0;
    color: #c6d5e1;
    font-size: 17px;
    line-height: 1.7;
}

.newlook-ui .newlook-certification-hero__caption {
    max-width: 760px;
    margin: 17px 0 0;
    color: #93aabd;
    font-size: 14px;
    line-height: 1.65;
}

.newlook-ui .newlook-certification-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.newlook-ui .newlook-certification-facts > div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    min-width: 0;
    padding: 14px;
    align-items: center;
    background: rgba(3, 27, 58, 0.72);
    border: 1px solid rgba(57, 137, 207, 0.37);
    border-radius: 10px;
}

.newlook-ui .newlook-certification-facts i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #31aaff;
    background: rgba(11, 92, 177, 0.25);
    border: 1px solid rgba(42, 157, 239, 0.36);
    border-radius: 9px;
}

.newlook-ui .newlook-certification-facts span {
    display: grid;
    gap: 3px;
    min-width: 0;
    color: #8fa6b9;
    font-size: 11px;
    line-height: 1.35;
}

.newlook-ui .newlook-certification-facts strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newlook-ui .newlook-certification-purchase {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
    align-items: flex-end;
}

.newlook-ui .newlook-certification-price {
    display: grid;
    gap: 5px;
}

.newlook-ui .newlook-certification-price > span {
    width: max-content;
    padding: 6px 10px;
    color: #ffe9a3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(144, 107, 19, 0.24);
    border: 1px solid rgba(255, 209, 82, 0.42);
    border-radius: 20px;
}

.newlook-ui .newlook-certification-price strong {
    color: #ffffff;
    font-size: 37px;
    line-height: 1;
}

.newlook-ui .newlook-certification-price small {
    color: #839bad;
    font-size: 11px;
}

.newlook-ui .newlook-certification-buy-button {
    display: inline-flex;
    min-height: 52px;
    padding: 12px 22px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    background:
        linear-gradient(
            180deg,
            rgba(18, 151, 248, 0.96),
            rgba(5, 87, 178, 0.98)
        );
    border: 1px solid rgba(82, 187, 255, 0.72);
    border-radius: 9px;
    box-shadow: 0 14px 28px rgba(0, 89, 184, 0.27);
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.newlook-ui .newlook-certification-buy-button:hover,
.newlook-ui .newlook-certification-buy-button:focus-visible {
    border-color: #a1dcff;
    outline: none;
    box-shadow: 0 18px 34px rgba(0, 98, 201, 0.35);
    transform: translateY(-2px);
}

.newlook-ui .newlook-certification-buy-button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    transform: none;
}

.newlook-ui .newlook-certification-image-card {
    position: relative;
    overflow: hidden;
    background: rgba(2, 19, 43, 0.8);
    border: 1px solid rgba(75, 153, 221, 0.51);
    border-radius: 16px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.newlook-ui .newlook-certification-image-card::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(1, 12, 28, 0.72) 100%
        );
}

.newlook-ui .newlook-certification-image-card img {
    display: block;
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.newlook-ui .newlook-certification-image-card__badge {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    align-items: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    background: rgba(1, 22, 49, 0.86);
    border: 1px solid rgba(62, 162, 236, 0.55);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.newlook-ui .newlook-certification-image-card__badge i {
    color: #30a9ff;
}


/* ==========================================================
   DETAIL GRID
   ========================================================== */

.newlook-ui .newlook-certification-detail-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.42fr)
        minmax(390px, 0.58fr);
    gap: 26px;
    margin-top: 28px;
    align-items: start;
}

.newlook-ui .newlook-certification-content-card,
.newlook-ui .newlook-certification-pathway-card {
    background:
        linear-gradient(
            145deg,
            rgba(6, 38, 77, 0.96),
            rgba(2, 20, 44, 0.98)
        );
    border: 1px solid rgba(66, 145, 214, 0.44);
    border-radius: 15px;
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-certification-content-card {
    overflow: hidden;
}

.newlook-ui .newlook-certification-tabs {
    display: flex;
    gap: 5px;
    padding: 13px 13px 0;
    overflow-x: auto;
    background: rgba(1, 16, 36, 0.53);
    border-bottom: 1px solid rgba(67, 139, 203, 0.34);
}

.newlook-ui .newlook-certification-tabs button {
    position: relative;
    min-height: 48px;
    padding: 11px 18px;
    color: #91a9bb;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 8px 8px 0 0;
}

.newlook-ui .newlook-certification-tabs button::after {
    position: absolute;
    right: 13px;
    bottom: 0;
    left: 13px;
    height: 3px;
    content: "";
    background: transparent;
    border-radius: 3px 3px 0 0;
}

.newlook-ui .newlook-certification-tabs button:hover,
.newlook-ui .newlook-certification-tabs button:focus-visible,
.newlook-ui .newlook-certification-tabs button.is-active {
    color: #ffffff;
    background: rgba(12, 88, 169, 0.24);
    outline: none;
}

.newlook-ui .newlook-certification-tabs button.is-active::after {
    background: #27a7ff;
}

.newlook-ui .newlook-certification-tab-panel {
    padding: 32px 34px 38px;
}

.newlook-ui .newlook-certification-tab-panel[hidden] {
    display: none;
}

.newlook-ui .newlook-certification-tab-panel p,
.newlook-ui .newlook-certification-panel-intro {
    margin: 0 0 18px;
    color: #b5c5d2;
    font-size: 14px;
    line-height: 1.75;
}

.newlook-ui .newlook-certification-tab-panel h2 {
    margin: 28px 0 13px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.28;
}

.newlook-ui .newlook-certification-checklist {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.newlook-ui .newlook-certification-checklist li {
    position: relative;
    padding-left: 28px;
    color: #c8d6e1;
    font-size: 14px;
    line-height: 1.55;
}

.newlook-ui .newlook-certification-checklist li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    color: #3bb3ff;
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;
    content: "\f00c";
    background: rgba(12, 97, 184, 0.24);
    border: 1px solid rgba(46, 162, 241, 0.35);
    border-radius: 50%;
}

.newlook-ui .newlook-certification-included-list {
    display: grid;
    gap: 11px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.newlook-ui .newlook-certification-included-list li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
    align-items: center;
    background: rgba(2, 25, 55, 0.64);
    border: 1px solid rgba(61, 137, 204, 0.34);
    border-radius: 9px;
}

.newlook-ui .newlook-certification-included-list__number {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #35adff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(7, 83, 164, 0.28);
    border: 1px solid rgba(42, 158, 239, 0.4);
    border-radius: 8px;
}

.newlook-ui .newlook-certification-included-list li > div {
    display: grid;
    gap: 5px;
}

.newlook-ui .newlook-certification-included-list strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.newlook-ui .newlook-certification-included-list li > div > span {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: #8fa7b9;
    font-size: 11px;
}

.newlook-ui .newlook-certification-empty-state {
    display: flex;
    gap: 15px;
    padding: 24px;
    align-items: flex-start;
    color: #aebfcb;
    background: rgba(2, 25, 55, 0.58);
    border: 1px dashed rgba(67, 145, 214, 0.42);
    border-radius: 10px;
}

.newlook-ui .newlook-certification-empty-state i {
    margin-top: 2px;
    color: #2ca8ff;
    font-size: 20px;
}

.newlook-ui .newlook-certification-empty-state h2,
.newlook-ui .newlook-certification-empty-state p {
    margin: 0;
}

.newlook-ui .newlook-certification-empty-state p {
    margin-top: 7px;
}


/* ==========================================================
   PATHWAY
   ========================================================== */

.newlook-ui .newlook-certification-pathway-card {
    position: sticky;
    top: 22px;
    padding: 28px;
}

.newlook-ui .newlook-certification-pathway-card header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 29px;
    line-height: 1.2;
}

.newlook-ui .newlook-certification-pathway-card header > p:last-child {
    margin: 12px 0 0;
    color: #93a9ba;
    font-size: 13px;
    line-height: 1.6;
}

.newlook-ui .newlook-certification-pathway {
    display: grid;
    justify-items: center;
    margin-top: 25px;
}

.newlook-ui .newlook-certification-pathway__step {
    display: grid;
    width: min(100%, 310px);
    gap: 6px;
    padding: 15px 17px;
    justify-items: center;
    color: #dce9f3;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(7, 59, 116, 0.88),
            rgba(3, 34, 72, 0.96)
        );
    border: 1px solid rgba(54, 151, 225, 0.51);
    border-radius: 10px;
    box-shadow: 0 13px 25px rgba(0, 0, 0, 0.2);
}

.newlook-ui .newlook-certification-pathway__step > span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(16, 136, 228, 0.78);
    border: 1px solid rgba(112, 207, 255, 0.58);
    border-radius: 50%;
}

.newlook-ui .newlook-certification-pathway__step strong {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.35;
}

.newlook-ui .newlook-certification-pathway__step small {
    color: #8fa9bd;
    font-size: 10px;
}

.newlook-ui .newlook-certification-pathway__step.is-primary {
    background:
        linear-gradient(
            145deg,
            rgba(8, 75, 144, 0.96),
            rgba(3, 42, 86, 0.98)
        );
}

.newlook-ui .newlook-certification-pathway__step.is-success {
    background:
        linear-gradient(
            145deg,
            rgba(3, 112, 139, 0.95),
            rgba(2, 61, 91, 0.98)
        );
    border-color: rgba(27, 201, 224, 0.59);
}

.newlook-ui .newlook-certification-pathway__step.is-success > span {
    background: rgba(10, 169, 195, 0.62);
    border-color: rgba(87, 231, 245, 0.62);
}

.newlook-ui .newlook-certification-pathway__connector {
    width: 2px;
    height: 25px;
    background:
        linear-gradient(
            180deg,
            rgba(46, 164, 244, 0.74),
            rgba(46, 164, 244, 0.23)
        );
}

.newlook-ui .newlook-certification-pathway__branch {
    display: grid;
    width: 100%;
    gap: 8px;
}

.newlook-ui .newlook-certification-pathway__branch--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.newlook-ui .newlook-certification-pathway__branch > div {
    display: grid;
    gap: 7px;
    min-height: 93px;
    padding: 12px 8px;
    align-content: center;
    justify-items: center;
    color: #d6e5ef;
    text-align: center;
    background: rgba(4, 55, 108, 0.68);
    border: 1px solid rgba(50, 147, 220, 0.4);
    border-radius: 8px;
}

.newlook-ui .newlook-certification-pathway__branch i {
    color: #31adff;
    font-size: 17px;
}

.newlook-ui .newlook-certification-pathway__branch span {
    font-size: 9px;
    line-height: 1.35;
}

.newlook-ui .newlook-certification-pathway__requirements {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    margin-top: 9px;
}

.newlook-ui .newlook-certification-pathway__requirements span {
    padding: 8px 7px;
    color: #c7d9e5;
    font-size: 9px;
    line-height: 1.35;
    text-align: center;
    background: rgba(4, 59, 113, 0.56);
    border: 1px solid rgba(47, 145, 217, 0.35);
    border-radius: 7px;
}

.newlook-ui .newlook-certification-pathway__requirements span:last-child {
    grid-column: 1 / -1;
}

.newlook-ui .newlook-certification-registry-link {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 11px;
    min-height: 48px;
    margin-top: 24px;
    padding: 10px 13px;
    align-items: center;
    color: #eef8ff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    background: rgba(7, 76, 150, 0.51);
    border: 1px solid rgba(47, 159, 239, 0.48);
    border-radius: 9px;
    transition:
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-certification-registry-link > i:first-child {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: #31adff;
    background: rgba(7, 83, 165, 0.37);
    border-radius: 7px;
}

.newlook-ui .newlook-certification-registry-link > i:last-child {
    color: #31adff;
    font-size: 10px;
}

.newlook-ui .newlook-certification-registry-link:hover,
.newlook-ui .newlook-certification-registry-link:focus-visible {
    background: rgba(10, 92, 180, 0.73);
    border-color: #38afff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   ORGANIZATION CTA
   ========================================================== */

.newlook-ui .newlook-certification-organization-cta {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 23px;
    margin-top: 28px;
    padding: 28px 30px;
    align-items: center;
    background:
        radial-gradient(
            circle at 8% 50%,
            rgba(0, 128, 255, 0.18),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            rgba(6, 49, 99, 0.98),
            rgba(2, 22, 49, 0.98)
        );
    border: 1px solid rgba(56, 157, 234, 0.58);
    border-radius: 14px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.newlook-ui .newlook-certification-organization-cta__icon {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    color: #39afff;
    font-size: 27px;
    background: rgba(9, 91, 176, 0.27);
    border: 1px solid rgba(51, 162, 242, 0.41);
    border-radius: 14px;
}

.newlook-ui .newlook-certification-organization-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.28;
}

.newlook-ui .newlook-certification-organization-cta p:last-child {
    margin: 10px 0 0;
    color: #9fb2c2;
    font-size: 13px;
    line-height: 1.55;
}

.newlook-ui .newlook-certification-organization-cta > a {
    display: inline-flex;
    min-height: 46px;
    padding: 10px 16px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    background:
        linear-gradient(
            180deg,
            rgba(15, 132, 240, 0.9),
            rgba(5, 75, 158, 0.96)
        );
    border: 1px solid rgba(51, 169, 255, 0.62);
    border-radius: 8px;
    transition: transform 150ms ease, border-color 150ms ease;
}

.newlook-ui .newlook-certification-organization-cta > a:hover,
.newlook-ui .newlook-certification-organization-cta > a:focus-visible {
    border-color: #8ad1ff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1260px) {
    .newlook-ui .newlook-certification-hero {
        grid-template-columns: minmax(480px, 1fr) minmax(340px, 0.8fr);
        padding: 40px;
    }

    .newlook-ui .newlook-certification-detail-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
    }
}

@media (max-width: 1080px) {
    .newlook-ui.newlook-public-certifications-page
    .newlook-certification-main {
        padding-right: 26px;
        padding-left: 26px;
    }

    .newlook-ui .newlook-certification-hero {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-certification-image-card img {
        min-height: 340px;
    }

    .newlook-ui .newlook-certification-detail-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-certification-pathway-card {
        position: static;
    }
}

@media (max-width: 800px) {
    .newlook-ui .newlook-certification-facts {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-certification-organization-cta {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .newlook-ui .newlook-certification-organization-cta > a {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 620px) {
    .newlook-ui.newlook-public-certifications-page
    .newlook-certification-main {
        padding: 18px 14px 50px;
    }

    .newlook-ui .newlook-certification-hero {
        min-height: auto;
        padding: 28px 20px;
        border-radius: 14px;
    }

    .newlook-ui .newlook-certification-hero h1 {
        font-size: 42px;
    }

    .newlook-ui .newlook-certification-hero__lead {
        font-size: 15px;
    }

    .newlook-ui .newlook-certification-purchase {
        align-items: stretch;
        flex-direction: column;
    }

    .newlook-ui .newlook-certification-buy-button,
    .newlook-ui .newlook-certification-purchase form {
        width: 100%;
    }

    .newlook-ui .newlook-certification-image-card img {
        min-height: 240px;
    }

    .newlook-ui .newlook-certification-tab-panel {
        padding: 25px 20px 30px;
    }

    .newlook-ui .newlook-certification-pathway-card {
        padding: 22px 18px;
    }

    .newlook-ui .newlook-certification-pathway__branch--three,
    .newlook-ui .newlook-certification-pathway__requirements {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-certification-pathway__requirements span:last-child {
        grid-column: auto;
    }

    .newlook-ui .newlook-certification-organization-cta {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .newlook-ui .newlook-certification-organization-cta__icon {
        width: 58px;
        height: 58px;
    }
}

@media print {
    .newlook-ui.newlook-public-certifications-page {
        background: #ffffff;
    }

    .newlook-ui .newlook-public-header,
    .newlook-ui .newlook-certification-buy-button,
    .newlook-ui .newlook-certification-organization-cta {
        display: none !important;
    }

    .newlook-ui .newlook-certification-hero,
    .newlook-ui .newlook-certification-content-card,
    .newlook-ui .newlook-certification-pathway-card {
        color: #000000;
        background: #ffffff;
        border: 1px solid #cccccc;
        box-shadow: none;
    }
}
/* ==========================================================
   PUBLIC SHOPPING CART LINK
   ========================================================== */

.newlook-ui .newlook-public-cart-link {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 12px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #dce9f4;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 7px;
    transition:
        color 150ms ease,
        background-color 150ms ease;
}

.newlook-ui .newlook-public-cart-link i {
    color: #2ba8ff;
    font-size: 17px;
}

.newlook-ui .newlook-public-cart-link:hover,
.newlook-ui .newlook-public-cart-link:focus-visible {
    color: #ffffff;
    background: rgba(16, 111, 207, 0.24);
    outline: none;
}

@media (max-width: 1100px) {
    .newlook-ui .newlook-public-cart-link {
        width: 100%;
    }
}

/* ==========================================================
   EDIT ACCOUNT INFORMATION PAGE
   Append to /_includes/assets/css/newlook-ui.css
   ========================================================== */

.newlook-ui.newlook-account-edit-page .newlook-shell {
    grid-template-columns: 256px minmax(0, 1fr);
}

.newlook-ui .newlook-account-edit-content {
    width: min(100%, 1480px);
    margin: 0 auto;
    padding: 44px 48px 68px;
}


/* ==========================================================
   TOOLBAR AND BREADCRUMB
   ========================================================== */

.newlook-ui .newlook-account-edit-toolbar {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.newlook-ui .newlook-account-edit-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    min-width: 0;
    color: #8fa4b8;
    font-size: 13px;
    line-height: 1.4;
}

.newlook-ui .newlook-account-edit-breadcrumb a {
    color: #2aa8ff;
    text-decoration: none;
}

.newlook-ui .newlook-account-edit-breadcrumb a:hover,
.newlook-ui .newlook-account-edit-breadcrumb a:focus-visible {
    color: #78caff;
    outline: none;
    text-decoration: underline;
}

.newlook-ui .newlook-account-edit-breadcrumb i {
    color: #536c84;
    font-size: 9px;
}

.newlook-ui .newlook-account-edit-breadcrumb span {
    overflow: hidden;
    color: #d9e5ef;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newlook-ui .newlook-account-edit-return {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 43px;
    padding: 9px 14px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #dce9f4;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(5, 48, 98, 0.68);
    border: 1px solid rgba(65, 147, 220, 0.5);
    border-radius: 8px;
    transition:
        color 150ms ease,
        border-color 150ms ease,
        background-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-account-edit-return i {
    color: #2ba8ff;
}

.newlook-ui .newlook-account-edit-return:hover,
.newlook-ui .newlook-account-edit-return:focus-visible {
    color: #ffffff;
    background: rgba(9, 76, 151, 0.82);
    border-color: #2ba8ff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   PAGE HEADER
   ========================================================== */

.newlook-ui .newlook-account-edit-header {
    display: grid;
    grid-template-columns:
        minmax(430px, 1fr)
        minmax(300px, 430px);
    gap: 38px;
    align-items: center;
    margin-bottom: 28px;
    padding: 34px 36px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 86% 22%,
            rgba(0, 125, 255, 0.2),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(7, 39, 80, 0.97),
            rgba(2, 18, 40, 0.98)
        );
    border: 1px solid rgba(73, 148, 216, 0.48);
    border-radius: 16px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-account-edit-heading {
    min-width: 0;
}

.newlook-ui .newlook-account-edit-heading .newlook-eyebrow {
    margin: 0 0 12px;
    color: #159cff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-account-edit-heading h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.newlook-ui .newlook-account-edit-intro {
    max-width: 760px;
    margin: 18px 0 0;
    color: #aebdca;
    font-size: 17px;
    line-height: 1.65;
}

.newlook-ui .newlook-account-edit-name {
    display: inline-flex;
    margin: 21px 0 0;
    padding: 9px 13px;
    align-items: center;
    gap: 9px;
    color: #e6f3fd;
    font-size: 13px;
    font-weight: 700;
    background: rgba(6, 72, 143, 0.35);
    border: 1px solid rgba(45, 157, 242, 0.42);
    border-radius: 22px;
}

.newlook-ui .newlook-account-edit-name i {
    color: #2ba8ff;
}

.newlook-ui .newlook-account-edit-header-side {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 250px;
    align-items: center;
    justify-content: center;
}

.newlook-ui .newlook-account-edit-status {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    display: inline-flex;
    min-height: 42px;
    padding: 9px 14px;
    align-items: center;
    gap: 10px;
    color: #dce9f4;
    font-size: 12px;
    font-weight: 700;
    background: rgba(2, 19, 43, 0.88);
    border: 1px solid rgba(81, 153, 217, 0.48);
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.newlook-ui .newlook-account-edit-status .newlook-status-dot {
    width: 11px;
    height: 11px;
}

.newlook-ui .newlook-account-edit-status.is-inactive .newlook-status-dot {
    background: #ff5b6b;
    box-shadow:
        0 0 8px rgba(255, 91, 107, 0.9),
        0 0 18px rgba(255, 91, 107, 0.42);
}

.newlook-ui .newlook-account-edit-hero {
    display: flex;
    width: 100%;
    min-height: 250px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.newlook-ui .newlook-account-edit-hero img {
    width: 108%;
    max-width: 460px;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.34));
}


/* ==========================================================
   ACCOUNT NOTICE PANELS
   ========================================================== */

.newlook-ui .newlook-account-edit-note,
.newlook-ui .newlook-account-edit-expiration,
.newlook-ui .newlook-account-edit-message {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px 22px;
    border-radius: 12px;
}

.newlook-ui .newlook-account-edit-note {
    color: #c8d6e3;
    background: rgba(4, 36, 74, 0.72);
    border: 1px solid rgba(48, 145, 229, 0.42);
}

.newlook-ui .newlook-account-edit-note__icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #2ba8ff;
    font-size: 18px;
    background: rgba(10, 92, 180, 0.25);
    border: 1px solid rgba(43, 168, 255, 0.38);
    border-radius: 50%;
}

.newlook-ui .newlook-account-edit-note strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 15px;
}

.newlook-ui .newlook-account-edit-note p,
.newlook-ui .newlook-account-edit-expiration p,
.newlook-ui .newlook-account-edit-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.newlook-ui .newlook-account-edit-expiration {
    align-items: center;
    color: #f3d6a8;
    background: rgba(92, 53, 7, 0.36);
    border: 1px solid rgba(240, 167, 65, 0.5);
}

.newlook-ui .newlook-account-edit-expiration i {
    color: #ffb84d;
    font-size: 22px;
}

.newlook-ui .newlook-account-edit-expiration strong {
    color: #ffc46c;
}

.newlook-ui .newlook-account-edit-message.is-error {
    color: #ffd9de;
    background: rgba(103, 22, 41, 0.35);
    border: 1px solid rgba(255, 91, 111, 0.5);
}

.newlook-ui .newlook-account-edit-message.is-error > i {
    margin-top: 2px;
    color: #ff6c7c;
    font-size: 22px;
}


/* ==========================================================
   FORM CARD
   ========================================================== */

.newlook-ui .newlook-account-edit-form-card {
    overflow: hidden;
    padding: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(5, 27, 57, 0.97),
            rgba(2, 16, 36, 0.97)
        );
    border: 1px solid rgba(84, 146, 209, 0.44);
    border-radius: 15px;
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-account-edit-form-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(104, 153, 202, 0.25);
}

.newlook-ui .newlook-account-edit-form-header .newlook-card-label {
    margin: 0 0 8px;
    color: #159cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-account-edit-form-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.24;
}

.newlook-ui .newlook-account-edit-form-header p:last-child {
    max-width: 720px;
    margin: 10px 0 0;
    color: #9fb0c1;
    font-size: 14px;
    line-height: 1.6;
}

.newlook-ui .newlook-account-edit-form-icon {
    display: grid;
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    place-items: center;
    color: #2ba8ff;
    font-size: 25px;
    background: rgba(9, 91, 180, 0.22);
    border: 1px solid rgba(43, 168, 255, 0.42);
    border-radius: 13px;
}

.newlook-ui .newlook-account-edit-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
}

.newlook-ui .newlook-account-edit-form-column {
    display: grid;
    align-content: start;
    gap: 22px;
    min-width: 0;
}

.newlook-ui .newlook-account-edit-field {
    min-width: 0;
}

.newlook-ui .newlook-account-edit-field label {
    display: block;
    margin-bottom: 9px;
    color: #dce8f3;
    font-size: 13px;
    font-weight: 700;
}

.newlook-ui .newlook-account-edit-input {
    position: relative;
}

.newlook-ui .newlook-account-edit-input > i {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 17px;
    color: #2ba8ff;
    font-size: 16px;
    transform: translateY(-50%);
    pointer-events: none;
}

.newlook-ui .newlook-account-edit-input input {
    display: block;
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 12px 16px 12px 50px;
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    background: rgba(1, 13, 31, 0.78);
    border: 1px solid rgba(102, 154, 205, 0.55);
    border-radius: 9px;
    outline: none;
    appearance: none;
    transition:
        background-color 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.newlook-ui .newlook-account-edit-input input::placeholder {
    color: #71859a;
    opacity: 1;
}

.newlook-ui .newlook-account-edit-input input:hover {
    border-color: rgba(55, 163, 244, 0.82);
}

.newlook-ui .newlook-account-edit-input input:focus {
    background: rgba(2, 22, 49, 0.96);
    border-color: #159cff;
    box-shadow:
        0 0 0 3px rgba(21, 156, 255, 0.14),
        0 10px 24px rgba(0, 0, 0, 0.16);
}

.newlook-ui .newlook-account-edit-field small {
    display: block;
    margin-top: 7px;
    color: #8498ab;
    font-size: 11px;
    line-height: 1.45;
}

.newlook-ui .newlook-account-edit-email-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 16px;
    color: #9eb0c1;
    background: rgba(4, 35, 70, 0.55);
    border: 1px solid rgba(66, 132, 194, 0.33);
    border-radius: 9px;
}

.newlook-ui .newlook-account-edit-email-note i {
    margin-top: 2px;
    color: #2ba8ff;
}

.newlook-ui .newlook-account-edit-email-note p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}


/* ==========================================================
   FORM ACTIONS
   ========================================================== */

.newlook-ui .newlook-account-edit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(104, 153, 202, 0.25);
}

.newlook-ui .newlook-account-edit-actions .newlook-button {
    width: auto;
    min-width: 180px;
    min-height: 49px;
    padding: 10px 18px;
    font-size: 14px;
}

.newlook-ui .newlook-account-edit-secondary {
    color: #e7f3fc;
    background: rgba(6, 72, 142, 0.65);
    border: 1px solid rgba(45, 157, 242, 0.55);
}

.newlook-ui .newlook-account-edit-secondary:hover,
.newlook-ui .newlook-account-edit-secondary:focus-visible {
    color: #ffffff;
    background: rgba(9, 91, 180, 0.82);
    border-color: #39afff;
    outline: none;
}

.newlook-ui .newlook-account-edit-cancel {
    min-width: 130px !important;
    color: #b7c6d3;
    background: rgba(24, 38, 56, 0.72);
    border: 1px solid rgba(113, 139, 164, 0.42);
}

.newlook-ui .newlook-account-edit-cancel:hover,
.newlook-ui .newlook-account-edit-cancel:focus-visible {
    color: #ffffff;
    background: rgba(54, 67, 82, 0.82);
    border-color: rgba(169, 190, 210, 0.72);
    outline: none;
}


/* ==========================================================
   ACCOUNT RECORD UNAVAILABLE
   ========================================================== */

.newlook-ui .newlook-account-edit-unavailable {
    align-items: flex-start;
    padding: 28px;
}

.newlook-ui .newlook-account-edit-unavailable h2 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 24px;
}

.newlook-ui .newlook-account-edit-unavailable a {
    display: inline-flex;
    margin-top: 16px;
    color: #49b3ff;
    font-weight: 700;
    text-decoration: none;
}

.newlook-ui .newlook-account-edit-unavailable a:hover,
.newlook-ui .newlook-account-edit-unavailable a:focus-visible {
    color: #8bd2ff;
    outline: none;
    text-decoration: underline;
}


/* ==========================================================
   RESPONSIVE LAYOUT
   ========================================================== */

@media (max-width: 1180px) {

    .newlook-ui.newlook-account-edit-page .newlook-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .newlook-ui .newlook-account-edit-content {
        padding-right: 28px;
        padding-left: 28px;
    }

    .newlook-ui .newlook-account-edit-header {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-account-edit-header-side {
        min-height: 220px;
    }

    .newlook-ui .newlook-account-edit-hero img {
        width: 72%;
        max-width: 520px;
    }

}

@media (max-width: 900px) {

    .newlook-ui.newlook-account-edit-page .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-account-edit-sidebar {
        min-height: auto;
    }

}

@media (max-width: 760px) {

    .newlook-ui .newlook-account-edit-toolbar {
        display: grid;
        justify-items: start;
    }

    .newlook-ui .newlook-account-edit-form-grid {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-account-edit-actions {
        justify-content: stretch;
    }

    .newlook-ui .newlook-account-edit-actions .newlook-button {
        width: 100%;
    }

}

@media (max-width: 620px) {

    .newlook-ui .newlook-account-edit-content {
        padding: 26px 15px 50px;
    }

    .newlook-ui .newlook-account-edit-header,
    .newlook-ui .newlook-account-edit-form-card {
        padding: 23px 19px;
        border-radius: 13px;
    }

    .newlook-ui .newlook-account-edit-heading h1 {
        font-size: 41px;
    }

    .newlook-ui .newlook-account-edit-header-side {
        min-height: 190px;
    }

    .newlook-ui .newlook-account-edit-status {
        position: static;
        margin-bottom: 12px;
    }

    .newlook-ui .newlook-account-edit-header-side {
        display: grid;
        justify-items: center;
    }

    .newlook-ui .newlook-account-edit-hero {
        min-height: 170px;
    }

    .newlook-ui .newlook-account-edit-hero img {
        width: 100%;
    }

    .newlook-ui .newlook-account-edit-note,
    .newlook-ui .newlook-account-edit-expiration,
    .newlook-ui .newlook-account-edit-message {
        padding: 17px;
    }

    .newlook-ui .newlook-account-edit-form-header {
        display: block;
    }

    .newlook-ui .newlook-account-edit-form-icon {
        margin-top: 18px;
    }

}

/* ==========================================================
   CHANGE PASSWORD PAGE
   Append to /_includes/assets/css/newlook-ui.css
   ========================================================== */

.newlook-ui.newlook-account-reset-page .newlook-shell {
    grid-template-columns: 256px minmax(0, 1fr);
}

.newlook-ui .newlook-account-reset-content {
    width: min(100%, 1450px);
    margin: 0 auto;
    padding: 44px 48px 68px;
}


/* ==========================================================
   TOOLBAR AND BREADCRUMB
   ========================================================== */

.newlook-ui .newlook-account-reset-toolbar {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.newlook-ui .newlook-account-reset-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    min-width: 0;
    color: #8fa4b8;
    font-size: 13px;
    line-height: 1.4;
}

.newlook-ui .newlook-account-reset-breadcrumb a {
    color: #2aa8ff;
    text-decoration: none;
}

.newlook-ui .newlook-account-reset-breadcrumb a:hover,
.newlook-ui .newlook-account-reset-breadcrumb a:focus-visible {
    color: #78caff;
    outline: none;
    text-decoration: underline;
}

.newlook-ui .newlook-account-reset-breadcrumb i {
    color: #536c84;
    font-size: 9px;
}

.newlook-ui .newlook-account-reset-breadcrumb span {
    overflow: hidden;
    color: #d9e5ef;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newlook-ui .newlook-account-reset-return {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 43px;
    padding: 9px 14px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #dce9f4;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(5, 48, 98, 0.68);
    border: 1px solid rgba(65, 147, 220, 0.5);
    border-radius: 8px;
    transition:
        color 150ms ease,
        border-color 150ms ease,
        background-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-account-reset-return i {
    color: #2ba8ff;
}

.newlook-ui .newlook-account-reset-return:hover,
.newlook-ui .newlook-account-reset-return:focus-visible {
    color: #ffffff;
    background: rgba(9, 76, 151, 0.82);
    border-color: #2ba8ff;
    outline: none;
    transform: translateY(-1px);
}


/* ==========================================================
   PAGE HEADER
   ========================================================== */

.newlook-ui .newlook-account-reset-header {
    display: grid;
    grid-template-columns:
        minmax(430px, 1fr)
        minmax(300px, 430px);
    gap: 38px;
    align-items: center;
    margin-bottom: 24px;
    padding: 34px 36px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 86% 22%,
            rgba(0, 125, 255, 0.2),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(7, 39, 80, 0.97),
            rgba(2, 18, 40, 0.98)
        );
    border: 1px solid rgba(73, 148, 216, 0.48);
    border-radius: 16px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-account-reset-heading {
    min-width: 0;
}

.newlook-ui .newlook-account-reset-heading .newlook-eyebrow {
    margin: 0 0 12px;
    color: #159cff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newlook-ui .newlook-account-reset-heading h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.newlook-ui .newlook-account-reset-intro {
    max-width: 760px;
    margin: 18px 0 0;
    color: #aebdca;
    font-size: 17px;
    line-height: 1.65;
}

.newlook-ui .newlook-account-reset-name {
    display: inline-flex;
    margin: 21px 0 0;
    padding: 9px 13px;
    align-items: center;
    gap: 9px;
    color: #e6f3fd;
    font-size: 13px;
    font-weight: 700;
    background: rgba(6, 72, 143, 0.35);
    border: 1px solid rgba(45, 157, 242, 0.42);
    border-radius: 22px;
}

.newlook-ui .newlook-account-reset-name i {
    color: #2ba8ff;
}

.newlook-ui .newlook-account-reset-header-side {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 250px;
    align-items: center;
    justify-content: center;
}

.newlook-ui .newlook-account-reset-status {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    display: inline-flex;
    min-height: 42px;
    padding: 9px 14px;
    align-items: center;
    gap: 10px;
    color: #dce9f4;
    font-size: 12px;
    font-weight: 700;
    background: rgba(2, 19, 43, 0.88);
    border: 1px solid rgba(81, 153, 217, 0.48);
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.newlook-ui .newlook-account-reset-status .newlook-status-dot {
    width: 11px;
    height: 11px;
}

.newlook-ui .newlook-account-reset-status.is-inactive .newlook-status-dot {
    background: #ff5b6b;
    box-shadow:
        0 0 8px rgba(255, 91, 107, 0.9),
        0 0 18px rgba(255, 91, 107, 0.42);
}

.newlook-ui .newlook-account-reset-hero {
    display: flex;
    width: 100%;
    min-height: 250px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.newlook-ui .newlook-account-reset-hero img {
    width: 108%;
    max-width: 460px;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.34));
}


/* ==========================================================
   SECURITY AND RESPONSE MESSAGES
   ========================================================== */

.newlook-ui .newlook-account-reset-security-note,
.newlook-ui .newlook-account-reset-message {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px 22px;
    border-radius: 12px;
}

.newlook-ui .newlook-account-reset-security-note {
    color: #c8d6e3;
    background: rgba(4, 36, 74, 0.72);
    border: 1px solid rgba(48, 145, 229, 0.42);
}

.newlook-ui .newlook-account-reset-security-icon {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #2aa8ff;
    font-size: 20px;
    background: rgba(12, 91, 181, 0.24);
    border: 1px solid rgba(42, 155, 242, 0.42);
    border-radius: 10px;
}

.newlook-ui .newlook-account-reset-security-note strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 15px;
}

.newlook-ui .newlook-account-reset-security-note p,
.newlook-ui .newlook-account-reset-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.newlook-ui .newlook-account-reset-message > i {
    margin-top: 2px;
    font-size: 20px;
}

.newlook-ui .newlook-account-reset-message.is-error {
    color: #ffd9df;
    background: rgba(104, 19, 39, 0.38);
    border: 1px solid rgba(255, 91, 111, 0.5);
}

.newlook-ui .newlook-account-reset-message.is-error > i {
    color: #ff7181;
}

.newlook-ui .newlook-account-reset-message.is-warning {
    color: #f7dfb4;
    background: rgba(106, 68, 8, 0.34);
    border: 1px solid rgba(242, 177, 55, 0.5);
}

.newlook-ui .newlook-account-reset-message.is-warning > i {
    color: #f2b137;
}


/* ==========================================================
   FORM LAYOUT
   ========================================================== */

.newlook-ui .newlook-account-reset-layout {
    display: grid;
    grid-template-columns:
        minmax(480px, 1fr)
        minmax(280px, 360px);
    gap: 26px;
    align-items: start;
}

.newlook-ui .newlook-account-reset-form {
    min-width: 0;
    margin: 0;
}

.newlook-ui .newlook-account-reset-card,
.newlook-ui .newlook-account-reset-help {
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 27, 57, 0.97),
            rgba(2, 16, 36, 0.96)
        );
    border: 1px solid rgba(84, 146, 209, 0.43);
    border-radius: 14px;
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.newlook-ui .newlook-account-reset-card {
    padding: 30px;
}

.newlook-ui .newlook-account-reset-card-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 23px;
    border-bottom: 1px solid rgba(103, 151, 199, 0.25);
}

.newlook-ui .newlook-account-reset-card-header .newlook-card-label,
.newlook-ui .newlook-account-reset-help .newlook-card-label {
    margin: 0 0 8px;
    color: #159cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.newlook-ui .newlook-account-reset-card-header h2,
.newlook-ui .newlook-account-reset-help h2 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.24;
}

.newlook-ui .newlook-account-reset-card-header p {
    max-width: 650px;
    margin: 10px 0 0;
    color: #aab8c9;
    font-size: 14px;
    line-height: 1.55;
}

.newlook-ui .newlook-account-reset-card-icon {
    display: grid;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    place-items: center;
    color: #159cff;
    font-size: 27px;
    background: rgba(12, 90, 180, 0.2);
    border: 2px solid #159cff;
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(21, 156, 255, 0.15);
}

.newlook-ui .newlook-account-reset-fields {
    display: grid;
    gap: 22px;
}

.newlook-ui .newlook-account-reset-field label {
    display: block;
    margin: 0 0 9px;
    color: #dce8f3;
    font-size: 14px;
    font-weight: 700;
}

.newlook-ui .newlook-account-reset-input {
    position: relative;
}

.newlook-ui .newlook-account-reset-input > i {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 17px;
    color: #2aa8ff;
    font-size: 17px;
    pointer-events: none;
    transform: translateY(-50%);
}

.newlook-ui .newlook-account-reset-input input {
    display: block;
    width: 100%;
    height: 57px;
    margin: 0;
    padding: 12px 54px 12px 49px;
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    background: rgba(1, 12, 29, 0.78);
    border: 1px solid rgba(108, 155, 205, 0.56);
    border-radius: 9px;
    outline: none;
    appearance: none;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.newlook-ui .newlook-account-reset-input input::placeholder {
    color: #75879a;
    opacity: 1;
}

.newlook-ui .newlook-account-reset-input input:hover {
    border-color: rgba(49, 150, 255, 0.78);
}

.newlook-ui .newlook-account-reset-input input:focus {
    background: rgba(2, 18, 42, 0.96);
    border-color: #168fff;
    box-shadow: 0 0 0 3px rgba(19, 136, 255, 0.17);
}

.newlook-ui .newlook-account-reset-toggle {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 8px;
    display: grid;
    width: 41px;
    height: 41px;
    padding: 0;
    place-items: center;
    color: #8da5ba;
    font-size: 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 7px;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease;
}

.newlook-ui .newlook-account-reset-toggle:hover,
.newlook-ui .newlook-account-reset-toggle:focus-visible {
    color: #ffffff;
    background: rgba(10, 80, 158, 0.52);
    border-color: rgba(45, 157, 242, 0.48);
    outline: none;
}


/* ==========================================================
   FORM ACTIONS
   ========================================================== */

.newlook-ui .newlook-account-reset-actions {
    display: grid;
    grid-template-columns:
        minmax(200px, 1.4fr)
        minmax(170px, 1fr)
        minmax(130px, 0.72fr);
    gap: 13px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(103, 151, 199, 0.25);
}

.newlook-ui .newlook-account-reset-actions .newlook-button {
    min-width: 0;
    min-height: 52px;
    font-size: 14px;
}

.newlook-ui .newlook-account-reset-forgot,
.newlook-ui .newlook-account-reset-cancel {
    background: rgba(5, 45, 91, 0.68);
    border: 1px solid rgba(65, 147, 220, 0.5);
}

.newlook-ui .newlook-account-reset-forgot:hover,
.newlook-ui .newlook-account-reset-forgot:focus-visible {
    background: rgba(9, 76, 151, 0.84);
    border-color: #2ba8ff;
    outline: none;
}

.newlook-ui .newlook-account-reset-cancel {
    color: #d6e2ed;
    background: rgba(33, 45, 60, 0.64);
    border-color: rgba(116, 142, 167, 0.42);
}

.newlook-ui .newlook-account-reset-cancel:hover,
.newlook-ui .newlook-account-reset-cancel:focus-visible {
    color: #ffffff;
    background: rgba(60, 77, 96, 0.72);
    border-color: #9eb1c4;
    outline: none;
}


/* ==========================================================
   SECURITY HELP CARD
   ========================================================== */

.newlook-ui .newlook-account-reset-help {
    padding: 28px 27px;
}

.newlook-ui .newlook-account-reset-help-icon {
    display: grid;
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    place-items: center;
    color: #2aa8ff;
    font-size: 27px;
    background: rgba(12, 90, 180, 0.2);
    border: 2px solid rgba(42, 168, 255, 0.78);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(21, 156, 255, 0.14);
}

.newlook-ui .newlook-account-reset-help > p:not(.newlook-card-label) {
    margin: 14px 0 0;
    color: #aab8c9;
    font-size: 14px;
    line-height: 1.6;
}

.newlook-ui .newlook-account-reset-help ul {
    display: grid;
    gap: 14px;
    margin: 23px 0 0;
    padding: 21px 0 0;
    list-style: none;
    border-top: 1px solid rgba(103, 151, 199, 0.25);
}

.newlook-ui .newlook-account-reset-help li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    color: #c2d0dc;
    font-size: 13px;
    line-height: 1.5;
}

.newlook-ui .newlook-account-reset-help li i {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: #20c98a;
    font-size: 10px;
    background: rgba(12, 134, 92, 0.18);
    border: 1px solid rgba(32, 201, 138, 0.34);
    border-radius: 50%;
}

.newlook-ui .newlook-account-reset-help > a {
    display: inline-flex;
    margin-top: 24px;
    align-items: center;
    gap: 9px;
    color: #2aa8ff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.newlook-ui .newlook-account-reset-help > a:hover,
.newlook-ui .newlook-account-reset-help > a:focus-visible {
    color: #78caff;
    outline: none;
    text-decoration: underline;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1180px) {
    .newlook-ui .newlook-account-reset-content {
        padding-right: 28px;
        padding-left: 28px;
    }

    .newlook-ui .newlook-account-reset-header {
        grid-template-columns: minmax(0, 1fr) 340px;
    }

    .newlook-ui .newlook-account-reset-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .newlook-ui .newlook-account-reset-actions {
        grid-template-columns: 1fr 1fr;
    }

    .newlook-ui .newlook-account-reset-save {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .newlook-ui.newlook-account-reset-page .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-account-reset-header {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-account-reset-header-side {
        min-height: 220px;
    }

    .newlook-ui .newlook-account-reset-hero img {
        width: 72%;
        max-width: 520px;
    }

    .newlook-ui .newlook-account-reset-layout {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-account-reset-help {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 22px;
        align-items: start;
    }

    .newlook-ui .newlook-account-reset-help-icon {
        grid-column: 1;
        grid-row: 1 / span 3;
        margin: 0;
    }

    .newlook-ui .newlook-account-reset-help .newlook-card-label,
    .newlook-ui .newlook-account-reset-help h2,
    .newlook-ui .newlook-account-reset-help > p:not(.newlook-card-label) {
        grid-column: 2;
    }

    .newlook-ui .newlook-account-reset-help ul,
    .newlook-ui .newlook-account-reset-help > a {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    .newlook-ui .newlook-account-reset-content {
        padding: 28px 16px 50px;
    }

    .newlook-ui .newlook-account-reset-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .newlook-ui .newlook-account-reset-return {
        width: 100%;
    }

    .newlook-ui .newlook-account-reset-header {
        padding: 27px 21px 18px;
    }

    .newlook-ui .newlook-account-reset-heading h1 {
        font-size: 42px;
    }

    .newlook-ui .newlook-account-reset-header-side {
        min-height: 185px;
    }

    .newlook-ui .newlook-account-reset-status {
        top: 4px;
        right: 4px;
    }

    .newlook-ui .newlook-account-reset-hero img {
        width: 100%;
    }

    .newlook-ui .newlook-account-reset-security-note,
    .newlook-ui .newlook-account-reset-message {
        padding: 17px;
    }

    .newlook-ui .newlook-account-reset-security-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .newlook-ui .newlook-account-reset-card,
    .newlook-ui .newlook-account-reset-help {
        padding: 23px 18px;
    }

    .newlook-ui .newlook-account-reset-card-header {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .newlook-ui .newlook-account-reset-card-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .newlook-ui .newlook-account-reset-actions {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-account-reset-save {
        grid-column: auto;
    }

    .newlook-ui .newlook-account-reset-help {
        display: block;
    }

    .newlook-ui .newlook-account-reset-help-icon {
        margin-bottom: 22px;
    }
}


