.best-page .kiosk__content {
	display: grid;
	grid-template-rows: auto auto minmax(0, 1fr) auto;
	overflow: hidden;
	height: 100%;
}

.best-page .home-footer-wrap {
	flex-shrink: 0;
}

.news-list-wrap {
	position: relative;
	width: 100%;
	min-height: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	margin-top: 10px;
}

.news-list {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-bottom: 12px;
}

.news-list::-webkit-scrollbar {
	display: none;
}
.news-list {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.news-card {
	display: flex;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 4px 16px rgba(22, 36, 68, 0.04);
	border: 1px solid #e6eaf0;
	padding: 20px;
	gap: 24px;
	text-decoration: none;
	flex-shrink: 0;
}

.news-card__photo-wrap {
	width: 280px;
	height: 180px;
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
}

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

.news-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding-top: 4px;
}

.news-badge {
	display: inline-flex;
	align-items: center;
	height: 22px;
	padding: 0 10px;
	border-radius: 22px;
	font-family: "Manrope", sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
	width: fit-content;
}

.news-badge--green {
	background: #e5f4e5;
	color: #2d7a3c;
}
.news-badge--yellow {
	background: #fff4e5;
	color: #e58c17;
}
.news-badge--blue {
	background: #eaf2ff;
	color: #1f5fbf;
}
.news-badge--pink {
	background: #ffeaf0;
	color: #d94166;
}

.news-card__title {
	font-family: "Manrope", sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 8px;
	line-height: 1.3;
}

.news-card__meta {
	font-family: "Manrope", sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.news-card__date {
	color: #1f5fbf;
}

.news-card__location {
	color: #8c93a1;
}

.news-card__meta-dot {
	color: #8c93a1;
	margin: 0 6px;
}

.news-card__excerpt {
	font-family: "PT Serif", serif;
	font-size: 14.5px;
	line-height: 1.5;
	color: #3b424d;
	margin-bottom: 0;
}

.news-card.is-hidden {
	display: none;
}

.news-scroll-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-shrink: 0;
	margin: 0px auto 25px;
	background: #ffffff;
	border-radius: 999px;
	padding: 12px 30px;
	border: 1px solid rgba(31, 95, 191, 0.15);
	font-family: "Manrope", sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 1px;
	width: fit-content;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(22, 36, 68, 0.08);
}

.news-scroll-hint[hidden],
.news-scroll-hint.is-hidden {
	display: none !important;
}

.news-scroll-hint svg {
	width: 14px;
	height: 14px;
	color: #1f5fbf;
}
