/*
|--------------------------------------------------------------------------
| ToolVerse - EMI Calculator
|--------------------------------------------------------------------------
| Scope:
| - ONLY .tv-emi-page and EMI-specific descendants
| - No CSS leakage to other tools/pages
| - Fully responsive
| - Lightweight transitions only
|--------------------------------------------------------------------------
*/


/* ==========================================================================
   PAGE
   ========================================================================== */

.tv-emi-page {
    width: 100%;

    color:
        var(--tv-color-text);

    background:
        #ffffff;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.tv-emi-hero {
    position: relative;

    overflow: hidden;

    padding:
        44px
        0
        58px;

    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(99, 91, 255, 0.08),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #fbfcff 0%,
            #f7f9fc 100%
        );
}


/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

.tv-emi-breadcrumb {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 26px;

    color:
        #7b8798;

    font-size: 10px;
    font-weight: 650;

    line-height: 1.4;
}

.tv-emi-breadcrumb a {
    color:
        var(--tv-color-primary);

    transition:
        color 160ms ease;
}

.tv-emi-breadcrumb a:hover {
    color:
        var(--tv-color-primary-dark);
}

.tv-emi-breadcrumb span[aria-current="page"] {
    color:
        #596579;
}


/* ==========================================================================
   HERO LAYOUT
   ========================================================================== */

.tv-emi-hero__layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.55fr);

    align-items: center;

    gap: 48px;
}


/* ==========================================================================
   EYEBROW
   ========================================================================== */

.tv-emi-eyebrow,
.tv-emi-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 29px;

    padding:
        0
        10px;

    border:
        1px solid
        rgba(99, 91, 255, 0.13);

    border-radius: 999px;

    background:
        var(--tv-color-primary-soft);

    color:
        var(--tv-color-primary-dark);

    font-size: 9px;
    font-weight: 760;

    line-height: 1;

    letter-spacing: 0.2px;
}


/* ==========================================================================
   HERO CONTENT
   ========================================================================== */

.tv-emi-hero__content h1 {
    max-width: 680px;

    margin:
        14px
        0
        0;

    color:
        var(--tv-color-heading);

    font-size:
        clamp(
            36px,
            4.4vw,
            56px
        );

    font-weight: 830;

    line-height: 1.04;

    letter-spacing: -1.9px;
}

.tv-emi-hero__content > p {
    max-width: 680px;

    margin:
        18px
        0
        0;

    color:
        var(--tv-color-muted);

    font-size: 15px;
    font-weight: 400;

    line-height: 1.75;
}


/* ==========================================================================
   HERO POINTS
   ========================================================================== */

.tv-emi-hero__points {
    display: flex;
    flex-wrap: wrap;

    gap:
        10px
        14px;

    margin-top: 22px;
}

.tv-emi-hero__points span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color:
        #536173;

    font-size: 10px;
    font-weight: 650;

    line-height: 1.3;
}

.tv-emi-hero__points svg {
    width: 17px;
    height: 17px;

    padding: 3px;

    border-radius: 50%;

    background:
        var(--tv-color-accent-soft);

    fill: none;

    stroke:
        var(--tv-color-success);

    stroke-width: 2.2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================================
   HERO NOTE
   ========================================================================== */

.tv-emi-hero__note {
    position: relative;

    padding: 22px;

    border:
        1px solid
        rgba(99, 91, 255, 0.12);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 14px 34px
        rgba(16, 24, 40, 0.055);
}

.tv-emi-hero__note-label {
    display: inline-flex;

    color:
        var(--tv-color-primary);

    font-size: 9px;
    font-weight: 760;

    text-transform: uppercase;

    letter-spacing: 0.55px;
}

.tv-emi-hero__note strong {
    display: block;

    margin-top: 8px;

    color:
        var(--tv-color-heading);

    font-size: 15px;
    font-weight: 780;

    line-height: 1.4;
}

.tv-emi-hero__note p {
    margin:
        7px
        0
        0;

    color:
        var(--tv-color-muted);

    font-size: 10px;

    line-height: 1.65;
}


/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */

.tv-emi-calculator-section {
    padding:
        64px
        0
        74px;

    background:
        #ffffff;
}


/* ==========================================================================
   CALCULATOR SHELL
   ========================================================================== */

.tv-emi-calculator {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(360px, 0.9fr);

    align-items: stretch;

    overflow: hidden;

    border:
        1px solid
        rgba(220, 225, 234, 0.96);

    border-radius: 24px;

    background:
        #ffffff;

    box-shadow:
        0 24px 60px
        rgba(16, 24, 40, 0.075);
}


/* ==========================================================================
   LEFT FORM
   ========================================================================== */

.tv-emi-calculator__form {
    padding:
        34px;
}

.tv-emi-calculator__heading > span {
    color:
        var(--tv-color-primary);

    font-size: 9px;
    font-weight: 760;

    text-transform: uppercase;

    letter-spacing: 0.55px;
}

.tv-emi-calculator__heading h2 {
    margin:
        7px
        0
        0;

    color:
        var(--tv-color-heading);

    font-size: 26px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.8px;
}

.tv-emi-calculator__heading p {
    margin:
        7px
        0
        0;

    color:
        var(--tv-color-muted);

    font-size: 11px;

    line-height: 1.6;
}


/* ==========================================================================
   FIELD
   ========================================================================== */

.tv-emi-field {
    margin-top: 27px;
}

.tv-emi-field__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.tv-emi-field__top label {
    color:
        var(--tv-color-heading);

    font-size: 11px;
    font-weight: 720;

    line-height: 1.3;
}


/* ==========================================================================
   FIELD INPUT
   ========================================================================== */

.tv-emi-field__input-wrap {
    display: inline-flex;
    align-items: center;

    min-width: 145px;
    min-height: 42px;

    padding:
        0
        12px;

    border:
        1px solid
        var(--tv-color-border);

    border-radius: 12px;

    background:
        #fafbfc;

    color:
        #667085;

    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.tv-emi-field__input-wrap:focus-within {
    border-color:
        rgba(99, 91, 255, 0.45);

    background:
        #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(99, 91, 255, 0.07);
}

.tv-emi-field__input-wrap span {
    font-size: 12px;
    font-weight: 700;

    line-height: 1;
}

.tv-emi-field__input-wrap input {
    width: 100%;

    min-width: 0;

    height: 40px;

    padding:
        0
        6px;

    border: 0;

    outline: 0;

    background:
        transparent;

    color:
        var(--tv-color-heading);

    font-size: 13px;
    font-weight: 760;

    text-align: right;
}


/* ==========================================================================
   REMOVE NUMBER ARROWS
   ========================================================================== */

.tv-emi-field__input-wrap input::-webkit-outer-spin-button,
.tv-emi-field__input-wrap input::-webkit-inner-spin-button,
.tv-emi-field__tenure > input::-webkit-outer-spin-button,
.tv-emi-field__tenure > input::-webkit-inner-spin-button {
    margin: 0;

    -webkit-appearance: none;
}

.tv-emi-field__input-wrap input[type="number"],
.tv-emi-field__tenure > input[type="number"] {
    -moz-appearance: textfield;
}


/* ==========================================================================
   RANGE
   ========================================================================== */

.tv-emi-range {
    width: 100%;
    height: 5px;

    margin-top: 17px;

    border-radius: 999px;

    outline: none;

    background:
        linear-gradient(
            to right,
            var(--tv-color-primary) 0%,
            var(--tv-color-primary) 50%,
            #e8ebf1 50%,
            #e8ebf1 100%
        );

    appearance: none;
    -webkit-appearance: none;
}

.tv-emi-range::-webkit-slider-thumb {
    width: 18px;
    height: 18px;

    border:
        4px solid
        #ffffff;

    border-radius: 50%;

    background:
        var(--tv-color-primary);

    box-shadow:
        0 2px 8px
        rgba(99, 91, 255, 0.26);

    cursor: pointer;

    -webkit-appearance: none;
}

.tv-emi-range::-moz-range-thumb {
    width: 12px;
    height: 12px;

    border:
        4px solid
        #ffffff;

    border-radius: 50%;

    background:
        var(--tv-color-primary);

    box-shadow:
        0 2px 8px
        rgba(99, 91, 255, 0.26);

    cursor: pointer;
}


/* ==========================================================================
   RANGE META
   ========================================================================== */

.tv-emi-field__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 7px;

    color:
        #98a2b3;

    font-size: 8px;
    font-weight: 600;
}


/* ==========================================================================
   TENURE
   ========================================================================== */

.tv-emi-field__tenure {
    display: flex;
    align-items: center;

    gap: 7px;
}

.tv-emi-field__tenure > input {
    width: 78px;
    height: 42px;

    padding:
        0
        10px;

    border:
        1px solid
        var(--tv-color-border);

    border-radius: 12px;

    outline: 0;

    background:
        #fafbfc;

    color:
        var(--tv-color-heading);

    font-size: 13px;
    font-weight: 760;

    text-align: center;

    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.tv-emi-field__tenure > input:focus {
    border-color:
        rgba(99, 91, 255, 0.45);

    background:
        #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(99, 91, 255, 0.07);
}


/* ==========================================================================
   TENURE TOGGLE
   ========================================================================== */

.tv-emi-tenure-toggle {
    display: inline-flex;
    align-items: center;

    padding: 3px;

    border:
        1px solid
        var(--tv-color-border);

    border-radius: 12px;

    background:
        #f7f8fa;
}

.tv-emi-tenure-toggle button {
    min-height: 34px;

    padding:
        0
        10px;

    border-radius: 9px;

    background:
        transparent;

    color:
        #667085;

    font-size: 9px;
    font-weight: 700;

    transition:
        color 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease;
}

.tv-emi-tenure-toggle button.is-active {
    background:
        #ffffff;

    color:
        var(--tv-color-primary-dark);

    box-shadow:
        0 2px 7px
        rgba(16, 24, 40, 0.06);
}


/* ==========================================================================
   ERROR
   ========================================================================== */

.tv-emi-error {
    margin-top: 18px;

    padding:
        11px
        13px;

    border:
        1px solid
        rgba(217, 45, 32, 0.14);

    border-radius: 11px;

    background:
        #fff6f5;

    color:
        var(--tv-color-danger);

    font-size: 9px;
    font-weight: 650;

    line-height: 1.5;
}

.tv-emi-error[hidden] {
    display: none;
}


/* ==========================================================================
   RESULTS PANEL
   ========================================================================== */

.tv-emi-results {
    display: flex;
    flex-direction: column;

    min-width: 0;

    padding:
        34px;

    background:
        linear-gradient(
            150deg,
            #111827 0%,
            #171d2d 58%,
            #22204b 100%
        );

    color:
        #ffffff;
}


/* ==========================================================================
   TOP RESULT
   ========================================================================== */

.tv-emi-results__top {
    padding-bottom: 25px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);
}

.tv-emi-results__top > span {
    display: block;

    color:
        #aeb8c7;

    font-size: 10px;
    font-weight: 650;
}

.tv-emi-results__top > strong {
    display: block;

    margin-top: 8px;

    color:
        #ffffff;

    font-size:
        clamp(
            34px,
            4vw,
            48px
        );

    font-weight: 830;

    line-height: 1;

    letter-spacing: -1.8px;
}

.tv-emi-results__top > small {
    display: block;

    margin-top: 8px;

    color:
        #78869a;

    font-size: 8px;
    font-weight: 600;
}


/* ==========================================================================
   RESULT SUMMARY
   ========================================================================== */

.tv-emi-results__summary {
    display: grid;

    gap: 0;

    margin-top: 22px;
}

.tv-emi-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-height: 46px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);
}

.tv-emi-result-row span {
    color:
        #9ca8b8;

    font-size: 9px;
    font-weight: 600;
}

.tv-emi-result-row strong {
    color:
        #ffffff;

    font-size: 11px;
    font-weight: 760;
}

.tv-emi-result-row--total {
    border-bottom: 0;
}

.tv-emi-result-row--total span,
.tv-emi-result-row--total strong {
    color:
        #ffffff;
}


/* ==========================================================================
   BREAKDOWN
   ========================================================================== */

.tv-emi-breakdown {
    margin-top: 25px;

    padding:
        17px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.045);
}

.tv-emi-breakdown__head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color:
        #aab5c5;

    font-size: 8px;
    font-weight: 650;
}


/* ==========================================================================
   BREAKDOWN BAR
   ========================================================================== */

.tv-emi-breakdown__bar {
    display: flex;

    width: 100%;
    height: 8px;

    margin-top: 13px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.08);
}

.tv-emi-breakdown__principal {
    width: 80%;

    background:
        #7c74ff;
}

.tv-emi-breakdown__interest {
    width: 20%;

    background:
        #41c7a6;
}


/* ==========================================================================
   LEGEND
   ========================================================================== */

.tv-emi-breakdown__legend {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-top: 12px;
}

.tv-emi-breakdown__legend > span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color:
        #9aa6b7;

    font-size: 8px;
    font-weight: 600;
}

.tv-emi-breakdown__legend strong {
    color:
        #ffffff;

    font-size: 8px;
    font-weight: 760;
}

.tv-emi-breakdown__dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
}

.tv-emi-breakdown__dot--principal {
    background:
        #7c74ff;
}

.tv-emi-breakdown__dot--interest {
    background:
        #41c7a6;
}


/* ==========================================================================
   RESET BUTTON
   ========================================================================== */

.tv-emi-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    min-height: 38px;

    margin-top: auto;

    padding:
        0
        13px;

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.055);

    color:
        #c1cad7;

    font-size: 9px;
    font-weight: 700;

    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.tv-emi-reset:hover {
    border-color:
        rgba(255, 255, 255, 0.19);

    background:
        rgba(255, 255, 255, 0.09);

    color:
        #ffffff;
}


/* ==========================================================================
   CONTENT SECTION
   ========================================================================== */

.tv-emi-content {
    padding:
        74px
        0;

    background:
        #f8fafc;
}


/* ==========================================================================
   CONTENT LAYOUT
   ========================================================================== */

.tv-emi-content__layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 0.38fr);

    align-items: start;

    gap: 48px;
}


/* ==========================================================================
   ARTICLE
   ========================================================================== */

.tv-emi-article {
    max-width: 780px;
}

.tv-emi-article h2 {
    margin:
        36px
        0
        0;

    color:
        var(--tv-color-heading);

    font-size: 24px;
    font-weight: 800;

    line-height: 1.25;

    letter-spacing: -0.65px;
}

.tv-emi-article
.tv-emi-section-label + h2 {
    margin-top: 11px;
}

.tv-emi-article p {
    margin:
        11px
        0
        0;

    color:
        var(--tv-color-muted);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.8;
}


/* ==========================================================================
   FORMULA
   ========================================================================== */

.tv-emi-formula {
    margin-top: 18px;

    padding:
        18px
        20px;

    border:
        1px solid
        rgba(99, 91, 255, 0.12);

    border-radius: 15px;

    background:
        #ffffff;
}

.tv-emi-formula strong {
    display: block;

    color:
        var(--tv-color-heading);

    font-size: 13px;
    font-weight: 780;

    line-height: 1.6;
}

.tv-emi-formula span {
    display: block;

    margin-top: 6px;

    color:
        var(--tv-color-muted);

    font-size: 9px;

    line-height: 1.6;
}


/* ==========================================================================
   FACTORS
   ========================================================================== */

.tv-emi-factors {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 11px;

    margin-top: 17px;
}

.tv-emi-factors > div {
    padding: 15px;

    border:
        1px solid
        var(--tv-color-border);

    border-radius: 14px;

    background:
        #ffffff;
}

.tv-emi-factors strong {
    color:
        var(--tv-color-heading);

    font-size: 10px;
    font-weight: 760;
}

.tv-emi-factors p {
    margin-top: 5px;

    font-size: 9px;

    line-height: 1.6;
}


/* ==========================================================================
   DISCLAIMER
   ========================================================================== */

.tv-emi-disclaimer {
    margin-top: 24px;

    padding:
        17px
        18px;

    border-left:
        3px solid
        var(--tv-color-primary);

    border-radius:
        0
        13px
        13px
        0;

    background:
        #f2f1ff;
}

.tv-emi-disclaimer strong {
    display: block;

    color:
        var(--tv-color-heading);

    font-size: 10px;
    font-weight: 770;
}

.tv-emi-disclaimer p {
    margin-top: 5px;

    font-size: 9px;
}


/* ==========================================================================
   RELATED TOOLS
   ========================================================================== */

.tv-emi-related {
    position: sticky;

    top:
        calc(
            var(--tv-header-height)
            + 24px
        );
}

.tv-emi-related h2 {
    margin:
        11px
        0
        0;

    color:
        var(--tv-color-heading);

    font-size: 20px;
    font-weight: 790;

    line-height: 1.3;

    letter-spacing: -0.45px;
}

.tv-emi-related__list {
    display: grid;

    gap: 9px;

    margin-top: 17px;
}

.tv-emi-related__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    min-height: 68px;

    padding:
        12px
        13px;

    border:
        1px solid
        var(--tv-color-border);

    border-radius: 14px;

    background:
        #ffffff;

    transition:
        border-color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.tv-emi-related__list a:hover {
    border-color:
        rgba(99, 91, 255, 0.18);

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 18px
        rgba(16, 24, 40, 0.055);
}

.tv-emi-related__list span {
    min-width: 0;

    color:
        var(--tv-color-heading);

    font-size: 10px;
    font-weight: 740;
}

.tv-emi-related__list small {
    display: block;

    margin-top: 3px;

    color:
        var(--tv-color-muted);

    font-size: 8px;
    font-weight: 400;
}

.tv-emi-related__list b {
    color:
        var(--tv-color-primary);

    font-size: 14px;
}


/* ==========================================================================
   FAQ
   ========================================================================== */

.tv-emi-faq {
    padding:
        74px
        0
        82px;

    background:
        #ffffff;
}

.tv-emi-faq__head {
    max-width: 680px;

    margin-bottom: 25px;
}

.tv-emi-faq__head h2 {
    margin:
        11px
        0
        0;

    color:
        var(--tv-color-heading);

    font-size:
        clamp(
            27px,
            3vw,
            38px
        );

    font-weight: 810;

    line-height: 1.15;

    letter-spacing: -1.1px;
}

.tv-emi-faq__head p {
    margin:
        10px
        0
        0;

    color:
        var(--tv-color-muted);

    font-size: 11px;

    line-height: 1.65;
}


/* ==========================================================================
   FAQ LIST
   ========================================================================== */

.tv-emi-faq__list {
    display: grid;

    gap: 9px;

    max-width: 900px;
}

.tv-emi-faq__item {
    overflow: hidden;

    border:
        1px solid
        var(--tv-color-border);

    border-radius: 15px;

    background:
        #ffffff;
}

.tv-emi-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    min-height: 62px;

    padding:
        14px
        16px;

    color:
        var(--tv-color-heading);

    font-size: 11px;
    font-weight: 740;

    line-height: 1.45;

    cursor: pointer;

    list-style: none;
}

.tv-emi-faq__item summary::-webkit-details-marker {
    display: none;
}


/* ==========================================================================
   FAQ ICON
   ========================================================================== */

.tv-emi-faq__item summary i {
    position: relative;

    width: 27px;
    height: 27px;

    flex:
        0
        0
        27px;

    border:
        1px solid
        var(--tv-color-border);

    border-radius: 9px;

    background:
        #fafbfc;
}

.tv-emi-faq__item summary i::before,
.tv-emi-faq__item summary i::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 10px;
    height: 2px;

    border-radius: 999px;

    background:
        #667085;

    transform:
        translate(
            -50%,
            -50%
        );

    transition:
        transform 160ms ease;
}

.tv-emi-faq__item summary i::after {
    transform:
        translate(
            -50%,
            -50%
        )
        rotate(90deg);
}

.tv-emi-faq__item[open]
summary i::after {
    transform:
        translate(
            -50%,
            -50%
        );
}


/* ==========================================================================
   FAQ ANSWER
   ========================================================================== */

.tv-emi-faq__item > div {
    padding:
        0
        16px
        15px;
}

.tv-emi-faq__item > div p {
    max-width: 800px;

    margin: 0;

    color:
        var(--tv-color-muted);

    font-size: 10px;

    line-height: 1.7;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1024px) {

    .tv-emi-hero__layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .tv-emi-hero__note {
        max-width: 620px;
    }

    .tv-emi-calculator {
        grid-template-columns: 1fr;
    }

    .tv-emi-results {
        min-height: auto;
    }

    .tv-emi-content__layout {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .tv-emi-related {
        position: static;

        max-width: 620px;
    }
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 700px) {

    .tv-emi-hero {
        padding:
            34px
            0
            45px;
    }

    .tv-emi-breadcrumb {
        margin-bottom: 20px;
    }

    .tv-emi-hero__content h1 {
        font-size:
            clamp(
                32px,
                10vw,
                42px
            );

        letter-spacing: -1.35px;
    }

    .tv-emi-hero__content > p {
        margin-top: 14px;

        font-size: 13px;

        line-height: 1.68;
    }

    .tv-emi-calculator-section {
        padding:
            48px
            0
            56px;
    }

    .tv-emi-calculator {
        border-radius: 19px;
    }

    .tv-emi-calculator__form,
    .tv-emi-results {
        padding: 22px;
    }

    .tv-emi-calculator__heading h2 {
        font-size: 22px;
    }

    .tv-emi-field {
        margin-top: 23px;
    }

    .tv-emi-field__top {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;
    }

    .tv-emi-field__input-wrap {
        width: 100%;
    }

    .tv-emi-field__tenure {
        width: 100%;
    }

    .tv-emi-field__tenure > input {
        flex: 1;
    }

    .tv-emi-tenure-toggle {
        flex:
            0
            0
            auto;
    }

    .tv-emi-results__top > strong {
        font-size:
            clamp(
                32px,
                11vw,
                42px
            );
    }

    .tv-emi-content {
        padding:
            56px
            0;
    }

    .tv-emi-article h2 {
        margin-top: 29px;

        font-size: 21px;
    }

    .tv-emi-article p {
        font-size: 11px;
    }

    .tv-emi-factors {
        grid-template-columns: 1fr;
    }

    .tv-emi-faq {
        padding:
            56px
            0
            62px;
    }
}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 420px) {

    .tv-emi-calculator__form,
    .tv-emi-results {
        padding: 18px;
    }

    .tv-emi-tenure-toggle button {
        padding:
            0
            8px;

        font-size: 8px;
    }

    .tv-emi-breakdown__head,
    .tv-emi-breakdown__legend {
        align-items: flex-start;

        flex-direction: column;
    }

    .tv-emi-result-row {
        gap: 12px;
    }

    .tv-emi-formula {
        padding: 15px;
    }

    .tv-emi-faq__item summary {
        gap: 13px;

        padding:
            13px
            14px;
    }

    .tv-emi-faq__item > div {
        padding:
            0
            14px
            14px;
    }
}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .tv-emi-breadcrumb a,
    .tv-emi-field__input-wrap,
    .tv-emi-field__tenure > input,
    .tv-emi-tenure-toggle button,
    .tv-emi-reset,
    .tv-emi-related__list a,
    .tv-emi-faq__item summary i::before,
    .tv-emi-faq__item summary i::after {
        transition: none;
    }

    .tv-emi-related__list a:hover {
        transform: none;
    }
}