.ipdf-directory,
.ipdf-search,
.ipdf-results,
.ipdf-card,
.ipdf-single {
	--ipdf-blue: #2f73b8;
	--ipdf-blue-dark: #245e99;
	--ipdf-navy: #06243a;
	--ipdf-orange: #ff7a00;
	--ipdf-muted: #5e7180;
	--ipdf-border: #dce6ed;
	--ipdf-surface: #ffffff;
	--ipdf-soft: #f3f8fb;
	box-sizing: border-box;
	color: var(--ipdf-navy);
	font-family: inherit;
}

.ipdf-directory *,
.ipdf-search *,
.ipdf-results *,
.ipdf-card *,
.ipdf-single * {
	box-sizing: border-box;
}

.ipdf-search {
	background: #ffffff;
	border: 1px solid var(--ipdf-border);
	border-radius: 22px;
	box-shadow: 0 18px 45px rgba(6, 36, 58, 0.1);
	margin: 0 auto 36px;
	max-width: 1180px;
	padding: 34px;
}

.ipdf-search__heading {
	margin-bottom: 24px;
}

.ipdf-search__eyebrow,
.ipdf-results__eyebrow,
.ipdf-single__eyebrow {
	color: var(--ipdf-orange);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.ipdf-search__heading h2,
.ipdf-results__header h2,
.ipdf-single h1,
.ipdf-single h2 {
	color: var(--ipdf-navy);
	line-height: 1.2;
	margin-top: 0;
}

.ipdf-search__heading h2,
.ipdf-results__header h2 {
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	margin-bottom: 0;
}

.ipdf-search__form {
	align-items: end;
	display: grid;
	gap: 12px;
	grid-template-columns:
		minmax(135px, 0.85fr)
		minmax(135px, 0.85fr)
		minmax(155px, 1fr)
		minmax(210px, 1.3fr)
		auto;
}

.ipdf-search__field {
	min-width: 0;
	position: relative;
}

.ipdf-search__field label {
	color: var(--ipdf-navy);
	display: block;
	font-size: 0.86rem;
	font-weight: 700;
	margin: 0 0 7px;
}

.ipdf-search__field input,
.ipdf-search__field select {
	appearance: none;
	background-color: var(--ipdf-surface);
	border: 1px solid #cbd9e2;
	border-radius: 10px;
	color: var(--ipdf-navy);
	font: inherit;
	height: 48px;
	margin: 0;
	outline: none;
	padding: 0 14px;
	width: 100%;
}

.ipdf-search__field select {
	background-image:
		linear-gradient(45deg, transparent 50%, #597284 50%),
		linear-gradient(135deg, #597284 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 21px,
		calc(100% - 13px) 21px;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	padding-right: 36px;
}

.ipdf-search__field input:focus,
.ipdf-search__field select:focus {
	border-color: var(--ipdf-blue);
	box-shadow: 0 0 0 3px rgba(47, 115, 184, 0.14);
}

.ipdf-select {
	position: relative;
	width: 100%;
	z-index: 1;
}

.ipdf-select--open {
	z-index: 30;
}

.ipdf-select__native {
	height: 1px !important;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 1px !important;
}

.ipdf-select__button {
	appearance: none;
	background:
		linear-gradient(45deg, transparent 50%, #597284 50%) calc(100% - 18px) 21px / 5px 5px no-repeat,
		linear-gradient(135deg, #597284 50%, transparent 50%) calc(100% - 13px) 21px / 5px 5px no-repeat,
		#ffffff;
	border: 1px solid #cbd9e2;
	border-radius: 10px;
	color: var(--ipdf-navy);
	cursor: pointer;
	display: block;
	font: inherit;
	height: 48px;
	overflow: hidden;
	padding: 0 36px 0 14px;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.ipdf-select__button:focus,
.ipdf-select--open .ipdf-select__button {
	border-color: var(--ipdf-blue);
	box-shadow: 0 0 0 3px rgba(47, 115, 184, 0.14);
	outline: none;
}

.ipdf-select__panel {
	background: #ffffff;
	border: 1px solid var(--ipdf-border);
	border-radius: 12px;
	box-shadow: 0 16px 35px rgba(6, 36, 58, 0.16);
	left: 0;
	margin-top: 7px;
	max-width: calc(100vw - 32px);
	min-width: 100%;
	overflow: hidden;
	padding: 8px;
	position: absolute;
	top: 100%;
	width: 260px;
	z-index: 40;
}

.ipdf-select__panel[hidden] {
	display: none;
}

.ipdf-select__search {
	background: #f8fafc;
	border: 1px solid #cbd9e2;
	border-radius: 8px;
	color: var(--ipdf-navy);
	font: inherit;
	height: 40px;
	margin: 0 0 7px;
	min-width: 220px;
	outline: none;
	padding: 0 11px;
	width: 100%;
}

.ipdf-select__search:focus {
	border-color: var(--ipdf-blue);
	box-shadow: 0 0 0 2px rgba(47, 115, 184, 0.12);
}

.ipdf-select__options {
	max-height: 250px;
	min-width: 220px;
	overflow-y: auto;
	position: relative;
}

.ipdf-select__options.is-empty::after {
	color: var(--ipdf-muted);
	content: attr(data-empty-message);
	display: block;
	font-size: 0.86rem;
	padding: 11px;
}

.ipdf-select__option {
	background: transparent;
	border: 0;
	border-radius: 7px;
	color: var(--ipdf-navy);
	cursor: pointer;
	display: block;
	font: inherit;
	font-size: 0.9rem;
	padding: 9px 10px;
	text-align: left;
	width: 100%;
}

.ipdf-select__option:hover,
.ipdf-select__option:focus {
	background: #edf5fb;
	color: var(--ipdf-blue-dark);
	outline: none;
}

.ipdf-select__option.is-selected {
	background: var(--ipdf-blue);
	color: #ffffff;
	font-weight: 700;
}

.ipdf-select--disabled .ipdf-select__button {
	background-color: #f1f4f6;
	color: #8a9aa5;
	cursor: not-allowed;
	opacity: 0.78;
}

.ipdf-search__submit,
.ipdf-card__button {
	align-items: center;
	background: var(--ipdf-blue);
	border: 0;
	border-radius: 10px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 700;
	justify-content: center;
	text-decoration: none;
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ipdf-search__submit {
	height: 48px;
	padding: 0 22px;
	white-space: nowrap;
}

.ipdf-search__submit:hover,
.ipdf-search__submit:focus,
.ipdf-card__button:hover,
.ipdf-card__button:focus {
	background: var(--ipdf-blue-dark);
	box-shadow: 0 8px 18px rgba(47, 115, 184, 0.2);
	color: #ffffff;
	transform: translateY(-1px);
}

.ipdf-search__submit:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.ipdf-results {
	margin: 0 auto;
	max-width: 1180px;
	padding: 12px 0 48px;
}

.ipdf-results__header {
	align-items: end;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 24px;
}

.ipdf-results__layout-toggle {
	background: #eef4f8;
	border: 1px solid var(--ipdf-border);
	border-radius: 10px;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 3px;
	padding: 4px;
}

.ipdf-results__layout-toggle a {
	border-radius: 7px;
	color: var(--ipdf-muted);
	font-size: 0.82rem;
	font-weight: 700;
	min-width: 64px;
	padding: 8px 12px;
	text-align: center;
	text-decoration: none;
}

.ipdf-results__layout-toggle a:hover,
.ipdf-results__layout-toggle a:focus,
.ipdf-results__layout-toggle a.is-active {
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(6, 36, 58, 0.1);
	color: var(--ipdf-blue-dark);
}

.ipdf-results__filters {
	align-items: center;
	background: #f8fafc;
	border: 1px solid var(--ipdf-border);
	border-radius: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: -8px 0 24px;
	padding: 12px 14px;
}

.ipdf-results__filters-label {
	color: var(--ipdf-muted);
	font-size: 0.85rem;
	font-weight: 700;
}

.ipdf-results__filter {
	background: #eaf3fa;
	border-radius: 999px;
	color: var(--ipdf-blue-dark);
	font-size: 0.8rem;
	font-weight: 700;
	padding: 6px 10px;
}

.ipdf-results__filters a {
	color: var(--ipdf-blue-dark);
	font-size: 0.82rem;
	font-weight: 700;
	margin-left: auto;
	text-decoration: none;
}

.ipdf-results__filters a:hover,
.ipdf-results__filters a:focus {
	text-decoration: underline;
}

.ipdf-results__notice {
	background: #fff8eb;
	border: 1px solid #ffd7ad;
	border-radius: 12px;
	color: var(--ipdf-navy);
	margin: 0;
	padding: 16px 18px;
}

.ipdf-results--grid .ipdf-results__grid,
.ipdf-single__related-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ipdf-results--list .ipdf-results__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr;
}

.ipdf-card {
	background: var(--ipdf-surface);
	border: 1px solid var(--ipdf-border);
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(6, 36, 58, 0.08);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.ipdf-card:hover {
	box-shadow: 0 16px 38px rgba(6, 36, 58, 0.13);
	transform: translateY(-3px);
}

.ipdf-card-banner {
	align-items: center;
	background: #f2f7fa;
	display: flex;
	flex: 0 0 150px;
	height: 150px;
	justify-content: center;
	overflow: hidden;
	padding: 15px;
	text-decoration: none;
}

.ipdf-card-banner img {
	height: auto;
	max-height: 120px;
	max-width: 80%;
	object-fit: contain;
	width: auto;
}

.ipdf-card-banner span,
.ipdf-card-avatar span {
	align-items: center;
	background: var(--ipdf-blue);
	border-radius: 50%;
	color: #ffffff;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.04em;
}

.ipdf-card-banner span {
	font-size: 1.8rem;
	height: 82px;
	width: 82px;
}

.ipdf-card-header {
	align-items: flex-start;
	display: flex;
	gap: 14px;
	padding: 22px 22px 0;
}

.ipdf-card-avatar {
	align-items: center;
	background: #f2f7fa;
	border: 1px solid var(--ipdf-border);
	border-radius: 14px;
	display: flex;
	flex: 0 0 68px;
	height: 68px;
	justify-content: center;
	overflow: hidden;
	text-decoration: none;
	width: 68px;
}

.ipdf-card-avatar img {
	height: 100%;
	object-fit: contain;
	padding: 5px;
	width: 100%;
}

.ipdf-card-avatar span {
	font-size: 1rem;
	height: 48px;
	width: 48px;
}

.ipdf-card-heading {
	flex: 1;
	min-width: 0;
}

.ipdf-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 16px 22px 0;
}

.ipdf-card-badges,
.ipdf-single__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 12px;
}

.ipdf-card__badge,
.ipdf-single__badge {
	background: #eaf3fa;
	border-radius: 999px;
	color: var(--ipdf-blue-dark);
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.3;
	padding: 6px 10px;
}

.ipdf-card .ipdf-card__badge--more {
	background: #fff3e7;
	color: #a94f00;
}

.ipdf-card__title {
	font-size: 1.3rem;
	line-height: 1.28;
	margin: 0 0 10px;
}

.ipdf-card__title a {
	color: var(--ipdf-navy);
	text-decoration: none;
}

.ipdf-card__title a:hover,
.ipdf-card__title a:focus {
	color: var(--ipdf-blue);
}

.ipdf-card__locations,
.ipdf-card__excerpt {
	color: var(--ipdf-muted);
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0 0 14px;
}

.ipdf-card__locations {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.ipdf-card__locations span {
	background: #f8fafc;
	border: 1px solid var(--ipdf-border);
	border-radius: 999px;
	color: #496476;
	font-size: 0.76rem;
	font-weight: 600;
	line-height: 1.3;
	padding: 5px 9px;
}

.ipdf-card-contact {
	border-top: 1px solid var(--ipdf-border);
	list-style: none;
	margin: auto 0 0;
	padding: 14px 0 0;
}

.ipdf-card-contact li {
	color: var(--ipdf-muted);
	font-size: 0.85rem;
	line-height: 1.45;
	margin: 0 0 8px;
	overflow-wrap: anywhere;
}

.ipdf-card-contact li > span {
	color: var(--ipdf-navy);
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ipdf-card-contact a,
.ipdf-single__contact a {
	color: var(--ipdf-blue-dark);
	text-decoration: none;
}

.ipdf-card-contact a:hover,
.ipdf-card-contact a:focus,
.ipdf-single__contact a:hover,
.ipdf-single__contact a:focus {
	text-decoration: underline;
}

.ipdf-card__button {
	min-height: 44px;
	padding: 10px 18px;
	width: 100%;
}

.ipdf-card-actions {
	display: flex;
	gap: 10px;
	margin-top: auto;
	padding: 18px 22px 22px;
}

.ipdf-card-actions .ipdf-card__button {
	margin-top: 0;
}

.ipdf-card__button--secondary {
	background: #ffffff;
	border: 1px solid var(--ipdf-blue);
	color: var(--ipdf-blue);
}

.ipdf-card__button--secondary:hover,
.ipdf-card__button--secondary:focus {
	background: #eaf3fa;
	box-shadow: none;
	color: var(--ipdf-blue-dark);
}

.ipdf-results--list .ipdf-card {
	align-items: stretch;
	display: grid;
	grid-template-columns: minmax(230px, 0.9fr) minmax(280px, 1.4fr) minmax(145px, 0.45fr);
}

.ipdf-results--list .ipdf-card-banner {
	grid-row: 1;
	height: 100%;
	min-height: 190px;
}

.ipdf-results--list .ipdf-card--image-banner {
	grid-template-columns: 220px minmax(210px, 0.8fr) minmax(280px, 1.2fr) minmax(145px, 0.45fr);
}

.ipdf-results--list .ipdf-card-header {
	padding: 22px;
}

.ipdf-results--list .ipdf-card-body {
	border-left: 1px solid var(--ipdf-border);
	padding: 22px;
}

.ipdf-results--list .ipdf-card-badges {
	margin-top: 0;
}

.ipdf-results--list .ipdf-card-actions {
	align-content: center;
	border-left: 1px solid var(--ipdf-border);
	flex-direction: column;
	justify-content: center;
	margin: 0;
	padding: 22px;
}

.ipdf-results--list .ipdf-card-contact {
	margin-top: 8px;
}

.ipdf-results__pagination {
	margin-top: 36px;
}

.ipdf-results__pagination .page-numbers {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ipdf-results__pagination .page-numbers li {
	margin: 0;
}

.ipdf-results__pagination a.page-numbers,
.ipdf-results__pagination span.page-numbers {
	align-items: center;
	border: 1px solid var(--ipdf-border);
	border-radius: 9px;
	color: var(--ipdf-navy);
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	min-height: 42px;
	min-width: 42px;
	padding: 8px 12px;
	text-decoration: none;
}

.ipdf-results__pagination a.page-numbers:hover,
.ipdf-results__pagination a.page-numbers:focus,
.ipdf-results__pagination span.current {
	background: var(--ipdf-blue);
	border-color: var(--ipdf-blue);
	color: #ffffff;
}

.ipdf-results__empty {
	background: var(--ipdf-soft);
	border: 1px solid var(--ipdf-border);
	border-radius: 18px;
	padding: 48px 28px;
	text-align: center;
}

.ipdf-results__empty h3 {
	color: var(--ipdf-navy);
	font-size: 1.45rem;
	margin: 0 0 8px;
}

.ipdf-results__empty p {
	color: var(--ipdf-muted);
	margin: 0 auto 18px;
	max-width: 560px;
}

.ipdf-results__empty a {
	color: var(--ipdf-blue-dark);
	font-weight: 700;
}

.ipdf-single {
	background: #f8fafc;
	overflow-x: clip;
	padding: 42px 20px 64px;
}

.ipdf-single__container {
	margin: 0 auto;
	max-width: 1180px;
}

.ipdf-single__back {
	color: var(--ipdf-blue-dark);
	display: inline-flex;
	font-weight: 700;
	gap: 8px;
	margin-bottom: 22px;
	text-decoration: none;
}

.ipdf-single__back:hover,
.ipdf-single__back:focus {
	text-decoration: underline;
}

.ipdf-single__hero {
	align-items: center;
	background: var(--ipdf-surface);
	border: 1px solid var(--ipdf-border);
	border-radius: 22px;
	box-shadow: 0 12px 35px rgba(6, 36, 58, 0.08);
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(220px, 340px) 1fr;
	margin-bottom: 28px;
	overflow: hidden;
	padding: 28px;
}

.ipdf-single__portrait {
	aspect-ratio: 4 / 3;
	background: var(--ipdf-soft);
	border-radius: 16px;
	overflow: hidden;
}

.ipdf-single__portrait img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ipdf-single__portrait--fallback {
	align-items: center;
	background: linear-gradient(135deg, #dcecf8 0%, #f2f7fb 100%);
	display: flex;
	justify-content: center;
}

.ipdf-single__portrait--fallback span {
	align-items: center;
	background: var(--ipdf-blue);
	border: 7px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	box-shadow: 0 12px 28px rgba(6, 36, 58, 0.14);
	color: #ffffff;
	display: inline-flex;
	font-size: clamp(2rem, 6vw, 4rem);
	font-weight: 700;
	height: 145px;
	justify-content: center;
	letter-spacing: 0.04em;
	width: 145px;
}

.ipdf-single__intro h1 {
	font-size: clamp(2rem, 5vw, 3.4rem);
	margin-bottom: 18px;
}

.ipdf-single__badges--locations .ipdf-single__badge {
	background: #fff3e7;
	color: #a94f00;
}

.ipdf-single__layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.ipdf-single__about,
.ipdf-single__contact {
	background: var(--ipdf-surface);
	border: 1px solid var(--ipdf-border);
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(6, 36, 58, 0.06);
	padding: 28px;
}

.ipdf-single__about h2,
.ipdf-single__contact h2,
.ipdf-single__related h2 {
	font-size: 1.5rem;
	margin-bottom: 18px;
}

.ipdf-single__content {
	color: #354f60;
	font-size: 1rem;
	line-height: 1.75;
}

.ipdf-single__content > :first-child {
	margin-top: 0;
}

.ipdf-single__content > :last-child {
	margin-bottom: 0;
}

.ipdf-single__contact {
	position: sticky;
	top: 24px;
}

.ipdf-single__contact dl {
	margin: 0;
}

.ipdf-single__contact dl > div {
	border-top: 1px solid var(--ipdf-border);
	padding: 14px 0;
}

.ipdf-single__contact dl > div:first-child {
	border-top: 0;
	padding-top: 0;
}

.ipdf-single__contact dt {
	color: var(--ipdf-muted);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.ipdf-single__contact dd {
	color: var(--ipdf-navy);
	line-height: 1.5;
	margin: 0;
	overflow-wrap: anywhere;
}

.ipdf-single__related {
	margin-top: 46px;
}

.ipdf-single__mobile-actions {
	display: none;
}

.ipdf-single__section-heading {
	margin-bottom: 20px;
}

/* WordPress admin page styles remain isolated from public and core admin UI. */
.ipdf-admin {
	max-width: 920px;
}

.ipdf-admin form {
	background: #ffffff;
	border: 1px solid #dce6ed;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(6, 36, 58, 0.06);
	margin-top: 20px;
	padding: 12px 28px 24px;
}

.ipdf-admin .form-table th {
	color: #06243a;
	padding-left: 0;
}

.ipdf-admin .form-table td {
	padding-right: 0;
}

.ipdf-admin .form-table input[type="text"],
.ipdf-admin .form-table input[type="number"],
.ipdf-admin .form-table select {
	border-color: #b9cad6;
	border-radius: 6px;
}

@media (max-width: 1100px) {
	.ipdf-results--list .ipdf-card,
	.ipdf-results--list .ipdf-card--image-banner {
		grid-template-columns: minmax(230px, 0.8fr) minmax(300px, 1.2fr);
	}

	.ipdf-results--list .ipdf-card--image-banner .ipdf-card-banner {
		grid-row: 1 / span 2;
	}

	.ipdf-results--list .ipdf-card--image-banner .ipdf-card-body {
		grid-column: 2;
	}

	.ipdf-results--list .ipdf-card-actions {
		border-left: 0;
		border-top: 1px solid var(--ipdf-border);
		flex-direction: row;
		grid-column: 1 / -1;
		padding: 16px 22px;
	}
}

@media (max-width: 960px) {
	.ipdf-search__form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ipdf-results--grid .ipdf-results__grid,
	.ipdf-single__related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ipdf-single__hero {
		grid-template-columns: minmax(190px, 280px) 1fr;
	}
}

@media (max-width: 720px) {
	.ipdf-search {
		border-radius: 16px;
		padding: 24px 18px;
	}

	.ipdf-search__form,
	.ipdf-results--grid .ipdf-results__grid,
	.ipdf-single__related-grid,
	.ipdf-single__hero,
	.ipdf-single__layout {
		grid-template-columns: 1fr;
	}

	.ipdf-results__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.ipdf-results--list .ipdf-card,
	.ipdf-results--list .ipdf-card--image-banner {
		display: flex;
		flex-direction: column;
	}

	.ipdf-results--list .ipdf-card-banner {
		height: 150px;
		min-height: 150px;
	}

	.ipdf-results--list .ipdf-card-body,
	.ipdf-results--list .ipdf-card-actions {
		border-left: 0;
	}

	.ipdf-results--list .ipdf-card-body {
		padding-top: 8px;
	}

	.ipdf-results--list .ipdf-card-actions {
		border-top: 0;
	}

	.ipdf-card-actions {
		flex-wrap: wrap;
	}

	.ipdf-search__submit {
		width: 100%;
	}

	.ipdf-select__panel,
	.ipdf-select__options,
	.ipdf-select__search {
		min-width: 100%;
		width: 100%;
	}

	.ipdf-results__filters a {
		margin-left: 0;
	}

	.ipdf-results {
		padding-left: 0;
		padding-right: 0;
	}

	.ipdf-single {
		padding: 28px 14px 46px;
	}

	.ipdf-single__hero,
	.ipdf-single__about,
	.ipdf-single__contact {
		padding: 20px;
	}

	.ipdf-single__portrait {
		max-height: 360px;
	}

	.ipdf-single__contact {
		position: static;
	}

	.ipdf-single__container {
		padding-bottom: 68px;
	}

	.ipdf-single__mobile-actions {
		align-items: stretch;
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid var(--ipdf-border);
		border-bottom: 0;
		border-radius: 16px 16px 0 0;
		bottom: 0;
		box-shadow: 0 -10px 28px rgba(6, 36, 58, 0.12);
		display: flex;
		gap: 8px;
		left: 10px;
		padding: 10px;
		position: fixed;
		right: 10px;
		z-index: 100;
	}

	.ipdf-single__mobile-actions a {
		align-items: center;
		background: var(--ipdf-blue);
		border-radius: 9px;
		color: #ffffff;
		display: inline-flex;
		flex: 1;
		font-size: 0.84rem;
		font-weight: 700;
		justify-content: center;
		min-height: 44px;
		padding: 8px;
		text-align: center;
		text-decoration: none;
	}

	.ipdf-single__mobile-actions a:hover,
	.ipdf-single__mobile-actions a:focus {
		background: var(--ipdf-blue-dark);
		color: #ffffff;
	}

	.ipdf-admin form {
		padding: 8px 16px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ipdf-search__submit,
	.ipdf-card,
	.ipdf-card__button {
		transition: none;
	}
}
