/* Frames remain stable when the network response has a different ratio. */
img[data-media-image] { max-width: 100%; height: auto; }
img[data-media-shape="poster"] { aspect-ratio: 2 / 3; object-fit: cover; }
img[data-media-shape="landscape"] { aspect-ratio: 16 / 9; object-fit: cover; }
img[data-media-shape="logo"] { aspect-ratio: 10 / 3; object-fit: contain; }
img[data-media-shape="compact"] { aspect-ratio: 5 / 7; object-fit: cover; }
img[data-media-failed="1"] { object-fit: contain; }
/* Historical rich text without dimensions gets a stable, uncropped frame. */
.news-content img:not([width]):not([height]) {
    width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain;
}
