/* ==========================================================================
   Blog Modern — The Glenview at Pelican Bay
   Luxury editorial blog design
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
.blog-modern,
.blog-single-modern {
	/* Aligned with site palette (see :root in base.php) */
	--blog-navy: #1a3c5e;        /* Primary brand color (replaces legacy maroon) */
	--blog-navy-deep: #14304b;   /* Slightly darker for gradient depth */
	--blog-gold: #8a6400;        /* ADA-passing dark gold (5.28:1 on white) */
	--blog-gold-light: #d4af37;  /* Light gold — used over dark backgrounds */
	--blog-teal: #1b806d;        /* Brand teal */
	--blog-teal-deep: #166b5c;   /* Teal hover */
	--blog-bg-warm: #faf8ed;     /* Brand cream */
	--blog-text: #333;           /* Body */
	--blog-text-muted: #666;     /* Was #888 — failed 4.5:1; #666 = 5.74:1 ✓ */
	--blog-white: #fff;
	--blog-radius: 8px;
	--blog-shadow: 0 2px 20px rgba(0,0,0,0.06);
	--blog-shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
	--blog-transition: 0.3s ease;
}

/* --------------------------------------------------------------------------
   Featured Hero (Blog Index) — Mirrors hero-split-interior exactly
   -------------------------------------------------------------------------- */
.blog-featured-hero {
	display: block;
	width: 100%;
	margin: 0 0 3rem;
	padding-top: 2rem;
	overflow: hidden;
	text-decoration: none !important;
}
.blog-featured-hero__grid {
	display: grid;
	grid-template-columns: 1.618fr 1fr;
	min-height: 480px;
	overflow: hidden;
}
.blog-featured-hero__image {
	position: relative;
	overflow: hidden;
	border-radius: 0 12px 12px 0;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
	background: linear-gradient(135deg, var(--blog-navy) 0%, var(--blog-navy-deep) 100%);
}
.blog-featured-hero__image > div {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 6s ease;
}
.blog-featured-hero:hover .blog-featured-hero__image > div {
	transform: scale(1.04);
}
.blog-featured-hero__text {
	background: var(--blog-white);
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-featured-hero__text-inner {
	padding: 5rem 4rem;
	max-width: 52rem;
	width: 100%;
}
.blog-featured-hero__label {
	font-family: var(--font-sans);
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--blog-gold);
	margin-bottom: 1.2rem;
	display: block;
}
.blog-featured-hero__title {
	font-family: var(--font-serif) !important;
	font-size: 3.2rem !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	color: var(--blog-navy) !important;
	margin: 0 0 1.2rem !important;
	text-transform: none !important;
	text-shadow: none !important;
}
.blog-featured-hero__excerpt {
	font-family: var(--font-sans);
	font-size: 1.55rem;
	line-height: 1.6;
	color: var(--blog-text);
	margin-bottom: 1.6rem;
}
.blog-featured-hero__btn {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.85rem 2rem;
	background: var(--blog-navy);
	color: var(--blog-white);
	text-decoration: none;
	border-radius: 4px;
	transition: all var(--blog-transition);
}
.blog-featured-hero:hover .blog-featured-hero__btn {
	background: var(--blog-teal);
}

@media (max-width: 1050px) {
	.blog-featured-hero__grid {
		min-height: 380px;
	}
	.blog-featured-hero__text-inner {
		padding: 4rem 3rem;
	}
}
@media (max-width: 862px) {
	.blog-featured-hero {
		padding-top: 0;
	}
	.blog-featured-hero__grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.blog-featured-hero__image {
		border-radius: 0;
		min-height: 240px;
	}
	.blog-featured-hero__text-inner {
		padding: 3.5rem 2.4rem;
		max-width: 100%;
	}
	.blog-featured-hero__title {
		font-size: 2.8rem !important;
	}
}
@media (max-width: 576px) {
	.blog-featured-hero__title {
		font-size: 2.4rem !important;
	}
	.blog-featured-hero__excerpt {
		font-size: 1.45rem;
	}
}

/* --------------------------------------------------------------------------
   Category Filter Pills
   -------------------------------------------------------------------------- */
.blog-filters {
	padding: 0 0 2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.blog-filters__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}
.blog-filters__label {
	font-family: var(--font-sans);
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--blog-text-muted);
	margin-right: 0.5rem;
}
.blog-filters__pill {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 1.3rem;
	font-weight: 500;
	padding: 0.5rem 1.2rem;
	border: 1px solid #ddd;
	border-radius: 100px;
	color: var(--blog-text);
	text-decoration: none;
	transition: all var(--blog-transition);
	background: var(--blog-white);
}
.blog-filters__pill:hover {
	border-color: var(--blog-gold);
	color: var(--blog-gold);
	text-decoration: none;
}
.blog-filters__pill.is-active {
	background: var(--blog-navy);
	border-color: var(--blog-navy);
	color: var(--blog-white);
}

/* --------------------------------------------------------------------------
   Post Card Grid
   -------------------------------------------------------------------------- */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 3rem;
}

@media (max-width: 992px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 576px) {
	.blog-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* --------------------------------------------------------------------------
   Post Card
   -------------------------------------------------------------------------- */
.blog-card {
	background: var(--blog-white);
	border-radius: var(--blog-radius);
	overflow: hidden;
	box-shadow: var(--blog-shadow);
	transition: all var(--blog-transition);
	display: flex;
	flex-direction: column;
}
.blog-card:hover {
	box-shadow: var(--blog-shadow-hover);
	transform: translateY(-4px);
}
.blog-card__link {
	text-decoration: none !important;
	color: inherit !important;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.blog-card__link:hover {
	text-decoration: none !important;
	color: inherit !important;
}
.blog-card__image-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}
.blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__image {
	transform: scale(1.06);
}
.blog-card__category {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.35rem 0.85rem;
	background: var(--blog-white);
	color: var(--blog-navy);
	border-radius: 100px;
	z-index: 2;
}
.blog-card__body {
	padding: 1.5rem 1.75rem 1.75rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.blog-card__date {
	font-family: var(--font-sans);
	font-size: 1.1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--blog-text-muted);
	margin-bottom: 0.6rem;
}
.blog-card__title {
	font-family: var(--font-serif) !important;
	font-size: 1.95rem !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	color: var(--blog-text) !important;
	margin: 0 !important;
	text-transform: none !important;
	text-shadow: none !important;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   Single Post — Hero Header — Mirrors hero-split-interior exactly
   -------------------------------------------------------------------------- */
.blog-single-hero {
	width: 100%;
	margin: 0 0 3rem;
	padding-top: 2rem;
	overflow: hidden;
}
.blog-single-hero__grid {
	display: grid;
	grid-template-columns: 1.618fr 1fr;
	min-height: 560px;
	overflow: hidden;
}
.blog-single-hero__image {
	position: relative;
	overflow: hidden;
	border-radius: 0 12px 12px 0;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
	background: linear-gradient(135deg, var(--blog-navy) 0%, var(--blog-navy-deep) 100%);
}
.blog-single-hero__image > div {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.blog-single-hero__text {
	background: var(--blog-white);
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-single-hero__text-inner {
	padding: 5rem 4rem;
	max-width: 52rem;
	width: 100%;
}
.blog-single-hero__category {
	font-family: var(--font-sans);
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--blog-gold);
	text-decoration: none;
	margin-bottom: 1.4rem;
	display: inline-block;
	transition: color var(--blog-transition);
}
.blog-single-hero__category:hover {
	color: var(--blog-navy);
	text-decoration: none;
}
.blog-single-hero__title {
	font-family: var(--font-serif) !important;
	font-size: 4.2rem !important;
	font-weight: 600 !important;
	line-height: 1.18 !important;
	color: var(--blog-navy) !important;
	margin: 0 0 1.5rem !important;
	text-transform: none !important;
	text-shadow: none !important;
}
.blog-single-hero__meta {
	font-family: var(--font-sans);
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--blog-text-muted);
	letter-spacing: 0.05em;
}
.blog-single-hero__meta a {
	color: var(--blog-text-muted);
	text-decoration: none;
}
.blog-single-hero__meta a:hover {
	color: var(--blog-gold);
}

/* No-image variant — text panel takes full width */
.blog-single-hero--no-image .blog-single-hero__grid {
	grid-template-columns: 1fr;
	min-height: 280px;
}
.blog-single-hero--no-image .blog-single-hero__image {
	display: none;
}
.blog-single-hero--no-image .blog-single-hero__text-inner {
	max-width: 80rem;
	text-align: center;
}

/* --------------------------------------------------------------------------
   Card-image variant — for square or portrait featured images. Drops the
   full-bleed cover treatment in favor of a contained, rounded card sized
   to the image's natural aspect ratio (set inline). Lets the hero stay
   compact and not push the article body too far down the page.
   -------------------------------------------------------------------------- */
.blog-single-hero--card .blog-single-hero__grid {
	grid-template-columns: 1fr 1fr;
	min-height: 460px;
	align-items: center;
	background: #fff;
}
.blog-single-hero--card .blog-single-hero__image {
	background: none;
	border-radius: 12px;
	overflow: hidden;
	margin: 3rem 4rem 3rem auto;
	max-width: 420px;
	max-height: 540px; /* safety cap for extreme portrait aspects */
	width: 100%;
	justify-self: end;
	-webkit-mask-image: none;
	box-shadow: 0 8px 28px rgba(26, 60, 94, 0.15);
	/* aspect-ratio is set inline (PHP) from the image's natural dimensions */
}
.blog-single-hero--card .blog-single-hero__image > div {
	background-size: cover;
	background-position: center;
}

@media (max-width: 1050px) {
	.blog-single-hero__grid {
		min-height: 380px;
	}
	.blog-single-hero__text-inner {
		padding: 4rem 3rem;
	}
	.blog-single-hero--card .blog-single-hero__image {
		max-width: 340px;
		margin: 2rem 2rem 2rem auto;
	}
	.blog-single-hero--card .blog-single-hero__grid {
		min-height: 380px;
	}
}
@media (max-width: 862px) {
	.blog-single-hero {
		padding-top: 0;
		margin-bottom: 1.5rem;
	}
	.blog-single-hero__grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.blog-single-hero__image {
		border-radius: 0;
		min-height: 220px;
		max-height: 240px;
	}
	.blog-single-hero__text-inner {
		padding: 2.5rem 2rem 2rem;
		max-width: 100%;
	}
	.blog-single-hero__title {
		font-size: 3rem !important;
	}
}
@media (max-width: 576px) {
	.blog-single-hero__title {
		font-size: 2.6rem !important;
	}
}

/* --------------------------------------------------------------------------
   Single Post — Featured Video Section
   -------------------------------------------------------------------------- */
.blog-featured-video {
	max-width: 720px;
	margin: 0 auto;
	padding: 3rem 1.5rem 0;
	text-align: center;
}
.blog-featured-video__title {
	font-family: var(--font-serif) !important;
	font-size: 3rem !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	color: var(--blog-navy) !important;
	margin: 0 0 0.5rem !important;
	text-transform: none !important;
	text-shadow: none !important;
}
.blog-featured-video__subtitle {
	font-family: var(--font-body);
	font-size: 2.1rem;
	line-height: 1.5;
	color: var(--blog-text-muted);
	margin: 0 0 1.5rem;
}
.blog-featured-video__title + .blog-featured-video__embed {
	margin-top: 1.5rem;
}
.blog-featured-video__embed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 */
	border-radius: var(--blog-radius);
	overflow: hidden;
	box-shadow: var(--blog-shadow);
}
.blog-featured-video__embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.blog-featured-video__caption {
	font-family: var(--font-sans);
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--blog-text-muted);
	margin: 0.75rem 0 0;
	letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Single Post — Article Body
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Single Post — Layout grid (article + sidebar)
   -------------------------------------------------------------------------- */
.blog-single-modern {
	/* Mega-header is 80px tall (fixed). 100px gives a 20px breathing buffer. */
	--blog-header-offset: 100px;
}
.admin-bar .blog-single-modern { --blog-header-offset: 132px; }
@media (max-width: 782px) {
	.admin-bar .blog-single-modern { --blog-header-offset: 146px; }
}
@media (max-width: 991px) {
	.blog-single-modern { --blog-header-offset: 90px; }
}

.blog-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 6rem;
	max-width: 1240px;
	margin: 0 auto;
	padding: 3rem 1.5rem 2rem;
	align-items: start;
}
.blog-single-layout .blog-article {
	max-width: 740px;
	margin: 0;
	padding: 0;
}

/* No-TOC fallback: article centers, related-articles sidebar still shows on the right */
.blog-single-layout--no-toc .blog-toc { display: none; }
.blog-single-layout .blog-toc-fallback { display: none; }
.blog-single-layout--no-toc .blog-toc-fallback { display: block; }

/* Below 1050px: hide both sidebars, center the article */
@media (max-width: 1050px) {
	.blog-single-layout {
		grid-template-columns: 1fr;
		max-width: 880px;
		gap: 0;
	}
	.blog-single-layout .blog-article {
		max-width: 100%;
	}
	.blog-toc,
	.blog-toc-fallback { display: none; }
	.blog-single-layout--no-toc .blog-toc-fallback { display: none; }
}
@media (max-width: 862px) {
	.blog-single-layout {
		padding-top: 1.5rem;
	}
	/* Drop the auto-margin on the very first heading so it sits tight to the hero */
	.blog-article > h2:first-child,
	.blog-article > h3:first-child {
		margin-top: 0 !important;
	}
}

/* --------------------------------------------------------------------------
   Single Post — Table of Contents sidebar
   -------------------------------------------------------------------------- */
.blog-toc,
.blog-toc-fallback {
	position: sticky;
	top: calc(var(--blog-header-offset) + 12px);
	max-height: calc(100vh - var(--blog-header-offset) - 32px);
	overflow-y: auto;
}
.blog-toc__inner,
.blog-toc-fallback__inner {
	padding: 2.25rem 2.25rem 2rem;
	background: var(--blog-bg-warm);
	border-radius: var(--blog-radius);
}
.blog-toc__title,
.blog-toc-fallback__title {
	font-family: var(--font-sans);
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--blog-navy);
	margin: 0 0 1.4rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid rgba(26,60,94,0.2);
}
.blog-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-toc__list li {
	margin: 0;
	padding: 0;
}
/* Visible divider above each top-level (h2) item except the first */
.blog-toc__list li + li:not(.is-h3) {
	margin-top: 0.6rem;
	padding-top: 0.6rem;
	border-top: 1px solid rgba(26,60,94,0.1);
}
.blog-toc__list a {
	display: block;
	padding: 0.7rem 0 0.7rem 1rem;
	border-left: 2px solid transparent;
	font-family: var(--font-sans);
	font-size: 1.45rem;
	font-weight: 500;
	line-height: 1.45;
	color: var(--blog-text);
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.blog-toc__list a:hover {
	color: var(--blog-navy);
	border-left-color: var(--blog-gold);
	text-decoration: none;
}
.blog-toc__list a.is-active {
	color: var(--blog-navy);
	border-left-color: var(--blog-gold);
	font-weight: 600;
}
.blog-toc__list .is-h3 a {
	padding-left: 2rem;
	padding-top: 0.45rem;
	padding-bottom: 0.45rem;
	font-size: 1.35rem;
	font-weight: 400;
	color: var(--blog-text-muted);
}

/* --------------------------------------------------------------------------
   Single Post — Fallback sidebar (related posts + categories) for posts with
   too few headings to build a meaningful TOC.
   -------------------------------------------------------------------------- */
.blog-toc-fallback__section + .blog-toc-fallback__section {
	margin-top: 2rem;
	padding-top: 1.6rem;
	border-top: 1px solid rgba(26,60,94,0.1);
}
.blog-toc-fallback__related {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-toc-fallback__related li {
	margin: 0 0 1.1rem;
	padding: 0;
}
.blog-toc-fallback__related li:last-child { margin-bottom: 0; }
.blog-toc-fallback__related a {
	display: block;
	font-family: var(--font-serif);
	font-size: 1.55rem;
	font-weight: 500;
	line-height: 1.35;
	color: var(--blog-navy);
	text-decoration: none;
	transition: color 0.2s ease;
}
.blog-toc-fallback__related a:hover {
	color: var(--blog-gold);
	text-decoration: none;
}
.blog-toc-fallback__related-meta {
	display: block;
	margin-top: 0.3rem;
	font-family: var(--font-sans);
	font-size: 1.15rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--blog-text-muted);
	text-transform: uppercase;
}
.blog-toc-fallback__cats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.blog-toc-fallback__cats a {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 1.2rem;
	font-weight: 500;
	padding: 0.4rem 1rem;
	border: 1px solid var(--blog-navy);
	border-radius: 100px;
	color: var(--blog-navy);
	text-decoration: none;
	transition: all var(--blog-transition);
}
.blog-toc-fallback__cats a:hover {
	background: var(--blog-navy);
	color: var(--blog-white);
	text-decoration: none;
}
.blog-article p {
	font-family: var(--font-body);
	font-size: 1.9rem;
	line-height: 1.7;
	color: var(--blog-text);
	margin-bottom: 1.75rem;
}
.blog-article li {
	font-family: var(--font-body);
	font-size: 1.9rem;
	line-height: 1.7;
	color: var(--blog-text);
	margin-bottom: 0.5rem;
}
.blog-article h1,
.blog-article h2,
.blog-article h3,
.blog-article h4,
.blog-article h5,
.blog-article h6 {
	color: var(--blog-navy) !important;
	font-family: var(--font-serif);
}
.blog-article h2 {
	margin-top: 3rem !important;
	margin-bottom: 1.1rem !important;
	scroll-margin-top: calc(var(--blog-header-offset) + 12px);
}
.blog-article h3 {
	margin-top: 2.25rem !important;
	margin-bottom: 0.85rem !important;
	scroll-margin-top: calc(var(--blog-header-offset) + 12px);
}
.blog-article img {
	max-width: 100%;
	height: auto;
	border-radius: var(--blog-radius);
	margin: 1.5rem 0;
}
.blog-article blockquote {
	border-left: 3px solid var(--blog-gold);
	margin: 2rem 0;
	padding: 1rem 1.5rem;
	background: var(--blog-bg-warm);
	border-radius: 0 var(--blog-radius) var(--blog-radius) 0;
}
.blog-article blockquote p {
	font-style: italic;
	color: var(--blog-navy);
	margin-bottom: 0;
}

/* Share bar */
.blog-share {
	max-width: 720px;
	margin: 0 auto;
	padding: 1.5rem;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.blog-share__label {
	font-family: var(--font-sans);
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--blog-text-muted);
}
.blog-share__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-sans);
	font-size: 1.3rem;
	font-weight: 500;
	padding: 0.5rem 1.2rem;
	border: 1px solid #ddd;
	border-radius: 100px;
	color: var(--blog-text);
	text-decoration: none;
	transition: all var(--blog-transition);
}
.blog-share__btn:hover {
	border-color: var(--blog-teal);
	color: var(--blog-teal);
	text-decoration: none;
}

/* --------------------------------------------------------------------------
   Related Articles Section
   -------------------------------------------------------------------------- */
.blog-related {
	background: var(--blog-bg-warm);
	padding: 4rem 0;
	margin-top: 3rem;
}
.blog-related__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.blog-related__title {
	font-family: var(--font-serif) !important;
	font-size: 2.6rem !important;
	font-weight: 600 !important;
	text-align: center !important;
	color: var(--blog-navy) !important;
	margin: 0 0 2.5rem !important;
	text-transform: none !important;
	text-shadow: none !important;
}

/* --------------------------------------------------------------------------
   Explore Topics Section
   -------------------------------------------------------------------------- */
.blog-explore {
	padding: 3rem 0;
	text-align: center;
}
.blog-explore__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.blog-explore__title {
	font-family: var(--font-serif) !important;
	font-size: 2.3rem !important;
	font-weight: 600 !important;
	color: var(--blog-text) !important;
	margin: 0 0 1.5rem !important;
	text-transform: none !important;
	text-shadow: none !important;
}
.blog-explore__pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-explore__pill {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 1.3rem;
	font-weight: 500;
	padding: 0.6rem 1.5rem;
	border: 1px solid var(--blog-navy);
	border-radius: 100px;
	color: var(--blog-navy);
	text-decoration: none;
	transition: all var(--blog-transition);
}
.blog-explore__pill:hover {
	background: var(--blog-navy);
	color: var(--blog-white);
	text-decoration: none;
}

/* --------------------------------------------------------------------------
   Infinite Scroll Trigger / Load Status
   -------------------------------------------------------------------------- */
.blog-load-more {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 0 4rem;
	min-height: 6rem;
	text-align: center;
}
.blog-load-status {
	font-family: var(--font-sans);
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--blog-text-muted);
	margin: 0;
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.blog-pagination {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 0 3rem;
	text-align: center;
}
.blog-pagination .pagination {
	display: inline-flex;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-pagination .pagination > li > a,
.blog-pagination .pagination > li > span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 0.7rem;
	font-family: var(--font-sans);
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--blog-text);
	background: var(--blog-white);
	border: 1px solid #ddd;
	border-radius: 6px;
	text-decoration: none;
	transition: all var(--blog-transition);
}
.blog-pagination .pagination > li > a:hover {
	border-color: var(--blog-gold);
	color: var(--blog-gold);
}
.blog-pagination .pagination > .active > a,
.blog-pagination .pagination > .active > span {
	background: var(--blog-navy);
	border-color: var(--blog-navy);
	color: var(--blog-white);
}

/* --------------------------------------------------------------------------
   Section Header (for category/archive pages)
   -------------------------------------------------------------------------- */
.blog-section-header {
	text-align: center;
	padding: 3rem 0 1rem;
}
.blog-section-header__title {
	font-family: var(--font-serif) !important;
	font-size: 3.4rem !important;
	font-weight: 600 !important;
	color: var(--blog-navy) !important;
	margin: 0 !important;
	text-transform: none !important;
	text-shadow: none !important;
}

/* --------------------------------------------------------------------------
   Container utility
   -------------------------------------------------------------------------- */
.blog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
