
    
        
        
    



.aspect-ratio-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 соотношение (9/16 = 0.5625) */
    overflow: hidden;
}

.content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper img,
.content-wrapper iframe,
.content-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* или contain в зависимости от потребностей */
}
