/* Front Page Latest Information */
.front-latest {
	padding: 80px 20px;
	background: #f7fbfd;
}

.latest-list {
	max-width: 900px;
	margin: 0 auto 40px;
	overflow: hidden;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

.latest-item {
	padding: 24px 30px;
	border-bottom: 1px solid #eef2f5;
}

.latest-item:last-child {
	border-bottom: none;
}

.latest-item__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.latest-item__date {
	color: #777;
	font-size: 14px;
}

.latest-item__category {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 20px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.latest-item__category.article {
	background: #1f77b4;
}

.latest-item__category.arrival {
	background: #2e8b57;
}

.latest-item__category.information {
	background: #f39c12;
}

.latest-item__title {
	margin: 0;
	font-size: 22px;
}

.latest-item__title a {
	color: #222;
	text-decoration: none;
}

.latest-item__title a:hover {
	color: #1f77b4;
}

.latest-button {
	text-align: center;
}

@media screen and (max-width: 768px) {
	.latest-item {
		padding: 20px;
	}

	.latest-item__title {
		font-size: 18px;
	}
}
