/**
 * GluJoy Blog → Allrecipes Food News & Trends hub
 * Clean white canvas, gold accent rail, card grid, topic chips.
 */

/* ========== Page chrome: strip bulky default hero ========== */
body.gj-blog-news .entry-hero,
body.gj-blog-news .entry-hero.page-hero-section,
body.page-id-4728 .entry-hero,
body.page-id-4728 .entry-hero.page-hero-section,
body.gj-blog-news .hero-container,
body.page-id-4728 .hero-container {
	display: none !important;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}

body.gj-blog-news h1.entry-title,
body.page-id-4728 h1.entry-title {
	display: none !important;
}

body.gj-blog-news .content-area,
body.page-id-4728 .content-area {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	background: #ffffff !important;
}

body.gj-blog-news .content-container,
body.page-id-4728 .content-container {
	max-width: none !important;
	grid-template-columns: 1fr !important;
}

body.gj-blog-news .content-wrap,
body.page-id-4728 .content-wrap,
body.gj-blog-news .entry-content-wrap,
body.page-id-4728 .entry-content-wrap {
	padding: 0 !important;
	max-width: none !important;
}

body.gj-blog-news .entry.single-entry,
body.page-id-4728 .entry.single-entry {
	box-shadow: none !important;
	background: transparent !important;
	border: 0 !important;
}

body.gj-blog-news .entry-content.single-content,
body.page-id-4728 .entry-content.single-content {
	max-width: none !important;
	padding: 0 !important;
}

/* Hide default page title if hero not fully removed */
body.gj-blog-news .entry-header,
body.page-id-4728 article.page > .entry-header {
	display: none !important;
}

/* ========== Hub shell ========== */
.gj-news-hub {
	max-width: 1290px;
	margin: 0 auto;
	padding: 1.75rem var(--global-content-edge-padding, 1.25rem) 3.5rem;
	box-sizing: border-box;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #1a1a1a;
}

/* —— Intro (AR page header) —— */
.gj-news-hub__intro {
	max-width: 46rem;
	margin: 0 0 1.35rem;
	padding-bottom: 0.25rem;
}

.gj-news-hub__eyebrow {
	margin: 0 0 0.45rem !important;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	color: #3d998e !important;
}

.gj-news-hub__title {
	margin: 0 0 0.55rem !important;
	font-family: "DM Serif Display", Georgia, "Times New Roman", serif !important;
	font-size: clamp(2rem, 4.2vw, 2.75rem) !important;
	font-weight: 400 !important;
	line-height: 1.12 !important;
	letter-spacing: -0.02em !important;
	color: #1a1a1a !important;
	text-transform: none !important;
}

.gj-news-hub__deck {
	margin: 0 !important;
	font-size: 1.05rem !important;
	line-height: 1.55 !important;
	color: #5c5c5c !important;
	max-width: 40rem;
}

/* —— Topic chips —— */
.gj-news-hub__topics {
	margin: 0 0 1.75rem;
	padding: 0 0 1rem;
	border-bottom: 1px solid #eceae6;
}

.gj-news-topics {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.gj-news-topics::-webkit-scrollbar {
	display: none;
}

.gj-news-topics li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	flex: 0 0 auto;
}

.gj-news-topics__chip {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0.4rem 0.95rem;
	border-radius: 999px;
	border: 1px solid #e0ddd6;
	background: #ffffff;
	color: #3a3a3a !important;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.04em !important;
	text-decoration: none !important;
	box-shadow: none !important;
	white-space: nowrap;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.gj-news-topics__chip:hover {
	border-color: #3d998e;
	color: #3d998e !important;
	background: #f3faf8;
}

.gj-news-topics__chip.is-active {
	background: #3d998e !important;
	border-color: #3d998e !important;
	color: #ffffff !important;
}

/* —— Hero: feature + side —— */
.gj-news-hub__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
	gap: 1.75rem 2rem;
	align-items: start;
	margin-bottom: 2.5rem;
}

.gj-news-feature {
	min-width: 0;
}

.gj-news-feature__media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #f0eeeb;
	text-decoration: none !important;
}

.gj-news-feature__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.gj-news-feature__media:hover img {
	transform: scale(1.03);
}

.gj-news-feature__body {
	padding-top: 1rem;
	max-width: 40rem;
}

.gj-news-feature__kicker {
	margin: 0 0 0.4rem !important;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	color: #757575 !important;
}

.gj-news-feature__title {
	margin: 0 0 0.55rem !important;
	font-family: "DM Serif Display", Georgia, "Times New Roman", serif !important;
	font-size: clamp(1.55rem, 2.5vw, 2.05rem) !important;
	font-weight: 400 !important;
	line-height: 1.18 !important;
	color: #1a1a1a !important;
	text-transform: none !important;
}

.gj-news-feature__title a {
	color: inherit !important;
	text-decoration: none !important;
	box-shadow: none !important;
	font-weight: 400 !important;
}

.gj-news-feature__title a:hover {
	color: #3d998e !important;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.gj-news-feature__deck {
	margin: 0 !important;
	font-size: 1rem !important;
	line-height: 1.55 !important;
	color: #5c5c5c !important;
}

/* Side column */
.gj-news-hero-side {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	min-width: 0;
}

.gj-news-secondary {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.gj-news-card--secondary .gj-news-card__media {
	aspect-ratio: 4 / 3;
}

.gj-news-card--secondary .gj-news-card__title {
	font-size: 0.98rem !important;
	line-height: 1.3 !important;
}

/* The Latest rail */
.gj-news-rail {
	border-top: 3px solid #daaf53;
	padding-top: 0.85rem;
}

.gj-news-rail__title {
	margin: 0 0 0.65rem !important;
	font-family: "DM Serif Display", Georgia, "Times New Roman", serif !important;
	font-size: 1.45rem !important;
	font-weight: 400 !important;
	line-height: 1.15 !important;
	color: #1a1a1a !important;
	text-transform: none !important;
}

.gj-news-rail__list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.gj-news-rail__item {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border-bottom: 1px solid #eceae6;
}

.gj-news-rail__item:last-child {
	border-bottom: 0;
}

.gj-news-rail__link {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: start;
	padding: 0.8rem 0;
	text-decoration: none !important;
	color: inherit !important;
	box-shadow: none !important;
}

.gj-news-rail__thumb {
	display: block;
	width: 72px;
	height: 72px;
	overflow: hidden;
	background: #f0eeeb;
	flex-shrink: 0;
}

.gj-news-rail__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gj-news-rail__copy {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	min-width: 0;
	padding-top: 0.1rem;
}

.gj-news-rail__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8a8580;
	line-height: 1.3;
}

.gj-news-rail__item-title {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}

.gj-news-rail__link:hover .gj-news-rail__item-title {
	color: #3d998e;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* —— Cards (shared) —— */
.gj-news-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: transparent;
}

.gj-news-card__media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #f0eeeb;
	text-decoration: none !important;
}

.gj-news-card__media img,
.gj-news-card__ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.gj-news-card__ph {
	background: linear-gradient(135deg, #efece6, #e4e0d8);
}

.gj-news-card__media:hover img {
	transform: scale(1.04);
}

.gj-news-card__body {
	padding: 0.75rem 0 0.15rem;
}

.gj-news-card__kicker {
	margin: 0 0 0.35rem !important;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	color: #8a8580 !important;
	line-height: 1.3 !important;
}

.gj-news-card__title {
	margin: 0 !important;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: #1a1a1a !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

.gj-news-card__title a {
	color: inherit !important;
	text-decoration: none !important;
	box-shadow: none !important;
	font-weight: 700 !important;
}

.gj-news-card__title a:hover {
	color: #3d998e !important;
	text-decoration: underline !important;
	text-underline-offset: 2px;
}

/* —— More Stories grid —— */
.gj-news-hub__grid-section {
	margin-top: 0.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid #eceae6;
}

.gj-news-hub__section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.gj-news-hub__section-title {
	margin: 0 !important;
	font-family: "DM Serif Display", Georgia, "Times New Roman", serif !important;
	font-size: clamp(1.45rem, 2.2vw, 1.75rem) !important;
	font-weight: 400 !important;
	line-height: 1.15 !important;
	color: #1a1a1a !important;
	text-transform: none !important;
	padding-bottom: 0.35rem;
	border-bottom: 3px solid #daaf53;
	display: inline-block;
}

.gj-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.75rem 1.35rem;
}

.gj-news-hub__empty {
	padding: 2rem 0;
	color: #6a6660;
}

/* —— Mid-page ad: full-bleed edge-to-edge —— */
.gj-news-hub__ad {
	/* Break out of the hub’s max-width container */
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 0.75rem;
	margin-bottom: 2.25rem;
	box-sizing: border-box;
	background: #f3f1ed;
	border-top: 1px solid #e8e4dc;
	border-bottom: 1px solid #e8e4dc;
	padding: 1.5rem var(--global-content-edge-padding, 1.25rem);
}

.gj-news-hub__ad .gj-ad-slot--midpage,
.gj-news-hub__ad .gj-ad-slot--blog-mid {
	margin: 0 auto !important;
	max-width: 1290px;
	border-radius: 0 !important;
	border: 0 !important;
	background: transparent !important;
	padding: 0 !important;
	overflow: visible;
}

.gj-news-hub__ad .gj-ad-slot__inner {
	max-width: 970px;
	margin: 0 auto;
}

.gj-news-hub__ad .gj-ad-default-image,
.gj-news-hub__ad .gj-ad-default {
	border-radius: 8px;
	overflow: hidden;
}

/* —— Pillar guides carousel (animated) —— */
.gj-news-pillars {
	margin: 0 0 2.75rem;
	padding: 1.85rem 0 0.75rem;
	border-top: 1px solid #eceae6;
	position: relative;
}

.gj-news-pillars__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem;
	margin-bottom: 1.35rem;
}

.gj-news-pillars__head-copy {
	max-width: 36rem;
	min-width: 0;
}

.gj-news-pillars__eyebrow {
	margin: 0 0 0.4rem !important;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	color: #3d998e !important;
}

.gj-news-pillars .gj-news-hub__section-title {
	margin-bottom: 0.45rem !important;
}

.gj-news-pillars__sub {
	margin: 0.55rem 0 0 !important;
	font-size: 1.02rem !important;
	color: #5c5c5c !important;
	line-height: 1.5 !important;
}

.gj-news-pillars__controls {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.gj-news-pillars__nav {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #e0ddd6;
	background: #ffffff;
	color: #1a1a1a;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(30, 25, 15, 0.06);
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.gj-news-pillars__nav:hover,
.gj-news-pillars__nav:focus-visible {
	background: #3d998e;
	border-color: #3d998e;
	color: #ffffff;
	outline: none;
	transform: scale(1.05);
}

.gj-news-pillars__nav:active {
	transform: scale(0.97);
}

.gj-news-pillars__stage {
	position: relative;
}

.gj-news-pillars__track-wrap {
	position: relative;
	mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.gj-news-pillars__track {
	display: flex;
	flex-wrap: nowrap;
	gap: 1.15rem;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0.65rem 0.25rem 1rem;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 0.25rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	scroll-behavior: smooth;
}

.gj-news-pillars__track::-webkit-scrollbar {
	display: none;
}

/* Autoplay progress */
.gj-news-pillars__progress {
	height: 3px;
	margin: 0.15rem 0 0.85rem;
	background: #efece6;
	border-radius: 999px;
	overflow: hidden;
}

.gj-news-pillars__progress-bar {
	display: block;
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, #3d998e 0%, #daaf53 100%);
	transform-origin: left center;
	transform: scaleX(0);
	border-radius: 999px;
	will-change: transform;
}

.gj-news-pillars__dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
}

.gj-news-pillars__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #d4cfc4;
	cursor: pointer;
	transition: width 0.25s ease, background 0.2s ease, transform 0.2s ease;
}

.gj-news-pillars__dot.is-active {
	width: 22px;
	background: #3d998e;
}

.gj-news-pillars__dot:hover {
	background: #b8b0a2;
}

.gj-news-pillars__dot.is-active:hover {
	background: #2f7a71;
}

.gj-news-pillar-card {
	flex: 0 0 min(280px, 78vw);
	max-width: 300px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	text-decoration: none !important;
	color: inherit !important;
	box-shadow: 0 10px 28px rgba(30, 25, 15, 0.07) !important;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 16px;
	overflow: hidden;
	opacity: 0;
	transform: translateY(18px) scale(0.97);
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.45s ease;
	transition-delay: var(--gj-stagger, 0ms);
}

.gj-news-pillar-card.is-ready {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.gj-news-pillar-card.is-active {
	border-color: rgba(61, 153, 142, 0.4);
	box-shadow: 0 16px 40px rgba(61, 153, 142, 0.14) !important;
	transform: translateY(-6px) scale(1.02);
}

.gj-news-pillar-card:hover,
.gj-news-pillar-card:focus-visible {
	border-color: rgba(61, 153, 142, 0.45);
	box-shadow: 0 18px 42px rgba(30, 25, 15, 0.14) !important;
	transform: translateY(-8px) scale(1.02);
	outline: none;
}

.gj-news-pillar-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: #f0eeeb;
	overflow: hidden;
}

.gj-news-pillar-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gj-news-pillar-card:hover .gj-news-pillar-card__media img,
.gj-news-pillar-card.is-active .gj-news-pillar-card__media img {
	transform: scale(1.08);
}

.gj-news-pillar-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 30, 28, 0.05) 0%, rgba(20, 30, 28, 0.18) 55%, rgba(20, 30, 28, 0.5) 100%);
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.gj-news-pillar-card__num {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 1;
	min-width: 2rem;
	height: 1.65rem;
	padding: 0 0.45rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: #3d998e;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gj-news-pillar-card__ph {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, #eef6f4 0%, #f3ebe0 100%);
}

.gj-news-pillar-card__footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.65rem;
	padding: 0.9rem 1rem 1.05rem;
	background: #ffffff;
}

.gj-news-pillar-card__label {
	flex: 1 1 auto;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
	transition: color 0.2s ease;
}

.gj-news-pillar-card__cta {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f0f7f5;
	color: #3d998e;
	transition: background 0.2s ease, color 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.gj-news-pillar-card:hover .gj-news-pillar-card__label,
.gj-news-pillar-card.is-active .gj-news-pillar-card__label {
	color: #2f7a71;
}

.gj-news-pillar-card:hover .gj-news-pillar-card__cta,
.gj-news-pillar-card.is-active .gj-news-pillar-card__cta {
	background: #3d998e;
	color: #ffffff;
	transform: translateX(3px);
}

/* —— More Stories pagination —— */
.gj-news-hub__page-meta {
	margin: 0 !important;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	color: #8a8580 !important;
}

.gj-news-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.65rem 0.85rem;
	margin: 2rem 0 0.25rem;
	padding-top: 1.35rem;
	border-top: 1px solid #eceae6;
}

.gj-news-pagination__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 42px;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	border: 1px solid #e0ddd6;
	background: #ffffff;
	color: #1a1a1a !important;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.04em !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.gj-news-pagination__btn:hover {
	background: #3d998e !important;
	border-color: #3d998e !important;
	color: #ffffff !important;
}

.gj-news-pagination__btn.is-disabled {
	opacity: 0.4;
	pointer-events: none;
}

.gj-news-pagination__pages {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
}

.gj-news-pagination__pages li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.gj-news-pagination__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.5rem;
	border-radius: 10px;
	border: 1px solid transparent;
	background: transparent;
	color: #3a3a3a !important;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

a.gj-news-pagination__num:hover {
	background: #f0f7f5;
	color: #3d998e !important;
	border-color: #d4e8e3;
}

.gj-news-pagination__num.is-current {
	background: #3d998e !important;
	color: #ffffff !important;
	border-color: #3d998e;
}

.gj-news-pagination__ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	color: #9a948a;
	font-weight: 700;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
	.gj-news-hub__hero {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.gj-news-secondary {
		grid-template-columns: 1fr 1fr;
	}

	.gj-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.35rem 1rem;
	}
}

@media (max-width: 767px) {
	.gj-news-hub {
		padding: 1rem 0.95rem 2.5rem;
	}

	.gj-news-hub__title {
		font-size: 1.75rem !important;
	}

	.gj-news-hub__deck {
		font-size: 0.95rem !important;
	}

	.gj-news-feature__media {
		aspect-ratio: 16 / 10;
		border-radius: 12px;
	}

	.gj-news-feature__title {
		font-size: 1.4rem !important;
	}

	.gj-news-secondary {
		grid-template-columns: 1fr;
		gap: 1.15rem;
	}

	.gj-news-card--secondary .gj-news-card__media,
	.gj-news-card__media {
		border-radius: 12px;
		overflow: hidden;
	}

	.gj-news-rail {
		background: #faf9f7;
		border-radius: 14px;
		padding: 0.95rem 1rem 0.35rem;
		border-top: 3px solid #daaf53;
	}

	.gj-news-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.gj-news-card__title {
		font-size: 1.08rem !important;
	}

	/* App shell padding already handles tab bar */
	body.gj-blog-news.gj-has-app-shell .gj-news-hub {
		padding-bottom: 1.5rem;
	}

	.gj-news-pillar-card {
		flex: 0 0 min(240px, 80vw);
		border-radius: 14px;
	}

	.gj-news-pillars__head {
		flex-direction: column;
		align-items: stretch;
	}

	.gj-news-pillars__controls {
		justify-content: flex-end;
	}

	.gj-news-hub__ad {
		padding: 1.15rem 0.85rem;
		margin-top: 0.35rem;
		margin-bottom: 1.65rem;
	}

	.gj-news-pillars__sub {
		font-size: 0.95rem !important;
	}

	.gj-news-pagination {
		gap: 0.5rem;
	}

	.gj-news-pagination__btn span {
		/* Keep icon+label compact on small screens */
	}
}

@media (prefers-reduced-motion: reduce) {
	.gj-news-pillar-card,
	.gj-news-pillar-card__media img,
	.gj-news-pillar-card__cta,
	.gj-news-pillars__progress-bar {
		transition: none !important;
		animation: none !important;
	}

	.gj-news-pillars__track {
		scroll-behavior: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gj-news-feature__media img,
	.gj-news-card__media img {
		transition: none !important;
	}
}
