/*
Theme Name: Studiare Child
Theme URI: https://majidsabeti.ir/
Description: Child theme for Studiare
Author: Majid Sabeti
Template: studiare
Version: 1.0.0
Text Domain: studiare-child
*/
.lazy-video-container {
    position: relative;
    cursor: pointer;
    max-width: 100%; /* حداکثر اندازه ظرف */
}

.lazy-thumb {
    width: 100%;      /* از اندازه div تبعیت کنه */
    height: 100%;
    object-fit: cover; /* تصویر کامل پر بشه بدون کشیدگی */
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    transition: 0.2s;
}

/* spinner */
.play-btn.loading {
    font-size: 0;
    width: 70px;
    height: 70px;
    border: 6px solid rgba(255,255,255,0.3);
    border-top: 6px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
}