.hero-cta-section {
  position: relative;
  z-index: 0;
  display: flex;
  overflow: hidden;
  align-items: center;
  min-height: 400px;
  padding: 4rem 0;
  background-color: #3a3a3a;
  background-position: 65% center !important;
  background-size: cover;
}

[dir="rtl"] .hero-cta-section {
  background-position: 35% center !important;
}

@media (min-width: 768px) {
  .hero-cta-section {
    background-position: right center !important;
  }

  [dir="rtl"] .hero-cta-section {
    background-position: left center !important;
  }
}

.hero-cta-section::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transform: translateZ(0);
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.49);
}

[dir="rtl"] .hero-cta-section::before {
  right: 0;
  left: auto;
}
.hero-cta-section > * {
  position: relative;
  z-index: 2;
}

.hero-cta-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-cta-heading {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 300;
}
.hero-cta-card {
  display: block;
  transition: transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.hero-cta-card:hover {
  transform: translateY(-5px);
}

.hero-cta-card .card {
  min-height: 180px;
  padding: 1.5rem;
  border: none;
  border-radius: 8px;
}

.hero-cta-icon {
  color: var(--duke-primary);
  font-size: 3rem;
}

.hero-cta-card .card-title {
  margin-bottom: 0;
  color: var(--duke-primary);
  font-weight: 500;
}
