.resource-card-image {
    display: block;
    margin: -25px -25px 22px;
    overflow: hidden;
    border-radius: 21px 21px 0 0;
    background: #eef0f6;
}

.resource-card-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .35s ease;
}

.resource-card:hover .resource-card-image img,
.resource-card:focus-within .resource-card-image img {
    transform: scale(1.035);
}

.resource-featured-image {
    margin: 48px 0 0;
    overflow: hidden;
    border-radius: 24px;
    background: #eef0f6;
    box-shadow: 0 16px 45px rgba(30, 35, 70, .09);
}

.resource-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
    .resource-card-image img {
        transition: none;
    }
}
