/*
 * TPF — News and Updates
 * Full-bleed navy section: three stacked sub-sections (Instagram, LinkedIn,
 * Articles). Embed sections fall back to a 100%-width image strip when no
 * embed code is supplied.
 */

.tpf-nau {
	background-color: #293c7b;
	color: #ffffff;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-bottom: 0;
	padding: 4rem 0 4rem;
	font-family: proxima-nova, "Proxima Nova", -apple-system, BlinkMacSystemFont, sans-serif;
}

.tpf-nau__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.tpf-nau__title {
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
	color: #ffffff;
	margin: 0 0 32px;
	padding: 0;
}

.tpf-nau__title-main {
	color: #ffffff;
	font-weight: 400;
}

.tpf-nau__title-accent {
	color: #00b3f1;
	font-weight: 700;
}

.tpf-nau__section {
	margin-bottom: 3.5rem;
}

.tpf-nau__section:last-child {
	margin-bottom: 0;
}

.tpf-nau__heading {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 400;
	color: #ffffff;
	margin: 0 0 24px;
	padding: 0;
}

/* ---------- Embed / strip fallback ---------- */

.tpf-nau__embed {
	width: 100%;
}

.tpf-nau__strip {
	width: 100%;
}

.tpf-nau__strip img {
	display: block;
	width: 100%;
	height: auto;
}

/* ---------- Articles grid ---------- */

.tpf-nau__articles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 22px;
	row-gap: 2.5rem;
}

.tpf-nau__article {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.tpf-nau__article:hover,
.tpf-nau__article:focus-visible {
	outline: none;
}

.tpf-nau__article:focus-visible .tpf-nau__article-image {
	outline: 2px solid #57aee6;
	outline-offset: 4px;
}

.tpf-nau__article-image {
	display: block;
	width: 100%;
	aspect-ratio: 378 / 234;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #1f2d5e;
	transition: filter 0.3s ease;
}

.tpf-nau__article:hover .tpf-nau__article-image {
	filter: brightness(0.9);
}

.tpf-nau__article-title {
	display: block;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 400;
	color: #ffffff;
	margin-top: 28px;
}

.tpf-nau__article[hidden] {
	display: none;
}

/* ---------- Load more ---------- */

.tpf-nau__load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.tpf-nau__load-more {
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	border: 1px solid #57aee6;
	color: #ffffff;
	font-family: inherit;
	font-size: 18px;
	font-weight: 700;
	min-width: 189px;
	min-height: 41px;
	padding: 0.5rem 1.5rem;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.tpf-nau__load-more:hover,
.tpf-nau__load-more:focus-visible {
	background-color: #57aee6;
	color: #ffffff;
	outline: none;
}

.tpf-nau__load-more[hidden] {
	display: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.tpf-nau__title {
		font-size: 32px;
	}
	.tpf-nau__heading {
		font-size: 26px;
	}
	.tpf-nau__article-title {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.tpf-nau {
		padding: 3rem 0 3rem;
	}
	.tpf-nau__title {
		font-size: 26px;
		margin-bottom: 1.5rem;
	}
	.tpf-nau__heading {
		font-size: 22px;
		margin-bottom: 1rem;
	}
	.tpf-nau__section {
		margin-bottom: 2.5rem;
	}
	.tpf-nau__articles {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 1rem;
		row-gap: 2rem;
	}
	.tpf-nau__article-title {
		font-size: 18px;
		margin-top: 1rem;
	}
}

@media (max-width: 480px) {
	.tpf-nau__articles {
		grid-template-columns: 1fr;
	}
}
