.churchfinder-hero-banner {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
}

.churchfinder-hero-banner__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  filter: brightness(0.65);
  z-index: 0;
}

.churchfinder-hero-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.churchfinder-hero-banner__headline {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

.churchfinder-hero-banner__subheadline {
  font-size: 20px;
  line-height: 1.6;
  margin: 28px auto 32px;
  max-width: 760px;
}

.churchfinder-hero-banner__subheadline *:last-child {
  margin-bottom: 0;
}

.churchfinder-hero-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.churchfinder-hero-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.churchfinder-hero-banner__button:hover,
.churchfinder-hero-banner__button:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.churchfinder-hero-banner__button--primary {
  background-color: #7db500;
  color: #ffffff;
}

.churchfinder-hero-banner__button--secondary {
  background-color: #0097db;
  color: #ffffff;
}

.churchfinder-hero-banner__search {
  margin: 0 auto;
  max-width: 720px;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .churchfinder-hero-banner {
    padding: 60px 16px;
  }

  .churchfinder-hero-banner__headline {
    font-size: 32px;
  }

  .churchfinder-hero-banner__subheadline {
    font-size: 18px;
    margin: 24px auto 28px;
  }
}

