/* =========================================================
   HOME BLOG SECTION
========================================================= */

.alston-home-blog {
	width: 100%;
	padding: 130px 0;
	background: #FFFFFF;
	overflow: hidden;
}

.alston-home-blog * {
	box-sizing: border-box;
}

.alston-home-blog__inner {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 64px;
	padding-right: 64px;
}

/* =========================================================
   HEADER
========================================================= */

.alston-home-blog__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 80px;
	align-items: end;
	margin-bottom: 72px;
}

.alston-home-blog__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #555555;
	font-size: 11px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.alston-home-blog__eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: #C9A961;
}

.alston-home-blog__title {
	margin: 0;
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 78px;
	line-height: 78px;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.alston-home-blog__title em {
	font-style: italic;
	color: #C9A961;
}

.alston-home-blog__description {
	margin: 0;
	color: #555555;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
}

/* =========================================================
   GRID
========================================================= */

.alston-home-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

/* =========================================================
   CARD
========================================================= */

.alston-home-blog-card {
	width: 100%;
	transition: transform 0.4s ease;
}

.alston-home-blog-card:hover {
	transform: translateY(-6px);
}

.alston-home-blog-card__image-wrap {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #F4F4F4;
	text-decoration: none;
}

.alston-home-blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1);
	transition:
		transform 1s cubic-bezier(0.16, 1, 0.3, 1),
		filter 0.6s ease;
}

.alston-home-blog-card:hover .alston-home-blog-card__image {
	transform: scale(1.05);
}

.alston-home-blog-card__placeholder {
	width: 100%;
	height: 100%;
	background: #F4F4F4;
}

.alston-home-blog-card__date {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 10px 14px;
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #1A1A1A;
	font-size: 11px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.alston-home-blog-card__content {
	padding-top: 28px;
}

.alston-home-blog-card__category {
	margin-bottom: 14px;
	color: #C9A961;
	font-size: 11px;
	line-height: 16px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.alston-home-blog-card__title {
	margin: 0;
}

.alston-home-blog-card__title a {
	color: #1A1A1A;
	text-decoration: none;
	font-family: "Cormorant Garamond", serif;
	font-size: 34px;
	line-height: 38px;
	font-weight: 500;
	letter-spacing: -0.015em;
	transition: color 0.35s ease;
}

.alston-home-blog-card:hover .alston-home-blog-card__title a {
	color: #C9A961;
}

.alston-home-blog-card__excerpt {
	margin-top: 16px;
	color: #555555;
	font-size: 15px;
	line-height: 27px;
	font-weight: 400;
}

/* =========================================================
   BOTTOM BUTTON
========================================================= */

.alston-home-blog__bottom {
	display: flex;
	justify-content: center;
	margin-top: 72px;
}

.alston-home-blog__button {
	color: #1A1A1A;
	border: 1px solid rgba(0, 0, 0, 0.18);
	padding: 16px 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	white-space: nowrap;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background: transparent;
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		color 0.35s ease;
}

.alston-home-blog__button:hover {
	background: #0A0A0A;
	border-color: #0A0A0A;
	color: #FFFFFF;
}

/* =========================================================
   ENTRANCE ANIMATION
========================================================= */

.alston-home-blog-reveal {
	opacity: 0;
	transform: translateY(42px);
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.alston-home-blog-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.alston-home-blog__grid .alston-home-blog-reveal:nth-child(1) {
	transition-delay: 0.05s;
}

.alston-home-blog__grid .alston-home-blog-reveal:nth-child(2) {
	transition-delay: 0.12s;
}

.alston-home-blog__grid .alston-home-blog-reveal:nth-child(3) {
	transition-delay: 0.18s;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (min-width: 1025px) and (max-width: 1366px) {

	.alston-home-blog {
		padding: 110px 0 0;
	}

	.alston-home-blog__inner {
		padding-left: 40px;
		padding-right: 40px;
	}

	.alston-home-blog__header {
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: 60px;
	}

	.alston-home-blog__title {
		font-size: 66px;
		line-height: 66px;
	}

	.alston-home-blog-card__title a {
		font-size: 30px;
		line-height: 34px;
	}
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

	.alston-home-blog {
		padding: 100px 0;
	}

	.alston-home-blog__inner {
		padding-left: 28px;
		padding-right: 28px;
	}

	.alston-home-blog__header {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 56px;
	}

	.alston-home-blog__title {
		font-size: 56px;
		line-height: 58px;
	}

	.alston-home-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	.alston-home-blog-card__title a {
		font-size: 28px;
		line-height: 32px;
	}

	.alston-home-blog__bottom {
		margin-top: 56px;
	}
}

/* =========================================================
   MOBILE LARGE
========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

	.alston-home-blog {
		padding: 82px 0;
	}

	.alston-home-blog__inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.alston-home-blog__header {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-bottom: 42px;
	}

	.alston-home-blog__title {
		font-size: 42px;
		line-height: 44px;
	}

	.alston-home-blog__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.alston-home-blog-card__title a {
		font-size: 30px;
		line-height: 34px;
	}

	.alston-home-blog-card__excerpt {
		font-size: 14px;
		line-height: 25px;
	}

	.alston-home-blog__bottom {
		margin-top: 48px;
	}
}

/* =========================================================
   MOBILE SMALL
========================================================= */

@media (min-width: 0px) and (max-width: 480px) {

	.alston-home-blog {
		padding: 72px 0;
	}

	.alston-home-blog__inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.alston-home-blog__header {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 38px;
	}

	.alston-home-blog__eyebrow {
		margin-bottom: 18px;
		letter-spacing: 0.22em;
	}

	.alston-home-blog__title {
		font-size: 38px;
		line-height: 40px;
	}

	.alston-home-blog__description {
		font-size: 14px;
		line-height: 25px;
	}

	.alston-home-blog__grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.alston-home-blog-card__content {
		padding-top: 22px;
	}

	.alston-home-blog-card__title a {
		font-size: 28px;
		line-height: 32px;
	}

	.alston-home-blog-card__excerpt {
		margin-top: 14px;
		font-size: 14px;
		line-height: 24px;
	}

	.alston-home-blog__bottom {
		margin-top: 42px;
	}

	.alston-home-blog__button {
		width: 100%;
		padding: 16px 24px;
	}
}