/**
 * Health Packages — archive (PHC Listing). Depends on components.css.
 */

/* Hero -------------------------------------------------------------- */
.ne-phc-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 460px;
	background: linear-gradient(120deg, var(--ne-primary-500), var(--ne-primary-400));
	background-size: cover;
	background-position: center;
	color: var(--ne-neutral-100);
}
.ne-phc-hero.has-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(14, 7, 57, 0.94) 0%, rgba(14, 7, 57, 0.82) 55%, rgba(14, 7, 57, 0.6) 100%);
}
/* Full width so the container's own gutters apply and the copy sits at the
   left edge (flex items otherwise shrink to content and margin-auto centres). */
.ne-phc-hero__inner { position: relative; width: 100%; }
.ne-phc-hero__title {
	max-width: 12ch;
	margin: 0 0 var(--ne-space-m);
	color: var(--ne-neutral-100);
	font-size: var(--ne-h1-size);
	line-height: 1.08;
}
.ne-phc-hero__sub {
	max-width: 52ch;
	margin: 0;
	color: var(--ne-neutral-200);
	font-size: var(--ne-b1-size);
	line-height: var(--ne-b1-line);
}

/* Filter chips ------------------------------------------------------ */
.ne-chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--ne-space-s);
	margin-bottom: var(--ne-space-3xl);
}
.ne-chip {
	display: inline-flex;
	align-items: center;
	padding: 9px var(--ne-space-l);
	border-radius: 999px;
	border: 1.5px solid var(--ne-neutral-300);
	background: var(--ne-neutral-100);
	color: var(--ne-neutral-900);
	font-size: var(--ne-b2-size);
	font-weight: 600;
	text-decoration: none;
	transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.ne-chip:hover { border-color: var(--ne-secondary-300); color: var(--ne-secondary-400); }
.ne-chip.is-active {
	background: var(--ne-secondary-a10);
	border-color: var(--ne-secondary-300);
	color: var(--ne-secondary-400);
}

.ne-phc-empty { color: var(--ne-neutral-700); }

/* Package card (shared with single "More Packages" — kept in sync there) */
.ne-pkgcard { border-radius: 16px; }
.ne-pkgcard__body { gap: var(--ne-space-s); padding: var(--ne-space-xl); }
.ne-pkgcard__badge {
	align-self: flex-start;
	background: var(--ne-tertiary-a10);
	color: var(--ne-tertiary-500);
}
.ne-pkgcard__badge--booked { background: var(--ne-red-200); color: var(--ne-neutral-100); }
.ne-pkgcard__title {
	margin: 0;
	font-size: var(--ne-h6-size);
	line-height: 1.25;
	font-weight: 700;
}
.ne-pkgcard__title a { color: var(--ne-primary-500); text-decoration: none; }
.ne-pkgcard__title a:hover { color: var(--ne-primary-400); }
.ne-pkgcard__price { display: flex; align-items: baseline; gap: var(--ne-space-xs); margin: 0; }
.ne-pkgcard__amount { font-size: var(--ne-h4-size); line-height: 1; font-weight: 700; color: var(--ne-tertiary-500); }
.ne-pkgcard__mrp { color: var(--ne-neutral-500); text-decoration: line-through; font-size: var(--ne-b1-size); }
.ne-pkgcard__rule { width: 100%; height: 1px; border: 0; background: var(--ne-neutral-200); margin: var(--ne-space-2xs) 0; }
.ne-pkgcard__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--ne-space-xs); }
.ne-pkgcard__list li {
	position: relative;
	padding-left: var(--ne-space-xl);
	font-size: var(--ne-b2-size);
	color: var(--ne-neutral-900);
}
.ne-pkgcard__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--ne-green-200);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/%3E%3C/svg%3E") center / 11px no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/%3E%3C/svg%3E") center / 11px no-repeat;
	background-color: var(--ne-green-200);
}
.ne-pkgcard__cta {
	margin-top: var(--ne-space-xs);
	display: inline-flex;
	align-items: center;
	gap: var(--ne-space-2xs);
	color: var(--ne-secondary-400);
	font-weight: 700;
	font-size: var(--ne-b2-size);
	text-decoration: none;
}
.ne-pkgcard__cta .ne-icon { width: 16px; height: 16px; transition: transform .18s ease; }
.ne-pkgcard__cta:hover { color: var(--ne-secondary-500); }
.ne-pkgcard__cta:hover .ne-icon { transform: translateX(3px); }

@media (max-width: 1024px) {
	.ne-phc-hero { min-height: 380px; }
}
@media (max-width: 640px) {
	.ne-phc-hero { min-height: 320px; }
	.ne-pkgcard__amount { font-size: var(--ne-h6-size); }
}
