/* Hero Section */
.hero-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
  padding: 0;
  background-color: var(--wp--preset--color--light-gray); 
}
  
.hero-container .inner {
  display: flex;
  min-height: 27.5rem;
  width: 100%;
  padding: 5rem 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
  z-index: 3;
}

@media (min-width: 1180px){
  .hero-container .inner {
    padding: 10rem 1rem;
  }
}
  
.hero-container.no-image .background {
  display: none;
}

.hero-container .background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-container .content-wrapper {
  display: flex;
  width: 100%;
  max-width: var(--wp--style--global--content-size);
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  z-index: 4;
  margin: 0 auto;
}

.hero-container.no-image .content {
  padding: 0;
}

.hero-container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
  width: 100%;
  background-color: #F9F9FA;
  z-index: 4;
  padding: 2rem;
  border-radius: 0.5rem;
}

.hero-container .content h1 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 3.5rem !important; 
  letter-spacing: -0.25px !important;
  margin: 0 !important;
}

.hero-container .content p {
  color: #57575D;
  font-family: Arial;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 0px;
  margin: 0 !important;
}

.buttons-container {
  display: flex;
  gap: 0.75rem;
  text-align:center;
}

@media (max-width: 480px){
  .buttons-container {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 768px){
  .hero-container .content h1 {
    font-size: 2.25rem;
    line-height: 2.8125rem !important; 
  }

  .hero-container .content p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1180px){
  .hero-container .content {
    padding: 2.5rem;
    gap: 1.25rem;
  }

  .hero-container .content h1 {
    font-size: 4rem;
    line-height: 4.5rem !important; 
  }

  .hero-container .content p {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}