.af5-browse-vibe {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.af5-browse-vibe__header {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.af5-browse-vibe__header h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.af5-browse-vibe__header p {
  margin: 0;
  font-size: 18px;
  opacity: 0.7;
}

.af5-vibe-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 45px;
}

.af5-vibe-filter a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid #ddd;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.af5-vibe-filter a:hover,
.af5-vibe-filter a.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.af5-venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.af5-venue-card {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.af5-venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.af5-venue-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
}

.af5-venue-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.af5-venue-card__content {
  padding: 22px;
}

.af5-venue-card__title {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
}

.af5-venue-card__title a {
  color: inherit;
  text-decoration: none;
}

.af5-venue-card__vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.af5-vibe {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f2f2;
  font-size: 12px;
  font-weight: 600;
}

.af5-no-results {
  padding: 40px;
  text-align: center;
  border: 1px dashed #ccc;
  border-radius: 12px;
}

.af5-venue-card__location {
  margin-bottom: 14px;
  font-size: 14px;
  opacity: 0.65;
}

.af5-venue-card__content {
  display: flex;
  flex-direction: column;
}

.af5-venue-card__vibes {
  margin-bottom: 14px;
}

.af5-venue-card__title {
  margin-bottom: 10px;
}

.af5-venue-card__location {
  margin-bottom: 18px;
}

.af5-venue-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.af5-venue-card__link:hover {
  opacity: 0.85;
}

@media (max-width: 700px) {
  .af5-browse-vibe {
    padding: 40px 16px;
  }

  .af5-venue-grid {
    grid-template-columns: 1fr;
  }

  .af5-vibe-filter {
    margin-bottom: 30px;
  }

  .af5-vibe-filter a {
    padding: 10px 16px;
  }
}
