/* ==========================================================================
   Country Insights (Dark Service Feature Grid Bar with Mint Icons)
   ========================================================================== */

.country-insights.wp-block-group,
.country-insights.wp-block-group.alignfull {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  position: relative !important;
  background-color: #092f3f !important;
  border-top: 1px solid var(--stroke-mint-20, rgba(0, 199, 190, 0.2)) !important;
  border-bottom: 1px solid var(--stroke-mint-20, rgba(0, 199, 190, 0.2)) !important;
  border-left: none !important;
  border-right: none !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
}

.country-insights .section-country-insights,
.country-insights .section-country-full {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 94px !important;
  min-height: 94px !important;
  padding: 20px 70px !important;
  position: relative !important;
  width: 100% !important;
  max-width: 1440px !important;
  background: transparent !important;
  border: none !important;
  box-sizing: border-box !important;
  gap: 0 !important;
  margin: 0 auto !important;
}

.country-insights .country-insight-item,
.country-insights .service-feature-item,
.country-insights .div {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  position: relative !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
  height: 100% !important;
}

.country-insights .country-insight-item:not(:last-child)::after,
.country-insights .service-feature-item:not(:last-child)::after,
.country-insights .div:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 36px !important;
  width: 1px !important;
  background-color: var(--stroke-mint-20, rgba(0, 199, 190, 0.2)) !important;
}

.country-insights .country-insight-item:last-child::after,
.country-insights .service-feature-item:last-child::after,
.country-insights .div:last-child::after {
  display: none !important;
}

.country-insights .icon {
  position: relative !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  aspect-ratio: 1 !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.country-insights .icon img {
  width: 32px !important;
  height: 32px !important;
  display: block !important;
  margin: 0 !important;
}

.country-insights .text-wrapper {
  position: relative !important;
  width: fit-content !important;
  font-family: var(--font-main, 'Poppins', sans-serif) !important;
  font-weight: 500 !important;
  color: var(--white, #ffffff) !important;
  font-size: 16px !important;
  letter-spacing: 0px !important;
  line-height: 1.6 !important;
  white-space: nowrap !important;
  margin: 0 !important;
  text-align: left !important;
}

.country-insights .divider {
  position: relative !important;
  align-self: stretch !important;
  width: 1px !important;
  min-width: 1px !important;
  height: auto !important;
  background-color: var(--stroke-mint-20, rgba(0, 199, 190, 0.2)) !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .country-insights .section-country-insights,
  .country-insights .section-country-full {
    padding: 16px 30px !important;
    height: auto !important;
    min-height: 80px !important;
    gap: 16px !important;
  }

  .country-insights .text-wrapper {
    font-size: 14px !important;
  }
}

/* Mobile Responsive: Horizontal Snap Scroll */
@media (max-width: 768px) {
  .country-insights.wp-block-group,
  .country-insights.wp-block-group.alignfull {
    padding: 0 !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .country-insights .section-country-insights,
  .country-insights .section-country-full {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 16px 20px !important;
    height: auto !important;
    gap: 12px !important;
    scrollbar-width: none !important;
    border: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .country-insights .section-country-insights::-webkit-scrollbar,
  .country-insights .section-country-full::-webkit-scrollbar {
    display: none !important;
  }

  .country-insights .country-insight-item,
  .country-insights .service-feature-item,
  .country-insights .div {
    flex: 0 0 calc(55% - 6px) !important;
    min-width: 180px !important;
    max-width: 240px !important;
    scroll-snap-align: start !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 12px 14px !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    border-radius: var(--radius-small-card, 12px) !important;
    border: 1px solid var(--stroke-mint-20, rgba(0, 199, 190, 0.2)) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .country-insights .divider,
  .country-insights .country-insight-item::after,
  .country-insights .service-feature-item::after,
  .country-insights .div::after {
    display: none !important;
  }

  .country-insights .icon {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
  }

  .country-insights .icon img {
    width: 26px !important;
    height: 26px !important;
  }

  .country-insights .text-wrapper {
    font-size: 13px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    text-align: left !important;
  }
}
