/* =========================================================
   HERO · MANTENIMIENTO WEB
========================================================= */

:root {
    --mant-orange: #f28a1a;
    --mant-green: #2f9b57;
    --mant-dark: #101214;
    --mant-text: #2b2f33;
    --mant-muted: #6c7277;
    --mant-white: #ffffff;
}

.mant-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.mant-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        url("../../secciones/mantenimiento-web.webp")
        center center / cover no-repeat;
}


/* =========================================================
   OVERLAY
========================================================= */

.mant-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 12, 16, .98) 0%,
            rgba(8, 12, 16, .92) 32%,
            rgba(8, 12, 16, .68) 52%,
            rgba(8, 12, 16, .18) 72%,
            rgba(8, 12, 16, .02) 100%
        );
}


/* sombra inferior para integrar beneficios */

.mant-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 170px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(8, 12, 16, .65)
        );

    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.mant-hero__content {
    position: relative;
    z-index: 3;

    padding-top: 120px;
    padding-bottom: 175px;
}

.mant-hero__copy {
    max-width: 660px;
}

.mant-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: var(--mant-orange);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.mant-hero__eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--mant-orange);

    border-radius: 20px;
}

.mant-hero h1 {
    max-width: 650px;

    margin: 0 0 24px;

    color: #fff;

    font-size: clamp(46px, 5.3vw, 72px);
    font-weight: 700;
    line-height: 1.02;

    letter-spacing: -.045em;
}

.mant-hero h1 span {
    color: var(--mant-orange);
}

.mant-hero__copy > p {
    max-width: 610px;

    margin: 0 0 32px;

    color: rgba(255,255,255,.72);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.mant-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mant-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 23px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.mant-btn--primary {
    color: #fff;
    background: var(--mant-orange);
}

.mant-btn--primary:hover {
    transform: translateY(-2px);
    background: #dc7711;
}

.mant-btn--outline {
    border: 1px solid rgba(255,255,255,.4);

    color: #fff;

    background: rgba(0,0,0,.15);

    backdrop-filter: blur(7px);
}

.mant-btn--outline:hover {
    transform: translateY(-2px);

    border-color: rgba(255,255,255,.7);

    background: rgba(255,255,255,.08);
}


/* =========================================================
   BENEFIT BAR
========================================================= */

.mant-hero__benefits {
    position: absolute;

    z-index: 5;

    left: 0;
    right: 0;
    bottom: 0;

    border-top: 1px solid rgba(255,255,255,.08);

    background: rgba(8, 15, 21, .92);

    backdrop-filter: blur(15px);
}

.mant-hero__benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.mant-hero__benefits article {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 16px;

    align-items: center;

    min-height: 120px;

    padding: 24px 28px;

    border-right: 1px solid rgba(255,255,255,.08);
}

.mant-hero__benefits article:first-child {
    border-left: 1px solid rgba(255,255,255,.08);
}

.mant-benefit__icon {
    display: grid;

    width: 44px;
    height: 44px;

    place-items: center;
}

.mant-benefit__icon svg {
    width: 39px;
    height: 39px;

    fill: none;

    stroke: var(--mant-orange);

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.mant-hero__benefits strong {
    display: block;

    margin-bottom: 5px;

    color: #fff;

    font-size: 13px;
}

.mant-hero__benefits p {
    margin: 0;

    color: rgba(255,255,255,.52);

    font-size: 10px;
    line-height: 1.55;
}


/* =========================================================
   RESPONSIVE · HERO MANTENIMIENTO
========================================================= */

@media (max-width: 950px) {

    .mant-hero {
        min-height: auto;
        display: block;

        background-position: 58% center;
    }

    .mant-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8,12,16,.97) 0%,
                rgba(8,12,16,.90) 45%,
                rgba(8,12,16,.58) 100%
            );
    }

    .mant-hero::after {
        height: 120px;
    }

    .mant-hero__content {
         padding-top: 105px;
        padding-bottom: 85px;
    }

    .mant-hero__copy {
        max-width: 620px;
    }

    .mant-hero h1 {
        max-width: 600px;
        font-size: clamp(42px, 7vw, 60px);
    }

    .mant-hero__copy > p {
        max-width: 560px;
    }

    .mant-hero__benefits {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;

        border-top: 1px solid rgba(255,255,255,.08);
        background: rgba(8,15,21,.96);
        backdrop-filter: blur(12px);
    }

    .mant-hero__benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mant-hero__benefits article {
        min-height: 105px;
        padding: 22px 24px;
    }

    .mant-hero__benefits article:nth-child(2n) {
        border-right: 0;
    }

    .mant-hero__benefits article:nth-child(n+3) {
        border-top: 1px solid rgba(255,255,255,.08);
    }

}


@media (max-width: 700px) {

    .mant-container {
        width: min(100% - 28px, 1180px);
    }

    .mant-hero {
        background-position: 63% center;
    }

    .mant-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8,12,16,.94) 0%,
                rgba(8,12,16,.90) 58%,
                rgba(8,12,16,.82) 100%
            );
    }

    .mant-hero::after {
        display: none;
    }

    .mant-hero__content {
        padding-top: 90px;
        padding-bottom: 65px;
    }

    .mant-hero__copy {
        max-width: 100%;
    }

    .mant-hero__eyebrow {
        margin-bottom: 16px;
        font-size: 10px;
        letter-spacing: .10em;
    }

    .mant-hero h1 {
        max-width: 100%;
        margin-bottom: 20px;

        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.03;
        letter-spacing: -.04em;
    }

    .mant-hero__copy > p {
        max-width: 100%;
        margin-bottom: 26px;

        color: rgba(255,255,255,.78);

        font-size: 14px;
        line-height: 1.7;
    }

    .mant-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mant-btn {
        width: 100%;
        min-height: 50px;
    }

    .mant-hero__benefits-grid {
        grid-template-columns: 1fr;
    }

    .mant-hero__benefits article {
        grid-template-columns: 42px 1fr;

        min-height: auto;

        padding: 18px 20px;

        border-right: 0;
        border-left: 0 !important;
        border-top: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .mant-hero__benefits article:last-child {
        border-bottom: 0;
    }

    .mant-benefit__icon {
        width: 38px;
        height: 38px;
    }

    .mant-benefit__icon svg {
        width: 34px;
        height: 34px;
    }

    .mant-hero__benefits strong {
        font-size: 12px;
    }

    .mant-hero__benefits p {
        font-size: 10px;
        line-height: 1.5;
    }

}


@media (max-width: 480px) {

    .mant-hero {
        background-position: 66% center;
    }

    .mant-hero__content {
        padding-top: 62px;
        padding-bottom: 55px;
    }

    .mant-hero h1 {
        font-size: clamp(35px, 11.5vw, 46px);
    }

    .mant-hero__copy > p {
        font-size: 13.5px;
    }

}
/* =========================================================
   BASE BLOQUES
========================================================= */

.mant-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--mant-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.mant-tag::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 20px;
    background: var(--mant-orange);
}

.mant-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.mant-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.mant-heading h2,
.mant-importance h2,
.mant-risks h2,
.mant-cpc h2,
.mant-frequency h2,
.mant-responsibility h2,
.mant-not h2 {
    margin: 0 0 18px;
    color: var(--mant-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.mant-heading h2 span,
.mant-importance h2 span,
.mant-risks h2 span,
.mant-frequency h2 span,
.mant-responsibility h2 span,
.mant-not h2 span {
    color: var(--mant-orange);
}

.mant-heading p,
.mant-importance p,
.mant-risks p,
.mant-frequency p,
.mant-responsibility p,
.mant-not p {
    color: var(--mant-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   IMPORTANCE
========================================================= */

.mant-importance {
    padding: 105px 0;
    background: #fff;
}

.mant-importance__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.mant-importance__grid p:first-child {
    margin-top: 0;
}

.mant-importance__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 55px;
}

.mant-importance__cards article {
    padding: 25px 20px;
    border-top: 2px solid #e7e9ea;
    transition: .25s ease;
}

.mant-importance__cards article:hover {
    border-top-color: var(--mant-orange);
}

.mant-importance__cards article > span {
    display: block;
    margin-bottom: 17px;
    color: #bbb;
    font-size: 10px;
    font-weight: 800;
}

.mant-importance__cards strong {
    display: block;
    margin-bottom: 8px;
    color: var(--mant-dark);
    font-size: 14px;
}

.mant-importance__cards p {
    margin: 0;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   CHECK
========================================================= */

.mant-check {
    padding: 105px 0;
    background: #f7f8f8;
}

.mant-check__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mant-check article {
    padding: 28px 24px;
    border: 1px solid #e7e9ea;
    border-radius: 17px;
    background: #fff;
    transition: .25s ease;
}

.mant-check article:hover {
    transform: translateY(-4px);
    border-color: rgba(242,138,26,.3);
}

.mant-check__icon {
    display: grid;
    width: 47px;
    height: 47px;
    margin-bottom: 19px;
    place-items: center;
    border-radius: 12px;
    color: var(--mant-orange);
    background: rgba(242,138,26,.09);
    font-size: 17px;
    font-weight: 800;
}

.mant-check h3 {
    margin: 0 0 9px;
    color: var(--mant-dark);
    font-size: 16px;
}

.mant-check p {
    margin: 0;
    color: var(--mant-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   RISKS
========================================================= */

.mant-risks {
    padding: 105px 0;
    background: #fff;
}

.mant-risks__grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 85px;
    align-items: center;
}

.mant-risks__list {
    display: grid;
    gap: 9px;
}

.mant-risks__list div {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 10px;
    align-items: center;
    padding: 15px 17px;
    border: 1px solid #e7e9ea;
    border-radius: 10px;
    background: #f7f8f8;
}

.mant-risks__list span {
    color: var(--mant-orange);
    font-size: 10px;
    font-weight: 800;
}

.mant-risks__list strong {
    color: var(--mant-text);
    font-size: 12px;
}


/* =========================================================
   PREVENTIVE
========================================================= */

.mant-preventive {
    padding: 105px 0;
    background: #f7f8f8;
}

.mant-preventive__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 900px;
    margin: auto;
}

.mant-preventive article {
    padding: 35px;
    border: 1px solid #e7e9ea;
    border-radius: 18px;
    background: #fff;
}

.mant-preventive__featured {
    border-color: rgba(242,138,26,.28) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,.05);
}

.mant-preventive__label {
    color: var(--mant-orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .11em;
}

.mant-preventive h3 {
    margin: 18px 0 10px;
    color: var(--mant-dark);
    font-size: 21px;
}

.mant-preventive p {
    color: var(--mant-muted);
    font-size: 12px;
    line-height: 1.75;
}

.mant-preventive ul {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid #e7e9ea;
    list-style: none;
}

.mant-preventive li {
    color: var(--mant-text);
    font-size: 11px;
}

.mant-preventive li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--mant-green);
}


/* =========================================================
   INCLUDES
========================================================= */

.mant-includes {
    padding: 105px 0;
    background: #fff;
}

.mant-includes__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mant-includes__grid div {
    display: flex;
    gap: 11px;
    align-items: center;
    padding: 17px 18px;
    border: 1px solid #e7e9ea;
    border-radius: 11px;
    background: #f7f8f8;
}

.mant-includes__grid span {
    color: var(--mant-green);
    font-weight: 800;
}

.mant-includes__grid strong {
    color: var(--mant-text);
    font-size: 12px;
}

.mant-includes__note {
    margin: 25px 0 0;
    color: var(--mant-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   NOT
========================================================= */

.mant-not {
    padding: 90px 0;
    background: #f7f8f8;
}

.mant-not__card {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
    padding: 42px;
    border: 1px solid rgba(242,138,26,.25);
    border-radius: 20px;
    background: #fffaf5;
}

.mant-not__items {
    display: grid;
    gap: 10px;
}

.mant-not__items div {
    padding: 14px 16px;
    border-radius: 9px;
    color: var(--mant-text);
    background: #fff;
    font-size: 11px;
    font-weight: 700;
}

.mant-not__items span {
    margin-right: 8px;
    color: var(--mant-orange);
}


/* =========================================================
   FREQUENCY
========================================================= */

.mant-frequency {
    padding: 105px 0;
    background: #fff;
}

.mant-frequency__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.mant-frequency__levels {
    display: grid;
    gap: 12px;
}

.mant-frequency__levels article {
    padding: 21px;
    border: 1px solid #e7e9ea;
    border-radius: 13px;
    background: #f7f8f8;
}

.mant-frequency__levels span {
    display: block;
    margin-bottom: 6px;
    color: var(--mant-orange);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
}

.mant-frequency__levels strong {
    display: block;
    margin-bottom: 7px;
    color: var(--mant-dark);
    font-size: 14px;
}

.mant-frequency__levels p {
    margin: 0;
    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIBILITY
========================================================= */

.mant-responsibility {
    padding: 90px 0;
    background: #f7f8f8;
}

.mant-responsibility__inner {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 30px;
    max-width: 950px;
    margin: auto;
    padding: 42px;
    border: 1px solid rgba(242,138,26,.22);
    border-radius: 20px;
    background: #fff;
}

.mant-responsibility__icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: var(--mant-orange);
    font-size: 22px;
    font-weight: 800;
}

.mant-responsibility h2 {
    font-size: clamp(27px, 4vw, 39px);
}


/* =========================================================
   PROCESS
========================================================= */

.mant-process {
    padding: 105px 0;
    background: #fff;
}

.mant-process__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.mant-process article {
    padding: 25px;
    border-left: 1px solid #e7e9ea;
}

.mant-process article:first-child {
    border-left: 0;
}

.mant-process article > span {
    display: block;
    margin-bottom: 20px;
    color: var(--mant-orange);
    font-size: 10px;
    font-weight: 800;
}

.mant-process h3 {
    margin: 0 0 8px;
    color: var(--mant-dark);
    font-size: 15px;
}

.mant-process p {
    margin: 0;
    color: var(--mant-muted);
    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.mant-cta {
    padding: 25px 0 100px;
    background: #fff;
}

.mant-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 50px;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(47,155,87,.15),
            transparent 30%
        ),
        #101214;
}

.mant-tag--light {
    color: var(--mant-orange);
}

.mant-cta h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.mant-cta p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.8;
}

.mant-btn--white {
    color: #111;
    background: #fff;
}

.mant-btn--white:hover {
    transform: translateY(-2px);
    color: #fff;
    background: var(--mant-orange);
}


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

@media (max-width: 950px) {

    .mant-importance__grid,
    .mant-risks__grid,
    .mant-frequency__grid {
        grid-template-columns: 1fr;
    }

    .mant-importance__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .mant-check__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mant-process__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mant-process article {
        border: 0;
        border-top: 1px solid #e7e9ea;
    }

}


@media (max-width: 700px) {

    .mant-importance,
    .mant-check,
    .mant-risks,
    .mant-preventive,
    .mant-includes,
    .mant-frequency,
    .mant-process {
        padding: 75px 0;
    }

    .mant-importance__cards,
    .mant-check__grid,
    .mant-preventive__grid,
    .mant-includes__grid,
    .mant-process__grid {
        grid-template-columns: 1fr;
    }

    .mant-not__card,
    .mant-responsibility__inner {
        grid-template-columns: 1fr;
        padding: 27px 22px;
    }

    .mant-cta__inner {
        grid-template-columns: 1fr;
        padding: 35px 25px;
    }

}/* =========================================================
   DIAGNÓSTICO
========================================================= */

.mant-diagnostic {
    overflow: hidden;
    padding: 110px 0;
    background: #f7f8f8;
}

.mant-diagnostic__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 85px;
    align-items: center;
}


/* =========================================================
   IMAGEN
========================================================= */

.mant-diagnostic__visual {
    display: flex;
    justify-content: center;
}

.mant-diagnostic__image-wrap {
    position: relative;
    width: min(100%, 470px);
}

.mant-diagnostic__image-wrap::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242,138,26,.16),
            rgba(242,138,26,.05) 45%,
            transparent 70%
        );

    transform: translate(-50%, -50%);
}

.mant-diagnostic__image-wrap img {
    position: relative;
    z-index: 2;

    display: block;
    width: 100%;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 28px 28px rgba(0,0,0,.13));
}


/* =========================================================
   BADGES FLOTANTES
========================================================= */

.mant-diagnostic__badge {
    position: absolute;
    z-index: 4;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 13px;

    border: 1px solid rgba(0,0,0,.07);
    border-radius: 11px;

    color: #34383c;
    background: rgba(255,255,255,.94);

    box-shadow: 0 12px 30px rgba(0,0,0,.08);

    font-size: 10px;
    font-weight: 700;

    backdrop-filter: blur(8px);
}

.mant-diagnostic__badge span {
    color: var(--mant-orange);
}

.mant-diagnostic__badge--one {
    top: 18%;
    left: -15px;
}

.mant-diagnostic__badge--two {
    top: 49%;
    right: -30px;
}

.mant-diagnostic__badge--three {
    bottom: 13%;
    left: 10px;
}


/* =========================================================
   CONTENT
========================================================= */

.mant-diagnostic__content h2 {
    max-width: 610px;

    margin: 0 0 18px;

    color: var(--mant-dark);

    font-size: clamp(31px, 4vw, 47px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.mant-diagnostic__content h2 span {
    color: var(--mant-orange);
}

.mant-diagnostic__content > p {
    max-width: 680px;

    margin: 0 0 30px;

    color: var(--mant-muted);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   LIST
========================================================= */

.mant-diagnostic__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mant-diagnostic__list > div {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 11px;

    padding: 17px;

    border: 1px solid #e7e9ea;
    border-radius: 12px;

    background: #fff;

    transition: .25s ease;
}

.mant-diagnostic__list > div:hover {
    transform: translateY(-3px);

    border-color: rgba(242,138,26,.25);

    box-shadow: 0 12px 30px rgba(0,0,0,.04);
}

.mant-diagnostic__list > div > span {
    color: var(--mant-orange);

    font-size: 10px;
    font-weight: 800;
}

.mant-diagnostic__list strong {
    display: block;

    margin-bottom: 5px;

    color: var(--mant-dark);

    font-size: 12px;
}

.mant-diagnostic__list p {
    margin: 0;

    color: var(--mant-muted);

    font-size: 10px;
    line-height: 1.65;
}


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

@media (max-width: 950px) {

    .mant-diagnostic__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .mant-diagnostic__visual {
        order: 2;
    }

    .mant-diagnostic__content {
        order: 1;
    }

    .mant-diagnostic__image-wrap {
        width: min(100%, 420px);
    }

}


@media (max-width: 650px) {

    .mant-diagnostic {
        padding: 75px 0;
    }

    .mant-diagnostic__list {
        grid-template-columns: 1fr;
    }

    .mant-diagnostic__image-wrap {
        width: min(88%, 360px);
    }

    .mant-diagnostic__badge {
        font-size: 9px;
    }

    .mant-diagnostic__badge--one {
        left: -12px;
    }

    .mant-diagnostic__badge--two {
        right: -12px;
    }

    .mant-diagnostic__badge--three {
        left: 0;
    }

}