/* =====================================================================
   CreditCorp Group — style.css (v3.0)
   2015-era corporate splash aesthetic. Open Sans throughout, solid
   colour blocks, contained 1170px width, light-grey section dividers,
   classic card patterns. Brand teal #11676a as the single accent.
   ===================================================================== */

:root {
	/* Brand */
	--teal:            #11676a;
	--teal-deep:       #0d5356;
	--teal-darker:     #073f42;
	--teal-light:      #2a8588;
	--teal-mist:       #d6e8e9;
	--teal-wash:       #eaf2f3;

	/* Neutrals — classic 2015 palette */
	--gray-50:         #fafafa;
	--gray-100:        #f5f5f5;
	--gray-200:        #ebebeb;
	--gray-300:        #d8d8d8;
	--gray-400:        #b3b3b3;
	--gray-500:        #777777;
	--gray-600:        #555555;
	--gray-700:        #333333;
	--gray-800:        #222222;

	/* Type — Open Sans for everything (2015 standard) */
	--font-body:       "Open Sans", "Segoe UI", -apple-system, Arial, sans-serif;
	--font-mono:       "Source Code Pro", "Courier New", monospace;

	--container:       1170px;
	--gutter:          15px;
	--radius:          4px;
}

/* ----- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-darker); text-decoration: underline; }
button { font: inherit; cursor: pointer; }

/* ----- Base body -------------------------------------------------- */
body {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.65;
	color: var(--gray-700);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ----- Typography (classic light-weight 2015 headlines) ----------- */
h1, h2, h3, h4 {
	font-family: var(--font-body);
	font-weight: 300;
	color: var(--gray-800);
	line-height: 1.25;
	margin: 0 0 16px;
}
h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; font-weight: 400; }
h4 { font-size: 18px; font-weight: 600; }
@media (max-width: 768px) {
	h1 { font-size: 32px; }
	h2 { font-size: 26px; }
}
p { margin: 0 0 16px; }
strong { font-weight: 600; color: var(--gray-800); }

.lead {
	font-size: 19px;
	font-weight: 300;
	line-height: 1.55;
	color: var(--gray-600);
	margin-bottom: 24px;
}

code, .mono { font-family: var(--font-mono); font-size: 13px; background: var(--gray-100); padding: 1px 6px; border-radius: 3px; }

/* ----- Top breadcrumb / utility bar ------------------------------ */
.utility-bar {
	background: var(--teal-darker);
	color: rgba(255,255,255,.85);
	font-size: 13px;
	padding: 8px 0;
}
.utility-bar a {
	color: #fff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.utility-bar a:hover { color: var(--teal-mist); text-decoration: none; }
.utility-bar__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.utility-bar .crumbs { color: rgba(255,255,255,.6); font-size: 12px; }
.utility-bar .crumbs span { color: rgba(255,255,255,.95); }

/* ----- Header / nav ---------------------------------------------- */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--gray-200);
	padding: 18px 0;
	position: sticky;
	top: 0;
	z-index: 30;
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.brand {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand__logo { height: 36px; width: auto; }
.brand__sub {
	margin-left: 12px;
	padding-left: 12px;
	border-left: 1px solid var(--gray-300);
	font-size: 14px;
	color: var(--gray-500);
	font-weight: 400;
}
@media (max-width: 600px) { .brand__sub { display: none; } }

.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav a { color: var(--gray-600); font-size: 14px; }
.header-nav a:hover { color: var(--teal-deep); }
@media (max-width: 768px) {
	.header-nav .nav-link { display: none; }
}

/* ----- Buttons (solid 2015 style) -------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: var(--radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: all .15s ease;
	text-decoration: none;
	line-height: 1.4;
}
.btn:hover { text-decoration: none; }
a.btn,
a.btn:link,
a.btn:visited,
a.btn:hover,
a.btn:active,
a.btn:focus { text-decoration: none; }

.btn--primary,
.btn--primary:link,
.btn--primary:visited {
	background: var(--teal);
	color: #fff;
	border-color: var(--teal);
}
.btn--primary:hover,
.btn--primary:active,
.btn--primary:focus {
	background: var(--teal-deep);
	color: #fff;
	border-color: var(--teal-deep);
}

.btn--ghost,
.btn--ghost:link,
.btn--ghost:visited {
	background: transparent;
	color: var(--teal-deep);
	border-color: var(--teal);
}
.btn--ghost:hover,
.btn--ghost:active,
.btn--ghost:focus {
	background: var(--teal-wash);
	color: var(--teal-darker);
}

.btn--white,
.btn--white:link,
.btn--white:visited {
	background: #fff;
	color: var(--teal-darker);
	border-color: #fff;
}
.btn--white:hover,
.btn--white:active,
.btn--white:focus {
	background: var(--gray-100);
	color: var(--teal-darker);
}

.btn--outline-light,
.btn--outline-light:link,
.btn--outline-light:visited {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover,
.btn--outline-light:active,
.btn--outline-light:focus {
	background: rgba(255,255,255,.1);
	color: #fff;
}

.btn--lg { padding: 13px 28px; font-size: 15px; }

/* ----- Hero ------------------------------------------------------ */
.hero {
	position: relative;
	color: #fff;
	overflow: hidden;
	padding: 110px 0 100px;
	background: var(--teal-darker);
}
.hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.28;
}
.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(7, 63, 66, .82), rgba(13, 83, 86, .70));
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero__eyebrow {
	display: inline-block;
	padding: 5px 12px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25);
	color: #fff;
	border-radius: 3px;
	margin-bottom: 24px;
}
.hero h1 {
	color: #fff;
	font-size: 52px;
	font-weight: 300;
	margin-bottom: 20px;
	max-width: 22ch;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 768px) { .hero h1 { font-size: 34px; } }
.hero h1 strong { color: #fff; font-weight: 700; }
.hero p.lead {
	color: rgba(255,255,255,.88);
	font-size: 20px;
	max-width: 640px;
	margin: 0 auto 32px;
}
/* Fix: strong text inside the hero needs to be light (default strong is dark grey for body copy) */
.hero p.lead strong,
.hero__inner strong,
.hero blockquote strong { color: #fff; font-weight: 600; }

/* Interior page heros (about, trade-marks, etc.) — slightly more compact than the splash hero */
.hero--page h1   { font-size: 42px; max-width: 28ch; }
.hero--legal h1  { font-size: 38px; max-width: 22ch; }
.hero--article h1 { font-size: 30px; max-width: none; line-height: 1.25; text-align: left; }
.hero--article .hero__inner { text-align: left; }
.hero--article .hero__eyebrow { display: inline-block; }
@media (max-width: 768px) {
	.hero--page h1, .hero--legal h1 { font-size: 28px; }
	.hero--article h1 { font-size: 24px; }
}

/* Feature cards used as link cards on the new home (topic navigation) */
.feature--link {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.feature--link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0,0,0,.08);
	text-decoration: none;
	color: inherit;
}
.feature__more {
	display: inline-block;
	margin-top: 10px;
	color: var(--teal);
	font-weight: 600;
	font-size: 14px;
}
.feature--link:hover .feature__more { color: var(--teal-deep); }

/* Active nav state */
.header-nav .nav-link.is-current {
	color: var(--teal-deep);
	font-weight: 600;
}

/* Utility bar — Search · Contact · Customer site (right side) */
.utility-bar__links a { color: #fff; }
.utility-bar__links a:hover { color: var(--teal-mist); text-decoration: none; }
@media (max-width: 640px) {
	.utility-bar__links a:not([href^="https://credicorp.co.uk"]) { display: inline; }
}
.hero__cta {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}

/* ----- Trust strip ---------------------------------------------- */
.trust-strip {
	background: var(--gray-100);
	border-bottom: 1px solid var(--gray-200);
	padding: 18px 0;
	font-size: 13px;
	color: var(--gray-600);
	text-align: center;
}
.trust-strip__items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 32px;
}
.trust-strip__items span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip__items .dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--teal); display: inline-block;
}

/* ----- Section ---------------------------------------------------- */
section { padding: 80px 0; }
section.section-gray { background: var(--gray-100); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
section.section-dark { background: var(--teal-darker); color: rgba(255,255,255,.85); }
section.section-dark h2, section.section-dark h3 { color: #fff; }

.section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
}
.section-head p { color: var(--gray-500); font-size: 17px; font-weight: 300; }
.section-head .accent-line {
	width: 50px; height: 3px; background: var(--teal);
	margin: 16px auto 24px; border-radius: 2px;
}

/* ----- Feature grid (3 or 4 columns of icon + text) ------------- */
.features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
@media (min-width: 768px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .features { grid-template-columns: repeat(4, 1fr); } }

.feature {
	text-align: center;
	padding: 28px 20px;
}
.feature__icon {
	display: inline-flex;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--teal-wash);
	color: var(--teal);
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.feature__icon svg { width: 36px; height: 36px; }
.feature h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--gray-800);
	margin-bottom: 10px;
}
.feature p {
	color: var(--gray-600);
	font-size: 14.5px;
	line-height: 1.6;
	margin: 0;
}

/* ----- Backlinks panels ----------------------------------------- */
.backlink-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 720px)  { .backlink-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .backlink-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.backlink-panel {
	background: #fff;
	border: 1px solid var(--gray-200);
	border-top: 3px solid var(--teal);
	border-radius: var(--radius);
	padding: 28px 24px;
	box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.backlink-panel h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--gray-800);
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--gray-200);
}
.backlink-panel ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.backlink-panel li {
	border-bottom: 1px dotted var(--gray-200);
}
.backlink-panel li:last-child { border-bottom: 0; }
.backlink-panel a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	color: var(--gray-700);
	font-size: 14px;
}
.backlink-panel a:hover { color: var(--teal-deep); text-decoration: none; }
.backlink-panel a::after {
	content: "›";
	color: var(--gray-400);
	font-size: 18px;
	transition: transform .2s ease, color .2s ease;
}
.backlink-panel a:hover::after { color: var(--teal); transform: translateX(3px); }
.backlink-panel .desc {
	display: block;
	font-size: 12px;
	color: var(--gray-500);
	margin-top: 2px;
	font-weight: 400;
}

/* ----- FAQ accordion ------------------------------------------- */
.faq {
	max-width: 820px;
	margin: 0 auto;
}
.faq-item {
	background: #fff;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	margin-bottom: 12px;
	overflow: hidden;
}
.faq-item summary {
	padding: 18px 22px;
	font-weight: 600;
	color: var(--gray-800);
	font-size: 16px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+";
	font-size: 24px;
	font-weight: 300;
	color: var(--teal);
	margin-left: 16px;
	transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item:hover summary { color: var(--teal-deep); }
.faq-item__body {
	padding: 0 22px 20px;
	color: var(--gray-600);
	font-size: 15px;
	line-height: 1.65;
}
.faq-item__body p:last-child { margin-bottom: 0; }

/* ----- Comparison block (compact, 2015 corporate) -------------- */
.compare {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}
@media (min-width: 768px) { .compare { grid-template-columns: 1fr auto 1fr; gap: 28px; } }
.compare__card {
	background: #fff;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 32px 24px;
	text-align: center;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.compare__card img { max-width: 220px; margin: 0 auto 16px; height: auto; }
.compare__card .label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gray-500);
	margin-bottom: 8px;
}
.compare__card .meta {
	font-size: 12.5px;
	color: var(--gray-500);
	font-family: var(--font-mono);
	margin-top: 8px;
}
.compare__arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--teal);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.compare__arrow .icon {
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--teal); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 22px; margin-bottom: 8px;
}

/* ----- Companies block (2 cols) -------------------------------- */
.companies {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 768px) { .companies { grid-template-columns: repeat(2, 1fr); } }
.company-card {
	background: #fff;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 28px 26px;
}
.company-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--gray-800);
	margin: 0 0 6px;
}
.company-card .role {
	font-size: 13px;
	color: var(--teal);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
}
.company-card address {
	font-style: normal;
	font-size: 14px;
	color: var(--gray-600);
	line-height: 1.65;
	margin-bottom: 14px;
}
.company-card .ch {
	font-family: var(--font-mono);
	font-size: 12.5px;
	color: var(--gray-500);
	padding-top: 14px;
	border-top: 1px solid var(--gray-200);
}
.company-card .ch a { color: var(--teal-deep); }

/* ----- CTA strip ----------------------------------------------- */
.cta-strip {
	background: linear-gradient(135deg, var(--teal-darker), var(--teal-deep));
	color: #fff;
	padding: 60px 0;
	text-align: center;
}
.cta-strip h2 { color: #fff; font-weight: 300; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 24px; }
.cta-strip__buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ----- Footer (classic 2015 dark) ------------------------------ */
.site-footer {
	background: var(--gray-800);
	color: rgba(255,255,255,.7);
	padding: 56px 0 24px;
	font-size: 13.5px;
}
.site-footer__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding-bottom: 32px;
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px) {
	.site-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
}
.site-footer h4 {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 14px;
}
.site-footer a {
	color: rgba(255,255,255,.75);
	text-decoration: none;
}
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 6px; line-height: 1.6; }
.site-footer address {
	font-style: normal;
	line-height: 1.6;
	color: rgba(255,255,255,.7);
}
.site-footer__logo {
	background: #fff;
	padding: 8px 12px;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 14px;
}
.site-footer__logo img { height: 32px; width: auto; }
.legal-bar {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 18px;
	font-size: 12.5px;
	color: rgba(255,255,255,.5);
}

/* ----- Accessibility -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; animation: none !important; }
}

/* ----- Print --------------------------------------------------- */
@media print {
	.site-header, .site-footer, .utility-bar, .hero__cta, .cta-strip { display: none; }
	body { background: #fff; color: #000; }
	.hero { padding: 24px 0; background: none; color: #000; }
	.hero h1, .hero p.lead { color: #000; }
	.hero__bg, .hero__overlay { display: none; }
}

/* =====================================================================
   NEWSROOM — homepage news card + standalone news article page
   ===================================================================== */

.container--narrow { max-width: 760px; }

.plain-list {
	list-style: disc;
	padding-left: 22px;
	margin: 0 0 20px;
}
.plain-list li { margin-bottom: 10px; }

/* ----- Reusable news tag pill ----------------------------------- */
.news-tag {
	display: inline-block;
	background: var(--teal);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 3px;
	line-height: 1;
}

/* ----- Homepage Latest News card -------------------------------- */
.section-news {
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-200);
	padding: 36px 0;
}
.news-card {
	background: #fff;
	border: 1px solid var(--gray-200);
	border-left: 4px solid var(--teal);
	border-radius: var(--radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.04);
	padding: 28px 30px;
	max-width: 920px;
	margin: 0 auto;
}
.news-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 13px;
	color: var(--gray-500);
}
.news-card__meta time {
	font-weight: 600;
	color: var(--gray-600);
}
.news-card__cat {
	border-left: 1px solid var(--gray-300);
	padding-left: 12px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gray-500);
}
.news-card__title {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--gray-800);
	margin: 0 0 10px;
}
.news-card__title a {
	color: var(--gray-800);
	text-decoration: none;
}
.news-card__title a:hover { color: var(--teal-deep); text-decoration: underline; }
.news-card__dek {
	color: var(--gray-600);
	font-size: 15px;
	margin: 0 0 16px;
	line-height: 1.6;
}
.news-card__cta {
	font-size: 14px;
	font-weight: 700;
	color: var(--teal);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.news-card__cta:hover {
	color: var(--teal-deep);
	text-decoration: none;
}
@media (max-width: 600px) {
	.news-card { padding: 22px 20px; }
	.news-card__title { font-size: 20px; }
}

/* ----- News article (standalone page) --------------------------- */
.news-article { color: var(--gray-700); }

.news-article__header {
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-200);
	padding: 48px 0 32px;
}
.news-article__kicker {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
}
.news-article__section {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gray-500);
}
.news-article__headline {
	font-size: 38px;
	font-weight: 300;
	line-height: 1.18;
	color: var(--gray-800);
	margin: 0 0 16px;
	letter-spacing: -0.01em;
}
@media (max-width: 768px) {
	.news-article__headline { font-size: 28px; }
	.news-article__header { padding: 32px 0 24px; }
}
.news-article__dek {
	font-size: 19px;
	font-weight: 300;
	line-height: 1.5;
	color: var(--gray-600);
	margin: 0 0 22px;
}
.news-article__byline {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	align-items: center;
	font-size: 13px;
	color: var(--gray-500);
	border-top: 1px solid var(--gray-200);
	padding-top: 16px;
}
.news-article__byline strong { color: var(--gray-700); }
.news-article__byline time { font-variant-numeric: tabular-nums; }

.news-article__body {
	padding: 40px 0 64px;
	font-size: 16.5px;
	line-height: 1.75;
}
.news-article__body h2 {
	font-size: 24px;
	font-weight: 600;
	color: var(--gray-800);
	margin: 36px 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--gray-200);
}
.news-article__body h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--gray-800);
	margin: 24px 0 8px;
}
.news-article__body p { color: var(--gray-700); }
.news-article__body a { color: var(--teal-deep); border-bottom: 1px solid var(--teal-mist); }
.news-article__body a:hover { border-bottom-color: var(--teal); text-decoration: none; }

/* Inverted-pyramid first paragraph gets a slight emphasis */
.news-article__lead {
	font-size: 18px;
	line-height: 1.65;
	color: var(--gray-800);
	margin-bottom: 22px;
}
.dateline {
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--gray-800);
	margin-right: 4px;
}

/* Pull-quote (figure with blockquote + cite) */
.pullquote {
	margin: 28px 0;
	padding: 24px 28px;
	border-left: 4px solid var(--teal);
	background: var(--teal-wash);
	border-radius: var(--radius);
}
.pullquote blockquote {
	margin: 0;
	font-size: 19px;
	line-height: 1.55;
	font-weight: 400;
	color: var(--teal-darker);
	font-style: italic;
}
.pullquote blockquote p { margin: 0; }
.pullquote figcaption {
	margin-top: 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--gray-600);
	font-style: normal;
}

/* Source document strip */
.doc-strip {
	display: flex;
	align-items: center;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 18px 22px;
	margin: 32px 0;
	box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.doc-strip__icon {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--teal-wash);
	color: var(--teal-deep);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.doc-strip__icon svg { width: 22px; height: 22px; }
.doc-strip__body { flex: 1; min-width: 0; }
.doc-strip__label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gray-500);
}
.doc-strip__title {
	font-size: 15px;
	font-weight: 600;
	color: var(--gray-800);
	margin-top: 2px;
}
.doc-strip__meta {
	font-size: 12.5px;
	color: var(--gray-500);
	margin-top: 2px;
	font-family: var(--font-mono);
}
@media (max-width: 600px) {
	.doc-strip { flex-wrap: wrap; }
	.doc-strip .btn { width: 100%; text-align: center; }
}

/* About / boilerplate block */
.boilerplate {
	background: var(--gray-50);
	border-top: 3px solid var(--teal);
	padding: 28px 28px 8px;
	margin: 40px 0 8px;
	border-radius: var(--radius);
}
.boilerplate h2 {
	border-bottom: 0;
	padding-bottom: 0;
	margin-top: 0;
	font-size: 20px;
	font-weight: 700;
}
.boilerplate h3 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gray-600);
	margin-top: 20px;
}

.news-article__ends {
	text-align: center;
	font-size: 13px;
	letter-spacing: 0.3em;
	color: var(--gray-400);
	margin: 40px 0 0;
}
