.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 180deg, rgba(255,248,218, 0.92) 0%, rgba(255,248,218, 0.82) 32%, rgba(255,248,218, 0.35) 55%, rgba(238, 244, 232, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-section::before {
    background: linear-gradient( 90deg, rgba(255,248,218, 0.82) 0%, rgba(255,248,218, 0.72) 32%, rgba(255,248,218, 0.30) 55%, rgba(238, 244, 232, 0) 100% );
  }
}

.hero-content {
  position: relative;
  padding-top: 20%;
  display: flex;
  justify-content: center;
  align-items: start;
  aspect-ratio: 3/8;
}

@media (min-width: 768px) {
  .hero-content {
    justify-content: start;
    aspect-ratio: 4/3;
    align-items: center;
    padding-top: 0;
  }
}

.hero-div {
  position: absolute;
  z-index: 100;
  padding: 20px;
}

@media (min-width: 992px) {
  .hero-div {
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .hero-div {
    max-width: 70%;
  }
}

@media (min-width: 1400px) {
  .hero-div {
    max-width: 50%;
  }
}

.hero-content h1 {
  color: var(--bs-secondary-text-emphasis);
  line-height: 1.08;
  text-shadow: none;
  font-size: 60px;
  font-family: 'News Cycle';
}

@media (min-width: 768px) {
  .hero-content h1 {
    color: var(--bs-secondary-text-emphasis);
    line-height: 1.08;
    text-shadow: none;
    font-size: 80px;
    font-family: 'News Cycle';
  }
}

.hero-buttons {
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  display: none;
}

@media (min-width: 450px) {
  .hero-buttons {
    display: flex;
  }
}

.hero-content p {
  color: var(--bs-secondary-text-emphasis);
  font-size: 24px;
  line-height: 1.55;
  font-family: 'Murecho';
}

