:root {
    --ziffy-ink: #172b3a;
    --ziffy-navy: #012440;
    --ziffy-deep: #001a2d;
    --ziffy-teal: #04735e;
    --ziffy-mint: #00bf8e;
    --ziffy-mint-dark: #009f77;
    --ziffy-gold: #f5b942;
    --ziffy-surface: #f6f7f6;
    --ziffy-sage: #e7eeeb;
    --ziffy-line: rgba(23, 43, 58, .12);
    --ziffy-muted: #607481;
    --ziffy-white: #fff;
    --ziffy-shadow: 0 18px 50px rgba(1, 36, 64, .1);
    --plyr-color-main: var(--ziffy-teal);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ziffy-surface);
    color: var(--ziffy-ink);
}

.ziffy-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--ziffy-mint);
    color: var(--ziffy-navy);
    font-weight: 600;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.ziffy-skip-link:focus {
    color: var(--ziffy-navy);
    transform: translateY(0);
}

.portal-shell {
    overflow: hidden;
}

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

.portal-hero {
    position: relative;
    isolation: isolate;
    padding: 88px 0 78px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 14%, rgba(0, 191, 142, .18), transparent 28%),
        radial-gradient(circle at 55% 100%, rgba(4, 115, 94, .18), transparent 34%),
        #020907;
    color: var(--ziffy-white);
}

.portal-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent);
}

.portal-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    gap: 72px;
    align-items: center;
}

.portal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--ziffy-mint) !important;
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.portal-eyebrow::before {
    width: 28px;
    height: 2px;
    background: currentColor;
    content: "";
}

.portal-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--ziffy-white) !important;
    font-size: clamp(3rem, 5.15vw, 4.2rem);
    font-weight: 650;
    letter-spacing: -.055em;
    line-height: 1.04;
}

.portal-hero h1 span {
    color: var(--ziffy-mint) !important;
}

.portal-hero-lead {
    max-width: 670px;
    margin: 25px 0 31px;
    color: rgba(255, 255, 255, .72) !important;
    font-size: clamp(1rem, 1.4vw, 1.13rem);
    line-height: 1.75;
}

.portal-hero-copy {
    min-width: 0;
}

.portal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.portal-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-weight: 720;
    line-height: 1;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}

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

.portal-button-primary {
    background: var(--ziffy-mint);
    color: var(--ziffy-navy);
    box-shadow: 0 12px 30px rgba(0, 191, 142, .22);
}

.portal-button-primary:hover {
    background: #12cea0;
    color: var(--ziffy-navy);
}

.portal-button-secondary {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .04);
    color: var(--ziffy-white);
}

.portal-button-secondary:hover {
    border-color: var(--ziffy-mint);
    color: var(--ziffy-mint);
}

.portal-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 650px;
    margin-top: 46px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.portal-proof-item {
    padding: 24px 26px 0 0;
}

.portal-proof-item + .portal-proof-item {
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.portal-proof strong {
    display: block;
    color: var(--ziffy-white) !important;
    font-size: 1.55rem;
    letter-spacing: -.035em;
}

.portal-proof span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .58) !important;
    font-size: .8rem;
    line-height: 1.4;
}

.portal-pathfinder {
    position: relative;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(255, 255, 255, .97);
    color: var(--ziffy-ink);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.portal-pathfinder::before {
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--ziffy-teal), var(--ziffy-mint));
    content: "";
}

.portal-pathfinder-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--ziffy-teal) !important;
    font-size: .78rem;
    font-weight: 750;
}

.portal-pathfinder h2 {
    margin: 0 0 9px;
    color: var(--ziffy-navy);
    font-size: 1.7rem;
    font-weight: 650;
    letter-spacing: -.035em;
}

.portal-pathfinder > p {
    margin: 0 0 24px;
    color: var(--ziffy-muted) !important;
    font-size: .93rem;
    line-height: 1.65;
}

.portal-field {
    margin-bottom: 15px;
}

.portal-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--ziffy-ink);
    font-size: .79rem;
    font-weight: 700;
}

.portal-field input,
.portal-field select {
    width: 100%;
    min-height: 49px;
    padding: 0 14px;
    border: 1px solid rgba(23, 43, 58, .18);
    border-radius: 8px;
    outline: 0;
    background: #fff;
    color: var(--ziffy-ink);
    font-size: .92rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.portal-field input:focus,
.portal-field select:focus {
    border-color: var(--ziffy-mint);
    box-shadow: 0 0 0 4px rgba(0, 191, 142, .11);
}

.portal-pathfinder .portal-button {
    width: 100%;
    margin-top: 5px;
}

.portal-form-note {
    margin: 13px 0 0 !important;
    color: var(--ziffy-muted) !important;
    text-align: center;
    font-size: .72rem !important;
}

.portal-trust-strip {
    border-bottom: 1px solid var(--ziffy-line);
    background: var(--ziffy-white);
}

.portal-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portal-trust-item {
    display: flex;
    min-height: 92px;
    align-items: center;
    gap: 13px;
    padding: 20px 26px;
}

.portal-trust-item + .portal-trust-item {
    border-left: 1px solid var(--ziffy-line);
}

.portal-trust-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 191, 142, .1);
    color: var(--ziffy-teal);
}

.portal-trust-item strong {
    display: block;
    color: var(--ziffy-navy);
    font-size: .9rem;
}

.portal-trust-item span {
    display: block;
    margin-top: 2px;
    color: var(--ziffy-muted);
    font-size: .74rem;
}

.portal-section {
    padding: 84px 0;
}

.portal-programs {
    background: var(--ziffy-sage);
}

.portal-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.portal-section-head-copy {
    max-width: 690px;
}

.portal-section-head .portal-eyebrow {
    margin-bottom: 12px;
    color: var(--ziffy-teal) !important;
}

.portal-journey .portal-eyebrow {
    color: var(--ziffy-teal) !important;
}

.portal-section h2 {
    margin: 0;
    color: var(--ziffy-navy);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 640;
    letter-spacing: -.048em;
    line-height: 1.1;
}

.portal-section-intro {
    max-width: 670px;
    margin: 16px 0 0;
    color: var(--ziffy-muted) !important;
    line-height: 1.7;
}

.portal-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ziffy-teal);
    font-weight: 750;
    white-space: nowrap;
}

.portal-text-link:hover {
    color: var(--ziffy-mint-dark);
}

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

.portal-course-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(23, 43, 58, .08);
    border-radius: 14px;
    background: var(--ziffy-white);
    box-shadow: 0 8px 24px rgba(1, 36, 64, .06);
    transition: transform .3s cubic-bezier(.2, .75, .25, 1), box-shadow .3s ease, border-color .3s ease;
}

.portal-course-card:hover {
    z-index: 2;
    border-color: rgba(0, 191, 142, .32);
    box-shadow: var(--ziffy-shadow);
    transform: translateY(-7px);
}

.portal-course-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ziffy-navy);
}

.portal-course-thumb::after {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(transparent, rgba(1, 36, 64, .58));
    content: "";
}

.portal-course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2, .75, .25, 1);
}

.portal-course-card:hover .portal-course-thumb img {
    transform: scale(1.035);
}

.portal-course-level {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .94);
    color: var(--ziffy-teal);
    font-size: .7rem;
    font-weight: 750;
}

.portal-course-body {
    padding: 22px;
}

.portal-course-category {
    color: var(--ziffy-teal);
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portal-course-card h3 {
    min-height: 54px;
    margin: 9px 0 14px;
    color: var(--ziffy-navy);
    font-size: 1.08rem;
    font-weight: 680;
    letter-spacing: -.022em;
    line-height: 1.48;
}

.portal-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ziffy-line);
    color: var(--ziffy-muted);
    font-size: .75rem;
}

.portal-course-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.portal-course-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 17px;
}

.portal-course-price {
    color: var(--ziffy-navy);
    font-size: 1.05rem;
    font-weight: 750;
}

.portal-course-price.is-free {
    color: var(--ziffy-teal);
}

.portal-course-bottom a {
    color: var(--ziffy-teal);
    font-size: .78rem;
    font-weight: 750;
}

.portal-empty {
    grid-column: 1 / -1;
    padding: 50px;
    border: 1px dashed rgba(23, 43, 58, .2);
    border-radius: 14px;
    background: rgba(255, 255, 255, .6);
    text-align: center;
}

.portal-outcomes {
    position: relative;
    background:
        radial-gradient(circle at 16% 0, rgba(0, 191, 142, .16), transparent 30%),
        var(--ziffy-navy);
    color: var(--ziffy-white);
}

.portal-outcomes .portal-section-head {
    align-items: start;
}

.portal-outcomes .portal-eyebrow {
    color: var(--ziffy-mint) !important;
}

.portal-outcomes h2 {
    max-width: 670px;
    color: var(--ziffy-white) !important;
}

.portal-outcomes .portal-section-intro {
    max-width: 420px;
    color: rgba(255, 255, 255, .65) !important;
}

.portal-outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
}

.portal-outcome-card {
    min-height: 230px;
    padding: 30px;
    background: rgba(1, 27, 46, .94);
    transition: background-color .25s ease;
}

.portal-outcome-card:hover {
    background: rgba(4, 115, 94, .45);
}

.portal-outcome-number {
    display: block;
    margin-bottom: 45px;
    color: var(--ziffy-mint);
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .14em;
}

.portal-outcome-card h3 {
    margin: 0 0 10px;
    color: var(--ziffy-white) !important;
    font-size: 1.08rem;
}

.portal-outcome-card p {
    margin: 0;
    color: rgba(255, 255, 255, .62) !important;
    font-size: .83rem;
    line-height: 1.65;
}

.portal-journey {
    background: var(--ziffy-surface);
}

.portal-journey-grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 90px;
}

.portal-journey-intro {
    position: sticky;
    top: 110px;
    align-self: start;
}

.portal-journey-list {
    border-top: 1px solid var(--ziffy-line);
}

.portal-journey-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 22px;
    padding: 27px 0;
    border-bottom: 1px solid var(--ziffy-line);
}

.portal-step-number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--ziffy-sage);
    color: var(--ziffy-teal);
    font-size: .77rem;
    font-weight: 800;
    transition: background-color .25s ease, color .25s ease;
}

.portal-journey-step:hover .portal-step-number {
    background: var(--ziffy-mint);
    color: var(--ziffy-navy);
}

.portal-journey-step h3 {
    margin: 0 0 7px;
    color: var(--ziffy-navy);
    font-size: 1.06rem;
}

.portal-journey-step p {
    margin: 0;
    color: var(--ziffy-muted);
    font-size: .87rem;
    line-height: 1.7;
}

.portal-final-cta {
    padding: 72px 0;
    background: var(--ziffy-deep);
    color: var(--ziffy-white);
}

.portal-final-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.portal-final-cta h2 {
    max-width: 730px;
    margin: 0;
    color: var(--ziffy-white) !important;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 620;
    letter-spacing: -.05em;
    line-height: 1.08;
}

.portal-final-cta p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .62) !important;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .75, .25, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.portal-course-grid [data-reveal]:nth-child(2),
.portal-outcome-grid [data-reveal]:nth-child(2) {
    transition-delay: .08s;
}

.portal-course-grid [data-reveal]:nth-child(3),
.portal-outcome-grid [data-reveal]:nth-child(3) {
    transition-delay: .16s;
}

.portal-course-grid [data-reveal]:nth-child(4),
.portal-outcome-grid [data-reveal]:nth-child(4) {
    transition-delay: .24s;
}

.portal-course-grid [data-reveal]:nth-child(5) {
    transition-delay: .32s;
}

.portal-course-grid [data-reveal]:nth-child(6) {
    transition-delay: .4s;
}

/* Shared polish for catalog, course, account and dashboard pages */
.login-area {
    padding: 72px 0;
    background: var(--ziffy-surface);
}

.login-area > .container > .row {
    overflow: hidden;
    align-items: stretch;
    border: 1px solid var(--ziffy-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--ziffy-shadow);
}

.login-area > .container > .row > [class*="col-"] {
    padding: 0;
}

.ziffy-auth-story {
    display: flex;
    min-height: 590px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 7vw, 86px);
    background:
        radial-gradient(circle at 85% 12%, rgba(0, 191, 142, .2), transparent 27%),
        linear-gradient(145deg, #020907, var(--ziffy-navy));
    color: #fff;
}

.ziffy-auth-kicker {
    margin: 0 0 18px !important;
    color: var(--ziffy-mint) !important;
    font-size: .76rem !important;
    font-weight: 780;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ziffy-auth-story h1 {
    max-width: 550px;
    margin: 0;
    color: #fff !important;
    font-size: clamp(2.3rem, 4.3vw, 3.8rem);
    letter-spacing: -.055em;
    line-height: 1.06;
}

.ziffy-auth-story > p:not(.ziffy-auth-kicker) {
    max-width: 550px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .68) !important;
    line-height: 1.72;
}

.ziffy-auth-story ul {
    display: grid;
    gap: 13px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.ziffy-auth-story li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, .82) !important;
    font-size: .86rem;
}

.ziffy-auth-story li i {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 191, 142, .15);
    color: var(--ziffy-mint);
    font-size: .68rem;
}

.login-area .login-form {
    display: flex;
    min-height: 590px;
    flex-direction: column;
    justify-content: center;
    margin: 0 !important;
    padding: clamp(40px, 6vw, 72px);
}

.login-area .login-form .g-title {
    font-size: 2rem;
}

.login-area .login-form .description {
    margin-bottom: 27px;
}

.login-area .login-form .form-control {
    min-height: 54px;
    background: #fff;
}

.login-area .login-form .eBtn {
    min-height: 52px;
}

.profile-banner-area {
    background:
        radial-gradient(circle at 84% 18%, rgba(0, 191, 142, .17), transparent 31%),
        linear-gradient(118deg, #f6f7f6, #e7eeeb) !important;
}

.profile-banner-area-container .sidebar,
.profile-banner-area-container .user-profile-area,
.profile-banner-area-container .my-panel {
    border-color: rgba(4, 115, 94, .22) !important;
    box-shadow: 0 12px 36px rgba(1, 36, 64, .07) !important;
}

.profile-banner-area-container .active,
.profile-banner-area-container .active a,
.profile-banner-area-container a:hover {
    color: var(--ziffy-teal) !important;
}

.profile-banner-area-container .sidebar svg path,
.profile-banner-area-container .user-profile-area svg path {
    fill: var(--ziffy-teal) !important;
    stroke: var(--ziffy-teal) !important;
}

.profile-banner-area-container .empty svg path,
.profile-banner-area-container .empty svg circle,
.profile-banner-area-container .empty svg rect {
    fill: var(--ziffy-teal) !important;
}

.profile-banner-area-container .empty svg [stroke] {
    stroke: var(--ziffy-navy) !important;
}

.course-details-wraper .fa-check,
.course-details-wraper .color-facebook,
.course-details-wraper .color-facebook i,
.course-details-wraper .color-twitter,
.course-details-wraper .color-twitter i,
.course-details-wraper .color-linkedin,
.course-details-wraper .color-linkedin i,
.course-details-wraper .color-whatsapp,
.course-details-wraper .color-whatsapp i {
    color: var(--ziffy-teal) !important;
}

.course-details-wraper .plyr__control--overlaid {
    background: var(--ziffy-teal) !important;
}

.course-details-wraper .plyr input[type="range"] {
    color: var(--ziffy-teal) !important;
}

.course-details-wraper,
.course-filter-area,
.user-dashboard-content,
.my-course-1-full-body,
.account-form,
.login-form {
    animation: ziffy-page-enter .45s ease both;
}

.course-box-wrap,
.course-grid,
.course-card,
.my-course-1-single-card,
.user-dashboard-content .card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.course-box-wrap:hover,
.course-grid:hover,
.course-card:hover,
.my-course-1-single-card:hover {
    transform: translateY(-4px);
}

@keyframes ziffy-page-enter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .portal-hero-grid {
        gap: 42px;
    }

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

@media (max-width: 991px) {
    .portal-container {
        width: min(100% - 36px, 760px);
    }

    .portal-hero {
        padding: 70px 0;
    }

    .portal-hero-grid,
    .portal-journey-grid {
        grid-template-columns: 1fr;
    }

    .portal-hero-grid {
        gap: 48px;
    }

    .portal-pathfinder {
        max-width: 600px;
    }

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

    .portal-trust-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--ziffy-line);
    }

    .portal-trust-item:nth-child(4) {
        border-top: 1px solid var(--ziffy-line);
    }

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

    .portal-journey-grid {
        gap: 44px;
    }

    .portal-journey-intro {
        position: static;
    }
}

@media (max-width: 767px) {
    .portal-container {
        width: min(100% - 28px, 620px);
    }

    .portal-hero {
        padding: 56px 0;
    }

    .portal-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .portal-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.35rem);
    }

    .portal-proof {
        grid-template-columns: 1fr;
    }

    .portal-proof-item,
    .portal-proof-item + .portal-proof-item {
        padding: 17px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .portal-pathfinder {
        padding: 27px 22px;
    }

    .portal-trust-grid,
    .portal-course-grid,
    .portal-outcome-grid {
        grid-template-columns: 1fr;
    }

    .portal-trust-item + .portal-trust-item,
    .portal-trust-item:nth-child(3) {
        border-top: 1px solid var(--ziffy-line);
        border-left: 0;
    }

    .portal-section {
        padding: 64px 0;
    }

    .portal-section-head,
    .portal-outcomes .portal-section-head,
    .portal-final-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .portal-section-head {
        display: flex;
    }

    .portal-course-card h3 {
        min-height: 0;
    }

    .portal-outcome-card {
        min-height: 190px;
    }

    .portal-outcome-number {
        margin-bottom: 28px;
    }

    .portal-final-cta {
        padding: 60px 0;
    }

    .login-area {
        padding: 36px 14px;
    }

    .ziffy-auth-story,
    .login-area .login-form {
        min-height: auto;
        padding: 38px 26px;
    }
}

/* Typography follows the main 8080 website: regular body, medium UI, semibold headings. */
.portal-shell,
.portal-shell p,
.portal-shell li,
.portal-shell label,
.portal-shell input,
.portal-shell select,
.portal-shell button {
    font-weight: 400 !important;
}

.portal-hero h1,
.portal-section-heading h2,
.portal-pathfinder h2,
.portal-outcome-card h3,
.portal-journey-step h3 {
    font-weight: 600 !important;
}

.portal-eyebrow,
.portal-pathfinder-badge,
.portal-field label,
.portal-text-link,
.portal-course-level,
.portal-course-category,
.portal-course-card h3,
.portal-course-price,
.portal-course-bottom a,
.portal-outcome-number,
.portal-step-number {
    font-weight: 500 !important;
}

.portal-button,
.portal-button-primary,
.portal-button-secondary {
    font-weight: 600 !important;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
