.home-band--recommendations {
  position: relative;
}

.home-band--recommendations::before {
  background: radial-gradient(ellipse 55% 70% at 12% 20%, rgba(255, 159, 26, 0.12), transparent 60%);
}

.page-banner--recommendations {
  border-color: rgba(255, 159, 26, 0.28);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 159, 26, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 60% at 0% 100%, rgba(184, 255, 46, 0.07), transparent 50%),
    var(--bg-elevated);
}

.page-banner--recommendations .page-banner__eyebrow {
  color: #ffb347;
}

.recommend-filters {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 159, 26, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.recommend-filters__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.recommend-filters__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffb347;
}

.recommend-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recommend-filter {
  appearance: none;
  margin: 0;
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 13, 0.55);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.recommend-filter:hover {
  border-color: rgba(255, 159, 26, 0.4);
  color: var(--text);
}

.recommend-filter.is-active {
  border-color: rgba(255, 159, 26, 0.55);
  background: rgba(255, 159, 26, 0.16);
  color: #ffd7a1;
}

.recommend-filters__hint {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.recommend-card {
  margin-top: 0;
  padding: 28px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 159, 26, 0.22);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 159, 26, 0.1), transparent 42%),
    radial-gradient(circle at 92% 18%, rgba(184, 255, 46, 0.06), transparent 40%),
    var(--bg-elevated);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.recommend-card[hidden] {
  display: none;
}

.recommend-empty {
  margin: 18px 0 0;
  padding: 22px 18px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 159, 26, 0.28);
  color: var(--text-muted);
  text-align: center;
}

.recommend-card__head {
  margin-bottom: 18px;
}

.recommend-card__eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb347;
}

.recommend-card__title {
  margin: 0 0 12px;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}

.recommend-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommend-card__tag {
  appearance: none;
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 159, 26, 0.35);
  background: rgba(255, 159, 26, 0.12);
  color: #ffd7a1;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.recommend-card__tag:hover {
  border-color: rgba(255, 159, 26, 0.55);
  background: rgba(255, 159, 26, 0.2);
}

.recommend-card__body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.recommend-card__body > *:first-child {
  margin-top: 0;
}

.recommend-card__body > *:last-child {
  margin-bottom: 0;
}

.recommend-card__body p {
  margin: 0 0 14px;
}

.recommend-card__subtitle {
  margin: 22px 0 10px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.recommend-card__body ul {
  margin: 0 0 14px;
  padding-left: 1.15em;
}

.recommend-card__body li {
  margin-bottom: 6px;
}

.recommend-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 720px) {
  .recommend-card {
    padding: 22px 18px;
  }

  .recommend-card__foot {
    flex-direction: column;
  }

  .recommend-card__foot .btn {
    width: 100%;
    justify-content: center;
  }
}
