﻿/*=========================================================
  ENMODÜLER YAZILIM — VİDEOLAR
=========================================================*/

.en-video-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .en-video-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.en-video-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

    .en-video-thumb img {
        width: 100%;
        display: block;
        transition: var(--transition);
    }

.en-video-card:hover .en-video-thumb img {
    transform: scale(1.08);
}

.en-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(20, 24, 26, .15);
}

    .en-video-play i {
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        font-size: 28px;
        box-shadow: 0 10px 25px rgba(14, 125, 71, .4);
    }

.en-video-content {
    padding: 22px;
}

    .en-video-content h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .en-video-content p {
        color: #666;
        font-size: 14.5px;
        line-height: 1.7;
    }
