/**
 * Top Stories Image Size Fix
 * Ensures top stories thumbnails stay 70x70 even if JavaScript tries to override
 */

#top-stories-container .image img {
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
}

/* Mobile */
@media (max-width: 991px) {
    #top-stories-container .image img {
        width: 50px !important;
        height: 50px !important;
        max-width: 50px !important;
        max-height: 50px !important;
    }
}

/* Also fix story lists in sidebar */
.stories-list-wrapper .story .image img {
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
}