*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: #081a2a;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #081a2a;
}

.hero-wrap {
  position: relative;
  width: min(100vw, 1672px);
  aspect-ratio: 1672 / 941;
  margin: 0 auto;
}

.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*
  Klickfläche über dem blauen E-Mail-Button:
  procurement@ogenios.de
  Prozentwerte beziehen sich auf die 1672×941-Grafik und skalieren responsiv mit.
*/
.email-hotspot {
  position: absolute;
  left: 4.85%;
  top: 72.85%;
  width: 18.15%;
  height: 5.35%;
  z-index: 5;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.email-hotspot:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .hero-wrap {
    width: 100vw;
  }
}
