.hv-trips {
  --hv-accent: #b71952;
  --hv-accent-dark: #8f103e;
  --hv-ink: #17171a;
  --hv-muted: #68686f;
  --hv-line: #e7e3e0;
  --hv-wash: #f7f4f2;
  --hv-white: #fff;
  color: var(--hv-ink);
  font-family: inherit;
  margin: 2rem auto 0;
  max-width: 1240px;
}

.hv-trips *,
.hv-trips *::before,
.hv-trips *::after {
  box-sizing: border-box;
}

.hv-trips__lead {
  margin: 0 auto 2rem;
  max-width: 760px;
  text-align: center;
}

.hv-trips__eyebrow,
.hv-trip-card__continent {
  color: var(--hv-accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin: 0 0 .55rem;
  text-transform: uppercase;
}

.hv-trips__lead h2,
.hv-trips__faq h2 {
  color: var(--hv-ink);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0 0 .8rem;
}

.hv-trips__lead > p:last-child {
  color: var(--hv-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.hv-trips__filters {
  align-items: end;
  background: var(--hv-wash);
  border: 1px solid var(--hv-line);
  border-radius: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(210px, 1.6fr) repeat(3, minmax(145px, 1fr)) auto;
  margin: 0 0 1rem;
  padding: 18px;
}

.hv-filter label {
  color: var(--hv-ink);
  display: block;
  font-size: .78rem;
  font-weight: 750;
  margin: 0 0 6px;
}

.hv-filter input,
.hv-filter select {
  appearance: none;
  background-color: var(--hv-white);
  border: 1px solid #d8d2ce;
  border-radius: 9px;
  color: var(--hv-ink);
  font: inherit;
  font-size: .92rem;
  height: 46px;
  margin: 0;
  min-width: 0;
  padding: 0 13px;
  width: 100%;
}

.hv-filter select {
  background-image: linear-gradient(45deg, transparent 50%, #68686f 50%), linear-gradient(135deg, #68686f 50%, transparent 50%);
  background-position: calc(100% - 17px) 19px, calc(100% - 12px) 19px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 32px;
}

.hv-filter input:focus,
.hv-filter select:focus {
  border-color: var(--hv-accent);
  box-shadow: 0 0 0 3px rgba(183, 25, 82, .12);
  outline: 0;
}

.hv-trips__reset {
  background: transparent;
  border: 0;
  color: var(--hv-accent-dark);
  cursor: pointer;
  font: inherit;
  font-size: .82rem;
  font-weight: 750;
  height: 46px;
  padding: 0 5px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hv-trips__resultsbar {
  align-items: center;
  color: var(--hv-muted);
  display: flex;
  font-size: .82rem;
  gap: 15px;
  justify-content: space-between;
  margin: 0 1px 1.15rem;
}

.hv-trips__resultsbar strong {
  color: var(--hv-ink);
}

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

.hv-trip-card {
  background: var(--hv-white);
  border: 1px solid var(--hv-line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(30, 24, 21, .06);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.hv-trip-card:hover {
  box-shadow: 0 18px 44px rgba(30, 24, 21, .12);
  transform: translateY(-3px);
}

.hv-trip-card[hidden] {
  display: none !important;
}

.hv-trip-card__image {
  aspect-ratio: 16 / 10;
  background: #ddd4cf;
  display: block;
  overflow: hidden;
  position: relative;
}

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

.hv-trip-card:hover .hv-trip-card__image img {
  transform: scale(1.035);
}

.hv-trip-card__placeholder {
  align-items: center;
  background: linear-gradient(135deg, #b71952, #6f1032);
  color: #fff;
  display: flex;
  font-size: 1.15rem;
  font-weight: 850;
  height: 100%;
  justify-content: center;
  letter-spacing: .15em;
}

.hv-trip-card__badge,
.hv-trip-card__featured {
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .14);
  color: #fff;
  font-size: .68rem;
  font-weight: 850;
  left: 12px;
  letter-spacing: .035em;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 12px;
}

.hv-trip-card__featured {
  background: var(--hv-white);
  color: var(--hv-ink);
  left: auto;
  right: 12px;
}

.hv-trip-card__badge--open,
.hv-trip-card__badge--new { background: #256b58; }
.hv-trip-card__badge--guaranteed { background: #117647; }
.hv-trip-card__badge--last_places { background: #b85a08; }
.hv-trip-card__badge--waitlist,
.hv-trip-card__badge--soon { background: #4e5360; }
.hv-trip-card__badge--sold_out { background: #8c2020; }

.hv-trip-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.hv-trip-card h3 {
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  letter-spacing: -.025em;
  line-height: 1.25;
  margin: 0 0 13px;
}

.hv-trip-card h3 a {
  color: var(--hv-ink);
  text-decoration: none;
}

.hv-trip-card h3 a:hover {
  color: var(--hv-accent);
}

.hv-trip-card__meta {
  border-bottom: 1px solid var(--hv-line);
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-bottom: 13px;
  padding-bottom: 13px;
}

.hv-trip-card__meta span {
  align-items: center;
  color: #4f4f56;
  display: inline-flex;
  font-size: .78rem;
  gap: 5px;
}

.hv-trip-card__meta b {
  color: var(--hv-accent);
  font-size: .9rem;
}

.hv-trip-card__excerpt {
  color: var(--hv-muted);
  font-size: .88rem;
  line-height: 1.62;
  margin: 0 0 18px;
}

.hv-trip-card__footer {
  align-items: end;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: auto;
}

.hv-trip-card__price span {
  color: var(--hv-muted);
  display: block;
  font-size: .67rem;
  font-weight: 700;
  margin-bottom: 1px;
  text-transform: uppercase;
}

.hv-trip-card__price strong {
  color: var(--hv-ink);
  display: block;
  font-size: .92rem;
  line-height: 1.25;
}

.hv-trip-card__button {
  background: var(--hv-accent);
  border-radius: 8px;
  color: #fff !important;
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 800;
  padding: 10px 12px;
  text-decoration: none !important;
}

.hv-trip-card__button:hover {
  background: var(--hv-accent-dark);
  color: #fff;
}

.hv-trips__no-results,
.hv-trips__empty-admin {
  background: var(--hv-wash);
  border: 1px solid var(--hv-line);
  border-radius: 14px;
  color: var(--hv-muted);
  margin: 1rem 0;
  padding: 24px;
  text-align: center;
}

.hv-trips__empty-admin strong {
  color: var(--hv-ink);
  font-size: 1.1rem;
}

.hv-trips__empty-admin p {
  margin: .45rem 0 0;
}

.hv-trips__benefits {
  background: var(--hv-ink);
  border-radius: 18px;
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 3.5rem 0;
  overflow: hidden;
}

.hv-trips__benefits > div {
  background: rgba(255, 255, 255, .045);
  padding: 25px 22px;
}

.hv-trips__benefits strong {
  color: #fff;
  display: block;
  font-size: 1rem;
  margin: 0 0 7px;
}

.hv-trips__benefits span {
  color: rgba(255, 255, 255, .72);
  display: block;
  font-size: .82rem;
  line-height: 1.55;
}

.hv-trips__faq {
  margin: 0 auto;
  max-width: 860px;
}

.hv-trips__faq h2 {
  margin-bottom: 1.25rem;
  text-align: center;
}

.hv-trips__faq details {
  border-bottom: 1px solid var(--hv-line);
  padding: 0;
}

.hv-trips__faq summary {
  color: var(--hv-ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
  padding: 17px 38px 17px 0;
  position: relative;
}

.hv-trips__faq summary::-webkit-details-marker { display: none; }

.hv-trips__faq summary::after {
  color: var(--hv-accent);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  right: 7px;
  top: 14px;
}

.hv-trips__faq details[open] summary::after { content: "–"; }

.hv-trips__faq details p {
  color: var(--hv-muted);
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
  padding: 0 38px 18px 0;
}

@media (max-width: 1050px) {
  .hv-trips__filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hv-trips__reset { justify-self: start; }
  .hv-trips__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hv-trips__benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .hv-trips { margin-top: 1.3rem; }
  .hv-trips__lead { margin-bottom: 1.4rem; }
  .hv-trips__filters { grid-template-columns: 1fr; padding: 14px; }
  .hv-trips__resultsbar { align-items: flex-start; flex-direction: column; gap: 4px; }
  .hv-trips__grid { grid-template-columns: 1fr; }
  .hv-trip-card__body { padding: 17px; }
  .hv-trip-card__footer { align-items: stretch; flex-direction: column; }
  .hv-trip-card__button { text-align: center; }
  .hv-trips__benefits { grid-template-columns: 1fr; margin: 2.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hv-trip-card,
  .hv-trip-card__image img { transition: none; }
}

