.frc-redrc-news {
	--frc-red: #d71920;
	--frc-navy: #071a31;
	--frc-muted: #667085;
	--frc-line: #e4e7ec;
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(24px, 5vw, 64px) 20px;
	color: var(--frc-navy);
}

.frc-redrc-news__header {
	max-width: 780px;
	margin-bottom: clamp(28px, 5vw, 48px);
}

.frc-redrc-news__eyebrow {
	margin: 0 0 10px;
	color: var(--frc-red);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.frc-redrc-news__header h1 {
	margin: 0;
	font-size: clamp(34px, 6vw, 64px);
	line-height: 1.02;
	letter-spacing: -.04em;
}

.frc-redrc-news__header > p:last-child {
	margin: 18px 0 0;
	color: var(--frc-muted);
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.65;
}

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

.frc-redrc-card {
	overflow: hidden;
	margin: 0;
	border: 1px solid var(--frc-line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(7, 26, 49, .06);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.frc-redrc-card:hover {
	transform: translateY(-4px);
	border-color: rgba(215, 25, 32, .3);
	box-shadow: 0 16px 38px rgba(7, 26, 49, .12);
}

.frc-redrc-card__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: inherit;
	text-decoration: none !important;
}

.frc-redrc-card__image,
.frc-redrc-card__placeholder {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, var(--frc-navy), #153c68);
}

.frc-redrc-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.frc-redrc-card:hover .frc-redrc-card__image img {
	transform: scale(1.035);
}

.frc-redrc-card__placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--frc-navy) 0 70%, var(--frc-red) 70%);
}

.frc-redrc-card__placeholder span {
	color: #fff;
	font-size: 34px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: -.08em;
}

.frc-redrc-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.frc-redrc-card__meta {
	margin: 0 0 12px;
	color: var(--frc-muted);
	font-size: 12px;
	font-weight: 650;
	text-transform: uppercase;
}

.frc-redrc-card__meta span {
	color: var(--frc-red);
}

.frc-redrc-card h2 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: -.025em;
}

.frc-redrc-card__body > p:not(.frc-redrc-card__meta) {
	margin: 0 0 22px;
	color: var(--frc-muted);
	font-size: 15px;
	line-height: 1.6;
}

.frc-redrc-card__body > strong {
	margin-top: auto;
	color: var(--frc-red);
	font-size: 14px;
}

.frc-redrc-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 42px;
}

.frc-redrc-pagination .page-numbers {
	display: inline-grid;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	place-items: center;
	border: 1px solid var(--frc-line);
	border-radius: 10px;
	background: #fff;
	color: var(--frc-navy);
	text-decoration: none;
}

.frc-redrc-pagination .current,
.frc-redrc-pagination a:hover {
	border-color: var(--frc-red);
	background: var(--frc-red);
	color: #fff;
}

.frc-redrc-empty {
	padding: 54px 24px;
	border: 1px dashed #cbd2dc;
	border-radius: 18px;
	background: #f8fafc;
	text-align: center;
}

.frc-redrc-empty h2,
.frc-redrc-empty p {
	margin: 0;
}

.frc-redrc-empty p {
	margin-top: 8px;
	color: var(--frc-muted);
}

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

@media (max-width: 620px) {
	.frc-redrc-news { padding-inline: 14px; }
	.frc-redrc-grid { grid-template-columns: 1fr; gap: 18px; }
	.frc-redrc-card h2 { font-size: 21px; }
}
