.news-card {
    display: flex;
    gap: 16px;
    background: #f8f9fb;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    transition: 0.2s;
    height: 100%; /* 🔥 iguala altura */
}

    .news-card:hover {
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

.news-img {
    flex-shrink: 0;
}

    .news-img img {
        width: 400px;
        height: 240px;
        object-fit: cover;
        border-radius: 6px;
    }

.news-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .news-content h3 {
        font-size: 15px;
        margin: 5px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.news-card {
    transition: all 0.25s ease;
}

.categoria {
    color: #0d6efd;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    width: 400px;
    height: 240px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
}

    .video-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 6px;
    }
