.service-cards-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 500px) {
  .service-cards {
    gap: 1.5rem;
  }
}
.service-cards-title {
  margin: 0;
  color: #FFF;
  font-size: 2rem;
  line-height: 1.1;
  max-width: 780px;
  text-align: center;
}

@media (max-width: 500px) {
  .service-cards-title {
    font-size: 1.5rem;
  }
}
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 500px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
  }
}
.cards-wrapper .landing-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 360px;
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  background-color: #1d2230;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFF;
  transition: transform 0.2s ease;
}

@media (max-width: 500px) {
  .cards-wrapper .landing-card {
    min-height: 220px;
    padding: 1rem;
    border-radius: 16px;
  }
}
.cards-wrapper .landing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0.1) 0%, rgba(4, 8, 20, 0.45) 55%, rgba(4, 8, 20, 0.78) 100%);
}

.cards-wrapper .landing-card:hover {
  transform: translateY(-2px);
}

.landing-card__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #FFF;
  font-size: 1.35rem;
  line-height: 1.2;
  max-width: 90%;
}

@media (max-width: 500px) {
  .landing-card__title {
    font-size: 1.15rem;
  }
}
.paragraph--theme-light .service-cards-title {
  color: #1b1a1a;
}



/*# sourceMappingURL=landing_card.css.map */
