/*
Theme Name: Astra Child
Template: astra
*/

/* ===== U.S. HOTSPOT CARDS (Match North America Style) ===== */

.us-hotspot-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.us-hotspot-card-link {
  text-decoration: none !important;
}

.us-hotspot-card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 18px 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.2s ease;
}

.us-hotspot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.us-hotspot-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #a4521c;
  margin-bottom: 6px;
}

.us-hotspot-count {
  font-size: 2rem;
  font-weight: 700;
  color: #d6642d;
  margin-bottom: 4px;
}

.us-hotspot-label {
  font-size: 0.8rem;
  color: #666;
}

.us-hotspot-card {
    height: 170px;   /* Adjust this number if you want them taller/shorter */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
