/**
 * TAF 2026 — main stylesheet
 * Tokens from Figma: TAF Site Refresh 2025
 */

:root {
	--taf-blue: #002a57;
	--taf-orange: #f15d22;
	--taf-teal: #069ebf;
	--taf-white: #ffffff;
	--taf-light: #f1f2f2;
	--taf-grey-1: #e6e6e6;
	--taf-grey-2: #939598;
	--taf-gold: #b5a811;
	--taf-green: #2eeb20;

	--taf-font: "interstate", "Interstate", system-ui, sans-serif;
	/* Page shell: 1440 max, 40px side gutters → content aligns across header + sections */
	--taf-page-max: 1440px;
	--taf-gutter: 40px;
	--taf-section-pad: clamp(2.5rem, 5vw, 5rem);
	--taf-gutter-section: clamp(1.5rem, 4vw, 3.75rem);
	--taf-gutter-cards: 1.25rem;
	--taf-gutter-ui: 0.625rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--taf-font);
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--taf-blue);
	background: var(--taf-white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

a:hover,
a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

button {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: none;
	padding: 0;
	color: inherit;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
p {
	margin: 0;
}

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

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	left: 1rem;
	top: 1rem;
	width: auto;
	z-index: 100000;
	background: var(--taf-white);
	padding: 0.75rem 1rem;
}

.container {
	box-sizing: border-box;
	width: 100%;
	max-width: var(--taf-page-max);
	margin-inline: auto;
	padding-inline: var(--taf-gutter);
}

.content-area {
	width: min(100% - (var(--taf-gutter) * 2), var(--taf-page-max));
	margin-inline: auto;
	padding-block: var(--taf-section-pad);
}

/* ——— Buttons ——— */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	padding: 1.25rem;
	font-family: var(--taf-font);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	text-decoration: none;
	border: 0;
	border-radius: 0;
	cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
	text-decoration: none;
	filter: brightness(1.06);
}

.btn--orange {
	background: var(--taf-orange);
	color: var(--taf-white);
}

.btn .icon-arrow {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* ——— Pills ——— */

.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 6px;
	border-radius: 6px;
	font-size: 0.875rem;
	line-height: 1.25;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 400;
}

.pill--teal {
	background: rgba(6, 158, 191, 0.1);
	color: var(--taf-teal);
}

/* ——— Alert ——— */

.site-alert {
	background: var(--taf-blue);
	color: var(--taf-white);
	text-align: center;
	padding: 1rem var(--taf-gutter);
}

.site-alert__text {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	font-size: 1rem;
	line-height: 1;
	font-weight: 400;
}

.site-alert__text strong {
	font-weight: 700;
}

.site-alert__ticker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	font-size: 0.8125rem;
	font-weight: 300;
	line-height: 1;
	min-width: 30px;
}

/* ——— Header ——— */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--taf-white);
	border-bottom: 1px solid var(--taf-grey-1);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	min-height: 72px;
	padding-block: 0.5rem;
}

.site-logo {
	display: block;
	flex-shrink: 0;
	width: 83px;
	height: 40px;
	overflow: hidden;
}

.site-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1;
	gap: 1rem;
	min-width: 0;
}

.site-nav__primary,
.site-nav__secondary {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.625rem;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	color: var(--taf-blue);
	text-decoration: none;
	white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	text-decoration: underline;
}

.site-nav .is-current > a {
	text-decoration: underline;
}

.site-nav .has-children > a::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url("../../images/icons/dropdown.svg") center / contain no-repeat;
}

.site-nav__search {
	display: block;
	width: 36px;
	height: 36px;
	padding: 0;
}

.site-nav__search img {
	width: 36px;
	height: 36px;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 0.3rem;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.4rem;
	border: 1px solid var(--taf-grey-1);
}

.nav-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--taf-blue);
}

/* ——— Hero ——— */

.home-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(810px, 90vh);
	padding-block: var(--taf-section-pad);
	padding-inline: 0;
	color: var(--taf-white);
	overflow: hidden;
}

.home-hero__media {
	position: absolute;
	inset: 0;
}

.home-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.home-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
	width: 100%;
}

.home-hero__title {
	font-weight: 700;
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	line-height: 1.2;
	max-width: 18ch;
}

/* ——— Shared navy sections ——— */

.section-navy {
	/* Pattern tiles over a solid navy fill (Figma: image + linear-gradient) */
	background-color: var(--taf-blue);
	background-image:
		url("../../images/home/pattern.png"),
		linear-gradient(90deg, var(--taf-blue) 0%, var(--taf-blue) 100%);
	background-size: 204.8px 115.2px, auto;
	background-position: top left, center;
	background-repeat: repeat, no-repeat;
	background-blend-mode: multiply, normal;
	color: var(--taf-white);
	padding-block: var(--taf-section-pad);
	padding-inline: 0;
	border-bottom: 1px solid rgba(6, 158, 191, 0.1);
}

.section-title {
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
}

.section-title--white {
	color: var(--taf-white);
}

/* ——— Spotlights ——— */

.home-spotlights__intro {
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	max-width: 720px;
	margin-bottom: var(--taf-gutter-section);
}

.spotlight-masonry {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--taf-gutter-section);
}

.spotlight-masonry__col {
	display: flex;
	flex-direction: column;
	gap: var(--taf-gutter-section);
}

.spotlight-masonry__col--offset {
	padding-top: 4.6875rem;
}

.spotlight-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: var(--taf-gutter-cards);
	min-height: 32rem;
	padding: 2.5rem;
	overflow: hidden;
	color: var(--taf-white);
	text-decoration: none;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02);
}

.spotlight-card:hover,
.spotlight-card:focus-visible {
	text-decoration: none;
}

.spotlight-card:hover .spotlight-card__title {
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.spotlight-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spotlight-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent, rgba(0, 42, 87, 0.8));
}

.spotlight-card--orange .spotlight-card__overlay {
	background: linear-gradient(to bottom, transparent, rgba(241, 93, 34, 0.8));
}

.spotlight-card--navy .spotlight-card__overlay {
	background: linear-gradient(to bottom, transparent, rgba(0, 42, 87, 0.8));
}

.spotlight-card--teal .spotlight-card__overlay {
	background: linear-gradient(to bottom, transparent, rgba(6, 158, 191, 0.8));
}

.spotlight-card--gold .spotlight-card__overlay {
	background: linear-gradient(to bottom, transparent, rgba(181, 168, 17, 0.8));
}

.spotlight-card--green .spotlight-card__overlay {
	background: linear-gradient(to bottom, transparent, rgba(46, 235, 32, 0.8));
}

.spotlight-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: var(--taf-gutter-cards);
}

.spotlight-card__title {
	font-weight: 700;
	font-size: 1.375rem;
	line-height: 1.27;
}

.spotlight-card__meta {
	display: flex;
	align-items: center;
	gap: var(--taf-gutter-ui);
}

.spotlight-card__label {
	font-size: 0.875rem;
	line-height: 1.25;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 400;
}

.spotlight-card .icon-arrow {
	width: 16px;
	height: 16px;
}

/* ——— Featured ——— */

.home-featured .section-title {
	margin-bottom: var(--taf-gutter-section);
}

.featured-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--taf-gutter-section);
	margin-bottom: var(--taf-gutter-section);
}

.featured-card {
	display: flex;
	flex-direction: column;
	gap: var(--taf-gutter-section);
	color: var(--taf-white);
	text-decoration: none;
}

.featured-card:hover,
.featured-card:focus-visible {
	text-decoration: none;
}

.featured-card:hover .featured-card__title {
	text-decoration: underline;
}

.featured-card__thumb {
	aspect-ratio: 380 / 214;
	overflow: hidden;
	position: relative;
}

.featured-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--taf-gutter-cards);
}

.featured-card__title {
	font-weight: 400;
	font-size: 1.375rem;
	line-height: 1.27;
}

.featured-card__excerpt {
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.65;
	color: var(--taf-light);
}

.featured-card__meta {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.featured-card__label {
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.featured-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 400;
}

.featured-card__cta .icon-arrow {
	width: 16px;
	height: 16px;
}

.home-featured__action {
	display: flex;
	justify-content: flex-start;
}

/* ——— Resources landing ——— */

.resources-jump {
	position: sticky;
	top: 72px;
	z-index: 90;
	background: var(--taf-white);
	border-bottom: 1px solid var(--taf-grey-1);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02);
}

.resources-jump__inner {
	display: flex;
	align-items: center;
	gap: 0;
}

.resources-jump__link {
	padding: 1.25rem 1rem;
	font-size: 0.875rem;
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--taf-blue);
	text-decoration: none;
	border-bottom: 5px solid transparent;
}

.resources-jump__link:hover,
.resources-jump__link:focus-visible {
	text-decoration: none;
}

.resources-jump__link.is-active {
	border-bottom-color: var(--taf-orange);
}

.resources-hero {
	padding-block: var(--taf-section-pad);
	border-bottom: 1px solid var(--taf-grey-1);
	backdrop-filter: blur(27px);
}

.resources-hero__title {
	max-width: 720px;
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.125;
	color: var(--taf-blue);
}

.resources-section {
	padding-block: var(--taf-section-pad);
	border-bottom: 1px solid var(--taf-grey-1);
}

.resources-section--navy {
	background-color: var(--taf-blue);
	background-image:
		url("../../images/home/pattern.png"),
		linear-gradient(90deg, var(--taf-blue) 0%, var(--taf-blue) 100%);
	background-size: 204.8px 115.2px, auto;
	background-position: top left, center;
	background-repeat: repeat, no-repeat;
	background-blend-mode: multiply, normal;
	color: var(--taf-white);
	border-bottom-color: rgba(6, 158, 191, 0.1);
}

.resources-section--navy .resources-section__title {
	color: var(--taf-white);
}

.resources-section__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: var(--taf-gutter-section);
}

.resources-section__header--stack {
	justify-content: flex-start;
}

.resources-section__heading {
	display: flex;
	flex-direction: column;
	gap: var(--taf-gutter-cards);
	min-width: 0;
}

.resources-section__title {
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	color: var(--taf-blue);
}

.resources-section__filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--taf-gutter-ui);
}

.resources-section__see-all {
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--taf-blue);
	white-space: nowrap;
	padding-top: 0.5rem;
}

.resources-section__see-all--light {
	color: var(--taf-white);
}

.resources-section__footer {
	display: flex;
	justify-content: center;
	margin-top: var(--taf-gutter-section);
	padding-block: 1.25rem;
}

.resources-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--taf-gutter-section);
}

.resources-grid .news-card {
	flex: none;
	width: 100%;
}

.pub-card {
	flex: 0 0 280px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--taf-gutter-cards);
	color: var(--taf-white);
	text-decoration: none;
}

.pub-card:hover,
.pub-card:focus-visible {
	text-decoration: none;
}

.pub-card:hover .pub-card__title {
	text-decoration: underline;
}

.pub-card__thumb {
	width: 171px;
	height: 214px;
	overflow: hidden;
	border: 1px solid rgba(6, 158, 191, 0.1);
}

.pub-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pub-card__title {
	font-weight: 400;
	font-size: 1.375rem;
	line-height: 1.27;
}

.news-slider--research .news-slider__controls {
	height: 214px;
}

.news-slider__controls--on-navy {
	background: linear-gradient(
		to right,
		rgba(0, 42, 87, 0) 0%,
		rgba(0, 42, 87, 1) 55%
	);
}

.news-slider__controls--on-navy.news-slider__controls--prev {
	background: linear-gradient(
		to left,
		rgba(0, 42, 87, 0) 0%,
		rgba(0, 42, 87, 1) 55%
	);
}

.resources-guides .resources-section__title {
	margin-bottom: var(--taf-gutter-section);
}

.resources-guides__action {
	display: flex;
	justify-content: center;
	margin-top: var(--taf-gutter-section);
}

.site-main {
	padding: 0;
}

body.home .site-main,
body.page-template-page-resources .site-main {
	padding: 0;
}

/* ——— News ——— */

.home-news {
	background: var(--taf-white);
	border-bottom: 1px solid var(--taf-grey-1);
	padding-block: var(--taf-section-pad);
	padding-inline: 0;
	overflow: hidden;
}

.home-news .container {
	position: relative;
	overflow: visible;
}

.home-news__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: var(--taf-gutter-section);
}

.home-news__tabs {
	display: flex;
	gap: 1rem;
}

.home-news__tab {
	padding: 0.625rem;
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	color: var(--taf-blue);
	border-bottom: 4px solid transparent;
}

.home-news__tab.is-active {
	border-bottom-color: var(--taf-orange);
}

.home-news__all {
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--taf-blue);
	padding-bottom: 0.25rem;
}

.news-slider {
	position: relative;
}

.news-slider__track {
	display: flex;
	gap: var(--taf-gutter-section);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 0.5rem;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.news-slider__track::-webkit-scrollbar {
	display: none;
}

.news-card {
	flex: 0 0 min(380px, 85vw);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--taf-gutter-cards);
	color: var(--taf-blue);
	text-decoration: none;
}

.news-card:hover,
.news-card:focus-visible {
	text-decoration: none;
}

.news-card:hover .news-card__title {
	text-decoration: underline;
}

.news-card__thumb {
	width: 100%;
	aspect-ratio: 380 / 214;
	overflow: hidden;
}

.news-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card__title {
	width: 100%;
	font-weight: 400;
	font-size: 1.375rem;
	line-height: 1.27;
}

.news-card .pill {
	width: auto;
	align-self: flex-start;
	flex-grow: 0;
}

/* Fade + prev/next controls, aligned to thumbnail row */
.news-slider__controls {
	position: absolute;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 9.5rem;
	height: calc(min(380px, 85vw) * 214 / 380);
	pointer-events: none;
}

.news-slider__controls--prev {
	left: -1.25rem;
	justify-content: flex-start;
	padding: 0 1.25rem;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 1) 55%
	);
}

.news-slider__controls--next {
	right: -1.25rem;
	justify-content: flex-end;
	padding: 0 1.25rem;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 1) 55%
	);
}

.news-slider__btn {
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding: 0;
	background: var(--taf-white);
	border: 2px solid var(--taf-grey-1);
	border-radius: 10px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02);
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.news-slider__btn:hover,
.news-slider__btn:focus-visible {
	border-color: var(--taf-orange);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	outline: none;
}

.news-slider__btn .icon-arrow {
	display: block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	background-color: var(--taf-orange);
	mask: url("../../images/icons/arrow-right-dark.svg") center / contain no-repeat;
	-webkit-mask: url("../../images/icons/arrow-right-dark.svg") center / contain no-repeat;
}

.news-slider__prev .icon-arrow {
	transform: scaleX(-1);
}

/* ——— Newsletter (sitewide) ——— */

.site-newsletter {
	position: relative;
	padding-block: var(--taf-section-pad);
	padding-inline: 0;
	border-bottom: 1px solid var(--taf-grey-1);
	overflow: hidden;
	background: var(--taf-white);
}

.site-newsletter__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.site-newsletter__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
}

.site-newsletter__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 43%);
	backdrop-filter: blur(4px);
}

.site-newsletter__inner {
	position: relative;
	z-index: 1;
}

.site-newsletter__content {
	max-width: 650px;
	display: flex;
	flex-direction: column;
	gap: var(--taf-gutter-section);
}

.site-newsletter__title {
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	color: var(--taf-blue);
}

.signup-form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	max-width: 720px;
	padding: 0.5rem 0.5rem 0.5rem 1.25rem;
	background: var(--taf-white);
	border: 1px solid var(--taf-grey-1);
	border-radius: 8px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02);
}

.signup-form input[type="email"] {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: none;
	font-family: inherit;
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--taf-blue);
	background: transparent;
}

.signup-form input::placeholder {
	color: var(--taf-grey-2);
}

/* ——— Footer ——— */

.site-footer {
	background-color: var(--taf-blue);
	background-image:
		url("../../images/home/pattern.png"),
		linear-gradient(90deg, var(--taf-blue) 0%, var(--taf-blue) 100%);
	background-size: 204.8px 115.2px, auto;
	background-position: top left, center;
	background-repeat: repeat, no-repeat;
	background-blend-mode: multiply, normal;
	color: var(--taf-white);
	padding-block: var(--taf-section-pad);
	padding-inline: 0;
	border-top: 1px solid rgba(241, 242, 242, 0.2);
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--taf-gutter-section);
	margin-bottom: clamp(4rem, 10vw, 9.375rem);
}

.site-footer__brand img {
	width: min(261px, 100%);
	height: auto;
}

.site-footer__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.125rem;
}

.site-footer__label {
	padding: 0.5rem;
	font-size: 0.875rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.7;
}

.site-footer__links a {
	display: block;
	padding: 0.625rem;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	color: var(--taf-white);
	text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
	text-decoration: underline;
}

.site-footer__address {
	padding: 0.5rem;
	font-size: 0.875rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.7;
}

.site-footer__bottom {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--taf-section-pad);
	padding-top: var(--taf-gutter-section);
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer__legal {
	flex: 1;
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 1.6;
}

.site-footer__legal p + p {
	margin-top: 0.625rem;
}

.site-footer__legal a {
	color: var(--taf-white);
	text-decoration: underline;
}

.site-footer__partner {
	flex-shrink: 0;
}

.site-footer__partner img {
	width: 58px;
	height: 40px;
	object-fit: contain;
}

/* ——— Responsive ——— */

@media (max-width: 1024px) {
	.spotlight-masonry {
		grid-template-columns: 1fr 1fr;
	}

	.spotlight-masonry__col--offset {
		padding-top: 0;
	}

	.spotlight-masonry__col:last-child {
		grid-column: 1 / -1;
	}

	.spotlight-masonry__col:last-child {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.news-slider__controls--prev {
		left: 0;
		width: 5.5rem;
		padding-left: 0;
	}

	.news-slider__controls--next {
		right: 0;
		width: 5.5rem;
		padding-right: 0;
	}
}

@media (max-width: 768px) {
	.nav-toggle {
		display: flex;
		margin-left: auto;
	}

	.site-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		flex-direction: column;
		align-items: stretch;
		background: var(--taf-white);
		border-bottom: 1px solid var(--taf-grey-1);
		padding: 1rem var(--taf-gutter) 1.5rem;
		gap: 1rem;
	}

	.site-header.is-nav-open .site-nav {
		display: flex;
	}

	.site-header {
		position: sticky;
	}

	.site-header__inner {
		position: relative;
		flex-wrap: wrap;
	}

	.site-nav__primary,
	.site-nav__secondary {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.home-hero {
		min-height: 70vh;
	}

	.spotlight-masonry,
	.spotlight-masonry__col:last-child,
	.featured-grid,
	.site-footer__top,
	.site-footer__cols {
		grid-template-columns: 1fr;
	}

	.spotlight-masonry__col:last-child {
		display: flex;
		flex-direction: column;
	}

	.spotlight-card {
		min-height: 22rem;
	}

	.home-news__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.signup-form {
		flex-direction: column;
		align-items: stretch;
		padding: 0.75rem;
	}

	.signup-form .btn {
		justify-content: center;
	}

	.site-footer__bottom {
		flex-direction: column;
	}

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

	.resources-section__header {
		flex-direction: column;
	}

	.resources-jump {
		top: 0;
		overflow-x: auto;
	}

	.news-slider__controls {
		display: none;
	}
}
