/* Gym finder styles - ported from Jekyll */
.gyms-card {
  background: var(--chalk-card, #fff);
  border: none;
  border-radius: 0;
  padding: 16px;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
}
.gyms-title {
  margin: 0 0 4px;
  font-size: 1.8rem;
  text-align: center;
}
.gyms-meta {
  color: var(--chalk-muted, #555);
  margin-top: -2px;
  margin-bottom: 8px;
  text-align: center;
}
.gyms-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.gyms-regions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}
.gyms-regions-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.gyms-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
}
.gyms-field--grow {
  flex: 1;
}
.gyms-field label {
  font-size: 12px;
  color: var(--chalk-muted, #555);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.gyms-field select,
.gyms-field input[type="search"] {
  appearance: none;
  background: #fff;
  color: #2f2f2f;
  border: 1px solid #909090;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 16px;
  height: 44px;
}
.gyms-search-row {
  display: flex;
  gap: 8px;
}
.gyms-search-row input[type="search"] {
  flex: 1;
}
.gyms-btn {
  border: 1px solid #2f2f2f;
  background: #2f2f2f;
  color: #fff;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  font-size: 14px;
  cursor: pointer;
}
.gyms-btn:hover {
  background: #555;
  border-color: #555;
}
.gyms-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.gyms-list-item {
  padding: 12px;
  border-bottom: 1px solid var(--chalk-border, #e4e4e4);
}
.gyms-list-item:last-child {
  border-bottom: 0;
}
.gyms-name {
  font-weight: 600;
}
.gyms-sub {
  color: var(--chalk-muted, #555);
  font-size: 14px;
  margin-top: 2px;
}
.gyms-empty {
  color: var(--chalk-muted, #555);
  text-align: center;
  padding: 16px;
}
.gyms-map {
  width: 100%;
  height: 260px;
  border-radius: 2px;
  margin: 12px 0;
  background: #fff;
  border: 0;
}
.gyms-map.leaflet-container {
  background: #fff;
}
@media (min-width: 700px) {
  .gyms-map {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .gyms-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .gyms-field {
    width: 100%;
  }
  .gyms-search-row {
    width: 100%;
  }
}
.gyms-gym-title {
  margin: 0;
  text-align: center;
}
.gyms-description {
  margin: 8px 0 0;
  white-space: pre-wrap;
}
.gyms-features {
  margin-top: 8px;
}
.gyms-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #909090;
  border-radius: 2px;
  font-size: 16px;
  color: #2f2f2f;
  background: #fff;
  margin-right: 6px;
  margin-bottom: 6px;
}
.gyms-tag.active {
  background: #2f2f2f;
  color: #fff;
  border-color: #2f2f2f;
}
.gyms-details {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.gyms-details li {
  margin-bottom: 4px;
}
