.videos-tvuel {
    font-family: 'Inter', sans-serif;
}

.videos-tvuel h1 {
    font-family: 'Faustina', serif;
    font-weight: 700;
    color: #00753b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.video-card {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
    text-decoration: none !important;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.video-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background-color: #000;
}

.video-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    opacity: 0.9;
}

.video-card:hover .video-card__image {
    transform: scale(1.1);
    opacity: 0.6;
}

.video-card__play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 117, 59, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.video-card:hover .video-card__play-overlay {
    background-color: rgba(0, 117, 59, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card__play-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #fff;
    margin-left: 4px;
}

.video-card__content {
    padding: 15px;
    position: relative;
}

.video-card__title {
    font-family: 'Faustina', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card:hover .video-card__title {
    color: #00753b;
    text-decoration: underline;
}

.video-card__date {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    display: block !important;
}

.btn-see-more-tvuel {
    display: inline-block;
    padding: 12px 24px;
    background-color: #00753b;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.btn-see-more-tvuel:hover {
    background-color: #005a2d;
    transform: translateY(-2px);
    text-decoration: none;
}

.video-card__description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.video-card--featured .video-card__title {
    font-size: 1.5rem;
}

.video-card--featured .video-card__description {
    -webkit-line-clamp: 6;
    line-clamp: 6;
}