
.mio-product-card-features span {
    font-size: 12px;
}

.mio-product-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(264px - 24px), 1fr));
    gap: 1.5rem;
}

.mio-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    border: 1px solid var(--wp--preset--color--primario);
    min-width: 264px;
    position: relative;
}

.mio-product-card-img {
    width: 100%;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    position: relative;
    max-height: 117px;
}

.mio-product-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.mio-product-card-img img {
    height: 100%;
    width: 100%;
    transition: all .7s ease-in-out;
    object-fit: cover;
}

.mio-product-card:hover .mio-product-card-img img {
    transform: scale(1.5);
}

.mio-product-card-tags {
    display: flex;
    font-size: .9rem;
    justify-content: space-between;
}

.mio-product-card-features {
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-size: small;
    list-style: none;
}

.mio-product-card-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
    justify-content: space-between;
    flex: 1;
}

.mio-product-card-info h3 {
    flex: 1;
    color:  var(--wp--preset--color--secundario);
    font-size: 1.25rem;
}

.mio-product-card-btn {
    padding: .5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    background: var(--wp--preset--color--secundario);
    color: #FFFFFF;
    transition: all .3s;
    width: 100% !important;
    border: none;
    box-sizing: border-box;
    font-size: 1rem;
    cursor: pointer;
}

.mio-product-card-btn:hover {
    opacity: .80;
}

@media (width < 468px ) {
    .mio-product-cards {
        display: flex;
        overflow: scroll;
        scroll-snap-type: x mandatory;
    }

    .mio-product-card {
        scroll-snap-align: start;
    }
}

.mio-product-card .mio-course-countdown {
    top: .5rem;
    left: .5rem;
}

.mio-product-card .mio-course-countdown p,
.mio-product-card .mio-course-countdown span {
    font-size: .75rem;
}