/* ==========================================================================
   TripCard — grid + list variants, 3D tilt on hover
   ========================================================================== */
.hp-tc { height: 100%; perspective: 900px; font-family: var(--hp-font-ui); }
.hp-tc__card {
  position: relative; display: flex; flex-wrap: wrap; background: #fff; border-radius: 16px;
  border: 1px solid var(--hp-line-12); overflow: hidden; transform-style: preserve-3d; height: 100%;
  transition: transform .45s cubic-bezier(.2, .7, .2, 1), box-shadow .45s cubic-bezier(.2, .7, .2, 1);
  box-shadow: 0 1px 0 rgba(14, 27, 36, .04), 0 18px 40px -30px rgba(14, 27, 36, .5);
}
.hp-tc__imglink { position: relative; display: block; overflow: hidden; background: #DDE5E8; flex: 1 1 100%; min-height: 220px; }
.hp-tc__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2, .7, .2, 1); }
.hp-tc__card:hover .hp-tc__img { transform: scale(1.06); }
.hp-tc__grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 19, 27, .35) 0%, transparent 38%, transparent 60%, rgba(7, 19, 27, .55) 100%); }
.hp-tc__chips { position: absolute; left: 12px; top: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.hp-tc__badge { background: var(--hp-saffron); color: var(--hp-ink); font-size: 11.5px; font-weight: 700; padding: 6px 10px; border-radius: 999px; }
.hp-tc__dur { background: rgba(255, 255, 255, .94); color: var(--hp-ink); font-size: 11.5px; font-weight: 600; padding: 6px 10px; border-radius: 999px; }
.hp-tc__stops { position: absolute; left: 14px; right: 14px; bottom: 12px; color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: .02em; text-shadow: 0 1px 3px rgba(0, 0, 0, .5); }
.hp-tc__wish { position: absolute; right: 0; top: 0; margin: 12px; z-index: 3; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .94); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px -4px rgba(0, 0, 0, .35); cursor: pointer; }
.hp-tc__wish .hp-icon { width: 18px; height: 18px; color: var(--hp-ink); }
.hp-tc__wish.is-on .hp-icon { color: var(--hp-pink); }
.hp-tc__body { flex: 1 1 100%; min-width: 0; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.hp-tc__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--hp-saffron-ink-2); }
.hp-tc__title { font-family: var(--hp-font-display); font-size: 23px; font-weight: 700; line-height: 1.08; letter-spacing: -.015em; color: var(--hp-ink); text-decoration: none; }
.hp-tc__title:hover { color: var(--hp-saffron-ink-2); text-decoration: none; }
.hp-tc__tagline { font-size: 14px; line-height: 1.5; color: var(--hp-text-2); }
.hp-tc__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hp-tc__tag { font-size: 12px; color: var(--hp-text-2); background: #EEF2F3; padding: 5px 9px; border-radius: 7px; }
.hp-tc__foot { margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--hp-line-16); display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.hp-tc__plabel { font-size: 12px; color: var(--hp-muted); }
.hp-tc__pmain { display: flex; align-items: baseline; gap: 6px; }
.hp-tc__pnum { font-family: var(--hp-font-display); font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
.hp-tc__punit { font-size: 12.5px; color: var(--hp-muted); }
.hp-tc__psub { font-size: 12.5px; font-weight: 600; }
.hp-tc__cta { background: var(--hp-ink); color: #fff; font-weight: 700; font-size: 14px; padding: 12px 16px; border-radius: 10px; white-space: nowrap; text-decoration: none; transition: background var(--hp-t), color var(--hp-t); min-height: 44px; display: inline-flex; align-items: center; }
.hp-tc__cta:hover { background: var(--hp-saffron); color: var(--hp-ink); text-decoration: none; }

/* List variant */
.hp-tc--list .hp-tc__imglink { flex: 1 1 300px; min-height: 240px; }
.hp-tc--list .hp-tc__body { flex: 1 1 320px; }

@media (prefers-reduced-motion: reduce) { .hp-tc__card, .hp-tc__img { transition: none !important; } }
