.breadcrumb {
	margin-bottom: 34px;
}

.news-header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 50px;
}

.news-title {
	color: var(--color-text-dark-green);
	font-weight: 500;
	font-size: 30px;
	text-transform: uppercase;
	max-width: 553px;
}
.date {
	color: #3D3D3DCC;
	font-size: 16px;
}

.badges {
	display: flex;
	gap: 8px;
	margin-bottom: 50px;
}

.badge {
	background: var(--color-light-green);
	color: white;
	padding: 4px 12px;
	font-size: 14px;
	line-height: 20px;
}

.another-hero {
	align-items: end;
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 1199px) {
	.news-header {
		margin-bottom: 40px;
	}
	.news-title {
		font-size: 28px;
		max-width: 480px;
	}
}

@media (max-width: 992px) {
	.news-header {
		flex-direction: column;
		gap: 16px;
	}
	.news-title {
		max-width: 100%;
	}
	.badges {
		margin-bottom: 40px;
	}
}

@media (max-width: 768px) {
	.news-title {
		font-size: 24px;
	}
	.badge {
		font-size: 13px;
		padding: 4px 10px;
	}
}

@media (max-width: 576px) {
	.news-title {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 12px;
	}
	.badges {
		flex-wrap: wrap;
		gap: 6px;
		margin-bottom: 32px;
	}
	.news-header {
		margin-bottom: 32px;
	}
}