/*
 * v0.5.04
 * Desktop-only focal correction for slide 5 (Steller sea eagle).
 *
 * The source artwork is 16:9 while the desktop hero viewport is much wider.
 * object-fit:cover therefore crops vertically. Use a higher focal point in
 * the source so the eagle's head and beak remain inside the visible viewport.
 *
 * Mobile remains completely unchanged.
 */
@media (min-width: 701px) {
    .z4-page .z4-hero .z4-slide[data-z4-slide="4"] .z4-hero-art img {
        object-position: 50% 18% !important;
    }
}
