.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.thumb-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* المقاس الذهبي */
    overflow: hidden;
    border-radius: 14px;
    background: #000;
}

.thumb-box img.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* center-crop */
    object-position: center; /* قص من المنتصف */
    display: block;
}

/*لو محتاج دعم متصفحات قديمة (Fallback)*/
@supports not (aspect-ratio: 16 / 9) {
    .thumb-box {
        padding-top: 56.25%;
    }

    .thumb-box img {
        position: absolute;
        top: 0;
        left: 0;
    }
}



.thumb-box img {
    transition: transform .5s ease;
}

.work-box:hover .thumb-box img {
    transform: scale(1.08);
}
.thumb-box::after {
    content: '▶';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,.85);
    opacity: 0;
    transition: opacity .3s;
}

.work-box:hover .thumb-box::after {
    opacity: 1;
}

