/* ==========================================================
   History Landmarks — .history-landmarks
   ========================================================== */

.history-landmarks {
	background: #ffffff;
	padding: 48px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.history-landmarks__heading {
	font-family: 'Gotham', sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--Brand-Colors-Text-Colors-Charcoal, #37373e);
	text-align: center;
	margin: 0;
	width: 100%;
	max-width: 1392px;
}

.history-landmarks__grid {
	width: 100%;
	max-width: 1392px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.history-landmarks__card {
	display: flex;
	flex-direction: column;
	background: var(--brand-colors-background-section-colors-off-white, #f7f7f7);
	text-decoration: none;
	color: inherit;
}

.history-landmarks__card--link {
	transition: box-shadow 0.2s ease;
}

.history-landmarks__card--link:hover,
.history-landmarks__card--link:focus-visible {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	outline: none;
}

.history-landmarks__card--link:hover .history-landmarks__card-img {
	transform: scale(1.03);
}

.history-landmarks__card-image {
	margin: 0;
	overflow: hidden;
	flex-shrink: 0;
	aspect-ratio: 16 / 9;
}

.history-landmarks__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.history-landmarks__card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1 0 0;
}

.history-landmarks__card-tags {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--Brand-Colors-Text-Colors-Warm-Grey, #888888);
	margin: 0;
}

.history-landmarks__card-title {
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--Brand-Colors-Text-Colors-Charcoal, #37373e);
	margin: 0;
}

.history-landmarks__card-text {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--Brand-Colors-Text-Colors-Charcoal, #37373e);
	margin: 0;
}

/* Responsive */

@media (min-width: 768px) {
	.history-landmarks {
		padding: 80px 24px;
	}

	.history-landmarks__heading {
		font-size: 48px;
	}

	.history-landmarks__grid {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.history-landmarks__card {
		flex: 0 0 calc(50% - 12px);
		min-width: 0;
	}
}

@media (min-width: 1024px) {
	.history-landmarks__card {
		flex: 1 0 0;
		min-width: 0;
	}
}
