.video-featured-wrap {
    margin-bottom: 32px;
}

.video-featured {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    overflow: hidden;
    /* box-shadow: 0 0 5px 5px #d3d1d1; */
    background-color: #fff;
}

.video-featured:hover,
.video-featured:focus {
    text-decoration: none;
    color: inherit;
}

.video-featured-thumb {
    flex: 0 0 42%;
    max-width: 42%;
    position: relative;
}

.video-featured-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.video-featured-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 30px;
}

body .mainContent h3.video-featured-title {
    margin-bottom: 1rem;
    font-size: 2.4rem;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    transition: color .2s ease;
}

body .mainContent .video-featured:hover h3.video-featured-title,
body .mainContent .video-featured:focus h3.video-featured-title {
    color: #EE5424;
}

.video-grid-wrap {
    margin-bottom: 24px;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.video-card {
    width: 33.333%;
    padding: 16px;
    box-sizing: border-box;
}

.video-card > a {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    overflow: hidden;
    /* box-shadow: 0 0 5px 5px #d3d1d1; */
    background-color: #fff;
    height: 100%;
}

.video-card > a:hover,
.video-card > a:focus {
    text-decoration: none;
    color: inherit;
}

.video-card-cover {
    display: block;
    position: relative;
}

.video-card-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.video-featured-thumb::before,
.video-card-cover::before {
    content: "\f04b";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 1.15rem;
    color: #fff;
    background-color: rgba(0, 0, 0, .8);
    opacity: .7;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    padding-left: 0.2rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    z-index: 1;
    transition: background-color .2s ease, opacity .2s ease;
}

/* Larger play button for featured thumb */
.video-featured-thumb::before {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.5rem;
}

.video-featured-thumb:hover::before,
.video-card-cover:hover::before {
    background-color: #EE5424;
    opacity: 1;
}

.video-card-info {
    display: block;
    padding: 16px 20px;
}

.video-card-title {
    display: block;
    color: #000;
    font-weight: 600;
    line-height: 1.4;
    transition: color .2s ease;
    font-size: 1.5rem;
    margin-bottom: 5px;
    /* margin-bottom: 8px; */
}

.video-card-info:hover .video-card-title {
    color: #EE5424;
}

.video-date {
    display: flex;
    align-items: center;
    gap: 0.35em;
    color: #000;
    font-size: 1rem;
}

.video-date .bi-calendar-event {
    flex-shrink: 0;
}

@media print,
screen and (max-width: 991px) {
    .video-card {
        width: 50%;
    }
}

@media print,
screen and (max-width: 767px) {
    .video-featured {
        flex-direction: column;
    }

    .video-featured-thumb {
        flex: none;
        max-width: 100%;
    }

    .video-featured-info {
        padding: 20px;
    }

    .video-card {
        width: 100%;
    }
}
