.sp-icon-cards {
  width: 100%;
  overflow: hidden;
}


/* Grid Layout */
.sp-icon-cards__grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* 1 card per row - full width, stacked vertically */
.sp-icon-cards__grid--1 {
  flex-direction: column;
}

.sp-icon-cards__grid--1 .sp-icon-cards__card {
  width: 100%;
}

/* 2 cards per row */
.sp-icon-cards__grid--2 {
  flex-wrap: wrap;
}

.sp-icon-cards__grid--2 .sp-icon-cards__card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

/* 3 cards per row */
.sp-icon-cards__grid--3 {
  flex-wrap: wrap;
}

.sp-icon-cards__grid--3 .sp-icon-cards__card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
}

/* Card Styles */
.sp-icon-cards__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 30px;
  background-color:#1D3C70;
}

/* Icon */
.sp-icon-cards__icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}





/* Content */
.sp-icon-cards__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  text-align: center;
  color: #ffffff;
}

.sp-icon-cards__content * {
  margin:0 0 18px;
}


/* Responsive */
@media (max-width: 991px) {
  .sp-icon-cards__grid--3 {
    flex-wrap: wrap;
  }

  .sp-icon-cards__grid--3 .sp-icon-cards__card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
  }
}

@media (max-width: 767px) {
  .sp-icon-cards__grid {
    flex-direction: column;
  }

  .sp-icon-cards__grid--2 .sp-icon-cards__card,
  .sp-icon-cards__grid--3 .sp-icon-cards__card {
    flex: 1 1 100%;
    min-width: 0;
  }



  .sp-icon-cards__card {
    padding: 24px;
    max-width: 100%;
  }

  .sp-icon-cards__body {
    max-width: 100%;
  }
}


}
