.listing-page {
  background: #f5f7ef;
  color: #102414;
}

.listing-hero {
  padding: 150px 0 58px;
  background:
    linear-gradient(90deg, rgba(5,18,12,.90), rgba(5,18,12,.66)),
    url("../img/hero/hero-2.jpg") center/cover no-repeat;
  color: #fff;
}

.listing-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: #7ed957;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

.listing-hero h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #fff;
  letter-spacing: -.06em;
}

.listing-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: 1.02rem;
}

.listing-content {
  padding: 36px 0 86px;
}

.listing-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.filters-panel {
  position: sticky;
  top: 112px;
}

.filters-card {
  background: #fff;
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 16px 34px rgba(0,0,0,.07);
}

.filters-card h2 {
  margin: 0 0 18px;
  color: #0b3d2e;
  font-size: 1.35rem;
}

.filter-group {
  margin-bottom: 16px;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  color: #0b3d2e;
  font-weight: 800;
  font-size: .9rem;
}

.filter-group input,
.filter-group select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 0 14px;
  background: #fff;
  color: #17322a;
  font: inherit;
  outline: none;
}

.filter-group input:focus,
.filter-group select:focus {
  border-color: #2f7d4a;
  box-shadow: 0 0 0 4px rgba(47,125,74,.12);
}

.clear-filters-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(11,61,46,.14);
  background: #f3f7f1;
  color: #0b3d2e;
  font-weight: 900;
  cursor: pointer;
}

.results-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 22px;
}

.results-top h2 {
  margin: 0 0 6px;
  color: #0b3d2e;
  font-size: 1.8rem;
}

.results-top p {
  margin: 0;
  color: #526155;
}

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

.experience-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  transition: .25s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(0,0,0,.12);
}

.experience-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.experience-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.experience-card:hover .experience-card__image img {
  transform: scale(1.06);
}

.experience-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #7ed957;
  color: #102414;
  font-size: .78rem;
  font-weight: 900;
}

.experience-card__content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.experience-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: #526155;
  font-size: .9rem;
  font-weight: 700;
}

.experience-card__content h3 {
  margin: 0 0 10px;
  color: #0b3d2e;
  font-size: 1.25rem;
}

.experience-card__content p {
  color: #526155;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.experience-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.experience-price span {
  display: block;
  color: #77837b;
  font-size: .78rem;
  font-weight: 800;
}

.experience-price strong {
  color: #0b3d2e;
  font-size: 1.1rem;
}

.experience-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0b3d2e;
  color: #fff;
  font-weight: 900;
  font-size: .9rem;
}

.empty-state {
  background: #fff;
  border-radius: 26px;
  padding: 48px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 16px 34px rgba(0,0,0,.06);
}

.empty-state i {
  font-size: 2.2rem;
  color: #2f7d4a;
  margin-bottom: 14px;
}

.empty-state h3 {
  margin: 0 0 10px;
  color: #0b3d2e;
}

.empty-state p {
  margin: 0;
  color: #526155;
}

@media (max-width: 1180px) {
  .experiences-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .listing-layout {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: auto;
  }
}
