* {
	box-sizing: border-box;
}

:root {
	--fr-blue: #5b9bc8;
	--fr-blue-dark: #16324f;
	--fr-green: #6ab04c;
	--fr-ink: #162636;
	--fr-text: #435462;
	--fr-muted: #71808d;
	--fr-line: #dce7ef;
	--fr-soft: #f4f9fd;
	--fr-green-soft: #f0f8eb;
	--fr-white: #ffffff;
}

@keyframes frPatternShift {
	0% {
		background-position: 0 0, 0 0, 0 0, 0 0;
	}
	100% {
		background-position: 72px 48px, -64px 40px, 48px -72px, 0 0;
	}
}

body {
	margin: 0;
	background: #eef2f6;
	color: var(--fr-text);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 1.6;
}

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

.fr-page {
	min-height: 100vh;
}

.fr-header {
	background: linear-gradient(135deg, #ffffff 0%, #f4f9fd 100%);
	border-bottom: 1px solid var(--fr-line);
}

.fr-header-inner,
.fr-main,
.fr-footer-inner {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

.fr-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 0;
}

.fr-logo img {
	display: block;
	width: 180px;
	height: auto;
}

.fr-nav {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.fr-nav a {
	color: var(--fr-blue-dark);
}

.fr-nav a:hover,
.fr-nav a:focus {
	color: var(--fr-green);
}

.fr-hero {
	background: var(--fr-blue-dark);
	color: var(--fr-white);
	overflow: hidden;
	position: relative;
}

.fr-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(106, 176, 76, 0.14) 0%, rgba(106, 176, 76, 0) 32%),
		radial-gradient(circle at 78% 22%, rgba(91, 155, 200, 0.32) 0%, rgba(91, 155, 200, 0) 30%),
		radial-gradient(circle at 18% 80%, rgba(106, 176, 76, 0.14) 0%, rgba(106, 176, 76, 0) 28%),
		#16324f;
	pointer-events: none;
}

.fr-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
		linear-gradient(135deg, transparent 0 46%, rgba(106, 176, 76, 0.16) 46% 47%, transparent 47% 100%),
		linear-gradient(45deg, transparent 0 42%, rgba(91, 155, 200, 0.14) 42% 43%, transparent 43% 100%);
	background-size: 48px 48px, 48px 48px, 180px 180px, 220px 220px;
	opacity: 0.72;
	animation: frPatternShift 18s linear infinite;
	pointer-events: none;
}

.fr-hero-inner {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 78px 0 68px;
	position: relative;
	z-index: 1;
}

.fr-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 7px 13px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #dcefff;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.fr-hero h1 {
	max-width: 760px;
	margin: 0 0 16px;
	color: #ffffff;
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: 0;
}

.fr-hero p {
	max-width: 660px;
	margin: 0;
	color: #d7e4ef;
	font-size: 18px;
	line-height: 1.75;
}

.fr-main {
	padding: 42px 0 60px;
}

.fr-toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.fr-section-label {
	margin: 0 0 4px;
	color: var(--fr-green);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.fr-toolbar h2 {
	margin: 0;
	color: var(--fr-ink);
	font-size: 28px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0;
}

.fr-count {
	color: var(--fr-muted);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.fr-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.fr-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	background: var(--fr-white);
	border: 1px solid var(--fr-line);
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(22, 38, 54, 0.06);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.fr-card:hover,
.fr-card:focus-within {
	transform: translateY(-2px);
	border-color: #b9d9ef;
	box-shadow: 0 10px 26px rgba(22, 38, 54, 0.1);
}

.fr-card-media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #e8f3fb 0%, #f0f8eb 100%);
	color: var(--fr-blue-dark);
	font-size: 42px;
	font-weight: 900;
}

.fr-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	color: transparent;
	font-size: 0;
}

.fr-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.fr-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: var(--fr-muted);
	font-size: 12px;
	font-weight: 800;
}

.fr-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--fr-green-soft);
	color: #4d8c34;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.fr-card h3 {
	margin: 0 0 10px;
	color: var(--fr-ink);
	font-size: 21px;
	line-height: 1.25;
	font-weight: 900;
	letter-spacing: 0;
}

.fr-card p {
	margin: 0 0 18px;
	color: var(--fr-text);
	font-size: 15px;
	line-height: 1.65;
}

.fr-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: #2e77ad;
	font-size: 14px;
	font-weight: 900;
}

.fr-article-main {
	width: min(920px, calc(100% - 32px));
	margin: 0 auto;
	padding: 42px 0 64px;
}

.fr-article-main-with-ads {
	width: min(1180px, calc(100% - 32px));
}

.fr-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.fr-article-main-with-ads .fr-article-layout {
	grid-template-columns: minmax(0, 820px) minmax(260px, 300px);
	justify-content: center;
	align-items: stretch;
}

.fr-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
	color: var(--fr-muted);
	font-size: 13px;
	font-weight: 700;
}

.fr-breadcrumb a {
	color: #2e77ad;
}

.fr-article {
	overflow: hidden;
	background: var(--fr-white);
	border: 1px solid var(--fr-line);
	border-radius: 8px;
	box-shadow: 0 8px 28px rgba(22, 38, 54, 0.07);
}

.fr-article-hero {
	padding: 38px 42px 30px;
	background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
	border-bottom: 1px solid var(--fr-line);
}

.fr-article-hero h1 {
	max-width: 780px;
	margin: 0 0 16px;
	color: var(--fr-ink);
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0;
}

.fr-article-lead {
	max-width: 740px;
	margin: 0;
	color: var(--fr-text);
	font-size: 18px;
	line-height: 1.75;
}

.fr-article-image {
	margin: 0;
	background: var(--fr-soft);
}

.fr-article-image img {
	display: block;
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.fr-article-content {
	padding: 38px 42px 18px;
	color: var(--fr-text);
	font-size: 18px;
	line-height: 1.85;
}

.fr-article-content h2,
.fr-article-content h3 {
	color: var(--fr-ink);
	line-height: 1.2;
	letter-spacing: 0;
}

.fr-article-content h2 {
	margin: 34px 0 12px;
	font-size: 30px;
	font-weight: 900;
}

.fr-article-content h3 {
	margin: 28px 0 10px;
	font-size: 24px;
	font-weight: 900;
}

.fr-article-content p {
	margin: 0 0 20px;
}

.fr-article-content ul,
.fr-article-content ol {
	margin: 0 0 22px 22px;
	padding: 0;
}

.fr-article-content li {
	margin-bottom: 8px;
}

.fr-article-content blockquote {
	margin: 28px 0;
	padding: 22px 24px;
	background: var(--fr-soft);
	border-left: 4px solid var(--fr-blue);
	border-radius: 0 8px 8px 0;
	color: var(--fr-ink);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.55;
}

.fr-article-content a {
	color: #2e77ad;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.fr-ad-sidebar {
	min-width: 0;
}

.fr-ad-sidebar-inner {
	display: grid;
	gap: 10px;
}

.fr-ad-label {
	margin: 0;
	color: var(--fr-muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 1.2px;
	line-height: 1;
	text-transform: uppercase;
}

.fr-banners {
	display: grid;
	gap: 14px;
}

.fr-banner {
	overflow: hidden;
	border: 1px solid var(--fr-line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 6px 18px rgba(22, 38, 54, 0.06);
}

.fr-banner a,
.fr-banner img {
	display: block;
}

.fr-banner img {
	width: 100%;
	height: auto;
	color: transparent;
	font-size: 0;
}

.fr-share {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin: 0 42px 32px;
	padding: 22px;
	border: 1px solid var(--fr-line);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(91, 155, 200, 0.08) 1px, transparent 1px),
		linear-gradient(45deg, rgba(106, 176, 76, 0.08) 1px, transparent 1px),
		#f8fbfe;
	background-size: 42px 42px, 84px 84px;
}

.fr-share-label {
	margin: 0 0 4px;
	color: var(--fr-ink);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.25;
}

.fr-share-desc {
	margin: 0;
	color: var(--fr-muted);
	font-size: 14px;
	line-height: 1.5;
}

.fr-share-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.fr-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: #ffffff;
	color: #ffffff;
	cursor: pointer;
	font-family: inherit;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
}

.fr-share-btn span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.fr-share-whatsapp {
	background: #25d366;
}

.fr-share-facebook {
	background: #1877f2;
}

.fr-share-x {
	background: #111111;
}

.fr-share-linkedin {
	background: #0a66c2;
}

.fr-share-copy {
	background: #ffffff;
	border-color: #cfe2ef;
	color: #2e77ad;
}

.fr-share-copy span {
	background: #e8f3fb;
	color: #2e77ad;
}

.fr-share-btn:hover,
.fr-share-btn:focus {
	filter: brightness(0.94);
	text-decoration: none;
}

.fr-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 42px 34px;
}

.fr-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border: 1px solid var(--fr-line);
	border-radius: 999px;
	background: #ffffff;
	color: var(--fr-muted);
	font-size: 12px;
	font-weight: 800;
}

.fr-article-cta {
	margin: 0 42px 42px;
	padding: 26px;
	background: var(--fr-blue-dark);
	border-radius: 8px;
	color: #ffffff;
	text-align: center;
}

.fr-article-cta h2 {
	margin: 0 0 8px;
	color: #ffffff;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0;
}

.fr-article-cta p {
	max-width: 620px;
	margin: 0 auto 18px;
	color: #d7e4ef;
	font-size: 15px;
	line-height: 1.7;
}

.fr-article-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 8px;
	background: var(--fr-green);
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
}

.fr-related {
	margin-top: 34px;
}

.fr-related h2 {
	margin: 0 0 16px;
	color: var(--fr-ink);
	font-size: 26px;
	font-weight: 900;
	letter-spacing: 0;
}

.fr-empty {
	padding: 36px;
	background: var(--fr-white);
	border: 1px solid var(--fr-line);
	border-radius: 8px;
	text-align: center;
}

.fr-empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: var(--fr-soft);
	color: var(--fr-blue);
	font-size: 26px;
}

.fr-empty h3 {
	margin: 0 0 8px;
	color: var(--fr-ink);
	font-size: 22px;
	font-weight: 900;
}

.fr-empty p {
	max-width: 560px;
	margin: 0 auto;
	color: var(--fr-muted);
	font-size: 15px;
}

.fr-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.fr-pagination a,
.fr-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--fr-line);
	border-radius: 8px;
	background: var(--fr-white);
	color: var(--fr-blue-dark);
	font-size: 14px;
	font-weight: 900;
}

.fr-pagination .active {
	background: var(--fr-blue-dark);
	border-color: var(--fr-blue-dark);
	color: #ffffff;
}

.fr-pagination a:hover,
.fr-pagination a:focus {
	border-color: var(--fr-blue);
	color: var(--fr-blue);
}

.fr-footer {
	background: #ffffff;
	border-top: 1px solid var(--fr-line);
}

.fr-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 24px 0;
	color: var(--fr-muted);
	font-size: 13px;
}

.fr-footer strong {
	color: var(--fr-ink);
}

@media (max-width: 900px) {
	.fr-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1180px) {
	.fr-article-main-with-ads .fr-ad-sidebar-inner {
		position: sticky;
		top: 96px;
		z-index: 5;
	}
}

@media (max-width: 1179px) {
	.fr-article-main-with-ads {
		width: min(920px, calc(100% - 32px));
	}

	.fr-article-main-with-ads .fr-article-layout {
		grid-template-columns: 1fr;
	}

	.fr-ad-sidebar-inner {
		position: static;
	}
}

@media (max-width: 680px) {
	.fr-header-inner,
	.fr-toolbar,
	.fr-footer-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.fr-nav {
		flex-wrap: wrap;
	}

	.fr-hero-inner {
		padding: 48px 0 42px;
	}

	.fr-hero p {
		font-size: 16px;
	}

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

	.fr-article-main,
	.fr-article-main-with-ads {
		width: min(920px, calc(100% - 24px));
	}

	.fr-article-main-with-ads .fr-article-layout {
		grid-template-columns: 1fr;
	}

	.fr-ad-sidebar-inner {
		position: static;
	}

	.fr-count {
		white-space: normal;
	}

	.fr-article-hero,
	.fr-article-content {
		padding-left: 22px;
		padding-right: 22px;
	}

	.fr-tags {
		padding-left: 22px;
		padding-right: 22px;
	}

	.fr-share {
		align-items: flex-start;
		flex-direction: column;
		margin-left: 22px;
		margin-right: 22px;
	}

	.fr-share-actions {
		justify-content: flex-start;
		width: 100%;
	}

	.fr-article-cta {
		margin-left: 22px;
		margin-right: 22px;
	}

	.fr-article-content {
		font-size: 16px;
	}

	.fr-article-lead {
		font-size: 16px;
	}
}
