/* Static catalog hub + state pages (used with /style.css) */

.catalog-breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.catalog-breadcrumb a { color: #0a8f5a; text-decoration: none; }
.catalog-breadcrumb a:hover { text-decoration: underline; }

.catalog-state-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px 20px;
}
.catalog-state-grid li { margin: 0; }
.catalog-state-grid a {
  display: block;
  padding: 10px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.catalog-state-grid a:hover {
  border-color: #0a8f5a;
  background: #f0faf5;
  color: #0a8f5a;
}
.catalog-state-grid .count {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-top: 4px;
}

.catalog-country-section {
  margin-top: 36px;
}
.catalog-country-section:first-of-type {
  margin-top: 16px;
}
.catalog-country-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e8f5ef;
}

.filter-bar {
  max-width: 500px;
  margin: 0 auto 24px;
  position: relative;
}
.filter-bar input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.filter-bar input:focus { border-color: #0a8f5a; }
.filter-bar .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  pointer-events: none;
}
.filter-status {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 8px;
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.course-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.course-list li:last-child { border-bottom: none; }
.course-list li.hidden { display: none; }
.course-list a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.course-list a:hover { color: #0a8f5a; }
.course-city {
  font-size: 13px;
  color: #888;
  white-space: nowrap;
}
.course-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.course-badge.mapped {
  background: #e6f9f0;
  color: #0a8f5a;
}
.course-badge.unmapped {
  background: #f5f5f5;
  color: #999;
}
