/* TM7: tek blokta otomatik oynayan video (tm7-section-media--autoplay) */

.tm7-section-media--autoplay {
    position: relative;
    width: 100%;
    max-height: min(400px, 52vh);
    aspect-ratio: 4 / 3;
    border-radius: clamp(18px, 2.2vw, 32px);
    overflow: hidden;
    background: #e8e8e8;
}

.tm7-section-media--autoplay .tm7-section-media__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    border: 0;
}

@media (max-width: 1023px) {
    .tm7-section-media--autoplay {
        max-height: min(300px, 42vw);
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 639px) {
    .tm7-section-media--autoplay {
        max-height: 240px;
        border-radius: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tm7-section-media--autoplay .tm7-section-media__video {
        object-fit: cover;
    }
}
