.about-main {
	min-height: 100vh;
	padding: 28px clamp(18px, 4vw, 56px) 96px;
	font-family: "NTSOMIC", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

.about-page {
	width: 100%;
	margin: 0;
}

.about-hero {
	padding: 6px 0 18px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.14);
	margin-bottom: 40px;
}

html.dark .about-hero {
	border-bottom-color: rgba(255, 255, 255, 0.16);
}

.about-title {
	margin: 0;
	font-size: 44px;
	line-height: 0.95;
	font-weight: 500;
	color: var(--text-color);
}

.about-grid {
	width: min(980px, 100%);
	display: grid;
	grid-template-columns: 1fr;
	gap: 54px;
	align-items: start;
}

.about-panel {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.about-kicker {
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #109374;
}

.about-text {
	margin: 0;
	font-size: 20px;
	line-height: 1.28;
	color: rgba(17, 17, 17, 0.74);
}

.about-text--strong {
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.04;
	font-weight: 700;
	color: var(--text-color);
}

.about-text + .about-text {
	margin-top: 14px;
}

html.dark .about-text {
	color: rgba(255, 255, 255, 0.74);
}

.about-warning {
	max-width: 860px;
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1.22;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
	color: var(--text-color);
}

.about-link {
	color: #5a83dd;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid currentColor;
}

.about-link:hover {
	filter: brightness(1.08);
}

.dev-quote {
	max-width: 520px;
	margin: 0;
	font-size: 18px;
	line-height: 1.32;
	font-weight: 400;
	color: rgba(17, 17, 17, 0.58);
}

html.dark .dev-quote {
	color: rgba(255, 255, 255, 0.58);
}

.dev-quote::before {
	content: "\201C";
	color: #ff5b89;
}

.dev-quote::after {
	content: "\201D";
	color: #ff5b89;
}

.about-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.about-button {
	border: 0;
	border-radius: 8px;
	min-height: 50px;
	padding: 13px 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font: inherit;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	background: #5a83dd;
	text-decoration: none;
	cursor: pointer;
}

.about-button--ghost {
	color: var(--text-color);
	background: rgba(0, 0, 0, 0.09);
}

html.dark .about-button--ghost {
	background: rgba(255, 255, 255, 0.12);
}

.privacy-summary,
.admin-summary {
	width: min(980px, 100%);
	margin-top: 54px;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 40;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.62);
}

.modal.is-open {
	display: flex;
}

.modal__dialog {
	width: min(780px, 100%);
	max-height: min(780px, calc(100vh - 40px));
	overflow: auto;
	padding: 26px;
	border-radius: 8px;
	background: var(--page-bg);
	color: var(--text-color);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.modal__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.modal__title {
	margin: 0;
	font-size: clamp(28px, 5vw, 44px);
	line-height: 0.95;
	font-weight: 700;
}

.modal__close {
	border: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.1);
	color: var(--text-color);
	font: inherit;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	flex: 0 0 auto;
}

html.dark .modal__close {
	background: rgba(255, 255, 255, 0.12);
}

.privacy-block + .privacy-block {
	margin-top: 18px;
}

.privacy-block h3 {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.1;
}

.privacy-block p {
	margin: 0;
	font-size: 16px;
	line-height: 1.38;
	color: rgba(17, 17, 17, 0.72);
}

html.dark .privacy-block p {
	color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
	.about-main {
		min-height: calc(100vh - 92px);
		padding: 22px 14px 56px;
	}

	.about-hero {
		padding: 8px;
		margin-bottom: 28px;
		border-bottom: 0;
	}

	.about-title {
		font-size: clamp(36px, 9vw, 48px);
		line-height: 0.9;
		text-align: center;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.privacy-summary,
	.admin-summary {
		margin-top: 36px;
	}

	.about-text {
		font-size: 18px;
	}

	.about-actions {
		gap: 10px;
	}

	.about-button {
		width: 100%;
	}

	.modal {
		padding: 10px;
	}

	.modal__dialog {
		max-height: calc(100svh - 20px);
		padding: 20px;
	}
}
