/* contact */
.formSubmit .submitBtn {
	border: none;
	color: #fff;
	background: #2e7d32;
	width: 100%;
	max-width: 200px;
	height: 45px;
	font-size: 1.6rem;
	font-weight: 600;
	border-radius: .3em;
	margin: 0 auto;
	display: grid;
	place-items: center;
	cursor: pointer;
}


/* news */
.singular-article-header .date {
	color: #666666;
	font-size: 1.4rem;
}


/* pager */
#pager {
	margin-top: 32px;
}

#pager ul {
	display: flex;
	gap: .5em;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

#pager ul li a {
	padding: .3em .8em;
	border: 1px solid #d0d0d0;
	border-radius: 100vmax;
	display: flex;
	color: inherit;
}

#pager ul li a:hover {
	text-decoration: none;
}

#pager ul li.current a {
	background: #d0d0d0;
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	#pager ul li.prev,
	#pager ul li.next {
		display: none;
	}
}

/* entry-content */
:where(.entry-content) h1,
:where(.entry-content) h2,
:where(.entry-content) h3,
:where(.entry-content) h4,
:where(.entry-content) h5,
:where(.entry-content) h6,
:where(.entry-content) p,
:where(.entry-content) ol,
:where(.entry-content) ul,
.wp-block-image,
.wp-block-gallery,
.wp-block-table {
	margin-top: 28px;
	margin-bottom: 28px;
}

:where(.entry-content) h1,
:where(.entry-content) h2,
:where(.entry-content) h3,
:where(.entry-content) h4,
:where(.entry-content) h5,
:where(.entry-content) h6 {
	font-weight: bold;
}

:where(.entry-content) h1 {
	font-size: 2em;
}

:where(.entry-content) h2 {
	font-size: 1.5em;
}

:where(.entry-content) h3 {
	font-size: 1.17em;
}

:where(.entry-content) h4 {
	font-size: 1em;
}

:where(.entry-content) h5 {
	font-size: .83em;
}

:where(.entry-content) h6 {
	font-size: .67em;
}

:where(.entry-content) ol ol,
:where(.entry-content) ol ul,
:where(.entry-content) ul ol,
:where(.entry-content) ul ul {
	margin-top: 0;
	margin-bottom: 0;
}

:where(.entry-content) ol,
:where(.entry-content) ul {
	padding-left: 40px;
}

:where(.entry-content) ul {
	list-style-type: disc;
}

:where(.entry-content) ul ul {
	list-style-type: circle;
}

:where(.entry-content) ul ul ul {
	list-style-type: square;
}
