.athome-blog {
	--editorial-brand: #20a5dd;
	--editorial-heading: #2d3a56;
	--editorial-border: #d5d8dc;
	--editorial-bg: #eef1f3;
	--editorial-radius: 6px;
	float: none !important;
	width: 100% !important;
	padding: 0 !important;
	background: var(--editorial-bg);
}

body.athome-blog-page :where(.supreme_wrapper, .off-canvas-wrap, .inner-wrap, #container, #main, #main > .wrap.row) {
	height: auto !important;
	min-height: 0 !important;
	overflow: visible !important;
}

body.athome-blog-page section#main,
body.athome-blog-page #main > .wrap.row {
	width: 100% !important;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	background: var(--editorial-bg);
}

.athome-blog__container {
	box-sizing: border-box;
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
}

.athome-blog__breadcrumb {
	padding: 15px 0;
	border-bottom: 1px solid var(--editorial-border);
	background: #ffffff;
}

.athome-blog__breadcrumb .athome-blog__container {
	display: flex;
	gap: 9px;
	align-items: center;
}

.athome-blog__header {
	padding: 56px 0 48px;
	background: #ffffff;
}

.athome-blog__header p {
	margin: 0 0 14px;
	color: #147ea9;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.athome-blog__header h1 {
	max-width: 860px;
	margin: 0 0 16px;
	color: var(--editorial-heading);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.08;
}

.athome-blog__header span {
	display: block;
	max-width: 760px;
	font-size: 18px;
	line-height: 1.65;
}

.athome-blog__main {
	padding: 42px 0 56px;
	background: var(--editorial-bg);
}

.athome-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.athome-blog-card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid var(--editorial-border);
	border-radius: var(--editorial-radius);
	background: #ffffff;
	box-shadow: 0 8px 22px rgb(45 58 86 / 6%);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.athome-blog-card:hover,
.athome-blog-card:focus-within {
	border-color: var(--editorial-brand);
	box-shadow: 0 14px 32px rgb(45 58 86 / 12%);
}

.athome-blog-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #dfe6ea;
}

.athome-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.athome-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.athome-blog-card time {
	color: #7a7a7a;
	font-size: 13px;
}

.athome-blog-card h2 {
	margin: 10px 0 12px;
	font-size: 21px;
	line-height: 1.3;
}

.athome-blog-card h2 a {
	color: var(--editorial-heading);
}

.athome-blog-card p {
	margin: 0 0 18px;
	line-height: 1.6;
}

.athome-blog-card__more {
	margin-top: auto;
	color: #147ea9;
	font-weight: 700;
}

.athome-blog__pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 32px;
}

.athome-blog__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 8px 12px;
	border: 1px solid var(--editorial-border);
	border-radius: var(--editorial-radius);
	background: #ffffff;
	color: #147ea9;
	font-weight: 700;
}

.athome-blog__pagination .page-numbers.current,
.athome-blog__pagination .page-numbers:hover,
.athome-blog__pagination .page-numbers:focus-visible {
	border-color: var(--editorial-brand);
	background: var(--editorial-brand);
	color: #ffffff;
}

@media (max-width: 900px) {
	.athome-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.athome-blog__container {
		width: min(100% - 24px, 1280px);
	}

	.athome-blog__header {
		padding: 36px 0 32px;
	}

	.athome-blog__grid {
		grid-template-columns: 1fr;
	}
}
