/* DD Featured Section — front-end styles
 * Extracted from the inline <style> block we shipped earlier so it lives with the plugin.
 * Loaded only on pages that contain the block (see PHP wp_enqueue_style call).
 */

.dd-featured-section {
	background: #0a0a10;
	color: #e8e8f0;
	padding: 96px 48px;
	position: relative;
}
.dd-featured-empty {
	color: rgba(255,255,255,0.6);
	font-family: 'Fira Code', monospace;
	text-align: center;
}
.dd-featured-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.dd-featured-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	gap: 24px;
	flex-wrap: wrap;
}
.dd-featured-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #9b8aff;
	margin-bottom: 12px;
}
.dd-featured-eyebrow::before {
	content: '';
	width: 24px;
	height: 1px;
	background: #9b8aff;
}
.dd-featured-h2 {
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.025em;
	color: #fff;
	margin: 0;
}
.dd-featured-h2 em {
	font-style: italic;
	font-weight: 300;
	color: rgba(255,255,255,0.65);
}
.dd-featured-viewall {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	color: rgba(255,255,255,0.6) !important;
	text-decoration: none;
	transition: color .15s;
}
.dd-featured-viewall:hover {
	color: #fff !important;
}

/* Series band */
.dd-series-band {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
	background: linear-gradient(135deg, rgba(155,138,255,0.08), rgba(80,58,168,0.04));
	border: 1px solid rgba(155,138,255,0.18);
	border-radius: 8px;
	padding: 24px 28px;
	margin-bottom: 56px;
	text-decoration: none;
	color: inherit !important;
	transition: border-color .25s, transform .25s;
}
.dd-series-band:hover {
	border-color: rgba(155,138,255,0.4);
	transform: translateY(-2px);
}
.dd-series-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}
.dd-series-label {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #9b8aff;
}
.dd-series-name {
	font-family: 'Fraunces', Georgia, serif;
	font-style: italic;
	font-size: 18px;
	color: #fff;
	line-height: 1;
}
.dd-series-progress {
	display: flex;
	gap: 5px;
	align-items: center;
	margin-left: 4px;
}
.dd-series-progress span {
	width: 22px;
	height: 3px;
	background: rgba(155,138,255,0.22);
	border-radius: 2px;
}
.dd-series-progress span.active {
	background: #9b8aff;
}
.dd-series-count {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	color: rgba(255,255,255,0.5);
}
.dd-series-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	padding: 10px 18px;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 100px;
	transition: background .2s, border-color .2s;
	white-space: nowrap;
}
.dd-series-band:hover .dd-series-cta {
	background: rgba(155,138,255,0.12);
	border-color: rgba(155,138,255,0.4);
}

/* Editorial grid */
.dd-editorial-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	align-items: start;
}
.dd-feature {
	display: block;
	text-decoration: none;
	color: inherit !important;
	transition: transform .3s;
}
.dd-feature:hover {
	transform: translateY(-3px);
}
.dd-feature-img {
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: 4px;
	margin-bottom: 24px;
	position: relative;
	overflow: hidden;
}
.dd-feature-img-fallback {
	background: linear-gradient(135deg, #503aa8 0%, #9b8aff 50%, #f6cff4 100%);
}
.dd-feature-img-fallback::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.18), transparent 50%),
		radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.3), transparent 60%);
}
.dd-post-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #9b8aff;
	margin-bottom: 12px;
	flex-wrap: wrap;
}
.dd-post-meta .dd-dot {
	color: rgba(255,255,255,0.3);
}
.dd-post-meta .dd-date {
	color: rgba(255,255,255,0.5);
}
.dd-post-meta .dd-series-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(155,138,255,0.85);
}
.dd-post-meta .dd-series-tag::before {
	content: '\21B7';
	font-size: 11px;
}
.dd-feature-title {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 500;
	font-size: 36px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 16px;
	transition: color .15s;
}
.dd-feature:hover .dd-feature-title {
	color: #f6cff4;
}
.dd-feature-deck {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 18px;
	line-height: 1.55;
	color: rgba(255,255,255,0.7);
	margin: 0;
}
.dd-item-list {
	display: flex;
	flex-direction: column;
}
.dd-item {
	display: block;
	padding: 24px 0;
	border-top: 1px solid rgba(255,255,255,0.08);
	text-decoration: none;
	color: inherit !important;
	transition: padding-left .25s;
}
.dd-item:hover {
	padding-left: 12px;
}
.dd-item:last-child {
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dd-item-title {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: #fff;
	margin: 8px 0 0;
	transition: color .15s;
}
.dd-item:hover .dd-item-title {
	color: #f6cff4;
}

@media (max-width: 900px) {
	.dd-editorial-grid {
		grid-template-columns: 1fr;
	}
	.dd-series-band {
		grid-template-columns: 1fr;
	}
	.dd-series-cta {
		justify-self: start;
	}
	.dd-feature-title {
		font-size: 28px;
	}
}

/* ============================================================================
 * DD Recent Posts — vertical list with category-colored dots
 * Reuses .dd-featured-section, .dd-featured-inner, .dd-featured-head,
 * .dd-featured-eyebrow, .dd-featured-h2, .dd-featured-viewall from above.
 * ============================================================================ */

.dd-recent-section {
	/* Slightly tighter top/bottom than featured to give visual rhythm */
	padding-top: 64px;
	padding-bottom: 96px;
}

.dd-recent-list {
	display: flex;
	flex-direction: column;
}

.dd-recent-item {
	display: grid;
	grid-template-columns: 18px 110px 1fr 110px;
	gap: 24px;
	padding: 18px 0;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-decoration: none;
	color: inherit !important;
	transition: padding-left 0.25s, background 0.25s;
}

.dd-recent-item:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dd-recent-item:hover {
	padding-left: 12px;
	background: rgba(155, 138, 255, 0.03);
}

.dd-recent-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	margin-left: 6px;
	display: inline-block;
	box-shadow: 0 0 0 0 currentColor;
	transition: box-shadow 0.25s;
}

.dd-recent-item:hover .dd-recent-dot {
	box-shadow: 0 0 0 4px rgba(155, 138, 255, 0.15);
}

.dd-recent-cat {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dd-recent-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.3;
	color: #fff;
	transition: color 0.15s;
}

.dd-recent-item:hover .dd-recent-title {
	color: #f6cff4;
}

.dd-recent-date {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	text-align: right;
	white-space: nowrap;
}

@media (max-width: 700px) {
	.dd-recent-item {
		grid-template-columns: 18px 1fr;
		gap: 14px;
		padding: 14px 0;
	}

	.dd-recent-cat,
	.dd-recent-date {
		display: none;
	}
}

/* ============================================================================
 * DD Archive Header — context-aware hero used on /blog/, category, tag,
 * series, search, and date archives. Renders title, deck, filter chips,
 * and search box. Active chip gets accent treatment.
 * ============================================================================ */

.dd-archive-hero {
	background: #0a0a10;
	color: #e8e8f0;
	padding: 72px 48px 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-family: 'Manrope', sans-serif;
}
.dd-archive-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.dd-archive-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #9b8aff;
	margin-bottom: 18px;
}
.dd-archive-eyebrow::before {
	content: '';
	width: 24px;
	height: 1px;
	background: #9b8aff;
}
.dd-archive-title {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 400;
	font-size: clamp(40px, 5.5vw, 72px);
	line-height: 1;
	letter-spacing: -0.03em;
	color: #fff;
	margin: 0 0 18px;
}
.dd-archive-title em {
	font-style: italic;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.65);
}
.dd-archive-deck {
	font-family: 'Fraunces', Georgia, serif;
	font-style: italic;
	font-size: 19px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	margin: 0 0 40px;
}

/* Filter & search bar */
.dd-archive-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	padding: 16px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dd-archive-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.dd-archive-chip {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 8px 14px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7) !important;
	text-decoration: none;
	transition: all 0.15s;
}
.dd-archive-chip:hover {
	background: rgba(155, 138, 255, 0.1);
	border-color: rgba(155, 138, 255, 0.4);
	color: #fff !important;
}
.dd-archive-chip.active {
	background: rgba(155, 138, 255, 0.18);
	border-color: rgba(155, 138, 255, 0.7);
	color: #fff !important;
	box-shadow: 0 0 0 4px rgba(155, 138, 255, 0.08);
}

/* Search form */
.dd-archive-search-form {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}
.dd-archive-search {
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	border-radius: 100px;
	width: 220px;
	outline: none;
	transition: border-color 0.15s, background 0.15s;
}
.dd-archive-search::placeholder {
	color: rgba(255, 255, 255, 0.4);
}
.dd-archive-search:focus {
	border-color: rgba(155, 138, 255, 0.5);
	background: rgba(255, 255, 255, 0.06);
}
.dd-archive-search-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.7);
	padding: 10px 14px;
	border-radius: 100px;
	cursor: pointer;
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: all 0.15s;
}
.dd-archive-search-btn:hover {
	border-color: rgba(155, 138, 255, 0.4);
	color: #fff;
}

@media (max-width: 760px) {
	.dd-archive-hero {
		padding: 48px 24px 32px;
	}
	.dd-archive-controls {
		flex-direction: column;
		align-items: stretch;
	}
	.dd-archive-search-form {
		width: 100%;
	}
	.dd-archive-search {
		flex: 1;
	}
}

/* ============================================================================
 * DD Archive Heatmap — used on /archives/ page
 * ============================================================================ */

.dd-archives-page {
	background: #0a0a10;
	color: #e8e8f0;
	padding: 80px 48px 96px;
	font-family: 'Manrope', sans-serif;
}
.dd-archives-inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* Header — sits above the stats and heatmap */
.dd-archives-header {
	margin-bottom: 48px;
}
.dd-archives-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #9b8aff;
	margin-bottom: 18px;
}
.dd-archives-eyebrow::before {
	content: '';
	width: 24px;
	height: 1px;
	background: #9b8aff;
}
.dd-archives-title {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 400;
	font-size: clamp(40px, 5.5vw, 72px);
	line-height: 1;
	letter-spacing: -0.03em;
	color: #fff;
	margin: 0 0 18px;
}
.dd-archives-title em {
	font-style: italic;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.65);
}
.dd-archives-deck {
	font-family: 'Fraunces', Georgia, serif;
	font-style: italic;
	font-size: 18px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.65);
	max-width: 580px;
	margin: 0;
}

/* Stats strip — 4 numbers across */
.dd-archives-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin: 0 0 48px;
	padding: 28px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dd-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.dd-stat-num {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 36px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #fff;
}
.dd-stat-num em {
	font-family: 'Fraunces', Georgia, serif;
	font-style: italic;
	font-weight: 300;
	font-size: 0.55em;
	color: rgba(255, 255, 255, 0.5);
	margin-left: 4px;
}
.dd-stat-lbl {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Heatmap grid */
.dd-heatmap-wrap {
	overflow-x: auto;
	padding-bottom: 16px;
	margin-bottom: 64px;
}
.dd-heatmap {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 880px;
}
.dd-heatmap-month-row {
	display: grid;
	grid-template-columns: 60px repeat(12, 1fr) 50px;
	gap: 4px;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	margin-bottom: 4px;
}
.dd-heatmap-corner {
	display: block;
}
.dd-heatmap-month-lbl {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 10px;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.4);
	text-align: center;
}
.dd-heatmap-year-row {
	display: grid;
	grid-template-columns: 60px repeat(12, 1fr) 50px;
	gap: 4px;
	align-items: center;
}
.dd-heatmap-year-lbl {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.05em;
	text-align: right;
	padding-right: 8px;
}
.dd-heatmap-cell {
	aspect-ratio: 1.6 / 1;
	background: rgba(155, 138, 255, 0.05);
	border-radius: 3px;
	transition: transform 0.2s ease-out, box-shadow 0.2s, background 0.2s;
	position: relative;
	cursor: pointer;
	display: block;
	animation: dd-hm-fade-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.dd-heatmap-cell.l1 {
	background: rgba(155, 138, 255, 0.12);
}
.dd-heatmap-cell.l2 {
	background: rgba(155, 138, 255, 0.28);
}
.dd-heatmap-cell.l3 {
	background: rgba(155, 138, 255, 0.5);
}
.dd-heatmap-cell.l4 {
	background: rgba(155, 138, 255, 0.75);
}
.dd-heatmap-cell.l5 {
	background: #c9b6ff;
	box-shadow: 0 0 8px rgba(155, 138, 255, 0.4);
}
.dd-heatmap-cell:hover {
	transform: scale(1.4);
	z-index: 2;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 2px #fff;
}
.dd-heatmap-cell::after {
	content: attr(data-tip);
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	background: #1a1a2e;
	color: #fff;
	padding: 6px 10px;
	border-radius: 4px;
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 10px;
	letter-spacing: 0.05em;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s;
	z-index: 3;
}
.dd-heatmap-cell:hover::after {
	opacity: 1;
}
.dd-heatmap-year-total {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	text-align: right;
	padding-left: 12px;
	letter-spacing: 0.05em;
}

@keyframes dd-hm-fade-in {
	from {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Heatmap legend */
.dd-heatmap-legend {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
.dd-heatmap-legend-cells {
	display: flex;
	gap: 3px;
}
.dd-heatmap-legend-cell {
	width: 14px;
	height: 12px;
	border-radius: 3px;
	background: rgba(155, 138, 255, 0.05);
}
.dd-heatmap-legend-cell.l1 { background: rgba(155, 138, 255, 0.12); }
.dd-heatmap-legend-cell.l2 { background: rgba(155, 138, 255, 0.28); }
.dd-heatmap-legend-cell.l3 { background: rgba(155, 138, 255, 0.5); }
.dd-heatmap-legend-cell.l4 { background: rgba(155, 138, 255, 0.75); }
.dd-heatmap-legend-cell.l5 {
	background: #c9b6ff;
	box-shadow: 0 0 6px rgba(155, 138, 255, 0.4);
}

/* Recent posts section under the heatmap */
.dd-archives-recent {
	margin-top: 32px;
}
.dd-archives-recent-head {
	margin-bottom: 24px;
}
.dd-archives-recent-title {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 400;
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 8px 0 0;
}
.dd-archives-list {
	display: flex;
	flex-direction: column;
}
.dd-archives-list-item {
	display: grid;
	grid-template-columns: 130px 1fr 110px;
	gap: 32px;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	align-items: baseline;
	text-decoration: none;
	color: inherit !important;
	transition: padding-left 0.25s;
}
.dd-archives-list-item:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dd-archives-list-item:hover {
	padding-left: 12px;
}
.dd-archives-list-date {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}
.dd-archives-list-title {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: -0.015em;
	color: #fff;
	margin: 0;
	transition: color 0.15s;
}
.dd-archives-list-item:hover .dd-archives-list-title {
	color: #f6cff4;
}
.dd-archives-list-cat {
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(155, 138, 255, 0.85);
	text-align: right;
}

@media (max-width: 800px) {
	.dd-archives-page {
		padding: 48px 24px 64px;
	}
	.dd-archives-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 16px;
	}
	.dd-archives-list-item {
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.dd-archives-list-cat {
		text-align: left;
	}
}

/* ============================================================================
 * Category Chips block (v1.4.1)
 * ----------------------------------------------------------------------------
 * Pill-shaped chips with optional post counts. Used on the Archives page
 * (above the heatmap) and reusable on any landing page where browse-by-
 * category is the primary navigation axis.
 * ========================================================================== */
.dd-cat-chips-block {
	margin: 0 0 32px;
}

.dd-cat-chips-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 16px;
}
.dd-cat-chips-eyebrow::before {
	content: '';
	width: 24px;
	height: 1px;
	background: rgba(255, 255, 255, 0.3);
}

.dd-cat-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.dd-cat-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 100px;
	font-family: 'Fira Code', 'JetBrains Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75) !important;
	text-decoration: none !important;
	transition: all .15s ease;
}
.dd-cat-chip:hover {
	border-color: rgba(155, 138, 255, 0.5);
	color: #fff !important;
	background: rgba(155, 138, 255, 0.04);
	transform: translateY(-1px);
}
.dd-cat-chip.is-all {
	border-color: rgba(155, 138, 255, 0.6);
	color: #9b8aff !important;
	background: rgba(155, 138, 255, 0.08);
}
.dd-cat-chip.is-all:hover {
	border-color: rgba(155, 138, 255, 0.85);
	background: rgba(155, 138, 255, 0.14);
}

.dd-cat-chip-count {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.1em;
	transition: color .15s ease;
}
.dd-cat-chip:hover .dd-cat-chip-count {
	color: rgba(255, 255, 255, 0.7);
}
.dd-cat-chip.is-all .dd-cat-chip-count {
	color: rgba(155, 138, 255, 0.65);
}
.dd-cat-chip.is-all:hover .dd-cat-chip-count {
	color: rgba(155, 138, 255, 0.95);
}
