/* AgroFood Summit — Banner Hero (image version) */

.afs-banner {
  display: block;
  width: 100%;
  margin-top: 78px;
}

/* Desktop: native PDF ratio 3000x1459 */
.afs-banner__desktop {
  display: block;
  width: 100%;
  aspect-ratio: 3000 / 1459;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile: native PDF ratio 782x1042 */
.afs-banner__mobile {
  display: none;
  width: 100%;
  aspect-ratio: 782 / 1042;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .afs-banner {
    margin-top: 68px;
  }
  .afs-banner__desktop {
    display: none;
  }
  .afs-banner__mobile {
    display: block;
  }
}
