/* Cruise collection + by-brands pages. Cards come from single-category.css;
   this only adds the schedule "departure days" line and brand-section rhythm. */

.nct-coll .sh-depart,
.nct-brands .sh-depart {
	display: flex;
	align-items: center;
	gap: .45rem;
	margin: .1rem 0 .2rem;
	font-size: .82rem;
	font-weight: 600;
	color: var(--deep, #1e5f74);
}

.nct-coll .sh-depart svg,
.nct-brands .sh-depart svg {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.nct-coll .sh-depart span {
	line-height: 1.25;
}

/* By-brands: keep a clear gap between brand groups. */
.nct-brands .brand-sec + .brand-sec {
	padding-top: 1rem;
}

/* Schedule — departure-day filter pills. */
.dayfilter {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	justify-content: center;
	margin: 0 0 1.8rem;
}

.dayfilter button {
	border: 1px solid var(--border, #dbe7ec);
	background: var(--card, #fff);
	color: var(--deep, #1e5f74);
	padding: .5rem 1.1rem;
	border-radius: 999px;
	font: inherit;
	font-size: .86rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s, border-color .15s, color .15s;
}

.dayfilter button:hover {
	border-color: var(--primary, #1e5f74);
}

.dayfilter button.active {
	background: var(--primary, #1e5f74);
	border-color: var(--primary, #1e5f74);
	color: #fff;
}
