.vs-recent-posts {
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.vs-recent-posts .vs-recent-posts__header {
    width: 100%;
    background-color: #FF625A;
    color: white;
    padding: 0.75rem 1rem;
    font-size: 20px;
    font-weight: 500;
}

.vs-recent-posts .vs-recent-posts__list {
    margin: 0 !important;
    padding: 1rem 1.5rem !important;
}

.vs-recent-posts .vs-recent-posts__list li {
    list-style: circle;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.vs-recent-posts .vs-recent-posts__list li a {
    color: #5A5A5A;
}

.vs-recent-posts .vs-recent-posts__list li:hover a {
    color: #A2A2A2;
}

/* Video thumbnail */
.vs-video-thumbnail {
    width: 300px;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.vs-video-thumbnail:hover {
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
    cursor: pointer;
}

.vs-video-thumbnail__image-container {
    width: 100px;
    height: 70px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    background-color: rgb(207, 207, 207);
    position: relative;
    border-radius: 10px;
}

.vs-video-thumbnail__image-container-background {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.vs-video-thumbnail__information-container {
    width: calc(100% - 100px);
    margin: auto 0;
}

.vs-video-thumbnail__information-container .vs-video-thumbnail__title {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #2A2A2A;
    position: relative;
    font-weight: 500;
}

.vs-video-thumbnail__category {
    margin-top: .3rem;
}

.vs-video-thumbnail__category small {
    color: #E45750;
    font-weight: 500;
}