/* Guides / blog */

.guides-hero .container {
  padding-top: 7rem;
  max-width: 40rem;
}

.guides-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.guides-chip {
  appearance: none;
  border: 1px solid var(--bexo-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--bexo-muted);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.guides-chip:hover,
.guides-chip.is-active {
  border-color: rgba(47, 107, 255, 0.45);
  background: rgba(47, 107, 255, 0.12);
  color: #fff;
}

.guides-list .container {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.guides-loading,
.guides-empty {
  color: var(--bexo-muted);
  padding: 2rem 0;
}

.guide-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  padding: 1.15rem;
  border-radius: 1.25rem;
  border: 1px solid var(--bexo-border);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.guide-card:hover {
  border-color: rgba(47, 107, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.guide-card .thumb {
  aspect-ratio: 1;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--bexo-border);
}

.guide-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guide-card h3 {
  margin: 0.25rem 0;
  font-size: 1.15rem;
}

.guide-card p:not(.meta) {
  margin: 0;
  color: var(--bexo-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.guide-card .meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bexo-sky);
}

@media (max-width: 700px) {
  .guide-card {
    grid-template-columns: 1fr;
  }
}
