.zile-pdf-carousel {
	--zile-pdf-bg: #ffffff;
	--zile-pdf-accent: #2c2c2c;
	--zile-pdf-text: #444444;
	--zile-pdf-muted: #777777;
	--zile-pdf-line: rgba(0, 0, 0, 0.06);
	--zile-pdf-radius: 16px;
	--zile-pdf-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
	--zile-pdf-viewer-height: 750px;
	--zile-pdf-max-width: 1100px;
	box-sizing: border-box;
	max-width: var(--zile-pdf-max-width);
	margin: 0 auto 2.5em;
	color: var(--zile-pdf-text);
	outline: none;
	display: flex;
	flex-direction: column;
}

.zile-pdf-carousel *,
.zile-pdf-carousel *::before,
.zile-pdf-carousel *::after {
	box-sizing: border-box;
}

.zile-pdf-carousel:focus-visible {
	box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.18);
	border-radius: calc(var(--zile-pdf-radius) + 4px);
}

.zile-pdf-carousel--height-compact {
	--zile-pdf-viewer-height: 560px;
}

.zile-pdf-carousel--height-tall {
	--zile-pdf-viewer-height: 900px;
}

.zile-pdf-carousel--radius-none {
	--zile-pdf-radius: 0;
}

.zile-pdf-carousel--radius-small {
	--zile-pdf-radius: 8px;
}

.zile-pdf-carousel--radius-medium {
	--zile-pdf-radius: 16px;
}

.zile-pdf-carousel--radius-large {
	--zile-pdf-radius: 24px;
}

.zile-pdf-carousel--shadow-none {
	--zile-pdf-shadow: none;
}

.zile-pdf-carousel--shadow-soft {
	--zile-pdf-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.zile-pdf-carousel--shadow-medium {
	--zile-pdf-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.zile-pdf-carousel__heading {
	margin: 0 0 1.15em;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	color: var(--zile-pdf-text);
}

.zile-pdf-carousel__stage {
	position: relative;
	display: flex;
	align-items: stretch;
	gap: 0.75rem;
}

.zile-pdf-carousel__viewport {
	flex: 1 1 auto;
	min-width: 0;
	background: var(--zile-pdf-bg);
	border-radius: var(--zile-pdf-radius);
	box-shadow: var(--zile-pdf-shadow);
	overflow: hidden;
}

.zile-pdf-carousel__track {
	position: relative;
}

.zile-pdf-carousel__slide.is-leave {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 280ms ease;
}

.zile-pdf-carousel__slide {
	position: relative;
}

.zile-pdf-carousel__slide[hidden] {
	display: none;
}

.zile-pdf-carousel--anim-fade .zile-pdf-carousel__slide.is-enter {
	animation: zile-pdf-fade 280ms ease;
}

.zile-pdf-carousel--anim-slide .zile-pdf-carousel__slide.is-enter {
	animation: zile-pdf-slide 320ms ease;
}

.zile-pdf-carousel__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.7rem 1rem;
	border-bottom: 1px solid var(--zile-pdf-line);
	background: rgba(255, 255, 255, 0.92);
}

.zile-pdf-carousel__toolbar[hidden] {
	display: none;
}

.zile-pdf-carousel__toolbar-group {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.zile-pdf-carousel__tool {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-width: 34px;
	height: auto;
	min-height: 34px;
	padding: 0.35rem 0.7rem;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--zile-pdf-accent);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.zile-pdf-carousel__tool-label {
	font-size: 0.72rem;
	line-height: 1.2;
	white-space: nowrap;
}

.zile-pdf-carousel__tool svg {
	width: 16px;
	height: 16px;
	display: block;
}

.zile-pdf-carousel__tool:hover,
.zile-pdf-carousel__tool:focus-visible {
	transform: translateY(-1px);
	background: #fff;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
	outline: none;
}

.zile-pdf-carousel__page-indicator,
.zile-pdf-carousel__zoom-value {
	min-width: 5.5rem;
	text-align: center;
	font-size: 0.82rem;
	color: var(--zile-pdf-muted);
}

.zile-pdf-carousel__viewer {
	position: relative;
	height: var(--zile-pdf-viewer-height);
	background: #f6f6f6;
}

.zile-pdf-carousel__pages {
	height: 100%;
	overflow: auto;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	-webkit-overflow-scrolling: touch;
}

.zile-pdf-carousel__page {
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	line-height: 0;
	flex: 0 0 auto;
}

.zile-pdf-carousel__canvas {
	display: block;
	width: auto;
	height: auto;
	max-width: none;
	max-height: none;
}

.zile-pdf-carousel__status {
	position: absolute;
	inset: auto 0 0 0;
	padding: 0.85rem 1rem;
	text-align: center;
	background: rgba(255, 255, 255, 0.92);
	color: var(--zile-pdf-muted);
	font-size: 0.92rem;
}

.zile-pdf-carousel__status[hidden] {
	display: none;
}

.zile-pdf-carousel__status.is-error {
	color: #8a1f1f;
}

.zile-pdf-carousel__status a {
	color: var(--zile-pdf-accent);
}

.zile-pdf-carousel__nav {
	flex: 0 0 auto;
	align-self: center;
	width: auto;
	min-width: 72px;
	max-width: 108px;
	height: auto;
	min-height: 72px;
	padding: 0.7rem 0.75rem 0.65rem;
	border: 0;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--zile-pdf-accent);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.zile-pdf-carousel__nav-label {
	display: block;
	font-size: 0.7rem;
	line-height: 1.25;
	font-weight: 600;
	text-align: center;
}

.zile-pdf-carousel--arrows-dark .zile-pdf-carousel__nav {
	background: rgba(32, 32, 32, 0.88);
	color: #fff;
}

.zile-pdf-carousel--arrows-outline .zile-pdf-carousel__nav {
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 10px 24px rgba(0, 0, 0, 0.08);
}

.zile-pdf-carousel__nav:hover,
.zile-pdf-carousel__nav:focus-visible {
	transform: translateY(-1px) scale(1.04);
	background: #fff;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
	outline: 2px solid var(--zile-pdf-accent);
	outline-offset: 3px;
}

.zile-pdf-carousel__nav-icon,
.zile-pdf-carousel__nav-icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.zile-pdf-carousel__overview {
	order: 3;
}

.zile-pdf-carousel__heading {
	order: 1;
}

.zile-pdf-carousel__stage {
	order: 2;
}

.zile-pdf-carousel--thumbs-above .zile-pdf-carousel__overview {
	order: 2;
	margin-bottom: 1.35rem;
}

.zile-pdf-carousel--thumbs-above .zile-pdf-carousel__stage {
	order: 3;
}

.zile-pdf-carousel--thumbs-above .zile-pdf-carousel__meta {
	margin-top: 0;
}

.zile-pdf-carousel--thumbs-above .zile-pdf-carousel__thumbs {
	margin-top: 0.9rem;
}

.zile-pdf-carousel__meta {
	margin-top: 1.25rem;
	text-align: center;
}

.zile-pdf-carousel__doc-title {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--zile-pdf-text);
}

.zile-pdf-carousel__doc-title[hidden] {
	display: none;
}

.zile-pdf-carousel__counter {
	font-size: 0.92rem;
	letter-spacing: 0.04em;
	color: var(--zile-pdf-muted);
}

.zile-pdf-carousel__thumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.4rem;
}

.zile-pdf-carousel__thumb {
	appearance: none;
	width: 92px;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	text-align: center;
	color: var(--zile-pdf-muted);
}

.zile-pdf-carousel__thumb-preview {
	display: block;
	height: 72px;
	border-radius: 10px;
	overflow: hidden;
	background: #f3f3f3;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
	margin-bottom: 0.4rem;
}

.zile-pdf-carousel__thumb-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.zile-pdf-carousel__thumb-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #fff;
	background: #c8102e;
}

.zile-pdf-carousel__thumb-label {
	display: block;
	font-size: 0.72rem;
	line-height: 1.3;
}

.zile-pdf-carousel__thumb.is-active .zile-pdf-carousel__thumb-preview,
.zile-pdf-carousel__thumb:focus-visible .zile-pdf-carousel__thumb-preview {
	box-shadow: 0 0 0 2px var(--zile-pdf-accent);
}

.zile-pdf-carousel.is-fullscreen {
	max-width: none;
	margin: 0;
	padding: 1.5rem;
	background: #111;
	height: 100%;
}

.zile-pdf-carousel.is-fullscreen .zile-pdf-carousel__heading,
.zile-pdf-carousel.is-fullscreen .zile-pdf-carousel__overview,
.zile-pdf-carousel.is-fullscreen .zile-pdf-carousel__meta,
.zile-pdf-carousel.is-fullscreen .zile-pdf-carousel__thumbs {
	color: #fff;
}

.zile-pdf-carousel.is-fullscreen .zile-pdf-carousel__viewer {
	height: calc(100vh - 140px);
}

@keyframes zile-pdf-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes zile-pdf-slide {
	from {
		opacity: 0;
		transform: translateX(18px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.zile-pdf-carousel--anim-fade .zile-pdf-carousel__slide.is-enter,
	.zile-pdf-carousel--anim-slide .zile-pdf-carousel__slide.is-enter {
		animation: none;
	}
}

@media only screen and (max-width: 1024px) {
	.zile-pdf-carousel {
		--zile-pdf-viewer-height: 650px;
		max-width: 100%;
	}

	.zile-pdf-carousel--height-compact {
		--zile-pdf-viewer-height: 520px;
	}

	.zile-pdf-carousel--height-tall {
		--zile-pdf-viewer-height: 760px;
	}
}

@media only screen and (max-width: 767px) {
	.zile-pdf-carousel {
		--zile-pdf-viewer-height: 500px;
	}

	.zile-pdf-carousel--height-compact {
		--zile-pdf-viewer-height: 420px;
	}

	.zile-pdf-carousel--height-tall {
		--zile-pdf-viewer-height: 580px;
	}

	.zile-pdf-carousel__stage {
		gap: 0;
	}

	.zile-pdf-carousel__nav {
		position: absolute;
		z-index: 3;
		width: 40px;
		min-width: 40px;
		max-width: 40px;
		height: 40px;
		min-height: 40px;
		padding: 0;
		border-radius: 50%;
		top: 50%;
		transform: translateY(-50%);
	}

	.zile-pdf-carousel__nav-label,
	.zile-pdf-carousel__tool-label {
		display: none;
	}

	.zile-pdf-carousel__nav--prev {
		left: 8px;
	}

	.zile-pdf-carousel__nav--next {
		right: 8px;
	}

	.zile-pdf-carousel__nav-icon,
	.zile-pdf-carousel__nav-icon svg {
		width: 18px;
		height: 18px;
	}

	.zile-pdf-carousel__toolbar {
		padding: 0.55rem 0.7rem;
	}

	.zile-pdf-carousel__pages {
		padding: 0.75rem;
	}

	.zile-pdf-carousel__thumb {
		width: 72px;
	}
}

.zile-pdf-list {
	box-sizing: border-box;
	max-width: 1100px;
	margin: 0 auto 2.5em;
	color: var(--zile-pdf-text, #444);
}

.zile-pdf-list *,
.zile-pdf-list *::before,
.zile-pdf-list *::after {
	box-sizing: border-box;
}

.zile-pdf-list__heading {
	margin: 0 0 1.15em;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
}

.zile-pdf-list__items,
#top .entry-content-wrapper .zile-pdf-list__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.zile-pdf-list__item,
#top .entry-content-wrapper .zile-pdf-list__item {
	list-style: none;
	margin: 0;
	padding: 0;
	text-indent: 0;
}

.zile-pdf-list__row {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.7rem 1rem;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
	text-decoration: none;
	color: inherit;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.zile-pdf-list__row:hover,
.zile-pdf-list__row:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	outline: none;
}

.zile-pdf-list__preview {
	flex: 0 0 56px;
	width: 56px;
	height: 72px;
	border-radius: 8px;
	overflow: hidden;
	background: #f3f3f3;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.zile-pdf-list__preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.zile-pdf-list__preview-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #fff;
	background: #c8102e;
}

.zile-pdf-list__body {
	flex: 1 1 auto;
	min-width: 0;
	text-align: right;
}

.zile-pdf-list__filename {
	display: block;
	font-weight: 600;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zile-pdf-list__size {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.8rem;
	color: #777;
}

.zile-pdf-list__download {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	color: #2c2c2c;
}

.zile-pdf-list__download svg {
	width: 16px;
	height: 16px;
	display: block;
}

@media only screen and (max-width: 767px) {
	.zile-pdf-list__filename {
		white-space: normal;
	}

	.zile-pdf-list__preview {
		flex-basis: 48px;
		width: 48px;
		height: 62px;
	}
}
