.ofertas-shortcode {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 18px;
    height: 80vh;
}

.ofertas-shortcode--hero-small {
    height: 60vh;
}

.ofertas-shortcode--hero-medium {
    height: 70vh;
}

.ofertas-shortcode--hero-large {
    height: 80vh;
}

.ofertas-shortcode__item {
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #f6f6f6;
}

.ofertas-shortcode__item a,
.ofertas-shortcode__item span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.ofertas-shortcode__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ofertas-shortcode__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px 14px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    color: #fff;
}

.ofertas-shortcode__content {
    --ofertas-overlay-color: #000000;
    --ofertas-heading-size: 36px;
    --ofertas-copy-ratio: 0.8;
    --ofertas-copy-size: calc(
        var(--ofertas-heading-size) * var(--ofertas-copy-ratio)
    );
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    color: #fff;
}

.ofertas-shortcode__content--overlay-gradient {
    background: linear-gradient(
        to top,
        color-mix(in srgb, var(--ofertas-overlay-color) 72%, transparent),
        color-mix(in srgb, var(--ofertas-overlay-color) 8%, transparent) 45%,
        transparent
    );
}

.ofertas-shortcode__content--overlay-flat {
    background: color-mix(
        in srgb,
        var(--ofertas-overlay-color) 58%,
        transparent
    );
}

.ofertas-shortcode__content--size-l {
    --ofertas-heading-size: 36px;
    --ofertas-copy-ratio: 0.8;
}

.ofertas-shortcode__content--size-m {
    --ofertas-heading-size: 30px;
    --ofertas-copy-ratio: 0.8;
}

.ofertas-shortcode__content--size-s {
    --ofertas-heading-size: 24px;
    --ofertas-copy-ratio: 0.8;
}

.ofertas-shortcode__content--size-xl {
    --ofertas-heading-size: 48px;
    --ofertas-copy-ratio: 0.8;
}

.ofertas-shortcode__content--no-overlay {
    background: none;
}

.ofertas-shortcode__content--tone-light {
    color: #fff;
}

.ofertas-shortcode__content--tone-dark {
    color: #111;
}

.ofertas-shortcode__content--align-left {
    align-items: flex-start;
    text-align: left;
}

.ofertas-shortcode__content--align-center {
    align-items: center;
    text-align: center;
}

.ofertas-shortcode__content--valign-top {
    justify-content: flex-start;
}

.ofertas-shortcode__content--valign-middle {
    justify-content: center;
}

.ofertas-shortcode__content--valign-bottom {
    justify-content: flex-end;
}

.ofertas-shortcode__heading {
    font-size: clamp(20px, 2vw, var(--ofertas-heading-size));
    font-weight: 700;
    line-height: 1.05;
}

.ofertas-shortcode__description {
    max-width: 34ch;
    font-size: var(--ofertas-copy-size);
    line-height: 1.35;
    opacity: 0.95;
}

.ofertas-shortcode__cta {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: var(--ofertas-copy-size);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: color-mix(in srgb, currentColor 12%, transparent);
}

.ofertas-shortcode__cta--primary {
    background: currentColor;
    color: #fff;
    border-color: currentColor;
}

.ofertas-shortcode__content--tone-dark .ofertas-shortcode__cta--primary {
    color: #fff;
}

.ofertas-shortcode__cta--secondary {
    background: color-mix(in srgb, currentColor 16%, transparent);
    border-color: currentColor;
    color: inherit;
}

.ofertas-shortcode__cta--subtle {
    background: transparent;
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.ofertas-shortcode--layout-1 {
    grid-template-areas:
        "oferta_1 oferta_1 oferta_2 oferta_3"
        "oferta_1 oferta_1 oferta_2 oferta_3"
        "oferta_1 oferta_1 oferta_4 oferta_5"
        "oferta_1 oferta_1 oferta_4 oferta_5";
}

.ofertas-shortcode--layout-2 {
    grid-template-areas:
        "oferta_1 oferta_1 oferta_2 oferta_2"
        "oferta_1 oferta_1 oferta_2 oferta_2"
        "oferta_1 oferta_1 oferta_3 oferta_4"
        "oferta_1 oferta_1 oferta_3 oferta_4";
}

.ofertas-shortcode--layout-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr 180px;
    grid-template-areas:
        "oferta_1 oferta_1 oferta_2"
        "oferta_3 oferta_4 oferta_5";
}

.ofertas-shortcode--layout-4 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: 1fr;
    grid-template-areas: "oferta_1 oferta_1 oferta_1 oferta_2 oferta_2";
}

.ofertas-shortcode--layout-5 {
    grid-template-areas:
        "oferta_1 oferta_1 oferta_3 oferta_2"
        "oferta_1 oferta_1 oferta_3 oferta_2"
        "oferta_1 oferta_1 oferta_4 oferta_2"
        "oferta_1 oferta_1 oferta_4 oferta_2";
}

.ofertas-shortcode__item--oferta_1 {
    grid-area: oferta_1;
}
.ofertas-shortcode__item--oferta_2 {
    grid-area: oferta_2;
}
.ofertas-shortcode__item--oferta_3 {
    grid-area: oferta_3;
}
.ofertas-shortcode__item--oferta_4 {
    grid-area: oferta_4;
}
.ofertas-shortcode__item--oferta_5 {
    grid-area: oferta_5;
}

@media (max-width: 767px) {
    .ofertas-shortcode {
        grid-template-columns: 1fr !important;
        grid-template-areas: none !important;
        height: auto !important;
    }

    .ofertas-shortcode__item {
        grid-area: auto !important;
        min-height: 220px;
    }
}
