@charset "utf-8";
/*
Theme Name: glowd
Version: 1
*/

/* Pagination (for [pagination] shortcode / paginate_links output) */
.pagination {
	margin: 20px 0;
}

.pagination .page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	width: 100%;
}

.pagination .page-numbers li {
	margin: 0;
	padding: 0;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	padding: 0 10px;
	background: #f3f3f3;
	color: inherit;
	font-size: 13px;
	line-height: 1;
	text-decoration: none;
	box-sizing: border-box;
	border-radius: 4px;
}

.pagination .page-numbers a:hover {
	background: #eee;
}

.pagination .page-numbers a:focus-visible {
	outline: 2px solid #23394c;
	outline-offset: 2px;
}

.pagination .page-numbers .current {
	background: #23394c;
	color: #fff;
}

.pagination .page-numbers .dots {
	background: transparent;
	min-width: auto;
	padding: 0 6px;
}

/* Post list excerpt: show ~3 lines with Read more */
body:not(.single) .content__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

body.single .content__main {
	display: block;
	overflow: visible;
}

body:not(.single) .content__more {
	margin-top: 8px;
}

body:not(.single) .content__more a {
	color: #1a73e8;
	text-decoration: none;
}

body:not(.single) .content__more a:hover {
	text-decoration: underline;
}

