/* Featured (first) news article */
.news-featured {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	min-height: 480px;
	margin-bottom: 2px;
	background: var(--black);
}

.news-featured-img {
	overflow: hidden;
}

.news-featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
	transition: transform 0.6s, opacity 0.3s;
}

.news-featured:hover .news-featured-img img {
	transform: scale(1.04);
	opacity: 1;
}

.news-featured-body {
	padding: 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}

.news-featured-date {
	font-size: 0.72rem!important;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--e-global-color-accent)!important;
}

.news-featured-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem)!important;
	font-weight: 700;
	color: var(--e-global-color-ae10970);
	line-height: 1.2;
	margin: 0;
}

.news-featured-body p {
	font-size: 0.95rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6)!important;
	line-height: 1.7;
	margin: 0;
}

.news-featured-link {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--e-global-color-secondary)!important;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	transition: gap 0.2s;
	text-decoration: none;
}

.news-featured-link::after {
	content: "→";
}

.news-featured:hover .news-featured-link {
	gap: 10px;
}

@media (max-width: 768px) {
	.news-featured {
		grid-template-columns: 1fr;
	}

	.news-featured-body {
		padding: 40px 30px;
	}
}

