.org-block-hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  min-height: calc(100vw / 2.93);
  display: flex;
}

.org-block-hero-background-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.org-block-hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.org-block-hero-background-color,
.org-block-hero-background-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.org-block-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.org-block-hero-content-wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 0px 24px;
  display: flex;
  justify-content: center;
}

.org-block-hero-content-container {
  min-height: 100%;
  display: flex;
  max-width: 1090px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.org-block-hero-heading {
  color: white;
  font-size: 42px;
  font-weight: 800;
  line-height: 48px;
  margin: 0;
}

.org-block-hero-description {
  color: white;
  margin-top: 24px;
  max-width: 42rem;
}

.org-block-hero-description p span {
  line-height: 30px;
  font-size: 24px;
  margin: 0;
}

.org-block-hero-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background-color: #2563eb;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: fit-content;
  margin-top: 72px;
  text-decoration: none;
}

.org-block-hero-cta-button:hover {
  background-color: #1d4ed8;
}

@media (max-width: 600px) {
  .org-block-hero-cta-button {
    padding: 0.625rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .org-block-hero-heading {
    font-size: 32px;
    line-height: 42px;
  }

  .org-block-hero-description p span {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  .org-block-hero {
    min-height: 448px;
  }
}

@media (min-width: 1440px) {
  .org-block-hero-content-container {
    padding: 120px 0;
  }
}
