.fec-featured-section,
.fec-featured-section * {
	box-sizing: border-box;
}

.fec-featured-section {
	width: 100%;
	padding: 0 80px 64px;
}

.fec-featured-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 48px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 32px;
	background: #f9f9f9;
	border-radius: 4px;
	overflow: hidden;
}

.fec-media {
	position: relative;
	flex: 1 1 0;
	width: 58%;
	min-width: 0;
	height: 440px;
	overflow: hidden;
	border-radius: 4px;
	background: #eceff2;
}

.fec-media img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: 50% var(--fec-image-y, 50%);
	border-radius: 4px;
}

.fec-media-link {
	display: block;
	width: 100%;
	height: 100%;
}

.fec-title-link {
	color: inherit;
	text-decoration: none;
}

.fec-title-link:hover,
.fec-title-link:focus,
.fec-title-link:visited {
	color: inherit;
	text-decoration: none;
}

.fec-media-link:focus-visible,
.fec-title-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.fec-content {
	display: flex;
	flex: 0 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	width: 480px;
	max-width: 480px;
	min-width: 0;
}

.fec-category {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 4px 10px;
	background: rgba(224, 63, 84, 0.08);
	border-radius: 3px;
	color: #e03f54;
	font-family: Outfit, Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.27;
	text-transform: uppercase;
}

.fec-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
}

.fec-title,
.fec-quote,
.fec-description,
.fec-description p {
	width: 100%;
	margin: 0;
}

.fec-title {
	color: #111;
	font-family: Outfit, Arial, sans-serif;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.fec-quote {
	padding: 0;
	border: 0;
	color: #e03f54;
	font-family: Fraunces, Georgia, serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.4;
}

.fec-description {
	color: #4a4a4a;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
}

.fec-description p + p {
	margin-top: 0.75em;
}

.fec-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 100%;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
}

.fec-author {
	color: #111;
}

.fec-reading-time {
	color: #888;
}

.fec-meta-separator {
	display: inline-block;
	flex: 0 0 auto;
	width: 12px;
	height: 2px;
	background: #eaeaea;
}

.fec-cta {
	display: inline-block;
	max-width: 100%;
	padding: 0 0 4px;
	border-width: 0 0 2px;
	border-style: solid;
	border-color: #e03f54;
	color: #e03f54;
	font-family: Outfit, Arial, sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.fec-cta:hover,
.fec-cta:focus-visible {
	color: #b92b40;
	border-bottom-color: #b92b40;
}

.fec-cta:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

@media (max-width: 1024px) {
	.fec-featured-section {
		padding: 0 32px 48px;
	}

	.fec-featured-card {
		gap: 32px;
		padding: 24px;
	}

	.fec-media {
		width: 56%;
		height: 380px;
	}

	.fec-content {
		width: 44%;
		max-width: 44%;
	}
}

@media (max-width: 767px) {
	.fec-featured-section {
		padding: 0 16px 32px;
	}

	.fec-featured-card {
		flex-direction: column;
		align-items: stretch;
		gap: 28px;
		padding: 20px;
	}

	.fec-media {
		flex: 0 0 auto;
		width: 100%;
		height: 300px;
	}

	.fec-content {
		width: 100%;
		max-width: 100%;
	}

	.fec-meta {
		row-gap: 10px;
	}
}

@media (max-width: 480px) {
	.fec-media {
		height: 240px;
	}

	.fec-title {
		font-size: 26px;
	}
}
