.court__content:nth-of-type(5) {
  position: relative;
  margin-top: 140px;
}

@media screen and (min-width: 768px) {
  .court__content:nth-of-type(5) {
    margin-top: 190px;
  }
}

.court__content:nth-of-type(5)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  background: url(../images/court-STAFF.svg) no-repeat center center / contain;

  width: clamp(
    220px,
    calc(220px + (300 - 220) * ((100vw - 300px) / (1366 - 300))),
    300px
  );

  aspect-ratio: 300 / 78;

  z-index: -1;
  pointer-events: none;
}

.court__content:nth-of-type(5) .court__content-heading {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}