.locations-section {
  padding: var(--section-padding);
}

.locations-state {
  margin-bottom: 72px;
}

.locations-state:last-child {
  margin-bottom: 0;
}

.locations-state h2 {
  margin-bottom: 12px;
}

.locations-state-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.locations-region {
  margin-bottom: 40px;
}

.locations-region:last-child {
  margin-bottom: 0;
}

.locations-region h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--transition-base);
  text-decoration: none;
}

.location-card:hover {
  border-color: var(--border-hover);
}

.location-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.location-card-text {
  min-width: 0;
}

.location-card-city {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.location-card-brand {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 1199px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .locations-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr; }
}
