.video-container {
    border: 2px solid #6ed3c8;
    border-radius: 5px;
    height: 24rem;
    background-color: #6ed3c8;
    color: #fff;
    transition: border 0.5s ease, background-color 0.5s ease;
}

.video-program-title {
    color: #fff;
    font-weight: 600;
}

.video-poster {
    width: 100%;
    height: 13rem;
    object-fit: cover;
}

.program-duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin: 0;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 1px 7px;
    border-radius: 5px;
    font-size: 12px;
}

.video-program-description {
    padding: 2rem 0.8rem;
    font-size: medium;
    line-height: 23px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    padding: 0.5rem;
    border-radius: 50%;
}

.rounded-play-button__ring {
    fill: rgba(0, 0, 0, 0.7);
}

.rounded-play-button__inner {
    fill: rgba(0, 0, 0, 0.7);
}

.rounded-play-button__triangle {
    fill: #fff;
}

.image-container {
    position: relative;
}

.video-link:hover .video-container {
    border: 2px solid #fff;
    background-color: #fff;
    color: #000;
}
