/**
 * Inner pages and singular content.
 */

.dut-page__header {
	margin-bottom: var(--dut-space-4);
}

.dut-page__title {
	font-size: 2.1rem;
	position: relative;
	padding-bottom: 14px;
}

.dut-page__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 56px;
	height: 3px;
	background: var(--dut-gold);
}

.dut-page__title a {
	color: inherit;
	text-decoration: none;
}

.dut-posted-on {
	font-size: 0.85rem;
	color: var(--dut-muted);
}

.dut-page__content {
	font-size: 1.02rem;
}

.dut-page__content h2 {
	margin-top: var(--dut-space-4);
	font-size: 1.5rem;
}

.dut-page__content h3 {
	margin-top: var(--dut-space-3);
	font-size: 1.2rem;
}

.dut-page__content ul,
.dut-page__content ol {
	padding-left: 24px;
}

.dut-page__content img {
	border-radius: var(--dut-radius);
}

/* Pagination. */
.nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin: var(--dut-space-4) 0;
}

.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 14px;
	border: 1px solid var(--dut-border);
	border-radius: 8px;
	text-decoration: none;
	color: var(--dut-green);
	font-weight: 600;
}

.nav-links .page-numbers.current {
	background: var(--dut-green);
	color: #fff;
	border-color: var(--dut-green);
}

/* Search form. */
.search-form {
	display: flex;
	gap: 8px;
	margin: var(--dut-space-3) 0;
}

.search-form .search-field {
	flex: 1;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--dut-border);
	border-radius: 8px;
	font-size: 1rem;
}

.search-form .search-submit {
	min-height: 48px;
	padding: 10px 22px;
	background: var(--dut-green);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
}
