.rutube-embed-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.rutube-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* نسبت 16:9 (9 ÷ 16 = 0.5625) */
    height: 0;
}

.rutube-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 9px;
    display: block;
}

/* استایل‌های دسکتاپ (عرض بیشتر از 1024px) */
@media screen and (min-width: 1025px) {
    .rutube-embed-wrapper iframe {
        height: auto !important;
        aspect-ratio: 16 / 9;
    }
}
@media screen and (max-width: 1024px) {
    .rutube-embed-wrapper iframe {
         position: absolute;
         height: auto !important;
        aspect-ratio: 16 / 9;
    }
}
/* استایل‌های موبایل و تبلت (عرض کمتر یا مساوی 1024px) */
@media screen and (max-width: 394px) {
    .rutube-embed-wrapper iframe {
         position: unset;
         height: auto !important;
        aspect-ratio: 16 / 9;
    }
}