/* ==========================================================================
   Legal Pages — Privacy / Terms / Disclaimer (Unified Design)
   ========================================================================== */

.legal-page {
	background: #f4f6fb;
	margin: -32px 0 0;
	padding: 0;
	color: #1b263b;
	font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
	overflow-x: hidden;
	overflow-x: clip;
}

/* ── Hero ────────────────────────────────────── */
.lg-hero {
	position: relative;
	width: 100%;
	height: 320px;
	overflow: hidden;
	background: linear-gradient(135deg, #cfe1f5 0%, #e8eef7 100%);
}
.lg-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	opacity: .65;
}
.lg-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
	padding: 56px 48px;
}
.lg-hero__eyebrow {
	font-size: .9375rem;
	font-weight: 700;
	color: #1e4ab8;
	margin: 0 0 12px;
	letter-spacing: .08em;
}
.lg-hero__title {
	font-size: 3rem;
	font-weight: 800;
	color: #1b263b;
	letter-spacing: .02em;
	margin: 0 0 12px;
	line-height: 1.1;
}
.lg-hero__sub {
	font-size: 1rem;
	font-weight: 600;
	color: #1b263b;
	margin: 0 0 12px;
}
.lg-hero__lead {
	font-size: .875rem;
	color: #495567;
	line-height: 1.9;
	margin: 0;
	max-width: 540px;
}
.lg-hero__meta {
	margin-top: 16px;
	display: inline-flex;
	gap: 12px;
	flex-wrap: wrap;
	font-size: .8125rem;
	color: #495567;
}
.lg-hero__meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(255, 255, 255, .8);
	padding: 4px 12px;
	border-radius: 999px;
}

/* ── Container ───────────────────────────────── */
.lg-wrap {
	max-width: 920px;
	margin: 0 auto;
	padding: 56px 32px 80px;
}

/* ── Preamble ────────────────────────────────── */
.lg-preamble {
	background: #fff;
	border-left: 4px solid #1e4ab8;
	border-radius: 8px;
	padding: 24px 28px;
	margin-bottom: 48px;
	box-shadow: 0 2px 12px rgba(20, 40, 80, .05);
}
.lg-preamble p {
	font-size: .9375rem;
	color: #495567;
	line-height: 1.9;
	margin: 0;
}

/* ── TOC ─────────────────────────────────────── */
.lg-toc {
	background: #eef3fa;
	border-radius: 12px;
	padding: 28px 32px;
	margin-bottom: 56px;
}
.lg-toc__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1rem;
	font-weight: 800;
	color: #1b263b;
	margin: 0 0 18px;
}
.lg-toc__title svg { color: #1e4ab8; }
.lg-toc__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 24px;
}
.lg-toc__list li {
	border-bottom: 1px dashed #d8e0ed;
}
.lg-toc__list li:last-child,
.lg-toc__list li:nth-last-child(2):not(:nth-child(odd)) {
	border-bottom: none;
}
.lg-toc__list a {
	display: block;
	padding: 10px 0;
	font-size: .875rem;
	color: #1b263b;
	text-decoration: none;
	transition: color .15s;
}
.lg-toc__list a:hover { color: #1e4ab8; }

/* ── Article ─────────────────────────────────── */
.lg-article {
	background: #fff;
	border-radius: 12px;
	padding: 32px 36px;
	margin-bottom: 24px;
	box-shadow: 0 2px 16px rgba(20, 40, 80, .06);
	scroll-margin-top: 80px;
}
.lg-article--highlight {
	border-left: 4px solid #1e4ab8;
}
.lg-article__title {
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-size: 1.25rem;
	font-weight: 800;
	color: #1b263b;
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 2px solid #eef3fa;
}
.lg-article__title::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 22px;
	background: #1e4ab8;
	border-radius: 2px;
	flex-shrink: 0;
	transform: translateY(3px);
}
.lg-article__sub {
	font-size: 1rem;
	font-weight: 700;
	color: #1b263b;
	margin: 24px 0 12px;
	padding-left: 12px;
	border-left: 3px solid #1e4ab8;
}
.lg-article p {
	font-size: .9375rem;
	color: #495567;
	line-height: 1.9;
	margin: 0 0 14px;
}
.lg-article p:last-child { margin-bottom: 0; }

/* ── Lists ───────────────────────────────────── */
.lg-list {
	list-style: none;
	padding: 0;
	margin: 14px 0;
}
.lg-list li {
	position: relative;
	padding: 6px 0 6px 22px;
	font-size: .9375rem;
	color: #1b263b;
	line-height: 1.8;
}
.lg-list li::before {
	content: '';
	position: absolute;
	left: 6px;
	top: 16px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1e4ab8;
}

.lg-olist {
	counter-reset: lgol;
	list-style: none;
	padding: 0;
	margin: 14px 0;
}
.lg-olist > li {
	counter-increment: lgol;
	position: relative;
	padding: 8px 0 8px 36px;
	font-size: .9375rem;
	color: #495567;
	line-height: 1.9;
}
.lg-olist > li::before {
	content: counter(lgol);
	position: absolute;
	left: 0;
	top: 9px;
	width: 24px;
	height: 24px;
	background: #1e4ab8;
	color: #fff;
	border-radius: 50%;
	font-size: .75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lg-olist .lg-sublist,
.lg-olist .lg-list {
	margin-top: 10px;
}
.lg-sublist {
	list-style: none;
	padding: 0;
	margin: 8px 0 8px 0;
}
.lg-sublist > li {
	position: relative;
	padding: 4px 0 4px 18px;
	font-size: .875rem;
	color: #495567;
	line-height: 1.8;
}
.lg-sublist > li::before {
	content: '';
	position: absolute;
	left: 6px;
	top: 13px;
	width: 8px;
	height: 1px;
	background: #1e4ab8;
}

/* ── Contact box ─────────────────────────────── */
.lg-contact {
	background: #f4f6fb;
	border-radius: 10px;
	padding: 24px 28px;
	margin: 20px 0;
}
.lg-contact__title {
	font-size: .9375rem;
	font-weight: 800;
	color: #1b263b;
	margin: 0 0 16px;
}
.lg-contact__row {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid #e8edf6;
	font-size: .875rem;
}
.lg-contact__row:last-child { border-bottom: none; }
.lg-contact__label {
	font-weight: 700;
	color: #495567;
}
.lg-contact__value {
	color: #1b263b;
}
.lg-contact__value a {
	color: #1e4ab8;
	text-decoration: none;
}
.lg-contact__value a:hover { text-decoration: underline; }
.lg-contact__note {
	margin: 16px 0 0;
	font-size: .8125rem;
	color: #6c7a93;
	line-height: 1.7;
}

/* ── Security / feature cards (privacy specific) ─ */
.lg-cards-intro {
	font-size: .9375rem;
	color: #495567;
	line-height: 1.9;
	margin: 0 0 20px;
}
.lg-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.lg-card {
	background: #f4f6fb;
	border-radius: 10px;
	padding: 22px 22px;
	text-align: center;
}
.lg-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #e7eefb;
	color: #1e4ab8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.lg-card__title {
	font-size: .9375rem;
	font-weight: 800;
	color: #1b263b;
	margin: 0 0 8px;
}
.lg-card__body {
	font-size: .8125rem;
	color: #495567;
	line-height: 1.8;
	margin: 0;
}

/* ── Supplementary / footer block ────────────── */
.lg-supplementary {
	background: #eef3fa;
	border-radius: 10px;
	padding: 18px 24px;
	margin-top: 32px;
	font-size: .875rem;
	color: #1b263b;
	text-align: center;
}

/* ── Related links ───────────────────────────── */
.lg-related {
	margin-top: 56px;
}
.lg-related__title {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 800;
	color: #1b263b;
	margin: 0 0 8px;
}
.lg-related__title::after {
	content: '';
	display: block;
	width: 56px;
	height: 3px;
	background: #1e4ab8;
	margin: 14px auto 32px;
	border-radius: 2px;
}
.lg-related__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.lg-related__card {
	background: #fff;
	border-radius: 12px;
	padding: 24px 18px;
	text-align: center;
	text-decoration: none;
	color: #1b263b;
	box-shadow: 0 2px 12px rgba(20, 40, 80, .06);
	transition: transform .2s, box-shadow .2s;
}
.lg-related__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(20, 40, 80, .12);
	color: #1e4ab8;
}
.lg-related__card-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #e7eefb;
	color: #1e4ab8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.lg-related__card-title {
	font-size: .9375rem;
	font-weight: 700;
	margin: 0;
}

/* ── Text link ───────────────────────────────── */
.lg-link {
	color: #1e4ab8;
	text-decoration: underline;
	font-weight: 600;
}
.lg-link:hover { color: #163a93; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
	.lg-hero { height: 240px; }
	.lg-hero__inner { padding: 36px 24px; }
	.lg-hero__title { font-size: 2rem; }
	.lg-wrap { padding: 40px 16px 60px; }
	.lg-article { padding: 24px 22px; }
	.lg-article__title { font-size: 1.125rem; }
	.lg-toc__list { grid-template-columns: 1fr; }
	.lg-cards { grid-template-columns: 1fr; }
	.lg-related__grid { grid-template-columns: 1fr 1fr; }
	.lg-contact__row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 480px) {
	.legal-page { margin-top: -16px; }
	.lg-hero__title { font-size: 1.625rem; }
	.lg-related__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Legacy class aliases — privacy/terms の旧テンプレ class を統一デザインに
   ========================================================================== */

/* Wrapper */
.gov-privacy-page,
.gov-terms-page {
	background: #f4f6fb;
	margin: -32px 0 0;
	padding: 0;
	color: #1b263b;
	font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.7;
	overflow-x: hidden;
	overflow-x: clip;
}
.gov-privacy-page::before,
.gov-terms-page::before { display: none; }

/* Container */
.gov-privacy-page .gov-container,
.gov-terms-page .gov-container {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Header (hero風) */
.gov-page-header {
	background: linear-gradient(135deg, #cfe1f5 0%, #e8eef7 100%);
	padding: 56px 0 48px;
	margin-bottom: 24px;
}
.gov-page-header::after { display: none; }
.gov-header-content { text-align: center; }
.gov-page-title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	color: #1b263b;
	margin: 0 0 16px;
	letter-spacing: .02em;
}
.gov-page-meta {
	display: inline-flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}
.gov-meta-item {
	font-size: .8125rem;
	color: #495567;
	margin: 0;
	background: rgba(255, 255, 255, .8);
	padding: 4px 12px;
	border-radius: 999px;
}

/* Breadcrumb */
.gov-breadcrumb {
	background: #fff;
	border-bottom: 1px solid #e8edf6;
	padding: 12px 0;
}
.gov-breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
}
.gov-breadcrumb-item { display: flex; align-items: center; }
.gov-breadcrumb-item:not(:last-child)::after {
	content: '›';
	margin-left: 8px;
	color: #adb5bd;
}
.gov-breadcrumb-item a {
	color: #495567;
	text-decoration: none;
}
.gov-breadcrumb-item a:hover { color: #1e4ab8; text-decoration: underline; }
.gov-breadcrumb-item.current { color: #6c757d; }

/* Page content */
.gov-page-content { padding: 16px 0 80px; }

/* Preamble */
.gov-preamble,
.preamble-content {
	background: #fff;
	border-left: 4px solid #1e4ab8;
	border-radius: 8px;
	padding: 24px 28px;
	margin-bottom: 48px;
	box-shadow: 0 2px 12px rgba(20, 40, 80, .05);
}
.gov-preamble p,
.preamble-content p {
	font-size: .9375rem;
	color: #495567;
	line-height: 1.9;
	margin: 0;
}

/* Section header (TOC etc.) */
.gov-content-section,
.content-section { margin-bottom: 32px; }

.gov-section-header,
.section-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.125rem;
	font-weight: 800;
	color: #1b263b;
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 2px solid #eef3fa;
}
.gov-section-icon,
.title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1e4ab8;
	background: none;
	width: auto;
	height: auto;
}
.gov-section-title { margin: 0; font: inherit; color: inherit; }

/* TOC */
.gov-toc-nav,
.toc-nav {
	background: #eef3fa;
	border: none;
	border-radius: 12px;
	padding: 24px 28px;
}
.gov-toc-list,
.toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 24px;
}
.gov-toc-list li,
.toc-list li {
	border-bottom: 1px dashed #d8e0ed;
}
.gov-toc-link,
.toc-link {
	display: block;
	padding: 10px 0;
	font-size: .875rem;
	color: #1b263b;
	text-decoration: none;
	border: none;
	border-radius: 0;
	transition: color .15s, padding-left .15s;
}
.gov-toc-link:hover,
.toc-link:hover {
	color: #1e4ab8;
	background: none;
	padding-left: 6px;
	transform: none;
}

/* Article (policy/terms section) */
.gov-policy-section,
.article-section {
	background: #fff;
	border-radius: 12px;
	padding: 28px 32px;
	margin-bottom: 20px;
	box-shadow: 0 2px 16px rgba(20, 40, 80, .06);
	scroll-margin-top: 80px;
}
.gov-policy-title,
.article-title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.125rem;
	font-weight: 800;
	color: #1b263b;
	margin: 0 0 16px;
	padding: 0 0 12px;
	background: none;
	border-bottom: 2px solid #eef3fa;
	border-radius: 0;
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.gov-policy-title::before,
.article-title::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 20px;
	background: #1e4ab8;
	border-radius: 2px;
	flex-shrink: 0;
	transform: translateY(3px);
}
.gov-policy-content,
.article-content { padding: 0; }
.gov-policy-content p,
.article-content p {
	font-size: .9375rem;
	color: #495567;
	line-height: 1.9;
	margin: 0 0 14px;
}
.gov-subsection-title {
	font-size: 1rem;
	font-weight: 700;
	color: #1b263b;
	margin: 22px 0 10px;
	padding-left: 12px;
	border-left: 3px solid #1e4ab8;
}

/* Ordered/numbered lists */
.gov-article-list,
.article-list,
.gov-purpose-list {
	counter-reset: gloi;
	list-style: none;
	padding: 0;
	margin: 14px 0;
}
.gov-article-list > li,
.article-list > li,
.gov-purpose-list > li {
	counter-increment: gloi;
	position: relative;
	padding: 6px 0 6px 36px;
	font-size: .9375rem;
	color: #495567;
	line-height: 1.9;
}
.gov-article-list > li::before,
.article-list > li::before,
.gov-purpose-list > li::before {
	content: counter(gloi);
	position: absolute;
	left: 0;
	top: 7px;
	width: 24px;
	height: 24px;
	background: #1e4ab8;
	color: #fff;
	border-radius: 50%;
	font-size: .75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Bulleted info list */
.gov-info-list {
	list-style: none;
	padding: 0;
	margin: 12px 0;
}
.gov-info-list li {
	position: relative;
	padding: 4px 0 4px 22px;
	font-size: .9375rem;
	color: #1b263b;
	line-height: 1.8;
}
.gov-info-list li::before {
	content: '';
	position: absolute;
	left: 6px;
	top: 14px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1e4ab8;
}

/* Sub-list (within ol) */
.gov-sub-list,
.sub-list {
	list-style: none;
	padding: 0;
	margin: 10px 0 0;
}
.gov-sub-list > li,
.sub-list > li {
	position: relative;
	padding: 4px 0 4px 18px;
	font-size: .875rem;
	color: #495567;
	line-height: 1.8;
}
.gov-sub-list > li::before,
.sub-list > li::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 13px;
	width: 8px;
	height: 1px;
	background: #1e4ab8;
	border-radius: 0;
}

/* Sub-sub-list */
.gov-sub-sub-list {
	list-style: none;
	padding: 0;
	margin: 6px 0 6px 14px;
}
.gov-sub-sub-list li {
	position: relative;
	padding: 2px 0 2px 14px;
	font-size: .8125rem;
	color: #6c7a93;
	line-height: 1.7;
}
.gov-sub-sub-list li::before {
	content: '・';
	position: absolute;
	left: 0;
	color: #adb5bd;
}

/* Highlight section (privacy/terms 第5条等) */
.gov-policy-section.gov-highlight-section,
.article-section.highlight-section {
	border-left: 4px solid #1e4ab8;
	background: #fff;
	padding: 28px 32px;
}

/* Disclaimer box (terms 第10条) */
.disclaimer-box {
	background: #fef6f6;
	border: none;
	border-left: 4px solid #c62828;
	border-radius: 8px;
	padding: 20px 24px;
	margin: 18px 0 0;
}
.disclaimer-title {
	font-size: 1rem;
	font-weight: 800;
	color: #c62828;
	margin: 0 0 12px;
}
.disclaimer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.disclaimer-list li {
	position: relative;
	padding: 4px 0 4px 26px;
	margin-bottom: 6px;
	font-size: .9375rem;
	color: #1b263b;
	line-height: 1.8;
	font-weight: 500;
}
.disclaimer-list li::before {
	content: '!';
	position: absolute;
	left: 0;
	top: 6px;
	width: 18px;
	height: 18px;
	background: #c62828;
	color: #fff;
	border-radius: 50%;
	font-size: .6875rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Contact box */
.gov-contact-box {
	background: #f4f6fb;
	border: none;
	border-radius: 10px;
	padding: 24px 28px;
	margin: 20px 0 0;
}
.gov-contact-title {
	font-size: .9375rem;
	font-weight: 800;
	color: #1b263b;
	margin: 0 0 16px;
	padding: 0;
	border: none;
}
.gov-contact-details { display: block; }
.gov-contact-row {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid #e8edf6;
	font-size: .875rem;
}
.gov-contact-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.gov-contact-label {
	font-weight: 700;
	color: #495567;
	font-size: .875rem;
}
.gov-contact-value {
	color: #1b263b;
	font-size: .875rem;
}
.gov-contact-value a {
	color: #1e4ab8;
	text-decoration: none;
}
.gov-contact-value a:hover { text-decoration: underline; }
.gov-contact-note {
	margin: 16px 0 0;
	padding: 0;
	background: none;
	font-size: .8125rem;
	color: #6c7a93;
	line-height: 1.7;
	border-radius: 0;
}

/* Text link */
.gov-text-link,
.text-link {
	color: #1e4ab8;
	text-decoration: underline;
	font-weight: 600;
}
.gov-text-link:hover,
.text-link:hover { color: #163a93; }

/* Security cards (privacy 個人情報保護の取り組み) */
.gov-security-intro {
	font-size: .9375rem;
	color: #495567;
	line-height: 1.9;
	margin: 0 0 20px;
}
.gov-security-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.gov-security-item {
	background: #f4f6fb;
	border: none;
	border-radius: 10px;
	padding: 22px;
	text-align: center;
	transition: transform .2s, box-shadow .2s;
}
.gov-security-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(20, 40, 80, .08);
	border: none;
}
.gov-security-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #e7eefb;
	color: #1e4ab8;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.gov-security-title {
	font-size: .9375rem;
	font-weight: 800;
	color: #1b263b;
	margin: 0 0 8px;
}
.gov-security-description {
	font-size: .8125rem;
	color: #495567;
	line-height: 1.8;
	margin: 0;
}

/* Supplementary (附則) */
.gov-supplementary,
.supplementary-section .article-content {
	background: #eef3fa;
	border: none;
	border-left: none;
	border-radius: 10px;
	padding: 18px 24px;
	margin-top: 8px;
	font-size: .875rem;
	color: #1b263b;
	text-align: center;
}
.gov-supplementary p,
.supplementary-section .article-content p {
	margin: 0;
	color: #1b263b;
}

/* Related links */
.gov-related-links-grid,
.related-links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.gov-related-link-card,
.related-link-card {
	background: #fff;
	border: none;
	border-radius: 12px;
	padding: 20px 16px;
	text-align: center;
	text-decoration: none;
	color: #1b263b;
	box-shadow: 0 2px 12px rgba(20, 40, 80, .06);
	transition: transform .2s, box-shadow .2s;
	flex-direction: column;
	align-items: center;
	gap: 0;
}
.gov-related-link-card:hover,
.related-link-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(20, 40, 80, .12);
	color: #1e4ab8;
	background: #fff;
}
.gov-link-card-icon,
.link-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #e7eefb;
	color: #1e4ab8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	flex-shrink: 0;
	transition: background .2s;
}
.gov-related-link-card:hover .gov-link-card-icon,
.related-link-card:hover .link-card-icon {
	background: #d4e2f8;
	color: #1e4ab8;
}
.gov-link-card-content,
.link-card-content {
	flex: none;
	text-align: center;
}
.gov-link-card-title,
.link-card-title {
	font-size: .9375rem;
	font-weight: 700;
	color: #1b263b;
	margin: 0 0 4px;
}
.gov-link-card-description,
.link-card-description {
	font-size: .75rem;
	color: #6c7a93;
	margin: 0;
}

/* Page top button */
.gov-page-top-wrapper,
.page-top-btn-wrapper {
	text-align: center;
	margin-top: 48px;
}
.gov-page-top-btn,
.page-top-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #1e4ab8;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	font-weight: 700;
	font-size: .875rem;
	box-shadow: 0 2px 8px rgba(30, 74, 184, .25);
	transition: background .15s, transform .15s, box-shadow .15s;
}
.gov-page-top-btn:hover,
.page-top-btn:hover {
	background: #163a93;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(30, 74, 184, .35);
	color: #fff;
}

/* Responsive overrides for legacy classes */
@media (max-width: 768px) {
	.gov-privacy-page .gov-container,
	.gov-terms-page .gov-container { padding: 0 16px; }
	.gov-page-header { padding: 40px 0 32px; }
	.gov-page-title { font-size: 1.625rem; }
	.gov-page-meta { flex-direction: column; gap: 8px; align-items: center; }
	.gov-toc-list,
	.toc-list { grid-template-columns: 1fr; }
	.gov-policy-section,
	.article-section { padding: 22px 20px; }
	.gov-security-grid { grid-template-columns: 1fr; }
	.gov-related-links-grid,
	.related-links-grid { grid-template-columns: 1fr 1fr; }
	.gov-contact-row { grid-template-columns: 1fr; gap: 4px; padding: 8px 0; }
}
@media (max-width: 480px) {
	.gov-privacy-page,
	.gov-terms-page { margin-top: -16px; }
	.gov-page-title { font-size: 1.375rem; }
	.gov-related-links-grid,
	.related-links-grid { grid-template-columns: 1fr; }
}
