.fifa-limited-edition-block {
    width: 100%;
    margin-bottom: 2rem;
    padding-inline: 85px;

    @media (max-width: 900px) {
        padding-inline: 50px;
    }

    @media (max-width: 768px) {
        padding-inline: 20px;
    }
}

.fifa-limited-edition__content {
    display: flex;
    justify-content: space-between;
    /* Centra los elementos por defecto (cuando hacen wrap) */
    align-items: center;
    padding-bottom: 36px;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;

    @media (max-width: 1454px) {
        justify-content: center;
    }
}

.fifa-limited-edition__title {
    color: #0b1c4b;
    margin: 0;

    @media (max-width: 768px) {
        font-size: clamp(56px, 13vw, 84px) !important;
    }
}

.fifa-limited-edition__image-wrapper {
    width: 100%;
    background-color: #900406;
    /* Fallback red background behind image, if the image isn't full width/height */
}

.fifa-limited-edition__image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .fifa-limited-edition__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}