/* Premios y electrodomésticos. */

.prizes {
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #aa168f 0%,
        #93208f 28%,
        #762990 100%
    );
}

.prizes__inner {
    position: relative;
    width: min(100%, var(--phase2-page-width));
    min-height: 23rem;
    margin-inline: auto;
    padding: 1.5rem 0 2.25rem;
}

.prizes__title {
    position: absolute;
    top: 1.6rem;
    right: var(--phase2-gutter);
    z-index: 2;
    display: grid;
    justify-items: end;
    width: min(55%, 12rem);
    font-family: "Avenir Next Condensed Custom", sans-serif;
    font-size: clamp(1.35rem, 6.5vw, 1.9rem);
    font-style: italic;
    font-weight: 800;
    line-height: 0.86;
    text-align: right;
}

.prizes__title span,
.prizes__title strong {
    display: block;
}

.prizes__title strong {
    font-size: 1.08em;
    font-weight: 900;
    text-transform: uppercase;
}

.prizes__composition {
    position: absolute;
    right: -0.2rem;
    bottom: 1.5rem;
    left: -0.2rem;
    width: calc(100% + 0.4rem);
    max-width: none;
    height: auto;
    filter: drop-shadow(0 0.55rem 0.45rem rgb(48 8 64 / 18%));
}

@media (max-width: 22rem) {
    .prizes__inner {
        min-height: 21rem;
    }

    .prizes__title {
        top: 1.3rem;
        width: 56%;
    }
}

@media (min-width: 64rem) {
    .prizes {
        position: relative;
        z-index: 2;
        isolation: isolate;
        overflow: visible;
        background: transparent;
    }

    .prizes::before {
        content: "";
        position: absolute;
        top: -15rem;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 0;
        background: linear-gradient(
            180deg,
            #aa168f 0%,
            #93208f 32%,
            #762990 100%
        );
        clip-path: polygon(
            0 5.75rem,
            8% 7.3rem,
            16% 8.7rem,
            24% 9.85rem,
            32% 10.7rem,
            40% 11.2rem,
            48% 11.35rem,
            56% 11.15rem,
            64% 10.55rem,
            72% 9.5rem,
            80% 7.95rem,
            88% 5.7rem,
            94% 3.1rem,
            100% 0,
            100% 100%,
            0 100%
        );
        pointer-events: none;
    }

    .prizes__inner {
        z-index: 1;
        min-height: 46rem;
        padding: 3rem 0 4rem;
    }

    .prizes__title {
        top: 5.5rem;
        right: 2.5rem;
        justify-items: end;
        width: min(48%, 38rem);
        font-size: clamp(2.3rem, 2.85vw, 3.15rem);
        line-height: 0.88;
    }

    .prizes__title span {
        width: 100%;
        font-family: "Avenir Next Condensed Custom", sans-serif;
        font-size: 0.76em;
        font-style: italic;
        font-weight: 800;
        letter-spacing: -0.035em;
        text-align: right;
    }

    .prizes__title span:first-child {
        margin-bottom: 0.18em;
    }

    .prizes__title strong {
        width: 100%;
        font-size: 1.24em;
        line-height: 0.82;
        text-align: right;
    }

    .prizes__composition {
        right: auto;
        bottom: 1.5rem;
        left: 50%;
        width: 82%;
        transform: translateX(-50%);
    }
}
