	.gaWrArticleHero,
	.gaWrArticle,
	.gaWrArticleFooter {
		background: #fff;
		border-radius: 6px;
		border: 1px solid rgba(0,0,0,.08);
	}

	.gaWrArticleHero {
		margin-bottom: 1rem;
		padding: 1.4rem 1.75rem;
	}

	.gaWrKicker {
		display: flex;
		flex-wrap: wrap;
		gap: .5rem;
		margin-bottom: 1rem;
		font-size: .78rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: .04em;
		color: #345;
	}

	.gaWrKickerItem {
		background: #eef5fb;
		border-radius: 999px;
		padding: .3rem .65rem;
		line-height: 1.3;
	}

	.gaWrStatusBadges {
		display: inline-flex;
		gap: .35rem;
		margin-right: .35rem;
		vertical-align: middle;
	}

	.gaWrTitle {
		font-size: 2rem;
		line-height: 1.18;
		margin-bottom: .5rem;
	}

	.gaWrDeck {
		font-size: 1.22rem;
		line-height: 1.5;
		color: #33445a;
		max-width: 980px;
		margin-top: .5rem;
	}

	.gaWrByline {
		margin-top: .9rem;
		font-size: .95rem;
		display: flex;
		flex-wrap: wrap;
		gap: .5rem;
		align-items: center;
	}

	.gaWrTags {
		margin-top: .85rem;
	}

	.gaWrArticle > .ipsPadding {
		padding: 1.75rem 2rem;
	}

	.gaWrHeroImage {
		width: 100%;
		max-width: 1200px;
		aspect-ratio: 3 / 1;
		margin: 0 0 1.75rem 0;
		overflow: hidden;
		border-radius: 8px;
		background: #e9eef5;
	}

	.gaWrHeroImage img {
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
		object-position: center center;
	}

	.gaWrCallout,
	.gaWrLearnBox,
	.gaWrAppliesTo,
	.gaWrRelated,
	.gaWrBody {
		max-width: 980px;
	}

	.gaWrCallout {
		border-radius: 10px;
		padding: 1.1rem 1.25rem;
		margin: 0 0 1.5rem 0;
		border-left: 5px solid #0b2f63;
		background: #f3f7fb;
	}

	.gaWrCalloutLabel {
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: .04em;
		font-size: .78rem;
		color: #0b2f63;
		margin-bottom: .35rem;
	}

	.gaWrCalloutBody {
		font-size: 1.05rem;
		line-height: 1.55;
	}

	.gaWrLearnBox {
		background: #f9fafc;
		border: 1px solid rgba(0,0,0,.08);
		border-radius: 8px;
		padding: 1rem 1.15rem;
		margin-bottom: 1.5rem;
		line-height: 1.55;
	}

	.gaWrBody {
		font-size: 1.18rem;
		line-height: 1.85;
		color: #111;
	}

	.gaWrBody p {
		margin-bottom: 1.25rem;
	}

	.gaWrCallout_example {
		background: #f5f8ff;
		border-left-color: #315c9a;
		margin-top: 1.5rem;
	}

	.gaWrCallout_example .gaWrCalloutLabel {
		color: #244879;
	}

	.gaWrCallout_exercise {
		background: #fff8ec;
		border-left-color: #a45d00;
		margin-top: 1.5rem;
	}

	.gaWrCallout_exercise .gaWrCalloutLabel {
		color: #7a4300;
	}

	.gaWrAppliesTo {
		margin-top: 1.75rem;
		padding: 1rem 1.15rem;
		border: 1px solid rgba(0,0,0,.08);
		border-radius: 8px;
		background: #f9fafc;
		display: grid;
		gap: .5rem;
		color: #333;
		line-height: 1.5;
	}

	.gaWrRelated {
		margin-top: 2rem;
		padding-top: 1rem;
		border-top: 1px solid rgba(0,0,0,.08);
	}

	.gaWrRelated h3 {
		margin-bottom: .75rem;
	}

	.gaWrArticleFooter {
		margin-top: 1rem;
	}

	.gaWrFooterMeta {
		display: flex;
		flex-wrap: wrap;
		gap: .5rem 1rem;
		align-items: center;
	}

	.gaWrFooterActions {
		display: flex;
		flex-wrap: wrap;
		gap: .5rem;
		align-items: center;
		opacity: .9;
	}

	.gaWrStaffControls {
		margin-top: 1rem;
	}

	@media screen and (max-width: 767px) {
		.gaWrArticleHero {
			padding: 1rem 1.1rem;
		}

		.gaWrTitle {
			font-size: 1.45rem;
		}

		.gaWrDeck {
			font-size: 1.05rem;
		}

		.gaWrArticle > .ipsPadding {
			padding: 1.1rem;
		}

		.gaWrHeroImage {
			aspect-ratio: 3 / 1;
			margin-bottom: 1.25rem;
		}

		.gaWrBody {
			font-size: 1rem;
			line-height: 1.75;
		}
	}

	.gaWrGrid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 1rem;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.gaWrCard {
		background: #fff;
		border: 1px solid rgba(0,0,0,.08);
		border-radius: 8px;
		overflow: hidden;
		position: relative;
		transition: box-shadow .15s ease, transform .15s ease;
	}

	.gaWrCard:hover {
		box-shadow: 0 8px 22px rgba(0,0,0,.12);
		transform: translateY(-1px);
	}

	.gaWrCard_unread {
		border-left: 4px solid #0b5cab;
	}

	.gaWrCardImage {
		display: block;
		width: 100%;
		aspect-ratio: 3 / 1;
		background: #e9eef5;
		overflow: hidden;
	}

	.gaWrCardImage img {
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
		object-position: center center;
	}

	.gaWrCardBody {
		padding: 1rem 1.1rem 1.05rem;
	}

	.gaWrCardKicker {
		display: flex;
		flex-wrap: wrap;
		gap: .35rem;
		margin-bottom: .65rem;
		font-size: .72rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: .04em;
		color: #345;
	}

	.gaWrCardKicker span {
		background: #eef5fb;
		border-radius: 999px;
		padding: .22rem .5rem;
		line-height: 1.25;
	}

	.gaWrCardTitle {
		font-size: 1.2rem;
		line-height: 1.25;
		margin: 0 0 .45rem;
		font-weight: 800;
	}

	.gaWrCardTitle a {
		color: inherit;
		text-decoration: none;
	}

	.gaWrCardTitle a:hover {
		text-decoration: underline;
	}

	.gaWrCardDeck {
		font-size: .98rem;
		line-height: 1.5;
		color: #33445a;
		margin-bottom: .75rem;
	}

	.gaWrCardMeta {
		font-size: .82rem;
		line-height: 1.45;
		color: #666;
		margin-bottom: .65rem;
	}

	.gaWrCardMeta strong {
		color: #333;
	}

	.gaWrCardTaxonomy {
		display: grid;
		gap: .35rem;
		margin-top: .75rem;
		padding-top: .75rem;
		border-top: 1px solid rgba(0,0,0,.08);
		font-size: .85rem;
		line-height: 1.45;
	}

	.gaWrCardTags {
		margin-top: .75rem;
	}

	.gaWrCardFooter {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: .75rem;
		margin-top: .85rem;
		padding-top: .75rem;
		border-top: 1px solid rgba(0,0,0,.08);
		font-size: .8rem;
		color: #666;
	}

	.gaWrCardStats {
		display: flex;
		flex-wrap: wrap;
		gap: .65rem;
		align-items: center;
		font-size: .78rem;
		color: #666;
	}

	.gaWrCardStatus {
		position: absolute;
		top: .6rem;
		left: .6rem;
		display: flex;
		gap: .25rem;
		z-index: 2;
	}

	.gaWrCardUnreadIcon {
		position: absolute;
		top: .55rem;
		right: .55rem;
		z-index: 2;
	}

	.gaWrCardModCheck {
		position: absolute;
		right: .65rem;
		bottom: .65rem;
		z-index: 2;
	}

	.gaWrCardNoImage {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, #dceaf7, #f7f9fc);
		color: #456;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: .05em;
		font-size: .78rem;
	}
.gaWrCardImage {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 1;
	background: #e9eef5;
	overflow: hidden;
}

.gaWrCardImage img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

	.gaWrCategoryHeader {
		background: #fff;
		border: 1px solid rgba(0,0,0,.08);
		border-radius: 8px;
		padding: 1.5rem 1.75rem;
		margin-bottom: 1.25rem;
	}

	.gaWrCategoryHeaderTop {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 1rem;
		flex-wrap: wrap;
	}

	.gaWrCategoryTitle {
		margin: 0 0 .35rem 0;
		font-size: 2rem;
		line-height: 1.15;
		font-weight: 800;
	}

	.gaWrCategoryDescription {
		font-size: 1.08rem;
		line-height: 1.5;
		color: #33445a;
		max-width: 850px;
	}

	.gaWrCategoryActions {
		display: flex;
		flex-wrap: wrap;
		gap: .5rem;
		align-items: center;
		justify-content: flex-end;
	}

	.gaWrCategoryToolbar {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: .75rem;
		margin: 0 0 1rem 0;
	}

	.gaWrArticleIndex {
		margin-top: 1rem;
	}

	.gaWrArticleIndexEmpty {
		background: #fff;
		border: 1px solid rgba(0,0,0,.08);
		border-radius: 8px;
		padding: 2rem;
		text-align: center;
		color: #667;
	}

	.gaWrArticleIndexGrid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
		gap: 1rem;
	}
.gaWrFeatureCard {
	padding: 0 !important;
	overflow: hidden;
	border-radius: 8px;
}

.gaWrFeatureCard article {
	height: 100%;
}

.gaWrFeatureImage {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 1;
	overflow: hidden;
	background: #e9eef5;
}

.gaWrFeatureImage img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.gaWrFeatureBody {
	padding: 1rem 1.1rem 1.05rem;
}

.gaWrFeatureCard_main .gaWrFeatureBody {
	padding: 1.25rem 1.35rem 1.25rem;
}

.gaWrFeatureKicker {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem;
	margin-bottom: .65rem;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #345;
}

.gaWrFeatureKicker span {
	background: #eef5fb;
	border-radius: 999px;
	padding: .22rem .5rem;
	line-height: 1.25;
}

.gaWrFeatureTitle {
	margin-bottom: .45rem;
	line-height: 1.25;
}

.gaWrFeatureTitle a {
	color: inherit;
	text-decoration: none;
}

.gaWrFeatureTitle a:hover {
	text-decoration: underline;
}

.gaWrFeatureDeck {
	font-size: .98rem;
	line-height: 1.5;
	color: #33445a;
	margin-bottom: .65rem;
}

.gaWrFeatureCard_main .gaWrFeatureDeck {
	font-size: 1.08rem;
}

.gaWrFeatureByline {
	font-size: .85rem;
}

.gaWrFeatureExcerpt {
	font-size: .95rem;
	line-height: 1.55;
	color: #333;
}

.gaWrFeatureExcerpt p {
	margin-bottom: .65rem;
}

.gaWrFeatureTaxonomy {
	display: grid;
	gap: .35rem;
	margin-top: .75rem;
	padding-top: .75rem;
	border-top: 1px solid rgba(0,0,0,.08);
	font-size: .85rem;
	line-height: 1.45;
}

.gaWrFeatureTags {
	margin-top: .75rem;
}

.gaWrFeatureFooter {
	font-size: .85rem;
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	align-items: center;
}

@media screen and (min-width: 768px) {
	.gaWrFeatureCard_main article {
		display: grid;
		grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
		align-items: stretch;
	}

	.gaWrFeatureCard_main .gaWrFeatureImage {
		height: 100%;
		aspect-ratio: auto;
	}

	.gaWrFeatureCard_main .gaWrFeatureImage img {
		height: 100%;
	}
}

@media screen and (max-width: 767px) {
	.gaWrFeatureBody,
	.gaWrFeatureCard_main .gaWrFeatureBody {
		padding: .95rem;
	}

	.gaWrFeatureTitle {
		font-size: 1.1rem;
	}
}

	@media screen and (max-width: 767px) {
		.gaWrCategoryHeader {
			padding: 1rem 1.1rem;
		}

		.gaWrCategoryTitle {
			font-size: 1.45rem;
		}

		.gaWrCategoryDescription {
			font-size: 1rem;
		}

		.gaWrCategoryToolbar {
			justify-content: stretch;
			flex-direction: column;
			align-items: stretch;
		}

		.gaWrArticleIndexGrid {
			grid-template-columns: 1fr;
		}
	}

	@media screen and (max-width: 767px) {
		.gaWrGrid {
			grid-template-columns: 1fr;
		}

		.gaWrCardBody {
			padding: .95rem;
		}

		.gaWrCardTitle {
			font-size: 1.08rem;
		}
	}

