.fal-private-docs {
	--fal-primary: var(--e-global-color-primary, #ff2768);
	--fal-accent: var(--e-global-color-accent, #ff2768);
	--fal-text: var(--e-global-color-text, #2c2c2c);
	--fal-dark: var(--e-global-color-secondary, #1f1f1f);
	--fal-soft: var(--e-global-color-fa37a12, #fdf3ed);
	--fal-soft-strong: var(--e-global-color-e8bf6bd, #fef0ed);
	--fal-teal: var(--e-global-color-50e9a08, #4289a1);
	--fal-line: rgba(44, 44, 44, 0.12);
	--fal-muted: rgba(44, 44, 44, 0.68);
	--fal-paper: #fff;
	color: var(--fal-text);
	font-family: var(--e-global-typography-text-font-family, Karma, Georgia, serif);
	font-size: var(--e-global-typography-text-font-size, 17px);
	line-height: 1.45;
	margin: 0 auto;
	max-width: 980px;
	padding: clamp(30px, 5vw, 62px) 20px;
}

.fal-private-docs *,
.fal-private-docs *::before,
.fal-private-docs *::after {
	box-sizing: border-box;
}

.fal-private-docs__header {
	border-left: 4px solid var(--fal-primary);
	max-width: 760px;
	padding-left: clamp(16px, 2.4vw, 24px);
}

.fal-private-docs__eyebrow {
	color: var(--fal-primary);
	font-family: var(--e-global-typography-primary-font-family, Spartan, Arial, sans-serif);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.fal-private-docs h2 {
	color: var(--fal-dark);
	font-family: var(--e-global-typography-primary-font-family, Spartan, Arial, sans-serif);
	font-size: clamp(30px, 3.4vw, 42px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.14;
	margin: 0 0 12px;
	text-transform: none;
}

.fal-private-docs__intro {
	color: var(--fal-text);
	font-size: 0.98em;
	max-width: 680px;
}

.fal-private-docs__intro p:last-child {
	margin-bottom: 0;
}

.fal-private-docs__summary {
	align-items: center;
	color: var(--fal-muted);
	display: flex;
	flex-wrap: wrap;
	font-family: var(--e-global-typography-accent-font-family, Spartan, Arial, sans-serif);
	font-size: 12px;
	font-weight: 600;
	gap: 8px 14px;
	margin-top: 16px;
	text-transform: uppercase;
}

.fal-private-docs__summary span + span {
	border-left: 1px solid var(--fal-line);
	padding-left: 14px;
}

.fal-private-docs__timeline {
	display: grid;
	gap: 10px;
	margin-top: clamp(22px, 4vw, 34px);
}

.fal-document {
	background: var(--fal-paper);
	border: 1px solid var(--fal-line);
	display: grid;
	gap: 0;
	grid-template-columns: 96px minmax(0, 1fr);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fal-document:hover {
	border-color: rgba(255, 39, 104, 0.24);
	box-shadow: 0 10px 26px rgba(44, 44, 44, 0.06);
	transform: translateY(-1px);
}

.fal-document__date {
	color: var(--fal-teal);
	display: flex;
	font-family: var(--e-global-typography-primary-font-family, Spartan, Arial, sans-serif);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	padding: 12px 11px;
	text-transform: uppercase;
	background: linear-gradient(180deg, var(--fal-soft), rgba(253, 243, 237, 0.42));
	border-right: 1px solid rgba(44, 44, 44, 0.08);
	align-items: center;
}

.fal-document__body {
	align-items: center;
	background: var(--fal-paper);
	display: grid;
	gap: 12px;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	min-height: 96px;
	padding: 10px 12px;
}

.fal-document__preview {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(255, 39, 104, 0.24);
	color: var(--fal-primary);
	display: flex;
	flex-direction: column;
	font-family: var(--e-global-typography-primary-font-family, Spartan, Arial, sans-serif);
	gap: 5px;
	height: 80px;
	justify-content: center;
	overflow: hidden;
	position: relative;
	width: 58px;
}

.fal-document__preview img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.fal-document__preview-symbol {
	align-items: center;
	color: var(--fal-primary);
	display: inline-flex;
	font-size: 17px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-height: 28px;
}

.fal-document__preview-label {
	color: var(--fal-muted);
	font-family: var(--e-global-typography-accent-font-family, Spartan, Arial, sans-serif);
	font-size: 9px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.fal-document__preview--audio .fal-document__preview-symbol {
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 20px;
	height: 36px;
	width: 36px;
}

.fal-document__preview--pdf .fal-document__preview-symbol,
.fal-document__preview--file .fal-document__preview-symbol,
.fal-document__preview--table .fal-document__preview-symbol,
.fal-document__preview--slides .fal-document__preview-symbol,
.fal-document__preview--video .fal-document__preview-symbol,
.fal-document__preview--archive .fal-document__preview-symbol {
	border-bottom: 2px solid rgba(255, 39, 104, 0.34);
	font-size: 16px;
	letter-spacing: 0;
	padding-bottom: 4px;
}

.fal-document__content {
	min-width: 0;
}

.fal-document h3 {
	color: var(--fal-dark);
	font-family: var(--e-global-typography-primary-font-family, Spartan, Arial, sans-serif);
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0 0 4px;
	text-transform: none;
}

.fal-document p {
	color: var(--fal-text);
	font-size: 0.95em;
	margin: 0 0 5px;
}

.fal-document__content span {
	color: var(--fal-muted);
	font-family: var(--e-global-typography-accent-font-family, Spartan, Arial, sans-serif);
	font-size: 12px;
	font-weight: 500;
}

.fal-document__download,
.fal-private-docs__password-row button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--fal-primary);
	color: var(--fal-primary);
	display: inline-flex;
	font-family: var(--e-global-typography-accent-font-family, Spartan, Arial, sans-serif);
	font-size: 14px;
	font-weight: 500;
	gap: 7px;
	justify-content: center;
	line-height: 1;
	min-height: 38px;
	padding: 10px 14px;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.fal-document__download:hover,
.fal-document__download:focus,
.fal-private-docs__password-row button:hover,
.fal-private-docs__password-row button:focus {
	background: var(--fal-primary);
	color: #fff;
	transform: translateY(-1px);
}

.fal-private-docs__footer {
	margin-top: 24px;
	text-align: right;
}

.fal-private-docs__footer a {
	color: var(--fal-muted);
	font-family: var(--e-global-typography-accent-font-family, Spartan, Arial, sans-serif);
	font-size: 13px;
	text-decoration: underline;
}

.fal-private-docs__pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	margin-top: 22px;
}

.fal-private-docs__page-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}

.fal-private-docs__page {
	align-items: center;
	background: var(--fal-paper);
	border: 1px solid var(--fal-line);
	color: var(--fal-dark);
	display: inline-flex;
	font-family: var(--e-global-typography-accent-font-family, Spartan, Arial, sans-serif);
	font-size: 13px;
	font-weight: 600;
	justify-content: center;
	line-height: 1;
	min-height: 36px;
	min-width: 36px;
	padding: 9px 12px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.fal-private-docs__page:hover,
.fal-private-docs__page:focus {
	border-color: var(--fal-primary);
	color: var(--fal-primary);
}

.fal-private-docs__page.is-current {
	background: var(--fal-primary);
	border-color: var(--fal-primary);
	color: #fff;
}

.fal-private-docs__page.is-disabled {
	color: rgba(44, 44, 44, 0.38);
	pointer-events: none;
}

.fal-private-docs__page--control {
	min-width: 86px;
}

.fal-private-docs__empty,
.fal-private-docs--notice {
	background: var(--fal-soft);
	border-left: 4px solid var(--fal-primary);
	margin-top: 28px;
	padding: 18px 20px;
}

.fal-private-docs--locked {
	display: flex;
	justify-content: center;
	max-width: 860px;
}

.fal-private-docs__lock {
	background: linear-gradient(135deg, var(--fal-soft), #fff 72%);
	border: 1px solid rgba(255, 39, 104, 0.16);
	padding: clamp(28px, 5vw, 54px);
	width: min(100%, 720px);
}

.fal-private-docs__form {
	margin-top: 26px;
}

.fal-private-docs__form label {
	color: var(--fal-dark);
	display: block;
	font-family: var(--e-global-typography-primary-font-family, Spartan, Arial, sans-serif);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.fal-private-docs__password-row {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.fal-private-docs__password-row input {
	background: #fff;
	border: 1px solid rgba(44, 44, 44, 0.2);
	color: var(--fal-text);
	font: inherit;
	min-height: 46px;
	padding: 10px 14px;
	width: 100%;
}

.fal-private-docs__password-row input:focus {
	border-color: var(--fal-primary);
	outline: 2px solid rgba(255, 39, 104, 0.16);
}

.fal-private-docs__error {
	background: #fff;
	border-left: 4px solid var(--fal-primary);
	color: var(--fal-dark);
	margin-top: 20px;
	padding: 12px 14px;
}

@media (max-width: 760px) {
	.fal-private-docs {
		padding-inline: 14px;
	}

	.fal-private-docs__summary span + span {
		border-left: 0;
		padding-left: 0;
	}

	.fal-document {
		grid-template-columns: 1fr;
	}

	.fal-document__date {
		border-bottom: 1px solid rgba(44, 44, 44, 0.08);
		border-right: 0;
		padding: 10px 12px;
	}

	.fal-document__body {
		align-items: center;
		grid-template-columns: 56px minmax(0, 1fr);
		min-height: 0;
		padding: 12px;
	}

	.fal-document__preview {
		height: 78px;
		width: 56px;
	}

	.fal-document__download {
		grid-column: 1 / -1;
		width: 100%;
	}

	.fal-private-docs__pagination {
		align-items: stretch;
		display: grid;
		grid-template-columns: 1fr;
	}

	.fal-private-docs__page-list {
		justify-content: flex-start;
	}

	.fal-private-docs__page--control {
		width: 100%;
	}

	.fal-private-docs__password-row {
		grid-template-columns: 1fr;
	}
}
