
/* Container mimics airplane window look */
.image-window {
    width: 100% !important;
    
    height: 260px !important; /* More of the image shown on mobile */
    flex-shrink: 0 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background-color: #f0f0f0 !important;
}

/* Desktop style: cropped, consistent layout */
@media (min-width: 768px) {
    .image-window {
        width: 50% !important;
        height: 180px !important;
    }
}

/* The image fills the box cleanly */
.news-image {
    width: 100% !important;
    height: 100%;
    object-fit: cover !important;
    display: block !important;
}
