body {
  background-color: var(--color-background);
}

.home-hero {
  padding-block: 0;
}

.home-hero-media {
  position: relative;
  min-height: 70vh;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: var(--space-16);
  color: #fff !important;
}
.home-hero-content p {
  color: #fff;
}
#home-hero-heading {
  color: #fff;
}
.home-hero-ctas .btn-outline {
  color: #fff;
}
.home-hero-content .lead {
  max-width: 40rem;
}

.home-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.home-hero-disclaimer {
  max-width: 42rem;
  margin-top: var(--space-6);
}

.home-section {
  background-color: var(--color-background);
}

.home-section-alt {
  background-color: var(--color-background-alt);
}

.home-section-grid {
  align-items: center;
}

.home-section-text {
  max-width: 36rem;
}

.home-section-media {
  width: 100%;
}

.home-section-media-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: var(--color-surface);
}

.home-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-image-card .caption {
  padding: var(--space-4);
}

.home-card-grid {
  align-items: stretch;
}

.home-bullets {
  margin-top: var(--space-4);
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.home-bullets li {
  margin-bottom: var(--space-2);
}

.home-section-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.home-newsletter-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-6);
}

.home-newsletter-form {
  margin-top: var(--space-4);
}

.home-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 767px) {
  .home-hero-content {
    position: relative;
    padding-block: var(--space-12);
  }
  .home-hero-media {
    min-height: 0;
  }
}

@media (min-width: 992px) {
  .home-hero-media {
    min-height: 80vh;
  }
}
