/* Unique World Holidays — Home page "What Sets Us Apart" section.
   Same-to-same copy of the About Us page's Elementor section (post 478,
   element bb50966) — every value below (colors, sizes, spacing) was
   read directly from that section's live computed styles / raw
   _elementor_data, not eyeballed. See partials/what-sets-us-apart-section.php
   for the audit notes on the badge/heading field mapping. */

.uwh-wsua {
  width: 100%;
  background-color: #f9f9f9;
  padding: 80px 10px;
}

.uwh-wsua-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.uwh-wsua-badge {
  display: inline-block;
  width: fit-content;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(120deg, #13294b, #43597a);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 0 7px 0.3px rgba(0, 0, 0, 0.5);
  margin: 0 0 10px;
}

.uwh-wsua-heading {
  margin: 0 0 38px;
  max-width: 100%;
  font-family: Poppins, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #13294b;
  text-align: center;
  text-transform: capitalize;
}

.uwh-wsua-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.uwh-wsua-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 5px 0.2px rgba(0, 0, 0, 0.5);
  text-align: center;
  background: #ffffff;
}

.uwh-wsua-card-icon {
  display: flex;
}

.uwh-wsua-card-icon img {
  width: 50px;
  height: 50px;
  display: block;
}

.uwh-wsua-card-title {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #13294b;
}

.uwh-wsua-card-desc {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}

/* ---- Responsive ----
   Matches the source's own tablet/mobile values for the badge/heading/
   card padding. The grid's own column collapse (3 -> 2 -> 1) isn't an
   explicit setting on the source (Elementor's container-grid default),
   so it follows this project's established Team-section convention of
   collapsing progressively at the same 1024px/782px cutoffs. */
@media (max-width: 1024px) {
  .uwh-wsua-heading {
    font-size: 32px;
  }
  .uwh-wsua-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .uwh-wsua-card {
    padding: 20px;
  }
  .uwh-wsua-card-title {
    font-size: 18px;
  }
  .uwh-wsua-card-desc {
    font-size: 16px;
  }
}

@media (max-width: 782px) {
  .uwh-wsua {
    padding: 20px 20px 40px;
  }
  .uwh-wsua-heading {
    font-size: 24px;
  }
  .uwh-wsua-grid {
    grid-template-columns: 1fr;
  }
  .uwh-wsua-card {
    padding: 15px;
    gap: 10px;
  }
}
