.rl-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    text-decoration: none;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-light-gray);
    padding-bottom: calc(var(--space-40) - 1rem);
    margin-bottom: var(--space-40);
}

.rl-item .img-block {
    position: relative;
}

.rl-item .img-block img {
    width: 192px;
    height: 128px;
    object-fit: cover;
}

.rl-item .img-block.is_video::after {
    content: "";
    position: absolute;
    bottom: .75rem;
    left: .75rem;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(../../../assets/images/play-icon-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
}

.rl-item .content {
    flex: 1;
}

.rl-item h6,
.rl-item .h6 {
    font-weight: 700;
}

@media (max-width: 575px) {
    .rl-item {
        flex-direction: column;
    }

    .rl-item .img-block {
        display: block;
        width: 100%;
    }

    .rl-item .img-block img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .rl-item .img-block.is_video::after {
        width: 2.5rem;
        height: 2.5rem;
        background-size: 2.5rem;
    }
}