.front-news {
	margin: 0 calc(50% - 50vw);
	background: #803434;
	color: #ffdd83;
}

.front-news__inner {
	display: grid;
	align-items: center;
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
	padding: 14px 0;
}

.front-news__label {
	margin: 0;
	padding: 4px 14px;
	border: 1px solid rgba(255, 221, 131, 0.44);
	border-radius: 999px;
	color: #ffdd83;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
}

.front-news__link {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	min-width: 0;
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.front-news__link:hover,
.front-news__link:focus-visible {
	color: #cea94f;
	opacity: 0.92;
}

.front-news__date {
	color: rgba(255, 221, 131, 0.86);
	font-size: 14px;
	line-height: 1.5;
	white-space: nowrap;
}

.front-news__title {
	overflow: hidden;
	color: currentColor;
	font-size: 15px;
	line-height: 1.6;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.front-news__arrow {
	font-size: 20px;
	line-height: 1;
}

.front-news__empty {
	margin: 0;
	color: rgba(255, 221, 131, 0.86);
	font-size: 15px;
	line-height: 1.6;
}

@media screen and (max-width: 767px) {
	.front-news__inner {
		width: calc(100% - 40px);
		padding: 16px 0;
	}

	.front-news__label {
		width: fit-content;
	}

	.front-news__link {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 8px 12px;
	}

	.front-news__date {
		grid-column: 2 / -1;
	}

	.front-news__title {
		grid-column: 1 / 3;
	}

	.front-news__arrow {
		grid-column: 3;
		justify-self: end;
	}
}
