/**
 * Advantages section – boxes-two tripple-cols
 * Modern card UI for advantage items
 */

.boxes-two.tripple-cols.lighter-bg2 {
  padding: 60px 0 70px;
  background: #f8f9fc !important;
}

.boxes-two.tripple-cols.lighter-bg2 .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}

.boxes-two.tripple-cols.lighter-bg2 .item {
  float: none !important;
  flex: 1 1 300px;
  min-width: 0;
  max-width: none;
  padding: 0 !important;
}

/* Card */
.adv-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  padding: 28px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #edf0f5;
  border-top: 3px solid #ea1010;
  box-shadow: 0 4px 20px rgba(28, 35, 52, 0.06);
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.adv-card:hover {
  box-shadow: 0 12px 36px rgba(28, 35, 52, 0.1);
  transform: translateY(-4px);
  border-color: rgba(234, 16, 16, 0.3);
}

/* Icon */
.adv-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ea1010;
  border-radius: 12px;
  overflow: hidden;
}

.adv-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Body */
.adv-card__body {
  flex: 1;
  min-width: 0;
}

.adv-card__title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #1c2334 !important;
  margin: 0 0 10px !important;
  line-height: 1.35 !important;
}

.adv-card__desc {
  font-size: 14px;
  color: #5a5f6e;
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .boxes-two.tripple-cols.lighter-bg2 .item {
    flex: 1 1 100%;
    max-width: none;
  }

  .boxes-two.tripple-cols.lighter-bg2 {
    padding: 40px 0 50px;
  }
}
