/*
 * Yale Capital — main stylesheet
 * -----------------------------------------------------------
 * Tokens live in :root as CSS custom properties. To swap in the client's
 * brand fonts later, replace the two @font-face rules below and update
 * --font-serif / --font-sans. Everything else uses the tokens.
 *
 * WCAG 2.2 AA color contrast on the mockup palette:
 *   #333 on #FFF        = 12.6:1  (body text)
 *   #333 on #F3F4F5     = 11.7:1  (body text on panel)
 *   #101632 on #FFF     = 15.1:1  (H1/H2 on white)
 *   #101632 on #F3F4F5  = 14.1:1  (H1 on hero panel)
 *   #FFF on #101632     = 15.1:1  (button, CTA band)
 *   #207BA0 on #FFF     = 4.7:1   (link accent — passes AA large & 4.5:1 normal)
 *   #185E7A on #FFF     = 6.9:1   (link hover, passes AA)
 * -----------------------------------------------------------
 */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/PlayfairDisplay-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/PlayfairDisplay-Italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
	--navy:       #101632;
	--navy-deep:  #050927;   /* footer */
	--ink:        #333333;   /* body text */
	--panel:      #F3F4F5;   /* hero + section panels */
	--rule:       #DDE1E5;   /* thin dividers */
	--rule-strong:#CFD5DC;
	--white:      #ffffff;
	--accent:     #207BA0;
	--accent-hov: #185E7A;

	--font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	--container: 1180px;
	--pad-x:      24px;
	--section-pad-desktop: 88px;
	--section-pad-mobile:  56px;

	--radius:  0;             /* editorial: hard rectangles */
	--focus:   3px solid var(--accent);

	--transition: 160ms ease-out;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover, a:focus-visible { color: var(--accent-hov); text-decoration: underline; }
a:focus-visible { outline: var(--focus); outline-offset: 2px; border-radius: 2px; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
button:focus-visible { outline: var(--focus); outline-offset: 2px; }

/* ---------- Skip link ---------- */
.ycc-skip {
	position: absolute; left: -9999px; top: auto;
	background: var(--navy); color: var(--white);
	padding: 8px 12px; z-index: 100;
}
.ycc-skip:focus { left: 8px; top: 8px; }

/* ---------- Layout primitives ---------- */
.ycc-container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--pad-x);
}
.ycc-section { position: relative; }
.ycc-section--pad { padding: var(--section-pad-mobile) 0; }
@media (min-width: 900px) {
	.ycc-section--pad { padding: var(--section-pad-desktop) 0; }
}

/* ---------- Typography ---------- */
.ycc-h1, .ycc-p1__heading {
	font-family: var(--font-serif);
	font-weight: 600;
	color: var(--navy);
	font-size: clamp(30px, 4.4vw, 48px);
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 20px;
}
.ycc-h2 {
	font-family: var(--font-serif);
	font-weight: 600;
	color: var(--navy);
	font-size: clamp(24px, 2.8vw, 32px);
	line-height: 1.22;
	margin: 0 0 16px;
}
.ycc-h3 {
	font-family: var(--font-serif);
	font-weight: 600;
	color: var(--navy);
	font-size: 20px;
	line-height: 1.3;
	margin: 0 0 10px;
}
.ycc-prose p, .ycc-prose ul, .ycc-prose ol { margin: 0 0 1em; }
.ycc-prose p:last-child { margin-bottom: 0; }
.ycc-prose ul, .ycc-prose ol { padding-left: 1.2em; }

/* Thin accent rule used above section headings and cards (mockup motif). */
.ycc-p3__title::before,
.ycc-p5__lead::before,
.ycc-p6__q::before,
.ycc-textstat__body h2::before {
	content: "";
	display: block;
	width: 44px;
	height: 2px;
	background: var(--accent);
	margin: 0 0 12px;
}

/* ---------- Buttons ---------- */
.ycc-btn {
	display: inline-block;
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	padding: 14px 22px;
	border: 1px solid transparent;
	text-decoration: none;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
	white-space: nowrap;
}
.ycc-btn:hover, .ycc-btn:focus-visible { text-decoration: none; }
.ycc-btn--primary   { background: var(--navy); color: var(--white); border-color: var(--navy); }
.ycc-btn--primary:hover, .ycc-btn--primary:focus-visible { background: #1a2247; color: var(--white); }
.ycc-btn--secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.ycc-btn--secondary:hover, .ycc-btn--secondary:focus-visible { background: var(--navy); color: var(--white); }
.ycc-btn--onnavy    { background: var(--white); color: var(--navy); border-color: var(--white); }
.ycc-btn--onnavy:hover, .ycc-btn--onnavy:focus-visible { background: #EEF1F5; color: var(--navy); }

/* Arrow link */
.ycc-arrow-link { font-weight: 500; color: var(--accent); }
.ycc-arrow-link:hover, .ycc-arrow-link:focus-visible { color: var(--accent-hov); text-decoration: underline; }

/* ---------- Header ---------- */
.ycc-header {
	background: var(--white);
	border-bottom: 1px solid var(--rule);
	position: relative;
	z-index: 30;
}
.ycc-header__row {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 72px;
}
.ycc-header__brand { flex: 0 0 auto; }
.ycc-brand { color: var(--navy); font-family: var(--font-serif); font-size: 22px; font-weight: 600; }
.ycc-brand:hover { color: var(--navy); text-decoration: none; }
.ycc-header__cta { flex: 0 0 auto; margin-left: auto; }
.custom-logo { max-height: 44px; width: auto; }

.ycc-header__hamburger {
	display: none;
	margin-left: auto;
	padding: 10px;
}
.ycc-header__hamburger span {
	display: block; width: 22px; height: 2px; background: var(--navy);
	margin: 4px 0;
	transition: transform var(--transition), opacity var(--transition);
}

.ycc-nav { flex: 1 1 auto; }
.ycc-nav__list {
	list-style: none;
	display: flex;
	gap: 4px;
	margin: 0;
	padding: 0;
	justify-content: center;
	flex-wrap: wrap;
}
.ycc-nav__item { position: relative; }
.ycc-nav__link, .ycc-nav__toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 12px;
	color: var(--ink);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	background: none;
	border: 0;
	border-bottom: 2px solid transparent;
	cursor: pointer;
}
.ycc-nav__link:hover, .ycc-nav__toggle:hover,
.ycc-nav__link:focus-visible, .ycc-nav__toggle:focus-visible {
	color: var(--navy);
	text-decoration: none;
	border-bottom-color: var(--accent);
}
.ycc-nav__item--current > .ycc-nav__link { color: var(--navy); border-bottom-color: var(--navy); }
.ycc-nav__caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; margin-top: 2px; }

.ycc-nav__submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 260px;
	background: var(--white);
	border: 1px solid var(--rule);
	box-shadow: 0 8px 24px rgba(16,22,50,.08);
	list-style: none;
	padding: 8px 0;
	margin: 0;
	display: none;
	z-index: 40;
}
.ycc-nav__item.is-open > .ycc-nav__submenu,
.ycc-nav__item:hover > .ycc-nav__submenu {
	display: block;
}
.ycc-nav__item.is-open > .ycc-nav__toggle { border-bottom-color: var(--accent); }
.ycc-nav__item.is-open > .ycc-nav__toggle .ycc-nav__caret { transform: rotate(180deg); }
.ycc-nav__submenu .ycc-nav__sublink {
	display: block;
	padding: 10px 18px;
	color: var(--ink);
	font-size: 14px;
	line-height: 1.35;
}
.ycc-nav__submenu .ycc-nav__sublink:hover,
.ycc-nav__submenu .ycc-nav__sublink:focus-visible {
	background: var(--panel);
	color: var(--navy);
	text-decoration: none;
}
.ycc-nav__hint { color: #888; font-size: 13px; padding: 8px 12px; }

/* Header — mobile */
@media (max-width: 899px) {
	.ycc-header__hamburger { display: block; }
	.ycc-nav {
		flex-basis: 100%;
		order: 3;
		display: none;
		background: var(--white);
		border-top: 1px solid var(--rule);
		margin: 0 -24px;
		padding: 8px 0 16px;
	}
	.ycc-nav.is-open { display: block; }
	.ycc-nav__list { flex-direction: column; gap: 0; }
	.ycc-nav__item { border-bottom: 1px solid var(--rule); }
	.ycc-nav__link, .ycc-nav__toggle { width: 100%; padding: 14px 24px; justify-content: space-between; }
	.ycc-nav__submenu {
		position: static;
		box-shadow: none;
		border: 0;
		border-top: 1px solid var(--rule);
		background: var(--panel);
		padding: 4px 0;
	}
	.ycc-nav__submenu .ycc-nav__sublink { padding: 12px 32px; }
	.ycc-header__cta { display: none; }
}

/* ---------- P1 Hero ---------- */
.ycc-p1 {
	background: var(--panel);
	padding: 80px 0 96px;
}
@media (max-width: 899px) { .ycc-p1 { padding: 56px 0 64px; } }
.ycc-p1__inner { max-width: 820px; }
.ycc-p1__subhead {
	font-size: clamp(16px, 1.5vw, 18px);
	line-height: 1.6;
	color: var(--ink);
	margin: 0 0 28px;
	max-width: 720px;
}
.ycc-p1__actions { margin: 0; }

/* ---------- P2 Stat band ---------- */
.ycc-p2 { padding: 40px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.ycc-p2__grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
.ycc-p2__grid--3 { grid-template-columns: repeat(3, 1fr); }
.ycc-p2__grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 899px) {
	.ycc-p2__grid--3, .ycc-p2__grid--4 { grid-template-columns: 1fr 1fr; }
}
.ycc-p2__tile { }
.ycc-p2__value {
	font-family: var(--font-serif);
	font-weight: 600;
	color: var(--navy);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1;
	margin: 0 0 8px;
}
.ycc-p2__label {
	font-size: 12px;
	line-height: 1.4;
	color: #6b6f76;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0;
}
.ycc-p2__footnote { font-size: 12px; color: #6b6f76; margin: 24px 0 0; }

/* ---------- P3 Card grid ---------- */
.ycc-p3__heading { margin-bottom: 32px; }
.ycc-p3__grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
.ycc-p3__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.ycc-p3__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1099px) {
	.ycc-p3__grid--cols-3, .ycc-p3__grid--cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	.ycc-p3__grid--cols-3, .ycc-p3__grid--cols-4 { grid-template-columns: 1fr; }
}
.ycc-p3__card { display: flex; }
.ycc-p3__card-inner {
	background: var(--white);
	border: 1px solid var(--rule);
	padding: 24px;
	color: var(--ink);
	display: flex;
	flex-direction: column;
	flex: 1;
	transition: border-color var(--transition), transform var(--transition);
}
.ycc-p3__card-inner--link:hover,
.ycc-p3__card-inner--link:focus-visible {
	border-color: var(--navy);
	text-decoration: none;
	color: var(--ink);
}
.ycc-p3__title { margin-top: 4px; }
.ycc-p3__text { font-size: 15px; line-height: 1.55; margin: 0 0 12px; }
.ycc-p3__more, .ycc-p3__source { margin: auto 0 0; }

/* Team roster variant */
.ycc-p3--team-roster .ycc-p3__card-inner { padding: 20px; }
.ycc-p3--team-roster .ycc-p3__media {
	aspect-ratio: 1 / 1;
	background: var(--panel);
	margin: -20px -20px 16px;
	overflow: hidden;
}
.ycc-p3--team-roster .ycc-p3__media img { width: 100%; height: 100%; object-fit: cover; }
.ycc-p3--team-roster .ycc-p3__title { font-size: 18px; margin-bottom: 4px; }
.ycc-p3--team-roster .ycc-p3__title::before { display: none; }
.ycc-p3--team-roster .ycc-p3__text { color: #6b6f76; font-size: 13px; text-transform: none; }

/* Recognition variant */
.ycc-p3--recognition .ycc-p3__media {
	background: var(--panel);
	padding: 24px;
	margin: -24px -24px 16px;
	display: flex; align-items: center; justify-content: center;
	min-height: 120px;
}
.ycc-p3--recognition .ycc-p3__media img { max-height: 80px; width: auto; }

/* ---------- P4 Image + text split ---------- */
.ycc-p4 { background: var(--panel); }
.ycc-p4__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ycc-p4--left .ycc-p4__grid { grid-template-columns: 1fr 1fr; }
.ycc-p4--left .ycc-p4__body { order: 2; }
.ycc-p4--left .ycc-p4__media { order: 1; }
@media (max-width: 899px) { .ycc-p4__grid { grid-template-columns: 1fr; gap: 24px; } }
.ycc-p4__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--rule); }
.ycc-p4__media img { width: 100%; height: 100%; object-fit: cover; }
.ycc-p4__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #E8ECEF, #D7DEE5); }
.ycc-p4__links { list-style: none; margin: 20px 0 0; padding: 0; display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- P5 Checklist ---------- */
.ycc-p5__intro { margin-bottom: 32px; max-width: 780px; }
.ycc-p5__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 40px 48px; }
.ycc-p5__list--cols-1 { grid-template-columns: 1fr; }
.ycc-p5__list--cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 899px) { .ycc-p5__list--cols-2 { grid-template-columns: 1fr; } }
.ycc-p5__lead { margin: 0 0 8px; }
.ycc-p5__lead-link { color: var(--navy); }
.ycc-p5__lead-link:hover { color: var(--accent-hov); text-decoration: underline; }
.ycc-p5__desc { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.55; }

/* ---------- P6 Accordion ---------- */
.ycc-p6__list { list-style: none; margin: 24px 0 0; padding: 0; }
.ycc-p6__item { border-top: 1px solid var(--rule); }
.ycc-p6__item:last-child { border-bottom: 1px solid var(--rule); }
.ycc-p6__q {
	display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
	padding: 20px 0;
	cursor: pointer;
	list-style: none;
}
.ycc-p6__q::-webkit-details-marker { display: none; }
.ycc-p6__q .ycc-h3 { margin: 0; padding-top: 0; }
.ycc-p6__q .ycc-h3::before { display: none; }
.ycc-p6__icon {
	position: relative;
	width: 18px; height: 18px;
	flex-shrink: 0;
	margin-top: 6px;
}
.ycc-p6__icon::before, .ycc-p6__icon::after {
	content: "";
	position: absolute;
	background: var(--navy);
	top: 50%; left: 50%;
}
.ycc-p6__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.ycc-p6__icon::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform var(--transition); }
details[open] .ycc-p6__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.ycc-p6__a { padding: 0 0 24px; max-width: 820px; }
.ycc-p6__a p { margin: 0 0 1em; }
.ycc-p6__more { margin-top: 24px; }

/* ---------- P7 CTA band ---------- */
.ycc-p7 { background: var(--navy); color: var(--white); padding: 56px 0; text-align: center; }
.ycc-p7__line { font-family: var(--font-serif); font-size: clamp(20px, 2vw, 24px); margin: 0 0 20px; color: var(--white); }
.ycc-p7__actions { margin: 0; }

/* ---------- P8 Award strip ---------- */
.ycc-p8 { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 20px 0; }
.ycc-p8__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.ycc-p8__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.ycc-p8__text { font-size: 13px; color: var(--ink); font-weight: 500; }
.ycc-p8__more { margin: 0; font-size: 13px; }

/* ---------- Text section variants ---------- */
.ycc-text__grid, .ycc-textstat__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
@media (max-width: 899px) { .ycc-text__grid, .ycc-textstat__grid { grid-template-columns: 1fr; gap: 24px; } }
.ycc-text__links { list-style: none; margin: 20px 0 0; padding: 0; display: flex; gap: 24px; flex-wrap: wrap; }
.ycc-textstat__stat { background: var(--panel); padding: 32px; text-align: left; align-self: start; }
.ycc-textstat__stat .ycc-p2__value { font-size: 40px; }

.ycc-textc { background: var(--white); }
.ycc-textc__quote {
	max-width: 780px; margin: 0 auto; text-align: center;
	font-family: var(--font-serif); font-style: italic; font-size: 18px; line-height: 1.7;
	color: var(--ink); border: 0; padding: 0;
}
.ycc-textc__quote p { margin: 0 0 1em; }

/* ---------- Glossary ---------- */
.ycc-glossary__list { margin: 0; }
.ycc-glossary__row {
	padding: 24px 0;
	border-top: 1px solid var(--rule);
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 32px;
	scroll-margin-top: 96px;
}
.ycc-glossary__row:last-child { border-bottom: 1px solid var(--rule); }
@media (max-width: 720px) { .ycc-glossary__row { grid-template-columns: 1fr; gap: 8px; } }
.ycc-glossary__term { font-family: var(--font-serif); font-weight: 600; color: var(--navy); font-size: 18px; margin: 0; }
.ycc-glossary__def  { margin: 0; font-size: 15px; line-height: 1.6; }
.ycc-glossary__def p { margin: 0 0 1em; }

/* ---------- Documents (disclosures) ---------- */
.ycc-docs__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 899px) { .ycc-docs__grid { grid-template-columns: 1fr; } }
.ycc-docs__item { border: 1px solid var(--rule); padding: 24px; }
.ycc-docs__sub { color: #6b6f76; font-size: 14px; margin: 0 0 12px; }

/* ---------- Contact ---------- */
.ycc-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 899px) { .ycc-contact__grid { grid-template-columns: 1fr; } }
.ycc-contact__nap { font-style: normal; line-height: 1.7; margin: 0 0 16px; }
.ycc-contact__hours { color: #6b6f76; margin: 0 0 24px; }
.ycc-contact__map img { width: 100%; height: auto; border: 1px solid var(--rule); }
.ycc-contact__mapcap { font-size: 13px; margin: 8px 0 0; text-align: right; }

/* ---------- Team bio ---------- */
.ycc-bio__grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; }
@media (max-width: 720px) { .ycc-bio__grid { grid-template-columns: 1fr; gap: 24px; } }
.ycc-bio__headshot { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--panel); }
.ycc-bio__headshot--placeholder { background: linear-gradient(135deg, #E8ECEF, #D7DEE5); }
.ycc-bio__title { font-size: 18px; color: #6b6f76; margin: -8px 0 24px; }
.ycc-breadcrumb { font-size: 13px; color: #6b6f76; margin: 0 0 20px; }
.ycc-breadcrumb a { color: #6b6f76; }
.ycc-breadcrumb a:hover { color: var(--accent-hov); text-decoration: underline; }

/* ---------- Footer ---------- */
.ycc-footer { background: var(--navy-deep); color: #C7CBD6; padding: 72px 0 40px; }
.ycc-footer a { color: #C7CBD6; }
.ycc-footer a:hover, .ycc-footer a:focus-visible { color: var(--white); text-decoration: underline; }
.ycc-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 899px) { .ycc-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .ycc-footer__grid { grid-template-columns: 1fr; } }
.ycc-footer__heading {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--white);
	margin: 0 0 16px;
}
.ycc-footer__logo img { max-height: 40px; width: auto; filter: brightness(0) invert(1); }
.ycc-footer__wordmark { font-family: var(--font-serif); font-size: 20px; color: var(--white); margin: 0 0 16px; }
.ycc-footer__blurb { font-size: 13px; line-height: 1.6; margin: 0 0 20px; color: #A9AEBE; }
.ycc-footer__nap { font-style: normal; font-size: 13px; line-height: 1.7; margin: 0 0 16px; }
.ycc-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ycc-footer__menu a { font-size: 14px; }
.ycc-footer__menu--plain li { font-size: 13px; color: #A9AEBE; }
.ycc-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid #2a3050; }
.ycc-footer__social a:hover { border-color: var(--white); color: var(--white); }
.ycc-footer__ghostlink { font-size: 13px; }
.ycc-footer__note { font-size: 12px; color: #7a7f92; }
.ycc-footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid #1c2144; font-size: 12px; color: #7a7f92; }
.ycc-footer__bottom p { margin: 0 0 8px; }
.ycc-footer__disclosure { max-width: 900px; font-style: italic; }

/* ---------- List (search / archive fallback) ---------- */
.ycc-list--posts { list-style: none; margin: 0; padding: 0; }
.ycc-list--posts li { padding: 24px 0; border-top: 1px solid var(--rule); }
.ycc-list--posts a { color: var(--ink); }

/* ---------- Small utilities ---------- */
.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; width: 1px; overflow: hidden; position: absolute !important;
	word-wrap: normal !important;
}

/* ---------- Print (basic; disclosures friendly) ---------- */
@media print {
	.ycc-header, .ycc-footer, .ycc-p7, .ycc-p8 { display: none; }
	.ycc-section--pad { padding: 24px 0; }
	body { color: #000; }
	a { color: #000; text-decoration: underline; }
}
