/* GIS Locations Block - Frontend Styles */

.synpact-gis-locations {
  padding: 0.5rem 0;
}

.gis-locations-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
}

/* "Locations" label — matches section-subheading style */
.gis-locations-label {
  background-color: #ae2761;
  color: #f1f2eb;
  padding: 5px 28px;
  border-radius: 50px;
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.6;
}

/* Tags container — wraps independently, indented by the label width + gap */
.gis-locations-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Individual location tag */
.gis-locations-tag {
  background-color: #bb8092;
  color: #f1f2eb;
  padding: 5px 20px;
  border-radius: 50px;
  font-family: "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.6;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.gis-locations-tag:hover {
  color: #f1f2eb;
  opacity: 0.8;
  text-decoration: none;
}

@media (max-width: 480px) {
  .gis-locations-row {
    gap: 12px;
  }

  .gis-locations-label {
    padding: 5px 20px;
    font-size: 15px;
  }

  .gis-locations-tag {
    font-size: 13px;
    padding: 4px 14px;
  }
}
