.vdo-banner-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 20px;
    box-sizing: border-box;
}

.vdo-banner-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 9px;
    background-color: #161616;
    background-image: var(--vdo-bg-image);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.vdo-banner-card-main {
    grid-row: 1 / 3;
}

.vdo-banner-card-small {
    min-height: 280px;
}

.vdo-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.05) 100%);
}

.vdo-banner-card-small .vdo-banner-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.42) 60%, rgba(0,0,0,.05) 100%);
}

.vdo-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: clamp(32px, 5vw, 80px) clamp(28px, 5vw, 65px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.vdo-banner-card-small .vdo-banner-content {
    padding: 28px 45px;
}

.vdo-banner-eyebrow {
    max-width: 700px;
    margin-bottom: 22px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.vdo-banner-title {
    max-width: 720px;
    margin: 0 0 45px;
    padding: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1.45;
    font-weight: 800;
}

.vdo-banner-card-small .vdo-banner-eyebrow {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.5;
}

.vdo-banner-card-small .vdo-banner-title {
    margin-bottom: 45px;
    font-size: 30px;
    line-height: 1.25;
}

.vdo-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 175px;
    min-height: 50px;
    padding: 0 28px;
    box-sizing: border-box;
    border: 2px solid #ed1c24;
    border-radius: 30px;
    background: #ed1c24;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: all .3s ease;
}

.vdo-banner-button:hover,
.vdo-banner-button:focus {
    background: #fff;
    border-color: #fff;
    color: #ed1c24 !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .vdo-banner-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 8px;
    }

    .vdo-banner-card,
    .vdo-banner-card-main,
    .vdo-banner-card-small {
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 1.78 / 1;
        border-radius: 5px;
    }

    .vdo-banner-card-main {
        aspect-ratio: 1.55 / 1;
    }

    .vdo-banner-content,
    .vdo-banner-card-small .vdo-banner-content {
        padding: 20px 24px;
        justify-content: center;
    }

    .vdo-banner-eyebrow,
    .vdo-banner-card-small .vdo-banner-eyebrow {
        max-width: 90%;
        margin-bottom: 8px;
        font-size: 10px;
        line-height: 1.35;
    }

    .vdo-banner-title,
    .vdo-banner-card-small .vdo-banner-title {
        max-width: 90%;
        margin-bottom: 14px;
        font-size: 21px;
        line-height: 1.2;
    }

    .vdo-banner-card-main .vdo-banner-title {
        font-size: 23px;
    }

    .vdo-banner-button {
        min-width: 105px;
        min-height: 32px;
        padding: 0 18px;
        font-size: 11px;
    }
}
/* ==========================================
   SHORTCODE: [vdo_banner_grid_2]
   Solo banners 2 y 3
   ========================================== */

.vdo-banner-grid-two {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
}

.vdo-banner-grid-two .vdo-banner-card-small {
 grid-row: auto;
    min-height: 280px;
    width: 100%;
}


/* ==========================================
   Mﾃ天IL
   ========================================== */

@media (max-width: 767px) {

    .vdo-banner-grid-two {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 8px;
    }

    .vdo-banner-grid-two .vdo-banner-card-small {
        min-height: 0;
        aspect-ratio: 1.55 / 1;
    }

}


/* ==========================================
   PRODUCT GRID
   [vdo_product_grid]
   ========================================== */

.vdo-product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    box-sizing: border-box;
}


.vdo-product-card {
    position: relative;
    min-width: 0;
    min-height: 220px;

    overflow: hidden;

    border-radius: 5px;

    background-color: #f5f5f5;

    background-image: var(--vdo-product-image);

    background-size: auto 100%;

    background-position: right center;

    background-repeat: no-repeat;
}


.vdo-product-content {
    position: relative;

    z-index: 2;

    width: 58%;

    min-height: 220px;

    box-sizing: border-box;

    padding: 22px 0 22px 28px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;
}


.vdo-product-eyebrow {
    margin-bottom: 20px;

    color: #ed4b00;

    font-size: 16px;

    line-height: 1.2;

    font-weight: 500;
}


.vdo-product-title {
    margin: 0 0 25px;

    padding: 0;

    color: #111;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 600;
}


.vdo-product-subtitle {
    margin-bottom: 22px;

    color: #111;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 600;
}


.vdo-product-button {
    color: #ed4b00 !important;

    font-size: 14px;

    line-height: 1;

    font-weight: 600;

    text-decoration: underline !important;

    transition: all .3s ease;
}


.vdo-product-button:hover {
    color: #111 !important;

    text-decoration: none !important;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 900px) {

    .vdo-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================
   MÓVIL
   ========================================== */

@media (max-width: 600px) {

    .vdo-product-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .vdo-product-card {
        min-height: 190px;
    }


    .vdo-product-content {
        width: 65%;

        min-height: 190px;

        padding: 18px 0 18px 20px;
    }


    .vdo-product-eyebrow {
        margin-bottom: 12px;

        font-size: 14px;
    }


    .vdo-product-title {
        margin-bottom: 15px;

        font-size: 21px;
    }


    .vdo-product-subtitle {
        margin-bottom: 15px;

        font-size: 13px;
    }


    .vdo-product-button {
        font-size: 13px;
    }

}