/*
 * Drmwn.com Redesign Layer — 2026-07
 * "Engineer's field journal": ink surfaces, volt (logo-bolt) highlights,
 * Space Grotesk display + IBM Plex Mono utility type.
 * Loads after generate-style (+ its inline dynamic CSS), so plain selectors win by order.
 */

/* ---------- Tokens ---------- */
:root:root {
	--contrast: #10151d;
	--contrast-2: #1f2530;
	--contrast-3: #1740d6;
	--accent: #1740d6;
	--light-gray: #e8ebef;
	--color-opt: #b78900;
	--color-opt2: #ffd028;

	--ink: #0b0e14;
	--ink-2: #131923;
	--volt: #ffd028;
	--muted: #5c6674;
	--font-display: "Space Grotesk", -apple-system, system-ui, sans-serif;
	--font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

::selection {
	background: var(--volt);
	color: var(--ink);
}
:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}
.site-header :focus-visible,
.gb-element-1b1f7715 :focus-visible,
.site-footer :focus-visible {
	outline-color: var(--volt);
}

body {
	color: #262d38;
	background: #fff;
}

/* ---------- Type ---------- */
h1, h2, h3, h4, h5, h6,
h1.entry-title {
	font-family: var(--font-display);
	letter-spacing: -0.01em;
}

/* ---------- Header / Nav ---------- */
.site-header {
	background-color: var(--ink);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.main-navigation a,
.main-navigation .menu-toggle,
.main-navigation .menu-bar-items {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.01em;
}
.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li.sfHover > a {
	color: var(--volt);
}
.main-navigation .main-nav > ul > li[class*="current-menu-"] > a,
.main-navigation .main-nav > ul > li.current-post-ancestor > a {
	color: #fff;
	box-shadow: inset 0 -3px 0 var(--volt);
}
/* dropdown panel */
.main-navigation ul ul {
	border-radius: 10px;
	overflow: hidden;
}
.main-navigation ul ul li {
	border-bottom: 1px solid var(--light-gray);
}

/* ---------- Hero (terminal panel) ---------- */
/* NOTE: generateblocks-inline-css prints AFTER this stylesheet, so every rule
   that fights a .gb-element-* / .gb-text-* declaration needs doubled-class
   specificity (.x.x) to win the cascade. */
.gb-element-1b1f7715.gb-element-1b1f7715 {
	background-color: var(--ink);
	background-image:
		radial-gradient(ellipse 62% 55% at 50% -5%, rgba(255, 208, 40, 0.08), transparent 62%),
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: auto, 44px 44px, 44px 44px;
}
/* eyebrow */
p.gb-text-b9502a38 {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--volt);
}
p.gb-text-b9502a38::before {
	content: "// ";
	opacity: 0.75;
}
/* display headline + blinking cursor */
h2.gb-text-fd285ca8 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(36px, 4.6vw, 54px);
	line-height: 1.08em;
	letter-spacing: -0.02em;
}
h2.gb-text-fd285ca8::after {
	content: "";
	display: inline-block;
	width: 0.14em;
	height: 0.78em;
	margin-left: 0.12em;
	vertical-align: -0.08em;
	background: var(--volt);
	animation: drmwn-cursor 1.1s steps(2, start) infinite;
}
@keyframes drmwn-cursor {
	to { visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
	h2.gb-text-fd285ca8::after { animation: none; }
}
/* hero description */
h1.gb-text-28819f34 {
	font-family: inherit;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.64);
	font-size: 17px;
	letter-spacing: 0;
}
/* hero category chips (every chip has its own gb-text hash, so target the wrapper) */
div.gb-element-2718008d > a {
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	padding: 7px 16px;
	color: #fff;
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s ease;
}
div.gb-element-2718008d > a:is(:hover, :focus) {
	color: var(--volt);
	border-color: rgba(255, 208, 40, 0.65);
	background: rgba(255, 208, 40, 0.07);
}
div.gb-element-2718008d > a:is(:hover, :focus) .gb-shape svg {
	color: var(--volt);
}
/* hero search panel */
.gb-element-f4c9c800.gb-element-f4c9c800 {
	border-radius: 16px;
	padding: 10px;
	box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.6);
}
@media (max-width: 767px) {
	.gb-element-f4c9c800.gb-element-f4c9c800 {
		border-radius: 14px;
		padding: 22px 16px;
	}
}
.src_trans input,
.src_trans select,
.src_trans button {
	border-radius: 10px;
}
.custom_search input,
.custom_search select {
	border-color: var(--light-gray);
}
.custom_search input:focus,
.custom_search select:focus {
	border-color: var(--ink);
	outline: none;
}
.custom_search button {
	background-color: var(--ink);
	color: #fff;
	font-family: var(--font-display);
	transition: background-color 0.25s ease, color 0.25s ease;
}
.custom_search button:hover,
.custom_search button:focus {
	background-color: var(--volt);
	color: var(--ink);
}
.custom_search button:hover svg,
.custom_search button:focus svg {
	fill: var(--ink);
}

/* ---------- Post cards (home / archive / related) ---------- */
.gb-element-1ac029cb.gb-element-1ac029cb {
	border-bottom: 1px solid var(--light-gray);
	padding-bottom: 24px;
}
h2.gb-text-9cbd7750.gb-text-9cbd7750 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 21px;
	line-height: 1.28em;
	letter-spacing: -0.015em;
}
@media (max-width: 767px) {
	h2.gb-text-9cbd7750.gb-text-9cbd7750 {
		font-size: 17px;
	}
}
h2.gb-text-9cbd7750 a {
	transition: color 0.2s ease;
}
/* vertical date */
p.gb-text-f73222a2 {
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 10.5px;
	letter-spacing: 0.14em;
	color: var(--muted);
}
p.gb-text-f73222a2 .gb-shape svg {
	color: var(--color-opt);
}
p.gb-text-f73222a2 a {
	color: var(--muted);
	border-left-color: var(--light-gray);
}
/* thumbnail */
.gb-element-1ac029cb .wp-block-post-featured-image,
.round {
	overflow: hidden;
	border-radius: 12px;
}
.round img {
	border-radius: 12px;
	transition: transform 0.45s ease;
}
article:hover .round img,
.gb-loop-item:hover .round img {
	transform: scale(1.045);
}
@media (prefers-reduced-motion: reduce) {
	.round img { transition: none; }
	article:hover .round img,
	.gb-loop-item:hover .round img { transform: none; }
}
/* category chip in card meta */
p.tax_list a,
p.gb-headline-5ea8a67c,
p.gb-headline-04d4ba13 {
	font-family: var(--font-mono);
}
p.tax_list a,
div.tax_list a {
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	border-bottom: none;
	padding-bottom: 0;
}
p.tax_list a:hover,
div.tax_list a:hover {
	color: var(--contrast);
}
/* excerpt */
p.gb-text-eae4c0c7 {
	color: var(--muted);
}

/* ---------- Sidebar / module headers ---------- */
/* every widget header row carries .module_title, whatever its gb hash */
div.module_title {
	border-bottom: 2px solid var(--ink);
}
div.module_title h2 {
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
}
div.module_title h2::before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	background: var(--volt);
	margin-right: 10px;
	flex-shrink: 0;
}
h2.gb-text-6c25d4b2,
h2.sidebar_loop {
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: -0.005em;
}
.list_custom .gb-loop-item h2:before {
	background-color: var(--ink);
	color: var(--volt);
	font-family: var(--font-mono);
	border-radius: 6px;
}

/* ---------- Pagination ---------- */
.paging-navigation span,
.paging-navigation a {
	font-family: var(--font-mono);
	font-weight: 600;
	border-radius: 8px;
	transition: background-color 0.2s ease;
}
.paging-navigation a:hover {
	background: var(--light-gray);
}
.paging-navigation span.current {
	background: var(--ink);
	color: var(--volt) !important;
	border: none;
	box-shadow: none;
}

/* ---------- Single post ---------- */
h1.gb-headline-cbff5f90 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(30px, 3.4vw, 42px);
	line-height: 1.12em;
	letter-spacing: -0.02em;
}
p.gb-headline-5ea8a67c,
p.gb-headline-04d4ba13 {
	font-size: 11.5px;
	letter-spacing: 0.02em;
}
.gb-text-c5624b7f a {
	font-family: var(--font-mono);
	font-weight: 600;
	letter-spacing: 0.08em;
	border-bottom: none;
}
.gb-text-c5624b7f a:hover {
	color: var(--contrast);
}

/* content typography */
.dynamic-entry-content p {
	font-size: 17px;
	line-height: 1.75;
}
.dynamic-entry-content > h2,
.dynamic-entry-content .wp-block-heading {
	margin-top: 1.5em;
}
.dynamic-entry-content h2::before {
	content: "## ";
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 0.72em;
	color: var(--color-opt);
	vertical-align: 0.1em;
}
.dynamic-entry-content h3::before {
	content: "### ";
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 0.72em;
	color: var(--muted);
	vertical-align: 0.1em;
}
.dynamic-entry-content a {
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
.dynamic-entry-content img {
	border-radius: 12px;
}
blockquote {
	border-left: 3px solid var(--volt);
	background: #f6f7f9;
	padding: 18px 22px;
	border-radius: 0 10px 10px 0;
	font-style: normal;
}
code, kbd {
	font-family: var(--font-mono);
	font-size: 0.88em;
	background: var(--light-gray);
	padding: 2px 6px;
	border-radius: 5px;
}
pre,
.wp-block-preformatted,
.wp-block-code {
	font-family: var(--font-mono);
	background: var(--ink);
	color: #dee5ee;
	border: none;
	border-radius: 12px;
	padding: 20px 22px;
	overflow-x: auto;
	font-size: 14px;
	line-height: 1.65;
}
pre code,
.wp-block-code code {
	background: none;
	color: inherit;
	padding: 0;
}

/* TOC */
#ez-toc-container {
	border: 1px solid var(--light-gray) !important;
	border-radius: 14px !important;
	box-shadow: none !important;
	background-color: #fbfcfd;
}
div#ez-toc-container .ez-toc-title {
	font-family: var(--font-display);
	font-size: 19px !important;
}
#ez-toc-container a {
	color: var(--contrast) !important;
	border-bottom: 1px solid var(--light-gray) !important;
	font-size: 15px !important;
}
#ez-toc-container a:hover {
	color: var(--accent) !important;
}
#ez-toc-container a:before {
	color: var(--color-opt);
}

/* tags */
.taxonomy-post_tag a {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 600;
	border-radius: 6px;
	background: var(--light-gray);
}
.taxonomy-post_tag a:hover {
	background: var(--ink);
	color: var(--volt);
}

/* author box */
.wp-block-post-author__avatar img {
	border: 2px solid var(--volt);
}

/* share buttons */
.addtoany_list.a2a_kit_size_32 span {
	border-color: var(--light-gray);
}

/* comments */
.comment-form input,
.comment-form textarea {
	border-radius: 8px !important;
	border-color: var(--light-gray);
}
.comment-form input:focus,
.comment-form textarea:focus {
	border-color: var(--ink);
	outline: none;
}
.comment-form input#submit {
	background-color: var(--ink);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 600;
	transition: background-color 0.25s ease, color 0.25s ease;
}
.comment-form input#submit:hover {
	background-color: var(--volt);
	color: var(--ink);
}

/* ---------- Buttons (global) ---------- */
button:not(.menu-toggle):not(.splide__pagination__page),
input[type="submit"],
input[type="button"] {
	font-family: var(--font-display);
	font-weight: 600;
}

/* ---------- Footer ---------- */
.gb-text-0670e2ec,
.gb-text-1e2464e7 {
	font-family: var(--font-mono);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}
.gb-text-1e2464e7 a,
.gb-element-bc9abd36 a {
	color: var(--volt);
}
.gb-text-b9b2b986 {
	font-family: var(--font-display);
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.75);
}

/* ---------- Search page ---------- */
.search .search-meta a {
	font-family: var(--font-mono);
	border-bottom-color: var(--volt);
}

/* ---------- Landing page (template-landing.php) ---------- */
.drmwn-landing {
	--dl-pad: clamp(20px, 5vw, 70px);
	width: 100%; /* .site-content is flex; without this, main shrinks to fit-content */
}
.page-template-template-landing .site.grid-container {
	max-width: none;
	padding: 0;
}
.page-template-template-landing .site-content {
	padding: 0 !important;
	max-width: none;
}
.page-template-template-landing .site-main {
	margin: 0;
}
.page-template-template-landing .separate-containers .inside-article {
	padding: 0;
}
.page-template-template-landing .gb-element-bb2ab3bb {
	margin-top: 0;
}
.dl-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: var(--dl-pad);
	padding-right: var(--dl-pad);
}

/* hero */
.dl-hero {
	background-color: var(--ink);
	background-image:
		radial-gradient(ellipse 62% 55% at 50% -5%, rgba(255, 208, 40, 0.08), transparent 62%),
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: auto, 44px 44px, 44px 44px;
	color: #fff;
}
.dl-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(30px, 5vw, 70px);
	align-items: center;
	padding-top: clamp(60px, 9vw, 120px);
	padding-bottom: clamp(60px, 9vw, 120px);
}
.dl-eyebrow {
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--volt);
	margin-bottom: 14px;
}
h1.dl-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(40px, 5.4vw, 64px);
	line-height: 1.04em;
	letter-spacing: -0.025em;
	color: #fff;
	margin-bottom: 18px;
}
.dl-cursor {
	display: inline-block;
	width: 0.14em;
	height: 0.78em;
	margin-left: 0.12em;
	vertical-align: -0.08em;
	background: var(--volt);
	animation: drmwn-cursor 1.1s steps(2, start) infinite;
}
@media (prefers-reduced-motion: reduce) {
	.dl-cursor { animation: none; }
}
.dl-sub {
	color: rgba(255, 255, 255, 0.64);
	font-size: 17px;
	line-height: 1.7;
	max-width: 52ch;
	margin-bottom: 30px;
}
.dl-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
a.dl-btn {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	padding: 12px 26px;
	border-radius: 10px;
	transition: all 0.25s ease;
}
a.dl-btn-volt {
	background: var(--volt);
	color: var(--ink);
}
a.dl-btn-volt:hover {
	background: #fff;
	color: var(--ink);
}
a.dl-btn-ghost {
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
}
a.dl-btn-ghost:hover {
	border-color: var(--volt);
	color: var(--volt);
}

/* terminal card */
.dl-terminal {
	background: var(--ink-2);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.8);
}
.dl-terminal-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 11px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dl-terminal-bar span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
}
.dl-terminal-bar span:first-child { background: #ff5f57; }
.dl-terminal-bar span:nth-child(2) { background: #febc2e; }
.dl-terminal-bar span:nth-child(3) { background: #28c840; }
.dl-terminal-bar b {
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.45);
	margin-left: 8px;
}
pre.dl-terminal-body {
	font-family: var(--font-mono);
	font-size: 13.5px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.85);
	background: none;
	border: none;
	border-radius: 0;
	padding: 18px 20px 22px;
	margin: 0;
	overflow-x: auto;
}
.dl-t-key { color: var(--volt); }

/* sections */
.dl-section {
	padding-top: clamp(45px, 6vw, 80px);
	padding-bottom: clamp(45px, 6vw, 80px);
}
.dl-section-alt {
	background: #f6f7f9;
	border-top: 1px solid var(--light-gray);
	border-bottom: 1px solid var(--light-gray);
}
h2.dl-section-title {
	font-family: var(--font-mono);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
h2.dl-section-title::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background: var(--volt);
	margin-right: 12px;
}
.dl-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 15px;
	flex-wrap: wrap;
}
a.dl-all {
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--accent);
}
a.dl-all:hover { color: var(--contrast); }

/* category cards */
.dl-cats {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 14px;
}
a.dl-cat {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 20px 22px;
	border: 1px solid var(--light-gray);
	border-radius: 12px;
	transition: all 0.25s ease;
}
a.dl-cat:hover {
	border-color: var(--ink);
	background: var(--ink);
}
.dl-cat-name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 19px;
	color: var(--contrast);
	transition: color 0.25s ease;
}
a.dl-cat:hover .dl-cat-name { color: #fff; }
.dl-cat-count {
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	transition: color 0.25s ease;
}
a.dl-cat:hover .dl-cat-count { color: var(--volt); }

/* latest posts */
.dl-posts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}
a.dl-post {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.dl-post-thumb {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 16 / 10;
}
.dl-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	transition: transform 0.45s ease;
}
a.dl-post:hover .dl-post-thumb img { transform: scale(1.045); }
@media (prefers-reduced-motion: reduce) {
	a.dl-post:hover .dl-post-thumb img { transform: none; }
}
.dl-post-date {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}
.dl-post-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 19px;
	line-height: 1.3em;
	letter-spacing: -0.015em;
	color: var(--contrast);
	transition: color 0.2s ease;
}
a.dl-post:hover .dl-post-title { color: var(--accent); }

/* contact strip */
.dl-cta {
	background: var(--ink);
	color: #fff;
}
.dl-cta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
p.dl-cta-text {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(20px, 2.4vw, 26px);
	color: #fff;
	margin: 0;
}

@media (max-width: 900px) {
	.dl-hero-grid {
		grid-template-columns: 1fr;
	}
	.dl-posts {
		grid-template-columns: 1fr;
	}
}

/* ---------- Landing v2: cover story + log ---------- */
.dl-cover {
	position: relative;
	background-color: var(--ink);
	background-image:
		linear-gradient(75deg, rgba(11, 14, 20, 0.96) 0%, rgba(11, 14, 20, 0.82) 42%, rgba(11, 14, 20, 0.35) 100%),
		var(--dl-cover-img, none);
	background-size: cover;
	background-position: center;
	color: #fff;
}
.dl-cover::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 44px 44px;
	pointer-events: none;
}
.dl-cover-inner {
	position: relative;
	padding-top: clamp(70px, 10vw, 140px);
	padding-bottom: clamp(70px, 10vw, 130px);
	max-width: none;
}
h1.dl-cover-title {
	max-width: 17ch;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(34px, 4.8vw, 60px);
	line-height: 1.08em;
	letter-spacing: -0.025em;
	margin: 14px 0 18px;
}
h1.dl-cover-title a {
	color: #fff;
	background-image: linear-gradient(var(--volt), var(--volt));
	background-repeat: no-repeat;
	background-size: 0% 4px;
	background-position: 0 96%;
	transition: background-size 0.35s ease;
}
h1.dl-cover-title a:hover {
	color: #fff;
	background-size: 100% 4px;
}
.dl-cover-excerpt {
	color: rgba(255, 255, 255, 0.66);
	font-size: 16.5px;
	line-height: 1.7;
	max-width: 54ch;
	margin-bottom: 28px;
}
.dl-cover-index {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(11, 14, 20, 0.55);
	backdrop-filter: blur(4px);
}
.dl-index-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 26px;
	row-gap: 6px;
	padding-top: 14px;
	padding-bottom: 14px;
	font-family: var(--font-mono);
	font-size: 12.5px;
	letter-spacing: 0.06em;
}
.dl-index-label {
	color: var(--volt);
	font-weight: 500;
}
.dl-index-row a {
	color: rgba(255, 255, 255, 0.72);
	transition: color 0.2s ease;
}
.dl-index-row a b {
	font-weight: 400;
	color: rgba(255, 255, 255, 0.38);
	margin-left: 2px;
}
.dl-index-row a:hover,
.dl-index-row a:hover b {
	color: var(--volt);
}

/* profile band */
.dl-profile .dl-hero-grid {
	padding-top: 0;
	padding-bottom: 0;
	align-items: center;
}
.dl-profile .dl-terminal {
	box-shadow: 0 24px 55px -28px rgba(11, 14, 20, 0.5);
}
p.dl-statement {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(20px, 2.2vw, 26px);
	line-height: 1.5em;
	letter-spacing: -0.01em;
	color: var(--contrast);
	margin: 0 0 18px;
}

/* log list */
.dl-log-list {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.dl-log-list::before {
	content: "";
	position: absolute;
	top: 6px;
	bottom: 6px;
	left: 0;
	width: 2px;
	background: var(--light-gray);
}
li.dl-log-item {
	margin: 0;
	position: relative;
}
.dl-log-item > a {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr) 86px;
	align-items: center;
	gap: 22px;
	padding: 20px 0 20px 30px;
	border-bottom: 1px solid var(--light-gray);
}
.dl-log-item:last-child > a {
	border-bottom: none;
}
.dl-log-item::before {
	content: "";
	position: absolute;
	left: -3px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: var(--volt);
	outline: 3px solid #fff;
	transition: transform 0.2s ease;
}
.dl-section-alt .dl-log-item::before {
	outline-color: #f6f7f9;
}
.dl-log-item:hover::before {
	transform: translateY(-50%) scale(1.6);
}
.dl-log-date {
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	white-space: nowrap;
}
.dl-log-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.dl-log-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(18px, 2vw, 23px);
	line-height: 1.25em;
	letter-spacing: -0.015em;
	color: var(--contrast);
	transition: color 0.2s ease;
}
.dl-log-item:hover .dl-log-title {
	color: var(--accent);
}
.dl-log-cat {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--muted);
}
.dl-log-thumb {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 4 / 3;
}
.dl-log-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.45s ease;
}
.dl-log-item:hover .dl-log-thumb img {
	transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
	.dl-log-item:hover .dl-log-thumb img { transform: none; }
	.dl-log-item:hover::before { transform: translateY(-50%); }
	h1.dl-cover-title a { transition: none; }
}

@media (max-width: 767px) {
	.dl-log-item > a {
		grid-template-columns: minmax(0, 1fr) 70px;
		gap: 14px;
	}
	.dl-log-date {
		grid-column: 1 / -1;
		margin-bottom: -12px;
	}
	h1.dl-cover-title {
		max-width: none;
	}
	pre.dl-terminal-body {
		font-size: 11.5px;
		line-height: 2;
	}
}


