.tourism-core-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.tourism-core-card {
	border: 1px solid rgba(0,0,0,.12);
	border-radius: 12px;
	padding: 14px;
	background: #fff;
}

.tourism-core-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.tourism-core-card__title {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.25;
}

.tourism-core-card__meta {
	font-size: 13px;
	opacity: .8;
	margin-bottom: 8px;
}

.tourism-core-card__price {
	font-weight: 600;
}

.tourism-core-notice {
	padding: 10px 12px;
	border-radius: 10px;
	margin: 0 0 12px;
	border: 1px solid rgba(0,0,0,.12);
}

.tourism-core-notice--success {
	background: rgba(0, 200, 100, .08);
}

.tourism-core-notice--error {
	background: rgba(220, 50, 50, .08);
}

.tourism-core-booking__form button {
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,.18);
	background: #111;
	color: #fff;
	cursor: pointer;
}

