.news {
	background: var(--color-surface-light);
	padding: 120px 0;
	overflow: hidden;
}

.news__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
	gap: 24px;
}

.news__heading {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: var(--font-weight-h2);
	color: var(--color-bg-alt);
}

.news__slider {
	width: 100%;
}

.news-card {
	display: block;
}

.news-card__photo {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-md);
	overflow: hidden;
	margin-bottom: 16px;
}

.news-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card__photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #efd7c2, #cfa07f);
}

.news-card__photo--placeholder span {
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	color: rgba(65, 23, 20, 0.65);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: center;
	padding: 16px;
}

.news-card__date {
	display: block;
	margin: 8px 0;
	font-size: 13px;
	color: var(--color-muted-warm);
}

.news-card__title {
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-bg-alt);
}

.news-card__excerpt {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-muted-warm);
}

/* Breakpoints: 1440 / 1280 / 1024 / 768 / 380 */

@media (max-width: 1280px) {
	.news__heading {
		font-size: 34px;
	}
}

@media (max-width: 1024px) {
	.news {
		padding: 80px 0;
	}
}

@media (max-width: 768px) {
	.news__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.news__heading {
		font-size: 28px;
	}
}

@media (max-width: 380px) {
	.news__heading {
		font-size: 24px;
	}
}