/* GRID */


/* CARD */
.vidapi-schedule-card a {
    text-decoration: none;
    display: block;
}

/* HORIZONTAL 16:9 */
.vidapi-poster-wrapper {
   
  
}

/* IMAGE */
.vidapi-poster-img {
        width: 100%;
    display: block;
    height: auto;
}

/* PLACEHOLDER */
.vidapi-poster-placeholder {
    width: 100%;
    height: 100%;
    background: #3e5a5f;
}
.vidapi-schedule-card {
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.vidapi-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 35px;
}
