.hero picture,
.media picture,
.gallery__item picture,
.testimonial picture,
.story-card picture {
    display: block;
    width: 100%;
}

.hero__image,
.media__image,
.gallery__item img,
.testimonial__image,
.story-card__image,
.featured-image {
    display: block;
    max-width: 100%;
}

.hero__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--nw-radius-xl);
    box-shadow: var(--nw-shadow-md);
}

.media__image {
    width: 100%;
    height: auto;
}

.gallery__item {
    margin: 0;
}

.gallery__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery__item figcaption {
    margin-block-start: var(--nw-space-2);
    color: var(--nw-muted);
    font-size: var(--nw-text-sm);
}

.testimonial__image {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 48rem) {
    .hero__image {
        aspect-ratio: 5 / 4;
    }
}

.story-card__image {
    width: 100%;
    aspect-ratio: 12 / 7;
    object-fit: cover;
}

.featured-image {
    width: 100%;
    height: auto;
    margin-block-start: var(--nw-space-6);
}

.featured-image__caption {
    margin-block: var(--nw-space-2) 0;
    color: var(--nw-muted);
    font-size: var(--nw-text-sm);
}
