.posts {
	margin-top: 5.5rem;
	display: flex;
	gap: 2.5rem;
}

.posts__main {
	width: 75%;
}
.posts__side {
	width: calc(25% - 5rem);
}

.posts__item {
	border-bottom: 0.0625rem solid #eeeeee;
}

.posts__item a {
	align-items: center;
	display: flex;
	gap: 1rem;
	padding: 0.8125rem 0;
}

.posts__item time {
	color: #999999;
	flex-shrink: 0;
	font-family: "Lato", sans-serif;
	font-size: max(0.75rem, 12px);
	letter-spacing: 0.05em;
}

.posts__item p {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #333333;
	display: -webkit-box;
	font-size: max(0.875rem, 12px);
	font-weight: 350;
	letter-spacing: 0.05em;
	overflow: hidden;
}

.posts__catList {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: .25rem;
	margin: 0 0 0 auto;
}
.posts__cat {
	color: #3a8ebe;
	font-size: .75rem;
	padding: .1rem .20rem;
	border: 1px solid;
	border-radius: .4rem;
}

.posts__pager {
	margin: 1.375rem 0 0;
}
.posts__pager .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0 .75em;
}
.posts__pager .page-numbers {
	font-weight: 500;
}
.posts__pager .page-numbers.current {
	color: #3a8ebe;
	font-weight: 400;
}

.posts__archive {
	display: block;
}
.posts__archive-box + .posts__archive-box {
	margin-top: 1.25rem;
}
.posts__archive-ttl {
	color: #3a8ebe;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.posts__archive-list li {
	border-bottom: 0.0625rem solid #eeeeee;
}
.posts__archive-list li a {
	color: #333333;
	font-size: max(0.875rem, 12px);
	font-weight: 350;
	letter-spacing: 0.05em;
	display: block;
	gap: 1rem;
	padding: 0.625rem 0;
}

@media screen and (max-width: 767px) {
	.posts {
		display: block;
	}

	.posts__main {
		width: auto;
	}

	.posts__side {
		width: auto;
		margin-top: 2.75rem;
	}

	.posts__item a {
		align-items: flex-start;
		padding: 0.5rem 0;
	}

	.posts__item time {
		line-height: 1.8;
	}

	.posts__item p {
		line-height: 1.3;
	}
}