/* Guides listing page — matches home Expert Guides theme */

.guides-listing-wrapper {
  background: #f7fafc;
}

.guides-listing-hero {
  padding: 56px 0 28px;
  background: linear-gradient(180deg, #eaf8f7 0%, #f7fafc 100%);
  border-bottom: 1px solid rgba(0, 27, 68, 0.04);
}

.guides-listing-hero .highlights {
  color: var(--brand-teal, #00afa9);
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: inline-block;
  margin-bottom: 10px;
}

.guides-listing-title {
  font-size: 34px;
  font-weight: 800;
  color: #001b44;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.guides-listing-subtitle {
  max-width: 560px;
  margin: 0 auto;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.guides-listing-section {
  padding-top: 40px;
  padding-bottom: 80px;
  min-height: 60vh;
}

.guides-listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.guides-listing-count {
  font-size: 18px;
  font-weight: 800;
  color: #001b44;
  margin: 0;
}

.guides-type-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.guides-type-chip {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.guides-type-chip:hover {
  border-color: var(--brand-teal, #00afa9);
  color: var(--brand-teal, #00afa9);
}

.guides-type-chip.active {
  background: var(--brand-teal, #00afa9);
  border-color: var(--brand-teal, #00afa9);
  color: #ffffff;
}

.guides-listing-section .guide-profile-card {
  margin-bottom: 0;
}

.guide-type-meta {
  margin-bottom: 4px !important;
}

.guides-empty-state {
  text-align: center;
  padding: 64px 24px;
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 20px;
  color: #64748b;
}

.guides-empty-state i {
  font-size: 48px;
  color: var(--brand-teal, #00afa9);
  display: block;
  margin-bottom: 12px;
}

.guides-empty-state h4 {
  color: #001b44;
  font-weight: 800;
  margin-bottom: 6px;
}

.guides-empty-state p {
  margin: 0;
  font-size: 14.5px;
}

@media (max-width: 767.98px) {
  .guides-listing-title {
    font-size: 26px;
  }

  .guides-listing-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

[data-theme="dark"] .guides-listing-wrapper {
  background: #0b1329;
}

[data-theme="dark"] .guides-listing-hero {
  background: linear-gradient(180deg, #15202b 0%, #0b1329 100%);
}

[data-theme="dark"] .guides-listing-title,
[data-theme="dark"] .guides-listing-count,
[data-theme="dark"] .guides-empty-state h4 {
  color: #ffffff;
}

[data-theme="dark"] .guides-type-chip {
  background: #15202b;
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

[data-theme="dark"] .guides-empty-state {
  background: #15202b;
  border-color: rgba(255, 255, 255, 0.1);
}
