.articles_overview__list {
	display: flex;
	gap: 32px;
}

.articles_overview__remaining {
	flex: 0 0 508px;
	border-left: 1px solid var(--neutral-300);
}

.articles_overview__title {
	font-size: 46px;
	line-height: 56px;
	font-weight: 600;
	color: var(--primary-900);
	margin-bottom: 16px;
	transition: color 0.3s ease-in-out;
}

.articles_overview__subtitle {
	font-size: 20px;
	line-height: 32px;
}

.articles_overview__header {
	margin-bottom: 64px;
	text-align: center;
	width: 882px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.articles_overview__item {
	display: block;
	border-bottom: 0;
}

.articles_overview__remaining .articles_overview__item {
	padding: 12px 32px;
}

.articles_overview__item_title {
	font-size: 26px;
	line-height: 32px;
	font-weight: 600;
	color: var(--primary-900);
	margin-bottom: 12px;
}

.articles_overview__item_meta {
	color: var(--neutral-700);
}

.articles_overview__item_author {
	font-weight: 600;
	margin-bottom: 2px;
}

.articles_overview__item_divider {
	background-color: var(--neutral-300);
	width: 1px;
	height: 14px;
	margin-left: 6px;
	margin-right: 6px;
}

.articles_overview__item_date_time {
	display: flex;
	align-items: center;
}

.articles_overview__remaining {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.articles_overview__first {
	flex: 1;
}

.articles_overview__item_image {
	margin-bottom: 20px;
}

.articles_overview__item_category {
	padding: 2px 8px;
	border-radius: 4px;
	background-color: var(--secondary-200);
	color: var(--primary-500-blue);
	font-size: 14px;
	line-height: 18px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-flex;
	margin-bottom: 12px;
}

.articles_overview__first .articles_overview__item_title {
	font-size: 40px;
	line-height: 48px;
}

.articles_overview__item_excerpt {
	font-size: 20px;
	line-height: 32px;
	color: var(--neutral-700);
	margin-bottom: 12px;
}

.articles_overview__item:hover .articles_overview__item_title {
	color: var(--primary-600);
}

@media (max-width: 991px) and (min-width: 768px) {
	.articles_overview__remaining {
		max-width: 50%;
	}
}

@media (max-width: 767px) {
	.articles_overview__remaining {
		border-left: none;
	}

	.articles_overview__list {
		flex-direction: column;
		gap: 48px;
	}

	.articles_overview__title {
		font-size: 30px;
		line-height: 40px;
	}

	.articles_overview__subtitle {
		font-size: 16px;
		line-height: 24px;
	}

	.articles_overview__header {
		margin-bottom: 20px;
	}

	.articles_overview__item_title {
		font-size: 20px;
		line-height: 28px;
	}

	.articles_overview__first .articles_overview__item_title {
		font-size: 24px;
		line-height: 32px;
	}

	.articles_overview__item_excerpt {
		font-size: 18px;
		line-height: 26px;
	}

	.articles_overview__remaining .articles_overview__item {
		padding: 0;
	}

	.articles_overview__remaining {
		gap: 16px;
		flex: 1;
	}
}
