@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&display=swap');
:root {
	--blog-noir: #414042;
	--blog-dore: #C5BA9B;
	--blog-beige: #FDF8F3;
	--blog-white: #FFFFFF;
	--blog-grey: #716F6F;
	--blog-font-sans: "articulat-cf", 'Inter', 'Helvetica Neue', Arial, sans-serif;
	--blog-font-serif: 'Fraunces', 'Georgia', serif;
}
.blog-page {
	color: var(--blog-noir);
	font-family: var(--blog-font-sans);
	line-height: 1.6;
	overflow-x: hidden;
}
.blog-page *,
.blog-page *::before,
.blog-page *::after {
	box-sizing: border-box;
}
.blog-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
}
.blog-btn {
	display: inline-block;
	font-family: var(--blog-font-sans);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 28px;
	border: 1px solid var(--blog-dore);
	background-color: var(--blog-dore);
	color: var(--blog-white);
	transition: all 0.3s ease;
	cursor: pointer;
}
.blog-btn:hover {
	background-color: #b0a688;
	border-color: #b0a688;
	color: var(--blog-white);
}
.blog-btn--primary {
	background-color: var(--blog-dore);
	color: var(--blog-white);
}
.blog-btn--hero {
	margin-top: 20px;
}
.blog-hero {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
.blog-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.25) 100%);
	pointer-events: none;
}
.blog-hero__content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	padding: 140px 24px 80px;
}
.blog-hero__title {
	font-family: var(--blog-font-sans);
	font-size: 110px;
	font-weight: 600;
	color: var(--blog-white);
	line-height: 1.05;
	margin: 0 0 32px;
}
.blog-hero__title em {
	font-family: var(--blog-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 130px;
}
.blog-banner {
	background-color: #49494A;
	color: var(--blog-white);
	padding: 28px 40px;
	text-align: center;
	font-family: var(--blog-font-sans);
}
.blog-banner p {
	max-width: 1300px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.6;
	width: 70%;
}
.blog-focus {
	background-color: var(--blog-white);
	padding: 80px 0 60px;
}
.blog-focus__layout {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: center;
}
.blog-focus__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.blog-focus__title {
	font-family: var(--blog-font-sans);
	font-size: 45px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--blog-noir);
	margin: 0 0 20px;
}
.blog-focus__excerpt {
	font-family: var(--blog-font-sans);
	font-size: 20px;
	color: var(--blog-noir);
	line-height: 1.6;
	margin: 0 0 20px;
}
.blog-focus__date {
	font-family: var(--blog-font-sans);
	font-size: 16px;
	color: var(--blog-noir);
	margin-bottom: 24px;
	opacity: 0.5;
}
.blog-focus__image {
	display: block;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 3;
}
.blog-focus__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.blog-focus__image:hover img {
	transform: scale(1.03);
}
.blog-articles {
	background-color: var(--blog-white);
	padding: 40px 0 0px;
}
.blog-articles__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.blog-articles__grid > li {
	list-style: none;
}
.blog-card {
	display: flex;
	height: 100%;
}
.blog-card.is-hidden {
	display: none;
}
.blog-card__link {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: var(--blog-white);
	border: 1px solid var(--blog-dore);
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card__link:hover {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
.blog-card__img {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.blog-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.blog-card__link:hover .blog-card__img img {
	transform: scale(1.04);
}
.blog-card__body {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.blog-card__title {
	font-family: var(--blog-font-sans);
	font-size: 25px;
	font-weight: 700;
	color: var(--blog-noir);
	line-height: 1.3;
	margin: 0 0 12px;
}
.blog-card__excerpt {
	font-family: var(--blog-font-sans);
	font-size: 15px;
	color: var(--blog-noir);
	line-height: 1.55;
	margin: 0 0 20px;
	flex: 1;
}
.blog-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}
.blog-card__date {
	font-family: var(--blog-font-sans);
	font-size: 14px;
	color: var(--blog-noir);
	opacity: 0.5;
}
.blog-card__more {
	font-family: var(--blog-font-sans);
	font-size: 18px;
	font-weight: 500;
	color: var(--blog-dore);
	white-space: nowrap;
	transition: color 0.3s ease;
}
.blog-card__link:hover .blog-card__more {
	color: var(--blog-noir);
}
.blog-articles__more {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}
.blog-articles__empty {
	text-align: center;
	font-family: var(--blog-font-sans);
	color: var(--blog-noir);
	padding: 60px 0;
}

@media screen and (max-width: 1079px) {
	.blog-hero {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 30px;
		height: fit-content;
		min-height: fit-content;
		max-height: none;
	}
	.blog-hero__content {
		padding: 120px 20px 90px;
	}
	.blog-hero__title, .blog-hero__title em {
		font-size: 3.2rem;
	}
	.blog-focus__title {
		font-size: 2rem;
	}
	.blog-articles__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.blog-focus__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.blog-focus__image {
		order: -1;
		aspect-ratio: inherit;
	}
	.blog-focus__image img {
		height: 400px;
	}
	.blog-articles {
		padding: 0;
	}
}

@media screen and (max-width: 768px) {
	.blog-container {
		padding: 0 24px;
	}
	.blog-hero__title, .blog-hero__title em {
		font-size: 2.4rem;
	}
	.blog-banner {
		padding: 24px;
	}
	.blog-banner p br {
		display: none;
	}
	.blog-focus,
	.blog-articles {
		padding: 40px 0px 0px 0px;
	}
	.blog-articles__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media screen and (max-width: 550px) {
	.blog-hero__title, .blog-hero__title em {
		font-size: 2rem;
		padding: 0 16px;
	}
	.blog-banner p {
		font-size: 20px;
		width: 100%;
	}
	.blog-focus__title {
		font-size: 1.6rem;
	}
}
