/* =========================================================
   Asset Log Official — main.css
   Design tokens adopted from Claude Design (asset-log/styles.css)
   - System fonts only (no Google Fonts) — speed first
   - White background, navy #0b2545, muted gold #b08a4e
   - Generous spacing, hairlines, soft shadows, rounded cards
   - Mobile-first; CTA/tables/scroll safe
   ========================================================= */

:root {
	/* Brand — Navy */
	--al-navy-900: #08172e;
	--al-navy-800: #0b2545;   /* primary navy */
	--al-navy-700: #13315c;
	--al-navy-600: #1e406e;
	--al-navy-500: #355780;
	--al-navy-400: #5d7aa1;

	/* Text */
	--al-ink:      #1c2c46;
	--al-body:     #2f3a55;
	--al-muted:    #6b7896;

	/* Surfaces / hairlines */
	--al-hair:     #e3e8f0;
	--al-hair-2:   #eef1f6;
	--al-surface:  #f6f8fb;
	--al-surface-2:#eef2f7;
	--al-white:    #ffffff;

	/* Accent — Muted gold */
	--al-gold-700: #8a6a35;
	--al-gold-600: #a48144;
	--al-gold-500: #b08a4e;
	--al-gold-400: #c6a566;
	--al-gold-100: #f4ecd9;
	--al-gold-50:  #faf5e6;

	/* Links / semantic */
	--al-link:     #2452a3;
	--al-link-hov: #1a3e83;
	--al-positive: #1e7a51;
	--al-negative: #b3422f;

	/* Boxes */
	--al-warn-bg:    #fdf6e0;
	--al-warn-border:#e7d39a;
	--al-warn-text:  #6b4f00;
	--al-danger-bg:    #fbeceb;
	--al-danger-border:#eebcb6;
	--al-danger-text:  #7e261b;
	--al-exp-bg:     #eef2f9;
	--al-exp-border: #c3d0e4;
	--al-exp-text:   #16345f;
	--al-info-bg:    #f6f8fb;
	--al-info-border:#d6deea;

	/* Radius / shadow */
	--al-r-sm: 8px;
	--al-r:    12px;
	--al-r-lg: 16px;
	--al-r-xl: 20px;
	--al-shadow-1: 0 1px 0 rgba(11,37,69,0.04), 0 1px 2px rgba(11,37,69,0.04);
	--al-shadow-2: 0 1px 0 rgba(11,37,69,0.04), 0 6px 18px -8px rgba(11,37,69,0.10);
	--al-shadow-3: 0 1px 0 rgba(11,37,69,0.04), 0 18px 40px -22px rgba(11,37,69,0.18);

	/* Grid */
	--al-container: 1200px;
	--al-content:   760px;
	--al-gutter:    24px;

	/* Fonts — system-only stack (no external font requests) */
	--al-font:     -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, "Noto Sans CJK JP", "Noto Sans JP", system-ui, sans-serif;
	--al-font-head:-apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, "Noto Sans CJK JP", "Noto Sans JP", system-ui, sans-serif;
	--al-font-serif:"Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif CJK JP", "Noto Serif JP", serif;
}

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--al-font);
	font-size: 16px;
	line-height: 1.85;
	color: var(--al-body);
	background: var(--al-white);
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--al-link); text-decoration: none; transition: color .15s; }
a:hover { color: var(--al-link-hov); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
	font-family: var(--al-font-head);
	color: var(--al-ink);
	line-height: 1.4;
	letter-spacing: 0.01em;
	margin: 0;
	font-weight: 700;
}
p { margin: 0; }
.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.al-skip {
	position: absolute; left: -9999px; top: -9999px;
	background: var(--al-navy-800); color: #fff; padding: 8px 14px; z-index: 9999;
}
.al-skip:focus { left: 8px; top: 8px; }

/* ---------- Container ---------- */
.al-container {
	max-width: var(--al-container);
	margin: 0 auto;
	padding: 0 var(--al-gutter);
}

/* ---------- Utility bar ---------- */
.al-utility {
	border-bottom: 1px solid var(--al-hair);
	background: var(--al-white);
	font-size: 12.5px;
	color: var(--al-muted);
}
.al-utility__row {
	display: flex; align-items: center; justify-content: space-between;
	min-height: 34px;
	gap: 12px;
}
.al-utility__left, .al-utility__right { display: flex; gap: 18px; flex-wrap: wrap; }
.al-utility__left span { display: inline-flex; align-items: center; gap: 6px; }
.al-utility__dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--al-gold-500);
}
.al-utility__right a { color: var(--al-muted); }
.al-utility__right a:hover { color: var(--al-navy-800); }

/* ---------- Header ---------- */
.al-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255,255,255,0.94);
	backdrop-filter: saturate(160%) blur(8px);
	border-bottom: 1px solid var(--al-hair);
}
.al-header__row {
	display: flex; align-items: center; justify-content: space-between;
	height: 72px;
	gap: 20px;
}
.al-brand {
	display: inline-flex; align-items: baseline; gap: 10px;
	text-decoration: none;
}
.al-brand__mark {
	width: 32px; height: 32px;
	display: inline-grid; place-items: center;
	background: var(--al-navy-800);
	color: #fff;
	border-radius: 6px;
	font-family: var(--al-font-serif);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.02em;
	align-self: center;
	position: relative;
	top: 4px;
}
.al-brand__mark::after {
	content: ""; position: absolute;
	inset: auto 4px 4px 4px; height: 2px;
	background: var(--al-gold-500);
}
.al-brand__name {
	font-family: var(--al-font-serif);
	font-weight: 700;
	font-size: 22px;
	color: var(--al-navy-800);
	letter-spacing: 0.04em;
}
.al-brand__tag {
	font-size: 11px;
	color: var(--al-muted);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	border-left: 1px solid var(--al-hair);
	padding-left: 10px;
	margin-left: 2px;
}
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo-link img { max-height: 40px; width: auto; }

/* Nav */
.al-nav { display: flex; align-items: center; }
.al-nav__list {
	display: flex; align-items: center; gap: 2px;
	list-style: none; margin: 0; padding: 0;
}
.al-nav__list a {
	display: inline-block;
	color: var(--al-ink);
	font-size: 14.5px;
	font-weight: 500;
	padding: 10px 14px;
	border-radius: 8px;
	position: relative;
	text-decoration: none;
}
.al-nav__list a:hover { color: var(--al-navy-800); background: var(--al-surface); }
.al-nav__list .current-menu-item > a,
.al-nav__list .current_page_item > a,
.al-nav__list .current-cat > a { color: var(--al-navy-800); }
.al-nav__list .current-menu-item > a::after,
.al-nav__list .current_page_item > a::after,
.al-nav__list .current-cat > a::after {
	content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
	height: 2px; background: var(--al-gold-500);
}

.al-nav-toggle {
	display: none;
	width: 40px; height: 40px;
	background: var(--al-white);
	border: 1px solid var(--al-hair);
	border-radius: 8px;
	align-items: center; justify-content: center;
	color: var(--al-navy-800);
	padding: 0;
}
.al-nav-toggle__bar {
	display: block; width: 18px; height: 2px;
	background: currentColor; border-radius: 2px;
	margin: 2px 0;
}

/* ---------- Breadcrumbs ---------- */
.al-breadcrumb-wrap { padding: 14px 0 0; }
.al-breadcrumbs ol {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; gap: 6px;
	font-size: 12.5px; color: var(--al-muted);
}
.al-breadcrumbs li + li::before {
	content: "›"; margin-right: 6px; color: var(--al-navy-400);
}
.al-breadcrumbs a { color: var(--al-muted); }
.al-breadcrumbs a:hover { color: var(--al-navy-800); text-decoration: underline; }

/* ---------- Hero ---------- */
.al-hero {
	position: relative;
	padding: 72px 0 88px;
	background:
		radial-gradient(900px 360px at 85% -10%, #f0eada 0%, rgba(240,234,218,0) 60%),
		linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
	border-bottom: 1px solid var(--al-hair);
	overflow: hidden;
}
.al-hero::before {
	content: "";
	position: absolute; inset: 0;
	background-image: linear-gradient(to right, rgba(11,37,69,0.035) 1px, transparent 1px);
	background-size: 80px 100%;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 25%, #000 75%, transparent);
	        mask-image: linear-gradient(to right, transparent, #000 25%, #000 75%, transparent);
	pointer-events: none;
}
.al-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
	position: relative;
}
.al-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--al-gold-700);
	font-weight: 600;
}
.al-eyebrow::before {
	content: ""; width: 22px; height: 1px; background: var(--al-gold-500);
}
.al-hero__title {
	font-family: var(--al-font-head);
	font-weight: 700;
	font-size: clamp(30px, 4.4vw, 52px);
	line-height: 1.24;
	color: var(--al-navy-900);
	margin: 18px 0 18px;
	letter-spacing: 0.005em;
}
.al-hero__title em {
	font-style: normal;
	position: relative;
	display: inline-block;
	font-family: var(--al-font-serif);
	color: var(--al-navy-800);
}
.al-hero__title em::after {
	content: ""; position: absolute;
	left: 0; right: 0; bottom: -2px;
	height: 8px;
	background: var(--al-gold-100);
	z-index: -1;
}
.al-hero__lead {
	font-size: 16.5px;
	color: var(--al-body);
	line-height: 1.95;
	max-width: 540px;
	margin: 0 0 28px;
}
.al-hero__lead strong { color: var(--al-ink); font-weight: 700; }

.al-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Buttons ---------- */
.al-btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14.5px;
	border: 1px solid transparent;
	transition: transform .15s, background .15s, color .15s, border-color .15s, box-shadow .15s;
	text-decoration: none !important;
	line-height: 1.2;
	max-width: 100%;
}
.al-btn:hover { transform: translateY(-1px); }
.al-btn .arr { transition: transform .15s; }
.al-btn:hover .arr { transform: translateX(3px); }
.al-btn--primary { background: var(--al-navy-800); color: #fff !important; border-color: var(--al-navy-800); }
.al-btn--primary:hover { background: var(--al-navy-700); }
.al-btn--outline { background: var(--al-white); color: var(--al-navy-800) !important; border-color: #cbd3e0; }
.al-btn--outline:hover { border-color: var(--al-navy-800); background: var(--al-white); }
.al-btn--ghost { background: transparent; color: var(--al-navy-800) !important; border-color: transparent; padding-left: 8px; }
.al-btn--ghost:hover { color: var(--al-navy-700) !important; background: transparent; }

/* Back-compat (existing CTA class used in article content) */
.al-cta-button { /* gold pill kept as alternate accent option */
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	background: var(--al-navy-800); color: #fff !important;
	font-weight: 600; font-size: 14.5px;
	text-decoration: none !important;
	border: 1px solid var(--al-navy-800);
	transition: background .15s, transform .1s;
	line-height: 1.2;
}
.al-cta-button:hover { background: var(--al-navy-700); transform: translateY(-1px); }
.al-cta-button--ghost {
	background: transparent; color: var(--al-navy-800) !important;
	border-color: #cbd3e0;
}
.al-cta-button--ghost:hover { background: var(--al-white); border-color: var(--al-navy-800); }

.al-trust-row {
	display: flex; align-items: center; flex-wrap: wrap; gap: 18px 22px;
	margin-top: 28px;
	color: var(--al-muted); font-size: 12.5px;
}
.al-trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.al-trust-row svg { color: var(--al-gold-600); flex: 0 0 auto; }

/* ---------- Hero visual: Portfolio card ---------- */
.al-hero__visual { position: relative; }
.al-pc {
	position: relative;
	background: var(--al-white);
	border: 1px solid var(--al-hair);
	border-radius: var(--al-r-xl);
	padding: 28px 28px 24px;
	box-shadow: var(--al-shadow-3);
}
.al-pc__sticker {
	position: absolute;
	top: -14px; right: 20px;
	background: var(--al-navy-800);
	color: #fff;
	font-size: 11px; letter-spacing: 0.16em;
	padding: 6px 12px; border-radius: 999px;
	font-weight: 600;
	display: inline-flex; align-items: center; gap: 6px;
}
.al-pc__sticker::before {
	content: ""; width: 6px; height: 6px; border-radius: 50%;
	background: var(--al-gold-400);
}
.al-pc__head {
	display: flex; align-items: flex-start; justify-content: space-between;
	margin-bottom: 18px; gap: 16px;
}
.al-pc__label {
	font-size: 11.5px; letter-spacing: 0.2em; color: var(--al-muted);
	text-transform: uppercase; font-weight: 600;
}
.al-pc__title {
	font-family: var(--al-font-head); font-weight: 700;
	font-size: 16px; color: var(--al-ink); margin-top: 4px;
}
.al-pc__period {
	font-size: 12px; color: var(--al-muted);
	background: var(--al-surface); padding: 6px 10px;
	border-radius: 999px; border: 1px solid var(--al-hair);
	white-space: nowrap;
}
.al-pc__value {
	font-family: var(--al-font-serif);
	font-weight: 700;
	font-size: clamp(28px, 4.2vw, 40px);
	color: var(--al-navy-900);
	letter-spacing: 0.01em;
	line-height: 1.1;
	display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
}
.al-pc__value small {
	font-family: var(--al-font);
	font-size: 13px; font-weight: 500; color: var(--al-muted);
}
.al-pc__note {
	margin-top: 6px;
	font-size: 12px; color: var(--al-muted);
}
.al-pc__chart {
	margin: 16px -6px 8px;
	width: calc(100% + 12px);
	height: 110px;
}
.al-pc__legend {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 10px 18px;
	padding-top: 14px;
	border-top: 1px solid var(--al-hair-2);
	font-size: 12.5px;
}
.al-pc__legend > div { display: flex; align-items: center; gap: 8px; }
.al-pc__legend dt {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--al-body); margin: 0;
}
.al-pc__legend dt i {
	width: 8px; height: 8px; border-radius: 2px; display: inline-block; flex: 0 0 auto;
}
.al-pc__legend dd { margin: 0; }

/* ---------- Stats / Summary cards ---------- */
.al-stats {
	border-bottom: 1px solid var(--al-hair);
	background: var(--al-white);
}
.al-stats__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 28px 0;
}
.al-stats__cell {
	padding: 4px 24px;
	border-left: 1px solid var(--al-hair-2);
}
.al-stats__cell:first-child { border-left: 0; }
.al-stats__num {
	font-family: var(--al-font-serif);
	font-weight: 700;
	color: var(--al-navy-800);
	font-size: 26px;
	letter-spacing: 0.01em;
	line-height: 1.15;
}
.al-stats__num small {
	font-family: var(--al-font);
	font-size: 13px; color: var(--al-muted);
	font-weight: 500; margin-left: 4px;
}
.al-stats__lbl {
	font-size: 12px; color: var(--al-muted);
	letter-spacing: 0.04em; margin-top: 8px;
}

/* ---------- Section base ---------- */
.al-section { padding: 88px 0; }
.al-section--surface { background: var(--al-surface); }
.al-section__head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 24px; margin-bottom: 40px;
	border-bottom: 1px solid var(--al-hair);
	padding-bottom: 18px;
	flex-wrap: wrap;
}
.al-section__head-left { max-width: 720px; }
.al-section__kicker {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 11.5px; font-weight: 600;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--al-gold-700);
	margin-bottom: 12px;
}
.al-section__kicker .bar { width: 18px; height: 1px; background: var(--al-gold-500); }
.al-section__title {
	font-size: clamp(24px, 3vw, 32px);
	color: var(--al-navy-900);
	letter-spacing: 0.005em;
}
.al-section__title em {
	font-style: normal; font-family: var(--al-font-serif); color: var(--al-navy-800);
}
.al-section__lead {
	margin-top: 12px; color: var(--al-muted);
	font-size: 14.5px; line-height: 1.9;
}
.al-section__more {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--al-navy-800); font-weight: 600; font-size: 14px;
	padding-bottom: 6px;
	border-bottom: 1px solid transparent;
	white-space: nowrap;
}
.al-section__more:hover { border-bottom-color: var(--al-navy-800); }

/* ---------- Category cards ---------- */
.al-cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.al-cat {
	display: block;
	background: var(--al-white);
	border: 1px solid var(--al-hair);
	border-radius: var(--al-r-lg);
	padding: 28px 22px 22px;
	position: relative;
	transition: transform .2s, box-shadow .2s, border-color .2s;
	color: inherit;
	text-decoration: none !important;
}
.al-cat:hover {
	transform: translateY(-3px); box-shadow: var(--al-shadow-2);
	border-color: #d6deea; color: inherit;
}
.al-cat__icon {
	width: 52px; height: 52px;
	border-radius: 12px;
	background: var(--al-surface);
	border: 1px solid var(--al-hair-2);
	display: grid; place-items: center;
	color: var(--al-navy-800);
	margin-bottom: 18px;
}
.al-cat__num {
	position: absolute;
	top: 22px; right: 22px;
	font-family: var(--al-font-serif);
	font-size: 12px;
	color: var(--al-muted);
	letter-spacing: 0.1em;
}
.al-cat__title {
	font-size: 18px; color: var(--al-ink); margin-bottom: 8px;
}
.al-cat__desc {
	font-size: 13.5px; color: var(--al-muted);
	line-height: 1.85; margin-bottom: 16px;
}
.al-cat__foot {
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 14px;
	border-top: 1px solid var(--al-hair-2);
	font-size: 12.5px;
	color: var(--al-muted);
	gap: 8px;
}
.al-cat__foot .go {
	color: var(--al-navy-800); font-weight: 600;
	display: inline-flex; align-items: center; gap: 6px;
}

/* ---------- Step ---------- */
.al-step-wrap {
	background: var(--al-white);
	border: 1px solid var(--al-hair);
	border-radius: var(--al-r-xl);
	padding: 48px;
	box-shadow: var(--al-shadow-1);
}
.al-step-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}
.al-step-grid::before {
	content: "";
	position: absolute;
	top: 32px; left: 6%; right: 6%;
	height: 1px;
	background: repeating-linear-gradient(to right, var(--al-hair) 0 6px, transparent 6px 12px);
	z-index: 0;
}
.al-step {
	position: relative;
	padding: 0 22px;
	z-index: 1;
}
.al-step:not(:last-child) { border-right: 1px solid var(--al-hair-2); }
.al-step__num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--al-white);
	border: 1px solid var(--al-hair);
	font-family: var(--al-font-serif);
	color: var(--al-navy-800);
	margin-bottom: 18px;
	position: relative;
}
.al-step__num span { font-size: 22px; font-weight: 700; line-height: 1; }
.al-step__num small {
	position: absolute; top: 10px;
	font-family: var(--al-font);
	font-size: 9.5px;
	color: var(--al-gold-700);
	letter-spacing: 0.16em;
	font-weight: 700;
}
.al-step__title { font-size: 16px; color: var(--al-ink); margin-bottom: 8px; }
.al-step__desc { font-size: 13.5px; color: var(--al-muted); line-height: 1.85; }
.al-step__link {
	display: inline-flex; align-items: center; gap: 6px;
	margin-top: 14px;
	font-size: 13px; color: var(--al-navy-700); font-weight: 600;
}
.al-step__link:hover { color: var(--al-navy-800); }

/* ---------- Article cards (featured + archive) ---------- */
.al-art-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px 24px;
}
.al-art {
	background: var(--al-white);
	border-radius: var(--al-r-lg);
	overflow: hidden;
	text-decoration: none !important;
	color: inherit;
	display: flex; flex-direction: column;
	transition: transform .2s;
}
.al-art:hover { transform: translateY(-2px); color: inherit; }
.al-art:hover .al-art__title { color: var(--al-navy-700); }
.al-art__thumb {
	aspect-ratio: 16 / 10;
	background: var(--al-surface-2);
	border-radius: var(--al-r);
	border: 1px solid var(--al-hair);
	position: relative;
	overflow: hidden;
}
.al-art__thumb img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
.al-art__thumb-placeholder {
	width: 100%; height: 100%;
	display: grid; place-items: center;
	font-family: var(--al-font-serif); font-weight: 700; font-size: 28px;
	color: var(--al-navy-400);
	letter-spacing: 0.08em;
	background: linear-gradient(135deg, var(--al-surface) 0%, var(--al-surface-2) 100%);
}
.al-art__cat {
	position: absolute;
	top: 14px; left: 14px;
	background: rgba(8,23,46,0.86); color: #fff;
	font-size: 11px; font-weight: 600;
	padding: 5px 10px;
	border-radius: 999px;
	letter-spacing: 0.06em;
	backdrop-filter: blur(4px);
}
.al-art__meta {
	display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
	font-size: 11.5px; color: var(--al-muted);
	letter-spacing: 0.04em;
	margin: 18px 0 8px;
}
.al-art__meta time { font-variant-numeric: tabular-nums; }
.al-art__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--al-hair); flex: 0 0 auto; }
.al-art__title {
	font-family: var(--al-font-head);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.55;
	color: var(--al-ink);
	letter-spacing: 0.005em;
	margin: 0 0 8px;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
	overflow: hidden;
}
.al-art__excerpt {
	font-size: 13.5px;
	color: var(--al-muted);
	line-height: 1.85;
	margin: 0;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ---------- Profile (home) ---------- */
.al-profile {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 48px;
	align-items: center;
	background: var(--al-white);
	border: 1px solid var(--al-hair);
	border-radius: var(--al-r-xl);
	padding: 48px;
	position: relative;
	overflow: hidden;
}
.al-profile::before {
	content: ""; position: absolute;
	top: 0; right: 0; bottom: 0; width: 6px;
	background: var(--al-gold-500);
}
.al-profile__photo {
	position: relative;
	aspect-ratio: 1 / 1;
	max-width: 320px;
	background: var(--al-surface-2);
	border-radius: var(--al-r-lg);
	border: 1px solid var(--al-hair);
	overflow: hidden;
}
.al-profile__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.al-profile__photo .al-ph-frame {
	position: absolute; inset: 14px;
	border: 1px solid rgba(11,37,69,0.08);
	border-radius: 12px;
	display: grid; place-items: center;
	color: var(--al-muted); font-size: 12px;
	letter-spacing: 0.18em;
}
.al-profile__role {
	font-size: 11.5px; letter-spacing: 0.22em;
	text-transform: uppercase; color: var(--al-gold-700); font-weight: 600;
}
.al-profile__name {
	font-family: var(--al-font-serif);
	font-size: clamp(22px, 3vw, 30px);
	color: var(--al-navy-900);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.25;
	margin: 4px 0 16px;
}
.al-profile__name small {
	display: inline-block;
	font-family: var(--al-font);
	font-size: 13.5px; font-weight: 500; color: var(--al-muted);
	margin-left: 10px; letter-spacing: 0;
}
.al-profile__bio {
	font-size: 15px; line-height: 2; color: var(--al-body);
	margin: 0 0 22px; max-width: 580px;
}
.al-profile__facts {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 12px 28px;
	margin: 0 0 22px;
}
.al-profile__facts > div { display: flex; align-items: baseline; gap: 12px; }
.al-profile__facts dt {
	font-size: 11.5px; letter-spacing: 0.18em;
	color: var(--al-muted); text-transform: uppercase;
	font-weight: 600; min-width: 72px;
}
.al-profile__facts dd { margin: 0; color: var(--al-ink); font-size: 14px; font-weight: 500; }
.al-profile__policies {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--al-hair-2);
}
.al-policy {
	display: flex; gap: 12px;
	font-size: 13px; line-height: 1.7;
	color: var(--al-body);
}
.al-policy svg { flex: 0 0 auto; color: var(--al-gold-600); margin-top: 2px; }
.al-policy strong { display: block; color: var(--al-ink); font-size: 13.5px; margin-bottom: 2px; }

/* ---------- Editorial policy ---------- */
.al-policy-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.al-policy-card {
	background: var(--al-white);
	border: 1px solid var(--al-hair);
	border-radius: var(--al-r-lg);
	padding: 28px 24px;
}
.al-policy-card__icon {
	width: 44px; height: 44px;
	border-radius: 10px;
	background: var(--al-gold-50);
	color: var(--al-gold-700);
	display: grid; place-items: center;
	margin-bottom: 14px;
}
.al-policy-card__title {
	font-size: 16px; margin: 0 0 8px; color: var(--al-ink);
}
.al-policy-card__desc {
	font-size: 13.5px; color: var(--al-muted); line-height: 1.85; margin: 0;
}

/* ---------- Disclosure ---------- */
.al-disclosure {
	background: var(--al-surface);
	border-top: 1px solid var(--al-hair);
	padding: 28px 0;
}
.al-disclosure__inner {
	display: flex; gap: 16px;
	font-size: 12.5px; color: var(--al-muted);
	line-height: 1.85;
	max-width: 980px; margin: 0 auto;
}
.al-disclosure svg { flex: 0 0 auto; color: var(--al-gold-600); margin-top: 2px; }
.al-disclosure p { margin: 0; }

/* ---------- Footer ---------- */
.al-footer {
	background: var(--al-navy-900);
	color: #c2cde0;
	padding: 64px 0 28px;
	font-size: 14px;
	margin-top: 0;
}
.al-footer a { color: #c2cde0; text-decoration: none; }
.al-footer a:hover { color: #fff; }
.al-footer__top {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.al-footer__brand .al-brand__name { color: #fff; }
.al-footer__brand .al-brand__tag { color: #8896b3; border-left-color: rgba(255,255,255,0.12); }
.al-footer__brand .al-brand__mark { background: #fff; color: var(--al-navy-900); }
.al-footer__brand p {
	margin-top: 18px;
	font-size: 13px; line-height: 1.9;
	color: #8896b3; max-width: 320px;
}
.al-footer__col h5 {
	font-size: 12px; font-weight: 700;
	color: #fff;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 16px;
	font-family: var(--al-font-head);
}
.al-footer__col ul { list-style: none; padding: 0; margin: 0; }
.al-footer__col li { margin-bottom: 10px; font-size: 13.5px; }
.al-footer__bottom {
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 24px;
	font-size: 12px;
	color: #6f7e9b;
	gap: 14px;
	flex-wrap: wrap;
}
.al-footer__bottom ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }

/* ---------- Layout (inner pages) ---------- */
.al-main { padding: 24px 0 60px; }
.al-layout {
	display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 1024px) {
	.al-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; }
}
.al-content { min-width: 0; }
.al-sidebar { display: flex; flex-direction: column; gap: 24px; }

.al-page-head { margin: 12px 0 28px; }
.al-page-title {
	font-size: clamp(24px, 3vw, 30px);
	color: var(--al-navy-900); line-height: 1.4; margin: 0 0 8px;
}
.al-page-desc { margin: 0; color: var(--al-muted); }

/* Pagination */
.navigation.pagination, .pagination { margin: 36px 0 0; }
.pagination .nav-links, .navigation .nav-links {
	display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.pagination a, .pagination span, .navigation .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 36px; height: 36px; padding: 0 10px;
	border: 1px solid var(--al-hair); border-radius: 8px;
	color: var(--al-navy-800); text-decoration: none; font-size: 14px;
	background: var(--al-white);
}
.pagination .current, .navigation .page-numbers.current {
	background: var(--al-navy-800); color: #fff; border-color: var(--al-navy-800);
}

/* Category head */
.al-category-head__kicker {
	display: inline-block; margin: 0 0 6px; padding: 4px 12px;
	background: var(--al-navy-800); color: #fff;
	font-size: 11.5px; letter-spacing: 0.16em; border-radius: 999px;
	text-transform: uppercase; font-weight: 600;
}
.al-category-head__intro {
	background: var(--al-surface);
	border-left: 3px solid var(--al-gold-500);
	padding: 14px 18px;
	border-radius: 0 8px 8px 0;
	color: var(--al-body);
	margin-top: 12px;
	font-size: 14.5px;
	line-height: 1.9;
}

/* ---------- Single article ---------- */
.al-article { max-width: 100%; }
.al-article__header { margin: 8px 0 18px; }
.al-article__cat { margin: 0 0 10px; }
.al-article__cat a {
	display: inline-block; padding: 4px 12px;
	background: var(--al-navy-800); color: #fff !important;
	border-radius: 999px; font-size: 12px;
	letter-spacing: 0.04em; text-decoration: none !important;
}
.al-article__cat a:hover { background: var(--al-navy-700); }
.al-article__title {
	margin: 0 0 12px;
	font-size: clamp(24px, 3.4vw, 34px);
	line-height: 1.5;
	color: var(--al-navy-900);
	letter-spacing: 0.01em;
	font-family: var(--al-font-head);
}
.al-article__meta {
	font-size: 12.5px; color: var(--al-muted);
	display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.al-article__meta time { font-variant-numeric: tabular-nums; }
.al-article__meta-sep { color: var(--al-hair); }
.al-article__thumb {
	margin: 16px 0 28px; border-radius: var(--al-r); overflow: hidden;
	background: var(--al-surface-2);
	aspect-ratio: 16 / 9;
	border: 1px solid var(--al-hair);
}
.al-article__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.al-article__tags { margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.al-tag {
	display: inline-block; padding: 4px 10px;
	background: var(--al-surface); color: var(--al-body);
	border: 1px solid var(--al-hair-2);
	border-radius: 999px; font-size: 12px; text-decoration: none;
}
.al-tag:hover { background: var(--al-navy-800); color: #fff; border-color: var(--al-navy-800); }
.al-disclaimer-box {
	margin: 32px 0 0;
	background: var(--al-surface);
	border: 1px solid var(--al-hair-2);
	border-radius: var(--al-r);
	padding: 16px 18px;
	font-size: 12.5px; color: var(--al-muted); line-height: 1.85;
}
.al-disclaimer-box p { margin: 0; }

/* ---------- Prose (article body) ---------- */
.al-prose {
	font-size: 16px;
	line-height: 1.95;
	color: var(--al-body);
}
.al-prose > * + * { margin-top: 1.2em; }
.al-prose p { margin: 0 0 1.2em; }
.al-prose h2 {
	margin: 2em 0 0.8em;
	font-size: clamp(20px, 2.4vw, 24px);
	line-height: 1.5;
	color: var(--al-navy-900);
	padding: 10px 0 10px 16px;
	border-left: 4px solid var(--al-gold-500);
	background: linear-gradient(90deg, var(--al-surface) 0%, transparent 60%);
	border-radius: 0 6px 6px 0;
}
.al-prose h3 {
	margin: 1.8em 0 0.6em;
	font-size: 19px;
	color: var(--al-navy-800);
	padding-bottom: 6px;
	border-bottom: 1px solid var(--al-hair);
	position: relative;
}
.al-prose h3::before {
	content: ""; position: absolute; left: 0; bottom: -1px;
	width: 50px; height: 2px; background: var(--al-gold-500);
}
.al-prose h4 { margin: 1.6em 0 0.5em; font-size: 17px; color: var(--al-navy-800); }
.al-prose a { color: var(--al-link); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.al-prose strong { color: var(--al-ink); }
.al-prose ul, .al-prose ol { padding-left: 1.4em; }
.al-prose li { margin-bottom: 0.4em; }
.al-prose blockquote {
	margin: 1.4em 0; padding: 14px 18px;
	border-left: 3px solid var(--al-navy-400);
	background: var(--al-surface);
	color: var(--al-body); border-radius: 0 6px 6px 0;
}
.al-prose img { border-radius: 8px; }
.al-prose code {
	background: var(--al-surface-2); padding: 2px 6px; border-radius: 4px; font-size: 0.92em;
}
.al-prose pre {
	background: var(--al-navy-900); color: #f4f6fa;
	padding: 16px; border-radius: 8px; overflow-x: auto;
	font-size: 13px; line-height: 1.7;
}
.al-prose pre code { background: transparent; color: inherit; padding: 0; }

/* Tables (mobile horizontal scroll wrapper) */
.al-table-scroll {
	overflow-x: auto; -webkit-overflow-scrolling: touch;
	margin: 1.4em 0;
	border: 1px solid var(--al-hair);
	border-radius: var(--al-r-sm);
}
.al-prose table, .al-table-scroll table {
	width: 100%; border-collapse: collapse;
	font-size: 14px; background: var(--al-white);
}
.al-prose th, .al-table-scroll th {
	background: var(--al-navy-800); color: #fff;
	text-align: left; padding: 10px 12px;
	font-weight: 600; white-space: nowrap;
}
.al-prose td, .al-table-scroll td {
	padding: 10px 12px;
	border-top: 1px solid var(--al-hair-2);
	vertical-align: top;
}
.al-prose tr:nth-child(even) td { background: var(--al-surface); }

/* Decorator boxes */
.al-point-box, .al-warning-box, .al-experience-box {
	margin: 1.6em 0;
	border-radius: var(--al-r);
	padding: 18px 20px;
	line-height: 1.9;
	font-size: 14.5px;
}
.al-point-box {
	background: var(--al-info-bg);
	border: 1px solid var(--al-info-border);
	border-left: 4px solid var(--al-navy-800);
}
.al-point-box::before {
	content: "POINT";
	display: inline-block; margin-bottom: 6px;
	padding: 3px 12px; background: var(--al-navy-800); color: #fff;
	font-size: 11px; letter-spacing: 0.1em; border-radius: 999px; font-weight: 600;
}
.al-warning-box {
	background: var(--al-warn-bg);
	border: 1px solid var(--al-warn-border);
	border-left: 4px solid var(--al-gold-500);
	color: var(--al-warn-text);
}
.al-warning-box::before {
	content: "注意";
	display: inline-block; margin-bottom: 6px;
	padding: 3px 12px; background: var(--al-gold-600); color: #fff;
	font-size: 11px; letter-spacing: 0.1em; border-radius: 999px; font-weight: 600;
}
.al-experience-box {
	background: var(--al-exp-bg);
	border: 1px solid var(--al-exp-border);
	border-left: 4px solid var(--al-navy-700);
	color: var(--al-exp-text);
}
.al-experience-box::before {
	content: "実体験";
	display: inline-block; margin-bottom: 6px;
	padding: 3px 12px; background: var(--al-navy-700); color: #fff;
	font-size: 11px; letter-spacing: 0.1em; border-radius: 999px; font-weight: 600;
}

.al-compare-table { overflow-x: auto; margin: 1.4em 0; border: 1px solid var(--al-hair); border-radius: var(--al-r-sm); }
.al-compare-table table { width: 100%; border-collapse: collapse; }

.al-check-list { list-style: none; padding-left: 0; margin: 1em 0; }
.al-check-list li { position: relative; padding-left: 28px; margin-bottom: 6px; }
.al-check-list li::before {
	content: ""; position: absolute; left: 4px; top: 0.55em;
	width: 12px; height: 7px; border-left: 2px solid var(--al-gold-600); border-bottom: 2px solid var(--al-gold-600);
	transform: rotate(-45deg);
}

.al-note {
	margin: 1.6em 0;
	background: var(--al-info-bg);
	border: 1px solid var(--al-info-border);
	border-radius: var(--al-r);
	padding: 14px 16px;
	font-size: 13.5px;
	color: var(--al-body);
	line-height: 1.85;
}
.al-note p { margin: 0; }

/* In-article CTA */
.al-cta-box {
	margin: 32px 0 24px;
	background: var(--al-navy-800);
	color: #fff;
	border-radius: var(--al-r-lg);
	padding: 32px 28px;
	text-align: center;
}
.al-cta-box__kicker { margin: 0 0 6px; color: var(--al-gold-400); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.al-cta-box__title { margin: 0 0 8px; color: #fff; font-size: 19px; line-height: 1.55; }
.al-cta-box__desc { margin: 0 0 18px; color: rgba(255,255,255,0.86); font-size: 14px; }
.al-cta-box__buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.al-cta-box .al-btn--outline { background: transparent; color: #fff !important; border-color: rgba(255,255,255,0.55); }
.al-cta-box .al-btn--outline:hover { background: #fff; color: var(--al-navy-800) !important; border-color: #fff; }
.al-cta-box .al-btn--primary { background: var(--al-gold-500); border-color: var(--al-gold-500); color: #1a1206 !important; }
.al-cta-box .al-btn--primary:hover { background: var(--al-gold-400); border-color: var(--al-gold-400); }

/* Author box */
.al-author-box {
	margin: 36px 0 0;
	display: grid; grid-template-columns: 72px 1fr; gap: 18px;
	padding: 24px;
	background: var(--al-white);
	border: 1px solid var(--al-hair);
	border-radius: var(--al-r-lg);
	position: relative;
	overflow: hidden;
}
.al-author-box::before {
	content: ""; position: absolute;
	top: 0; left: 0; bottom: 0; width: 4px; background: var(--al-gold-500);
}
.al-author-box__avatar {
	width: 72px; height: 72px; border-radius: 50%;
	background: var(--al-navy-800); color: #fff;
	display: inline-grid; place-items: center;
	font-family: var(--al-font-serif);
	font-weight: 700; font-size: 22px; letter-spacing: 0.04em;
}
.al-author-box__kicker {
	margin: 0 0 4px; font-size: 11px;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--al-gold-700); font-weight: 600;
}
.al-author-box__title { margin: 0 0 8px; font-size: 17px; color: var(--al-ink); font-family: var(--al-font-head); }
.al-author-box__desc { margin: 0 0 8px; font-size: 14px; color: var(--al-body); line-height: 1.85; }
.al-author-box__link a { font-size: 13px; font-weight: 600; color: var(--al-navy-800); }

/* Related */
.al-related { margin: 48px 0 0; }
.al-related__title {
	margin: 0 0 20px; font-size: 20px; color: var(--al-navy-900);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--al-hair);
	position: relative;
	font-family: var(--al-font-head);
}
.al-related__title::after {
	content: ""; position: absolute; left: 0; bottom: -1px;
	width: 50px; height: 2px; background: var(--al-gold-500);
}

/* Sidebar widgets */
.al-widget, .al-sidebar .widget {
	background: var(--al-white);
	border: 1px solid var(--al-hair);
	border-radius: var(--al-r);
	padding: 18px 20px;
}
.widget-title {
	margin: 0 0 12px; font-size: 14px; color: var(--al-navy-900);
	padding-bottom: 8px; border-bottom: 1px solid var(--al-hair-2);
	font-family: var(--al-font-head); font-weight: 700;
	letter-spacing: 0.04em;
	position: relative;
}
.widget-title::after {
	content: ""; position: absolute; left: 0; bottom: -1px;
	width: 32px; height: 1px; background: var(--al-gold-500);
}
.al-cat-list, .al-recent-list { list-style: none; margin: 0; padding: 0; }
.al-cat-list li, .al-recent-list li { border-top: 1px solid var(--al-hair-2); }
.al-cat-list li:first-child, .al-recent-list li:first-child { border-top: 0; }
.al-cat-list a, .al-recent-list a {
	display: block; padding: 10px 0;
	text-decoration: none; color: var(--al-body); font-size: 13.5px;
}
.al-cat-list a:hover, .al-recent-list a:hover { color: var(--al-navy-800); }

/* Search */
.al-search-form-wrap { margin: 0 0 24px; }
.al-search-form {
	display: flex; align-items: stretch;
	border: 1px solid var(--al-hair); border-radius: 999px;
	overflow: hidden; background: var(--al-white); max-width: 480px;
}
.al-search-form input[type="search"] {
	flex: 1; min-width: 0; border: 0; padding: 10px 16px; font-size: 15px; outline: none; background: transparent;
}
.al-search-form__btn {
	background: var(--al-navy-800); color: #fff;
	border: 0; padding: 0 16px;
	display: inline-flex; align-items: center; justify-content: center;
}
.al-search-form__btn:hover { background: var(--al-navy-700); }

/* 404 */
.al-404 { text-align: center; padding: 56px 16px 72px; }
.al-404__code { margin: 0; font-family: var(--al-font-serif); font-size: 96px; font-weight: 700; color: var(--al-navy-800); letter-spacing: 0.04em; line-height: 1; }
.al-404__title { margin: 12px 0 12px; font-size: 22px; color: var(--al-navy-900); }
.al-404__desc { margin: 0 auto 28px; max-width: 520px; color: var(--al-muted); }
.al-404__search { display: flex; justify-content: center; margin-bottom: 28px; }
.al-404__sub { margin: 16px 0 12px; font-size: 13px; color: var(--al-muted); }
.al-cat-pill-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.al-cat-pill {
	display: inline-block; padding: 8px 16px; background: var(--al-surface);
	border: 1px solid var(--al-hair); border-radius: 999px;
	text-decoration: none; color: var(--al-navy-800); font-size: 13px; font-weight: 600;
}
.al-cat-pill:hover { background: var(--al-navy-800); color: #fff; }

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
	.al-hero__grid { grid-template-columns: 1fr; gap: 36px; }
	.al-stats__row { grid-template-columns: repeat(2, 1fr); padding: 16px 0; }
	.al-stats__cell { padding: 16px 18px; border-left: 0; border-top: 1px solid var(--al-hair-2); }
	.al-stats__cell:nth-child(-n+2) { border-top: 0; }
	.al-stats__cell:nth-child(2) { border-left: 1px solid var(--al-hair-2); }
	.al-stats__cell:nth-child(4) { border-left: 1px solid var(--al-hair-2); }
	.al-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.al-step-wrap { padding: 28px 20px; }
	.al-step-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
	.al-step-grid::before { display: none; }
	.al-step { padding: 0 16px; border-right: 0 !important; }
	.al-art-grid { grid-template-columns: 1fr 1fr; }
	.al-profile { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
	.al-profile__photo { max-width: 100%; }
	.al-profile__policies { grid-template-columns: 1fr; }
	.al-profile__facts { grid-template-columns: 1fr; }
	.al-policy-grid { grid-template-columns: 1fr; }
	.al-footer__top { grid-template-columns: 1fr 1fr; }
	.al-section__head { flex-direction: column; align-items: flex-start; }
}

/* ---------- Mobile nav breakpoint ---------- */
@media (max-width: 980px) {
	.al-nav, .al-utility { display: none; }
	.al-nav-toggle { display: inline-flex; }

	.al-nav.is-open {
		display: block;
		position: fixed;
		top: 72px; left: 0; right: 0; bottom: 0;
		background: var(--al-white);
		padding: 24px;
		overflow-y: auto;
		z-index: 49;
		border-top: 1px solid var(--al-hair);
	}
	.al-nav.is-open .al-nav__list {
		flex-direction: column; gap: 4px; align-items: stretch;
	}
	.al-nav.is-open .al-nav__list a {
		display: block; padding: 14px 4px;
		border-bottom: 1px solid var(--al-hair-2);
		border-radius: 0;
		font-size: 15px;
	}
	body.al-nav-open { overflow: hidden; }
}

/* ---------- Phone ---------- */
@media (max-width: 640px) {
	:root { --al-gutter: 18px; }
	.al-brand__tag { display: none; }
	.al-section { padding: 64px 0; }
	.al-hero { padding: 48px 0 64px; }
	.al-hero__title { font-size: 30px; line-height: 1.3; }
	.al-cat-grid { grid-template-columns: 1fr; }
	.al-art-grid { grid-template-columns: 1fr; }
	.al-cta-row .al-btn { width: 100%; justify-content: center; }
	.al-step-grid { grid-template-columns: 1fr; }
	.al-pc { padding: 22px 20px 20px; }
	.al-pc__head { flex-direction: column; align-items: flex-start; gap: 8px; }
	.al-pc__legend { grid-template-columns: 1fr; }
	.al-pc__legend > div { justify-content: space-between; }
	.al-step-wrap { padding: 22px 14px; }
	.al-step { padding: 0 6px; }
	.al-author-box { grid-template-columns: 1fr; }
	.al-footer__top { grid-template-columns: 1fr; }
	.al-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
	.al-disclosure__inner { flex-direction: column; gap: 10px; }
}

/* Print */
@media print {
	.al-header, .al-utility, .al-footer, .al-sidebar, .al-related, .al-cta-box, .al-author-box, .al-breadcrumbs { display: none !important; }
	body { background: #fff; color: #000; }
}
