.acj-blog-list-wrap {
	--acj-border: #d9dee7;
	--acj-header: #f2f5f9;
	--acj-text: #202733;
	--acj-link: #1f5fbf;
	--acj-accent: #1f5fbf;
	color: var(--acj-text);
}

.acj-blog-list-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin: 0 0 18px;
	padding: 16px;
	border: 1px solid var(--acj-border);
	border-radius: 8px;
	background: #fff;
}

.acj-blog-list-filter input[type="search"],
.acj-blog-list-filter select {
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid #b7c0cd;
	border-radius: 6px;
	background: #fff;
	font-size: 15px;
}

.acj-blog-list-search {
	flex: 1 1 280px;
}

.acj-blog-list-search input {
	width: 100%;
}

.acj-blog-list-category {
	flex: 0 1 260px;
}

.acj-blog-list-category select {
	width: 100%;
}

.acj-blog-list-submit {
	min-height: 42px;
	padding: 8px 20px;
	border: 0;
	border-radius: 6px;
	background: var(--acj-accent);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.acj-blog-list-reset {
	color: #5d6673;
	font-size: 14px;
	text-decoration: underline;
}

.acj-blog-list-count {
	margin: 0 0 8px;
	font-size: 14px;
	color: #626b78;
	text-align: right;
}

.acj-blog-list-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.acj-blog-list-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--acj-border);
	background: #fff;
}

.acj-blog-list-table th,
.acj-blog-list-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--acj-border);
	vertical-align: top;
	text-align: left;
}

.acj-blog-list-table th {
	background: var(--acj-header);
	font-weight: 700;
	white-space: nowrap;
}

.acj-blog-list-table tbody tr:hover {
	background: #f8faff;
}

.acj-blog-list-table a {
	color: var(--acj-link);
	text-decoration: none;
}

.acj-blog-list-table a:hover {
	text-decoration: underline;
}

.acj-col-date {
	width: 150px;
	white-space: nowrap;
}

.acj-col-category {
	width: 230px;
}

.acj-col-author {
	width: 120px;
	white-space: nowrap;
}

.acj-blog-list-excerpt {
	margin: 8px 0 0;
	color: #59616c;
	font-size: 14px;
	line-height: 1.7;
}

.acj-cat-separator {
	color: #9aa2ad;
}

.acj-blog-list-pagination {
	margin: 24px 0 0;
}

.acj-blog-list-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.acj-blog-list-pagination a,
.acj-blog-list-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--acj-border);
	border-radius: 6px;
	background: #fff;
	color: var(--acj-link);
	text-decoration: none;
}

.acj-blog-list-pagination .current {
	border-color: var(--acj-accent);
	background: var(--acj-accent);
	color: #fff;
	font-weight: 700;
}

.acj-blog-list-empty {
	padding: 28px 20px;
	border: 1px solid var(--acj-border);
	border-radius: 8px;
	background: #fff;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.acj-blog-list-filter {
		align-items: stretch;
	}

	.acj-blog-list-search,
	.acj-blog-list-category,
	.acj-blog-list-submit,
	.acj-blog-list-reset {
		flex: 1 1 100%;
	}

	.acj-blog-list-submit {
		width: 100%;
	}

	.acj-blog-list-reset {
		text-align: center;
	}

	.acj-blog-list-table,
	.acj-blog-list-table thead,
	.acj-blog-list-table tbody,
	.acj-blog-list-table tr,
	.acj-blog-list-table th,
	.acj-blog-list-table td {
		display: block;
		width: 100%;
	}

	.acj-blog-list-table {
		border: 0;
		background: transparent;
	}

	.acj-blog-list-table thead {
		display: none;
	}

	.acj-blog-list-table tr {
		margin: 0 0 14px;
		border: 1px solid var(--acj-border);
		border-radius: 8px;
		background: #fff;
		overflow: hidden;
	}

	.acj-blog-list-table td {
		position: relative;
		padding: 12px 14px 12px 112px;
		border-bottom: 1px solid var(--acj-border);
		white-space: normal;
	}

	.acj-blog-list-table td:last-child {
		border-bottom: 0;
	}

	.acj-blog-list-table td::before {
		content: attr(data-label);
		position: absolute;
		top: 12px;
		left: 14px;
		width: 88px;
		font-weight: 700;
		color: #4b5563;
	}

	.acj-col-date,
	.acj-col-category,
	.acj-col-author {
		width: auto;
	}
}
