.cu-gvo-home-banner,
.cu-gvo-home-banner * {
  box-sizing: border-box;
}

.cu-gvo-home-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 88px minmax(280px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
  width: min(1120px, calc(100% - 40px));
  margin: clamp(34px, 5vw, 64px) auto;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 20%, rgba(73, 168, 255, .28), transparent 28%),
    linear-gradient(125deg, #082f67 0%, #0b4e94 58%, #0b68ba 100%);
  box-shadow: 0 22px 48px rgba(8, 47, 103, .22);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease;
}

.cu-gvo-home-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .28;
  background-image: radial-gradient(rgba(255, 255, 255, .42) .8px, transparent .8px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 58%);
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.cu-gvo-home-banner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #42c5ba, #ffd447, #42c5ba);
}

.cu-gvo-home-logo {
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none !important;
  transition: transform .22s ease;
}

.cu-gvo-home-logo:hover,
.cu-gvo-home-logo:focus-visible {
  transform: scale(1.045);
}

.cu-gvo-home-logo:focus-visible,
.cu-gvo-home-cta:focus-visible {
  outline: 3px solid #42c5ba;
  outline-offset: 4px;
}

.cu-gvo-home-logo img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 9px 20px rgba(0, 0, 0, .22));
}

.cu-gvo-home-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
  line-height: 1.35;
}

.cu-gvo-home-copy strong {
  color: #fff;
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 750;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.cu-gvo-home-copy > span {
  color: #d5e6f5;
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 450;
  text-wrap: pretty;
}

.cu-gvo-home-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.cu-gvo-home-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.cu-gvo-home-cta-primary {
  background: #ffd447;
  box-shadow: 0 10px 24px rgba(1, 26, 61, .2);
  color: #082f67 !important;
}

.cu-gvo-home-cta-secondary {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .09);
  color: #fff !important;
}

.cu-gvo-home-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(8, 47, 103, .28);
}

.cu-gvo-home-cta-primary:hover {
  background: #ffe26f;
  color: #082f67 !important;
  transform: translateY(-2px);
}

.cu-gvo-home-cta-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .18);
  color: #fff !important;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .cu-gvo-home-banner {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .cu-gvo-home-logo img {
    width: 78px;
    height: 78px;
  }

  .cu-gvo-home-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .cu-gvo-home-banner {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 16px;
    width: calc(100% - 28px);
    margin: 28px auto;
    padding: 20px;
    border-radius: 18px;
  }

  .cu-gvo-home-logo img {
    width: 70px;
    height: 70px;
  }

  .cu-gvo-home-copy strong {
    font-size: 17px;
  }

  .cu-gvo-home-copy > span {
    font-size: 14px;
  }

  .cu-gvo-home-actions {
    width: 100%;
  }

  .cu-gvo-home-cta {
    flex: 1 1 50%;
    min-height: 52px;
    padding-inline: 14px;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .cu-gvo-home-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cu-gvo-home-copy {
    align-items: center;
  }

  .cu-gvo-home-actions {
    flex-direction: column;
  }

  .cu-gvo-home-cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cu-gvo-home-banner,
  .cu-gvo-home-logo,
  .cu-gvo-home-cta {
    transition: none;
  }
}
