/* Hero Section - Glassmorphism Design */

.report-hero {
  background: var(--colorSundK-primary-blue);
  color: white;
  padding: 4rem 2rem 5rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-3 {
  width: 516px;
  height: 516px;
  background: rgb(255 255 255 / 15%);
  bottom: 81px;
  right: 5%;
}

.hero-logo-bg {
  position: absolute;
  opacity: 0.12;
  pointer-events: none;
  filter: brightness(1.5);
}

.hero-logo-top-right {
  width: 600px;
  height: auto;
  top: 37px;
  right: 65px;
}

/* Glassmorphism card */

.hero-glass-card {
  background: rgba(255, 255, 255, 0.1);
  /*backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);*/
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-database {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.hero-date {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .report-hero {
    padding: 3rem 1rem 4rem 1rem;
  }
}

@media (max-width: 768px) {
  .hero-glass-card {
    padding: 1.5rem 1.5rem;
    margin: 0 1rem;
  }
}

@media (max-width: 768px) {
  .hero-logo-bg {
    opacity: 0.08;
  }
}

@media (max-width: 768px) {
  .hero-logo-top-left, .hero-logo-bottom-left {
    left: -15px;
    width: 80px;
  }
}

@media (max-width: 768px) {
  .hero-logo-top-right, .hero-logo-bottom-right {
    right: -15px;
    width: 80px;
  }
}

