/* =====================================================================
   Now page — ジャーナル形式（積み上げ式）。
   共有トークン/クラス（.section-title / .contact-lead）は style.css から流用。
   エントリはカード化せず、日付の下に本文をぶら下げるプレーンな見た目。
   左端にヘアラインの縦レールを敷いて「時系列である」ことだけ静かに示す。
   ===================================================================== */

/* 更新日バッジ。見た目 (accent 枠/地/文字色/pill) は style.css V17 基底。 */
.now-updated {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 4px 0 18px;
	padding: 6px 12px;
	font-size: 0.8rem;
}

.now-updated .fa-icon {
	color: var(--accent);
	font-size: 0.9rem;
}

.now-intro {
	max-width: 68ch;
}

/* エントリ列: 縦の一本線を左端に敷いて時系列を示す。カードの箱は敷かない。 */
.now-entries {
	list-style: none;
	margin: 32px 0 0;
	padding: 0 0 0 26px;
	max-width: 720px;
	border-left: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 44px;
}

.now-entry {
	position: relative;
}

/* レール上のドット。最新は青、過去は消灯（時系列の「いま」の位置を示す）。 */
.now-entry::before {
	content: "";
	position: absolute;
	left: -32px;
	top: 6px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--surface-2);
	border: 2px solid var(--border-bright);
}

.now-entry.is-latest::before {
	background: var(--accent);
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.16);
}

.now-entry-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.now-entry-date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	font-size: 0.88rem;
	font-variant-numeric: tabular-nums;
}

.now-entry.is-latest .now-entry-date {
	color: var(--text);
	font-weight: 700;
}

.now-entry-date .fa-icon {
	color: var(--dim);
	font-size: 0.85rem;
}

.now-entry.is-latest .now-entry-date .fa-icon {
	color: var(--accent);
}

/* 「最新」バッジ。同ページ内のアクセントは1つに絞りたいので他の "New" と同族の様式。
   見た目 (accent 地/文字色/pill) は style.css V17 基底。枠だけは従来どおり
   やや強め (0.4 — 基底は 0.28) を維持: このバッジはページ内唯一のアクセントで
   視認の錨になっているため。 */
.now-entry-badge {
	display: inline-flex;
	align-items: center;
	padding: var(--badge-pad);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-color: rgba(var(--accent-rgb), 0.4);
}

/* 過去エントリはコントラストを落として「読める古い記録」の階層に。 */
.now-entry:not(.is-latest) .now-entry-body {
	opacity: 0.78;
}

.now-entry-body .now-entry-heading {
	margin: 18px 0 6px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text);
	letter-spacing: -0.005em;
}

.now-entry-body > :first-child {
	margin-top: 0;
}

.now-entry-body > :last-child {
	margin-bottom: 0;
}

.now-entry-body p {
	margin: 0 0 0.9em;
	color: var(--muted);
	line-height: 1.85;
}

.now-entry-list {
	list-style: none;
	margin: 0 0 4px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.now-entry-list li {
	position: relative;
	padding-left: 16px;
	color: var(--muted);
	line-height: 1.75;
}

/* 中点のドットマーカー。過剰装飾せず、素の記号だけ。 */
.now-entry-list li::before {
	content: "·";
	position: absolute;
	left: 4px;
	top: -2px;
	font-size: 1.5em;
	color: var(--accent);
	line-height: 1;
}

/* ページ末尾: /now の意図を1文で説明する注記 */
.now-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 44px;
	padding: 14px 18px;
	font-size: 0.85rem;
	color: var(--dim);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
}

.now-note .fa-icon {
	flex: none;
	margin-top: 3px;
	color: var(--muted);
}

.now-note a {
	color: var(--accent);
	text-decoration: none;
}

.now-note a:hover,
.now-note a:focus-visible {
	text-decoration: underline;
}

@media (max-width: 600px) {
	.now-entries {
		padding-left: 20px;
	}

	.now-entry::before {
		left: -25px;
	}
}
