.route-guides-hub-page {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 45%);
}

.route-guides-hub-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: #6c757d;
  font-size: 15px;
}

.route-guides-hub-breadcrumb a {
  color: #1c61ad;
}

.route-guides-hub-hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.route-guides-hub-subtitle {
  color: #5f6b7a;
  max-width: 820px;
}

.route-guides-hub-nav-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.route-guides-hub-nav-card {
  display: block;
  background: #fff;
  border: 1px solid #dbe8fb;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(12, 45, 97, 0.08);
}

.route-guides-hub-nav-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #123f77;
}

.route-guides-hub-nav-card p {
  color: #6c757d;
}

.route-guides-hub-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.route-guides-hub-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.route-guides-hub-filter-pill {
  border: 1px solid #d8e6fb;
  border-radius: 999px;
  background: #fff;
  color: #2d3b4f;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.route-guides-hub-filter-pill.active {
  background: #1c61ad;
  color: #fff;
  border-color: #1c61ad;
}

.route-guides-hub-toolbar input {
  width: min(440px, 100%);
  border: 1px solid #d7e3f5;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
}

.route-guides-hub-count {
  color: #6c757d;
  margin-bottom: 14px;
}

.route-guides-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-guides-hub-card {
  border: 1px solid #e6edf8;
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(12, 45, 97, 0.08);
}

.route-guides-hub-image {
  height: 130px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
}

.route-guides-hub-chip {
  display: inline-block;
  margin-bottom: 8px;
  background: #eaf3ff;
  color: #1c61ad;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
}

.route-guides-hub-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.route-guides-hub-card p {
  color: #6c757d;
  margin-bottom: 8px;
}

.route-guides-hub-card a {
  color: #1c61ad;
  font-weight: 600;
}

@media (max-width: 1000px) {
  .route-guides-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .route-guides-hub-nav-cards {
    grid-template-columns: 1fr;
  }

  .route-guides-hub-toolbar {
    flex-direction: column;
  }

  .route-guides-hub-grid {
    grid-template-columns: 1fr;
  }
}
