.nt-featured-tours {
	padding: var(--wp--preset--spacing--2xl) var(--wp--preset--spacing--md);
}

.nt-featured-tours__heading {
	text-align: center;
	margin: 0 0 var(--wp--preset--spacing--lg);
}

.nt-featured-tours__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--wp--preset--spacing--md);
	max-width: 1280px;
	margin: 0 auto;
}

.nt-featured-tours__footer {
	text-align: center;
	margin-top: var(--wp--preset--spacing--lg);
}

.nt-tour-card {
	background: var(--wp--preset--color--white);
	border-radius: var(--wp--custom--radius--card);
	box-shadow: var(--wp--preset--shadow--card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 200ms ease, transform 200ms ease;
}

.nt-tour-card:hover,
.nt-tour-card:focus-within {
	box-shadow: var(--wp--preset--shadow--card-hover);
	transform: translateY(-2px);
}

.nt-tour-card__image-link {
	display: block;
}

.nt-tour-card__image {
	aspect-ratio: 4 / 3;
	background-color: var(--wp--preset--color--blue-400);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 0.75rem;
}

.nt-tour-card__price {
	background: var(--wp--preset--color--pink-500);
	color: var(--wp--preset--color--grey-900);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--small);
	padding: 0.35rem 0.75rem;
	border-radius: var(--wp--custom--radius--pill);
	white-space: nowrap;
}

.nt-tour-card__body {
	padding: var(--wp--preset--spacing--sm);
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1;
}

.nt-tour-card__destination {
	margin: 0;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--slate-700);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 600;
}

.nt-tour-card__title {
	margin: 0;
	font-size: var(--wp--preset--font-size--medium);
}

.nt-tour-card__title a {
	color: var(--wp--preset--color--blue-900);
	text-decoration: none;
}

.nt-tour-card__title a:hover {
	text-decoration: underline;
}

.nt-tour-card__description {
	margin: 0;
	font-size: var(--wp--preset--font-size--base);
	color: var(--wp--preset--color--grey-900);
	flex: 1;
}

.nt-tour-card__duration {
	margin: 0;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--slate-700);
}

.nt-tour-card__cta {
	margin-top: 0.5rem;
	text-align: center;
	align-self: flex-start;
}
