/* MN Related News — "Other News"
   Basado en diseño de Figma provisto por el cliente. */

.mn-related-news {
	margin: 3rem 0 2rem;
}

/* Título "Other News" + línea horizontal a la derecha */
.mn-related-news__title {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin: 0 0 1.75rem;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 700;
	font-size: 1.6rem;
	color: #e9272d;
}

.mn-related-news__title::after {
	content: "";
	flex: 1 1 auto;
	height: 2px;
	background-color: #1a1a1a;
}

/* Fila superior: 2 tarjetas horizontales (imagen + texto) */
.mn-related-news__featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	margin-bottom: 1.75rem;
}

.mn-related-news__featured-card {
	display: flex;
	gap: 1.25rem;
	color: inherit;
	text-decoration: none;
}

.mn-related-news__featured-thumb {
	flex: 0 0 253px;
	width: 253px;
	aspect-ratio: 253 / 172;
	overflow: hidden;
	background: #f2f2f2;
}

.mn-related-news__featured-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.mn-related-news__featured-card:hover .mn-related-news__featured-thumb img {
	transform: scale(1.05);
}

.mn-related-news__featured-body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.mn-related-news__featured-headline {
	margin: 0 0 .6rem;
	font-size: 1.15rem;
	line-height: 1.3;
	font-weight: 700;
	color: #1a1a1a;
}

.mn-related-news__featured-excerpt {
	margin: 0;
	font-size: .9rem;
	line-height: 1.5;
	color: #333;
}

/* Línea divisoria entre la fila destacada y el grid inferior */
.mn-related-news__divider {
	height: 1px;
	background-color: #d9d9d9;
	margin: 0 0 1.75rem;
}

/* Fila inferior: 4 tarjetas verticales (imagen arriba, título abajo) */
.mn-related-news__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.mn-related-news__card {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.mn-related-news__thumb {
	width: 100%;
	aspect-ratio: 253 / 172;
	overflow: hidden;
	background: #f2f2f2;
	margin-bottom: .85rem;
}

.mn-related-news__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.mn-related-news__card:hover .mn-related-news__thumb img {
	transform: scale(1.05);
}

.mn-related-news__headline {
	margin: 0;
	font-size: 1rem;
	line-height: 1.35;
	font-weight: 700;
	color: #1a1a1a;
}

/* Responsive */
@media (max-width: 992px) {
	.mn-related-news__featured {
		grid-template-columns: 1fr;
	}

	.mn-related-news__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.mn-related-news__featured-card {
		flex-direction: column;
	}

	.mn-related-news__featured-thumb {
		width: 100%;
		flex-basis: auto;
	}

	.mn-related-news__grid {
		grid-template-columns: 1fr;
	}
}
