/* Decorative cutout stays behind content and never intercepts links. */
footer .footer-top-area { overflow: hidden; isolation: isolate; }
footer .footer-top-area::before {
  content: "";
  position: absolute;
  right: 2%;
  bottom: -55px;
  width: min(740px, 62vw);
  aspect-ratio: 1.37;
  background: url("/v3/img/footer-truck-20260919.webp") center bottom / contain no-repeat;
  opacity: .085;
  filter: grayscale(1);
  mask-image: linear-gradient(110deg, transparent 2%, #000 38%, #000 80%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 767px) {
  footer .footer-top-area::before {
    width: 430px;
    max-width: 112%;
    right: -7%;
    top: 300px;
    bottom: auto;
    opacity: .06;
  }
}
