.debt-hero {
    position: relative;
    padding: 80px 0 90px;
    background: #f3f6fb;
    overflow: hidden;
}

.debt-hero::after {
    content: "";
    position: absolute;
    right: 8%;
    top: -120px;
    width: 520px;
    height: 520px;
    background: url('/assets/images/hero-shape.svg') no-repeat center / contain;
    opacity: .12;
    pointer-events: none;
}

.debt-hero h1 {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
    font-size: 44px;
    font-weight: 500;
    color: #07162f;
}

.debt-hero h1 strong {
    color: #8f3f7b;
    font-weight: 800;
}

.debt-hero p {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0;
    color: #7b88a4;
    font-size: 17px;
    line-height: 1.7;
}

.debt-status-section {
    padding: 70px 0 90px;
    background: #f8fafd;
}

.debt-card {
    height: 100%;
    padding: 34px;
    background: #fff;
    border: 1px solid #dfe6f0;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .04);
}

.debt-card-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 22px;
    border-bottom: 1px solid #edf1f7;
}

.debt-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(143, 63, 123, .10);
    color: #8f3f7b;
    font-size: 13px;
}

.debt-card h2 {
    margin: 0;
    color: #07162f;
    font-size: 23px;
    font-weight: 800;
}

.debt-card .form-label {
    margin-bottom: 10px;
    color: #7b88a4;
    font-size: 14px;
    font-weight: 600;
}

.debt-input-group {
    display: flex;
    overflow: hidden;
    border: 1px solid #dfe6f0;
    border-radius: 13px;
    background: #fff;
    transition: .25s ease;
}

.debt-input-group:focus-within {
    border-color: #8f3f7b;
    box-shadow: 0 0 0 4px rgba(143, 63, 123, .08);
}

.debt-input-group span {
    width: 52px;
    min-width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f7f9fc;
    color: #7b88a4;
    border-right: 1px solid #e8edf5;
}

.debt-input-group .form-control {
    height: 54px;
    border: 0;
    box-shadow: none;
    color: #07162f;
    font-size: 15px;
}

.debt-input-group .form-control::placeholder {
    color: #9aa6bc;
}

.debt-submit-btn {
    width: 100%;
    height: 56px;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 13px;
    background: #96427f;
    color: #fff;
    font-weight: 800;
    transition: .25s ease;
}

.debt-submit-btn:hover {
    background: #7f356b;
    color: #fff;
    transform: translateY(-1px);
}

.debt-secure-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 26px 0 0;
    color: #8a96ad;
    font-size: 14px;
}

.debt-secure-note i {
    color: #8f3f7b;
}

.debt-info-card h2 {
    margin-bottom: 18px;
}

.debt-info-intro {
    margin-bottom: 28px;
    color: #7b88a4;
    line-height: 1.7;
}

.debt-steps {
    display: grid;
    gap: 21px;
}

.debt-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.debt-step span {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #96427f;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.debt-step p {
    margin: 3px 0 0;
    color: #64718b;
    line-height: 1.6;
}

.debt-help-box {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid #edf1f7;
}

.debt-help-box h3 {
    margin-bottom: 14px;
    color: #07162f;
    font-size: 18px;
    font-weight: 800;
}

.debt-help-box p {
    margin-bottom: 22px;
    color: #7b88a4;
    line-height: 1.7;
}

.debt-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
}

.debt-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8f3f7b;
    font-weight: 800;
    text-decoration: none;
}

.debt-contact-list a i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(143, 63, 123, .25);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .debt-hero {
        padding: 60px 0 70px;
    }

    .debt-hero h1 {
        font-size: 38px;
    }

    .debt-status-section {
        padding: 50px 0 70px;
    }
}

@media (max-width: 575px) {
    .debt-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .debt-hero h1 {
        font-size: 34px;
    }

    .debt-contact-list {
        flex-direction: column;
        gap: 14px;
    }
}

.job-hero {
    position: relative;
    padding: 82px 0 92px;
    background: #f3f6fb;
    overflow: hidden;
}

.job-hero::after {
    content: "";
    position: absolute;
    right: 7%;
    top: -140px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(143, 63, 123, .10);
}

.job-hero .container {
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: #8f3f7b;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.job-hero h1 {
    margin: 0 0 18px;
    color: #07162f;
    font-size: 46px;
    font-weight: 500;
}

.job-hero h1 strong {
    color: #8f3f7b;
    font-weight: 800;
}

.job-hero p {
    max-width: 620px;
    margin: 0;
    color: #7b88a4;
    font-size: 17px;
    line-height: 1.75;
}

.job-application-section {
    padding: 70px 0 95px;
    background: #f8fafd;
}

.job-alert {
    max-width: 1080px;
    margin: 0 auto 24px;
    border-radius: 14px;
}

.job-application-shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid #dfe6f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .05);
}

.job-progress {
    display: flex;
    align-items: center;
    margin-bottom: 34px;
    padding: 20px;
    border-radius: 18px;
    background: #f8fafd;
}

.job-progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9aa6bc;
    white-space: nowrap;
}

.job-progress-step span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8edf5;
    color: #7b88a4;
    font-weight: 800;
}

.job-progress-step.active {
    color: #07162f;
}

.job-progress-step.active span {
    background: #8f3f7b;
    color: #fff;
}

.job-progress-line {
    flex: 1;
    height: 1px;
    margin: 0 16px;
    background: #dfe6f0;
}

.job-card-title {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #edf1f7;
}

.job-card-title>span {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(143, 63, 123, .10);
    color: #8f3f7b;
    font-weight: 900;
}

.job-card-title h2 {
    margin: 0 0 7px;
    color: #07162f;
    font-size: 26px;
    font-weight: 900;
}

.job-card-title p {
    margin: 0;
    color: #7b88a4;
    line-height: 1.65;
}

.job-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.job-type-card {
    position: relative;
    min-height: 155px;
    padding: 24px;
    border: 1px solid #dfe6f0;
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    transition: .25s ease;
}

.job-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.job-type-card.active {
    border-color: #8f3f7b;
    background: rgba(143, 63, 123, .05);
    box-shadow: 0 0 0 4px rgba(143, 63, 123, .08);
}

.job-type-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(143, 63, 123, .10);
    color: #8f3f7b;
    font-size: 20px;
}

.job-type-card strong {
    display: block;
    margin-bottom: 7px;
    color: #07162f;
    font-size: 17px;
}

.job-type-card small {
    color: #7b88a4;
    line-height: 1.55;
}

.job-inner-title {
    margin-bottom: 18px;
}

.job-inner-title h3 {
    margin: 0;
    color: #8f3f7b;
    font-size: 19px;
    font-weight: 900;
}

.job-input {
    min-height: 54px;
    border: 1px solid #dfe6f0;
    border-radius: 13px;
    color: #07162f;
    font-size: 15px;
    box-shadow: none;
}

.job-input:focus {
    border-color: #8f3f7b;
    box-shadow: 0 0 0 4px rgba(143, 63, 123, .08);
}

.job-textarea {
    min-height: 130px;
    padding-top: 14px;
}

.job-form .form-label {
    margin-bottom: 10px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

.job-consent-box {
    margin-top: 32px;
    padding: 24px;
    border: 1px solid rgba(143, 63, 123, .18);
    border-radius: 18px;
    background: rgba(143, 63, 123, .04);
}

.job-consent-box p {
    margin: 0;
    color: #64718b;
    line-height: 1.75;
}

.job-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    color: #07162f;
    font-weight: 700;
    line-height: 1.5;
}

.job-checkbox input {
    margin-top: 5px;
    accent-color: #8f3f7b;
}

.job-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid #edf1f7;
}

.job-back-btn,
.job-next-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 13px;
    font-weight: 900;
}

.job-back-btn {
    border: 1px solid #dfe6f0;
    background: #fff;
    color: #07162f;
}

.job-next-btn {
    border: 0;
    background: #8f3f7b;
    color: #fff;
}

.job-next-btn:hover {
    background: #7b356a;
    color: #fff;
}

@media (max-width: 991px) {
    .job-progress {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .job-progress-line {
        display: none;
    }

    .job-type-grid {
        grid-template-columns: 1fr;
    }

    .job-application-shell {
        padding: 26px;
    }

    .job-hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .job-hero {
        padding: 58px 0 68px;
    }

    .job-hero h1 {
        font-size: 34px;
    }

    .job-application-section {
        padding: 45px 0 70px;
    }

    .job-application-shell {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .job-card-title {
        flex-direction: column;
    }

    .job-navigation {
        flex-direction: column-reverse;
    }

    .job-back-btn,
    .job-next-btn {
        width: 100%;
    }
}

.job-add-btn,
.job-remove-btn {
    min-height: 54px;
    border-radius: 13px;
    border: 0;
    font-weight: 900;
}

.job-add-btn {
    background: #8f3f7b;
    color: #fff;
}

.job-remove-btn {
    background: #fff1f3;
    color: #b42318;
    border: 1px solid #fecdca;
}

.job-repeat-card {
    padding: 18px;
    border: 1px solid #edf1f7;
    border-radius: 16px;
    background: #fbfcff;
    margin-bottom: 16px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: #f4f7fc;
    padding: 86px 0 96px;
}

/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    background: #f4f7fc;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

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

.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #9b4081;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.page-hero-eyebrow span {
    display: block;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: #9b4081;
}

.page-hero h1 {
    margin: 0;
    color: #001735;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -1.8px;
}

.page-hero h1 strong,
.page-hero h1 b {
    color: #9b4081;
    font-weight: 800;
}

.page-hero-subtitle {
    max-width: 620px;
    margin-top: 24px;
    color: #72809f;
    font-size: 18px;
    line-height: 1.7;
}

.page-hero-subtitle p {
    margin: 0;
}

.page-hero-shape {
    position: absolute;
    z-index: 1;
    top: -180px;
    right: -80px;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: rgba(155, 64, 129, 0.08);
}


/* =========================================================
   COMPACT VARIANT
========================================================= */

.page-hero-compact {
    padding: 74px 0 88px;
}

.page-hero-compact .page-hero-content {
    max-width: 760px;
}


/* =========================================================
   CREDIT VARIANT
========================================================= */

.page-hero-credit {
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 90px 0 100px;
    background:
        radial-gradient(circle at 85% 30%,
            rgba(155, 64, 129, 0.13),
            transparent 32%),
        linear-gradient(135deg,
            #f8faff 0%,
            #f3f6fc 50%,
            #f7f2f7 100%);
}

.page-hero-credit .page-hero-inner {
    min-height: 290px;
}

.page-hero-credit .page-hero-content {
    flex: 0 1 680px;
}

.page-hero-credit h1 {
    font-size: clamp(46px, 5vw, 72px);
}

.page-hero-credit .page-hero-subtitle {
    max-width: 600px;
    color: #697896;
    font-size: 19px;
}

.page-hero-credit .page-hero-shape {
    top: auto;
    right: -170px;
    bottom: -320px;
    width: 700px;
    height: 700px;
    background: rgba(155, 64, 129, 0.07);
}

/* =========================================================
   PAGE BREADCRUMB
========================================================= */

.page-breadcrumb {
    margin-bottom: 24px;
}

.page-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7b89a4;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.page-breadcrumb li:not(:last-child)::after {
    content: "/";
    color: rgba(0, 23, 53, 0.28);
    font-weight: 400;
}

.page-breadcrumb a {
    color: #687793;
    text-decoration: none;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.page-breadcrumb a:hover {
    color: #9b4081;
}

.page-breadcrumb li[aria-current="page"] {
    color: #9b4081;
    font-weight: 700;
}

/* =========================================================
   CREDIT VISUAL
========================================================= */

.page-hero-visual {
    position: relative;
    flex: 0 0 390px;
    width: 390px;
    height: 300px;
}

.page-hero-orbit {
    position: absolute;
    border: 1px solid rgba(155, 64, 129, 0.18);
    border-radius: 50%;
}

.page-hero-orbit-large {
    top: -34px;
    right: -20px;
    width: 330px;
    height: 330px;
}

.page-hero-orbit-small {
    top: 34px;
    right: 48px;
    width: 205px;
    height: 205px;
}

.page-hero-orbit-large::before,
.page-hero-orbit-small::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #9b4081;
    box-shadow: 0 8px 20px rgba(155, 64, 129, 0.28);
}

.page-hero-orbit-large::before {
    top: 39px;
    left: 20px;
    width: 14px;
    height: 14px;
}

.page-hero-orbit-small::before {
    right: 14px;
    bottom: 33px;
    width: 10px;
    height: 10px;
}

.page-hero-visual-card {
    position: absolute;
    top: 48px;
    right: 44px;
    width: 240px;
    min-height: 190px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 24px 60px rgba(0, 23, 53, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    transform: rotate(4deg);
}

.page-hero-visual-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(155, 64, 129, 0.1);
    border-radius: 23px;
}

.page-hero-visual-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    width: 66px;
    height: 66px;
    margin-bottom: 26px;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(145deg,
            #9b4081,
            #753064);
    box-shadow: 0 14px 30px rgba(155, 64, 129, 0.28);
}

.page-hero-visual-icon span {
    display: block;
    flex: 1;
    border-radius: 5px 5px 2px 2px;
    background: rgba(255, 255, 255, 0.9);
}

.page-hero-visual-icon span:nth-child(1) {
    height: 18px;
}

.page-hero-visual-icon span:nth-child(2) {
    height: 29px;
}

.page-hero-visual-icon span:nth-child(3) {
    height: 39px;
}

.page-hero-visual-lines {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.page-hero-visual-lines span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: #e2e7f1;
}

.page-hero-visual-lines span:nth-child(1) {
    width: 100%;
}

.page-hero-visual-lines span:nth-child(2) {
    width: 78%;
}

.page-hero-visual-lines span:nth-child(3) {
    width: 48%;
    background: rgba(155, 64, 129, 0.25);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
    .page-hero-visual {
        flex-basis: 330px;
        width: 330px;
    }

    .page-hero-orbit-large {
        width: 290px;
        height: 290px;
    }

    .page-hero-orbit-small {
        width: 180px;
        height: 180px;
    }

    .page-hero-visual-card {
        right: 22px;
    }
}

@media (max-width: 991px) {
    .page-hero {
        padding: 62px 0 70px;
    }

    .page-hero-inner {
        gap: 30px;
    }

    .page-hero-credit {
        min-height: auto;
        padding: 72px 0 82px;
    }

    .page-hero-credit .page-hero-content {
        flex-basis: 100%;
        max-width: 680px;
    }

    .page-hero-visual {
        display: none;
    }

    .page-hero-shape {
        top: -140px;
        right: -220px;
        width: 430px;
        height: 430px;
    }

    .page-hero-credit .page-hero-shape {
        right: -240px;
        bottom: -260px;
        width: 540px;
        height: 540px;
    }
}

@media (max-width: 767px) {

    .page-hero,
    .page-hero-compact,
    .page-hero-credit {
        padding: 52px 0 60px;
    }

    .page-hero-eyebrow {
        margin-bottom: 16px;
        font-size: 12px;
        letter-spacing: 1.4px;
    }

    .page-hero h1,
    .page-hero-credit h1 {
        font-size: clamp(36px, 11vw, 50px);
        letter-spacing: -1.2px;
    }

    .page-hero-subtitle,
    .page-hero-credit .page-hero-subtitle {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.65;
    }

    .page-breadcrumb {
        margin-bottom: 18px;
    }

    .page-breadcrumb ol {
        gap: 6px;
    }

    .page-breadcrumb li {
        gap: 6px;
        font-size: 12px;
    }

    .page-breadcrumb li[aria-current="page"] {
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.online-credit-hero {
    background: #f4f7fc;
    padding: 80px 0 90px;
}

.online-credit-hero h1 {
    color: #001735;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
}

.online-credit-hero h1 strong {
    color: #9b4081;
    font-weight: 800;
}

.online-credit-hero p {
    max-width: 620px;
    color: #7b89aa;
    font-size: 18px;
    line-height: 1.7;
}

.online-credit-section {
    background: #f8fafd;
    padding: 70px 0;
}

.online-credit-card {
    max-width: 1180px;
    margin: 0 auto;
    padding: 46px;
    background: #fff;
    border: 1px solid #dce4ef;
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(0, 23, 53, 0.06);
}

.online-credit-card label {
    display: block;
    margin-bottom: 7px;
    color: #001735;
    font-weight: 500;
}

.online-credit-card .form-control,
.online-credit-card .form-select {
    height: 48px;
    border-radius: 8px;
    border-color: #d9e1ee;
    border-bottom: 2px solid #9b4081;
}

.online-credit-consents {
    max-width: 720px;
    margin: 42px auto 0;
    padding: 22px 24px;
    background: #f8fafd;
    border: 1px solid #dce4ef;
    border-radius: 18px;
}

.consent-intro {
    margin-bottom: 14px;
}

.consent-intro strong {
    display: block;
    color: #001735;
    font-weight: 800;
    margin-bottom: 3px;
}

.consent-intro span {
    color: #7b89aa;
    font-size: 14px;
}

.consent-row {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    margin: 0 !important;
    padding: 12px 0;
    border-top: 1px solid #e8edf5;
    color: #42526b !important;
    font-weight: 400 !important;
}

.consent-row input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #9b4081;
    flex-shrink: 0;
}

.consent-row a {
    color: #ff7417;
    font-weight: 600;
    text-decoration: none;
}

.consent-row a:hover {
    text-decoration: underline;
}

.online-credit-btn {
    min-width: 190px;
    padding: 13px 32px;
    border-radius: 6px;
    background: #8b3d78;
    color: #fff;
    font-weight: 700;
}

.online-credit-btn:hover {
    background: #743064;
    color: #fff;
}

.online-credit-steps {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    margin-bottom: 38px;
    background: #f6f8fc;
    border-radius: 22px;
}

.online-credit-step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8a96b3;
    font-weight: 700;
    white-space: nowrap;
}

.online-credit-step span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8edf6;
    display: grid;
    place-items: center;
    color: #8090b0;
    font-weight: 800;
}

.online-credit-step.active {
    color: #001735;
}

.online-credit-step.active span {
    background: #9b4081;
    color: #fff;
}

.online-credit-line {
    flex: 1;
    height: 2px;
    background: #dfe6f1;
}

@media (max-width: 991px) {
    .online-credit-steps {
        align-items: flex-start;
        flex-direction: column;
    }

    .online-credit-line {
        width: 100%;
        flex: none;
    }
}

.tag-listing-section {
    min-height: 70vh;
}

.news-listing-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: #9b4081;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tag-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin: 52px 0 24px;
}

.tag-results-header span {
    display: block;
    margin-bottom: 4px;
    color: #9b4081;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-results-header h2 {
    margin: 0;
    color: #001735;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
}

.tag-results-count {
    padding: 9px 15px;
    background: #f6f0f5;
    border-radius: 999px;
    color: #8b3d78;
    font-size: 14px;
    font-weight: 700;
}

.tag-pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.tag-pagination nav {
    width: 100%;
}

@media (max-width: 767px) {
    .tag-results-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

.page-side-menu {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 22px;
}

.page-side-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 23, 53, 0.06);
}

.page-side-card-title {
    margin: 0 0 18px;
    color: #001735;
    font-size: 20px;
    font-weight: 800;
}

.page-side-navigation,
.page-side-subnavigation,
.page-side-steps {
    padding: 0;
    margin: 0;
    list-style: none;
}

.page-side-navigation>li+li {
    border-top: 1px solid #edf1f6;
}

.page-side-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    color: #42506b;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s ease;
}

.page-side-navigation a:hover {
    color: #9b4081;
    background: #faf3f8;
}

.page-side-navigation a.active {
    color: #fff;
    background: #9b4081;
    font-weight: 700;
}

.page-side-navigation-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-side-subnavigation {
    padding: 3px 0 10px 18px;
    border-left: 2px solid #f1e4ed;
}

.page-side-subnavigation a {
    padding: 10px 12px;
    font-size: 14px;
}

.page-side-posts,
.page-side-stories {
    display: grid;
    gap: 16px;
}

.page-side-post {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    color: #001735;
    text-decoration: none;
}

.page-side-post img {
    width: 74px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.page-side-post strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-side-post small {
    display: block;
    margin-top: 4px;
    color: #8995ae;
    font-size: 12px;
}

.page-side-steps {
    display: grid;
    gap: 13px;
}

.page-side-steps li {
    display: flex;
    gap: 10px;
    color: #53617d;
    font-size: 14px;
}

.page-side-steps i {
    color: #ffb700;
}

.page-side-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding: 13px 16px;
    color: #fff;
    background: #9b4081;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

.page-side-action:hover {
    color: #fff;
    background: #80346a;
}

.page-side-story {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    color: #001735;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
}

.page-side-story img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.page-side-post:hover,
.page-side-story:hover {
    color: #9b4081;
}

@media (max-width: 991.98px) {
    .page-side-menu {
        position: static;
        margin-top: 15px;
    }
}

.credit-calculator-float {
    position: fixed;
    top: 54%;
    right: 0;
    z-index: 1040;
    transform: translateY(-50%);
}

.credit-calculator-desktop-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 158px;
    padding: 11px 12px 11px 14px;
    color: #fff;
    background: linear-gradient(135deg, #9b4081, #7c3268);
    border-radius: 15px 0 0 15px;
    box-shadow: 0 12px 30px rgba(0, 23, 53, 0.18);
    text-decoration: none;
    transition:
        min-width 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.credit-calculator-desktop-link:hover {
    min-width: 168px;
    color: #fff;
    background: linear-gradient(135deg, #aa4a8f, #84366f);
    transform: translateX(-3px);
}

.credit-calculator-desktop-link>i:first-child {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 16px;
}

.credit-calculator-desktop-link>i:last-child {
    margin-left: auto;
    font-size: 13px;
}

.credit-calculator-desktop-link span,
.credit-calculator-mobile-link span {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.05;
}

.credit-calculator-desktop-link small,
.credit-calculator-mobile-link small {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.03em;
    opacity: 0.78;
}

.credit-calculator-desktop-link strong,
.credit-calculator-mobile-link strong {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.credit-calculator-mobile-toggle,
.credit-calculator-mobile-link {
    display: none;
}

@media (max-width: 991.98px) {
    .credit-calculator-float {
        top: auto;
        left: 14px;
        right: auto;
        bottom: 20px;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        transform: none;
        z-index: 1035;
    }

    .credit-calculator-desktop-link {
        display: none;
    }

    .credit-calculator-mobile-toggle {
        position: relative;
        z-index: 2;
        display: grid;
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        padding: 0;
        place-items: center;
        color: #fff;
        background: #943d7b;
        border: 0;
        border-radius: 50%;
        box-shadow: 0 10px 26px rgba(0, 23, 53, 0.2);
        cursor: pointer;
    }

    .credit-calculator-mobile-toggle i {
        font-size: 15px;
        transform: rotate(180deg);
        transition: transform .25s ease;
    }

    .credit-calculator-mobile-link {
        display: flex;
        align-items: center;
        gap: 9px;

        width: 0;
        max-width: 0;
        height: 44px;

        margin-left: -8px;
        padding: 0;
        overflow: hidden;

        color: #fff;
        background: linear-gradient(135deg, #9b4081, #783064);
        border-radius: 0 13px 13px 0;

        box-shadow: 0 10px 26px rgba(0, 23, 53, .16);
        text-decoration: none;
        white-space: nowrap;

        opacity: 0;
        transform: translateX(-15px);
        pointer-events: none;

        transition:
            width .28s ease,
            max-width .28s ease,
            padding .28s ease,
            opacity .2s ease,
            transform .28s ease;
    }

    .credit-calculator-float.is-open .credit-calculator-mobile-link {
        width: 172px;
        max-width: 172px;
        padding: 0 13px 0 20px;
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .credit-calculator-float.is-open .credit-calculator-mobile-toggle i {
        transform: rotate(0deg);
    }
}

@media (max-width: 420px) {
    .credit-calculator-float.is-open .credit-calculator-mobile-link {
        width: 158px;
        max-width: 158px;
    }
}