/* ============================================
   Sound Technologies - About: Countries
   Chip-style country list with flags
   Mobile-first
   ============================================ */

.st-about-countries {
  margin-top: 32px;
}

.st-about-countries-heading {
  font-family: var(--st-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--st-navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.st-about-countries-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.st-country-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: var(--st-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--st-dark);
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.st-country-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.st-country-flag {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Tablet */
@media (min-width: 600px) {
  .st-about-countries {
    margin-top: 40px;
  }

  .st-about-countries-heading {
    font-size: 1.05rem;
  }

  .st-country-chip {
    font-size: 0.95rem;
    padding: 7px 14px 7px 7px;
  }

  .st-country-flag {
    width: 28px;
    height: 21px;
  }
}

/* Desktop */
@media (min-width: 960px) {
  .st-about-countries {
    margin-top: 48px;
  }
}
