.newsList {
	align-items: center;
	border-bottom: 1px solid #dbdcde;
	display: flex;
	gap: 24px;
	/* grid-template-columns: 100px 1fr; */
	padding: 20px 0;
}
.newsList__time {
	font-family: var(--family-en);
	font-weight: 700;
	line-height: 140%;
}
.newsList__category {
	background-color: #fff;
	border: 1px solid #dbdcde;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 1.8;
	margin-top: 16px;
	min-width: 100px;
	padding: 0 12px;
	text-align: center;
	white-space: nowrap;
	width: fit-content;
}
.newsList__contents {
	-webkit-box-orient: vertical;
	display: -webkit-box;
	letter-spacing: 2px;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

@media (max-width:767px) {
	.newsList {
		flex-direction: column;
		gap: 16px;
	}
	.newsList__label {
		flex: auto;
		width: 100%;
		display: flex;
		align-items: center;
		gap: 16px;
	}
	.newsList__category {
		margin-top: 0;
	}
}