* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Top bar */

.top-bar {
  background: #c8107a;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.logo {
  font-size: clamp(22px, 4vw, 34px);
  font-style: italic;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.3;
}

.logo__aktuell {
  font-style: normal;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo__inh {
  font-style: normal;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  color: #c8107a;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.address {
  font-style: italic;
  font-size: clamp(18px, 3vw, 26px);
  margin: 0;
}

/* Visual row */

.visual-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: #fff;
}

.visual-cell {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-illustration {
  width: 100%;
  height: 100%;
}

.visual-photo {
  width: 78%;
  height: 78%;
  object-fit: cover;
  object-position: 30% center;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff, 0 4px 10px rgba(0,0,0,.15);
}

.visual-img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

/* Info columns */

.info-columns {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  padding: 40px 0 20px;
  text-align: center;
}

.info-col h2 {
  color: #c8107a;
  font-size: 26px;
  margin: 0 0 14px;
}

.info-col p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.info-col--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.lead {
  font-size: 20px;
  margin: 0;
}

.highlight {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

/* Claim */

.claim {
  text-align: center;
  padding: 10px 0 50px;
  font-size: 20px;
  line-height: 1.6;
}

.claim p {
  margin: 4px 0;
}

/* Bottom bar */

.bottom-bar {
  background: #c8107a;
  color: #fff;
  text-align: center;
  padding: 22px 0;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
}

.sep {
  margin: 0 14px;
}

/* Responsive */

@media (max-width: 800px) {
  .visual-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
