
/* Ensure images maintain aspect ratio with explicit dimensions */
img {
  max-width: 100%;
  height: auto;
}

/* When width and height are specified, maintain aspect ratio */
img[width][height] {
  aspect-ratio: attr(width) / attr(height);
}
