/**
 * Sablewire — Mobile-first news magazine styles
 * Paths use Linux-style separators in theme structure.
 */

:root {
	--sable-accent: #0f766e;
	--sable-header-bg: #0c1222;
	--sable-text: #1a1a1a;
	--sable-muted: #6b7280;
	--sable-border: #e5e7eb;
	--sable-bg: #f5f6f8;
	--sable-surface: #ffffff;
	--sable-radius: 4px;
	--sable-font: "Outfit", system-ui, sans-serif;
	--sable-serif: "Newsreader", Georgia, serif;
	--sable-container: 1140px;
	--sable-gap: 1rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--sable-font);
	font-size: 15px;
	line-height: 1.65;
	color: var(--sable-text);
	background: var(--sable-bg);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--sable-accent);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover,
a:focus {
	color: #0d5f59;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--sable-serif);
	line-height: 1.25;
	margin: 0 0 0.5em;
	font-weight: 700;
	color: var(--sable-text);
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin: 0 0 1em;
}

button,
input,
textarea,
select {
	font: inherit;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	display: block;
	z-index: 100000;
	left: 0.5rem;
	top: 0.5rem;
	padding: 0.75rem 1rem;
	background: var(--sable-accent);
	color: #fff;
}

.container {
	width: 100%;
	max-width: var(--sable-container);
	margin: 0 auto;
	padding: 0 1rem;
}

/* ========== Top bar ========== */
.header-top {
	background: #0b1220;
	color: #d1d5db;
	font-size: 0.8125rem;
}

.header-top-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	min-height: 2.25rem;
}

.header-top-date ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.header-top-date li + li::before {
	content: "·";
	margin-right: 0.75rem;
	opacity: 0.5;
}

.header-top-social {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.follow-label {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.75rem;
}

.social-menu {
	display: flex;
	gap: 0.5rem;
}

.social-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	position: relative;
}

.social-menu a::before {
	content: "";
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 1px;
	background: currentColor;
	opacity: 0.9;
}

.social-menu a:hover {
	background: var(--sable-accent);
	color: #fff;
}

/* ========== Header ========== */
.site-header {
	background: var(--sable-header-bg);
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1rem;
	gap: 1rem;
}

.site-branding {
	min-width: 0;
}

.site-title {
	margin: 0;
	font-family: var(--sable-serif);
	font-size: clamp(1.35rem, 4vw, 1.85rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.site-title a {
	color: #fff;
}

.site-title a:hover {
	color: var(--sable-accent);
}

.site-description {
	margin: 0.15rem 0 0;
	font-size: 0.8rem;
	color: #9ca3af;
}

.site-logo img {
	max-height: 52px;
	width: auto;
}

.custom-logo-link {
	display: inline-block;
}

.menu-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.45rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--sable-radius);
	background: transparent;
	cursor: pointer;
}

.menu-toggle-bar {
	display: block;
	height: 2px;
	width: 100%;
	background: #fff;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Category navigation */
.category-navigation {
	background: #0f172a;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.category-navigation.is-open {
	max-height: 70vh;
	overflow-y: auto;
}

.category-menu {
	display: flex;
	flex-direction: column;
	padding: 0.5rem 0;
}

.category-menu > li > a {
	display: block;
	padding: 0.7rem 1rem;
	color: #e5e7eb;
	font-size: 0.9rem;
	font-weight: 500;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-menu > li > a:hover,
.category-menu > li.current-menu-item > a,
.category-menu > li.current-menu-ancestor > a {
	color: #fff;
	background: rgba(15, 118, 110, 0.2);
}

.category-menu .sub-menu {
	padding-left: 1rem;
	background: rgba(0, 0, 0, 0.2);
}

.category-menu .sub-menu a {
	display: block;
	padding: 0.55rem 1rem;
	color: #cbd5e1;
	font-size: 0.85rem;
}

/* Header search */
.header-search-bar {
	background: #1f2937;
	padding: 0.65rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.search-form {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	background: var(--sable-surface);
	border-radius: var(--sable-radius);
	overflow: hidden;
	border: 1px solid var(--sable-border);
}

.search-field {
	flex: 1;
	border: 0;
	padding: 0.7rem 0.9rem;
	min-width: 0;
	background: transparent;
	color: var(--sable-text);
}

.search-field:focus {
	outline: none;
}

.search-submit {
	border: 0;
	background: var(--sable-accent);
	color: #fff;
	padding: 0 0.95rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}

.search-submit:hover {
	background: #0d5f59;
}

/* ========== Trending ========== */
.trending-news {
	background: var(--sable-surface);
	border-bottom: 1px solid var(--sable-border);
}

.trending-inner {
	display: flex;
	align-items: stretch;
	min-height: 2.75rem;
	padding-top: 0;
	padding-bottom: 0;
}

.trending-label {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	background: var(--sable-accent);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.55rem 0.85rem;
	white-space: nowrap;
}

.trending-marquee {
	flex: 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 0 0.75rem;
	position: relative;
}

.trending-list {
	display: flex;
	gap: 1.5rem;
	animation: sable-marquee 28s linear infinite;
	white-space: nowrap;
	width: max-content;
}

.trending-list a {
	color: var(--sable-text);
	font-size: 0.875rem;
	font-weight: 500;
}

.trending-list a:hover {
	color: var(--sable-accent);
}

.trending-marquee:hover .trending-list {
	animation-play-state: paused;
}

@keyframes sable-marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ========== Content layout ========== */
.site-content {
	padding: 1.25rem 0 2rem;
}

.content-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.site-main {
	min-width: 0;
}

/* Featured section */
.featured-section {
	margin-bottom: 1.5rem;
}

.featured-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	margin-bottom: 1rem;
}

.featured-card {
	background: var(--sable-surface);
	border-radius: var(--sable-radius);
	overflow: hidden;
	border: 1px solid var(--sable-border);
	display: flex;
	flex-direction: column;
}

.featured-thumb {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #d1d5db;
}

.featured-thumb img,
.thumb-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumb-placeholder {
	display: block;
	background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.featured-body {
	padding: 0.85rem 1rem 1rem;
}

.featured-title {
	font-size: 1.05rem;
	margin: 0.35rem 0 0.5rem;
}

.featured-title a {
	color: var(--sable-text);
}

.featured-title a:hover {
	color: var(--sable-accent);
}

.featured-card-large .featured-title {
	font-size: 1.35rem;
}

.featured-secondary {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

.featured-list-strip {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.65rem;
}

.featured-strip-item {
	background: var(--sable-surface);
	border: 1px solid var(--sable-border);
	border-radius: var(--sable-radius);
	padding: 0.85rem 1rem;
}

.featured-strip-item .featured-title {
	font-size: 0.95rem;
	margin-bottom: 0.35rem;
}

/* Category badge */
.cat-links a {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--sable-accent);
	background: rgba(15, 118, 110, 0.08);
	padding: 0.2rem 0.5rem;
	border-radius: 2px;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.75rem;
	font-size: 0.78rem;
	color: var(--sable-muted);
}

.entry-meta a {
	color: var(--sable-muted);
}

.entry-meta a:hover {
	color: var(--sable-accent);
}

.entry-meta .byline::after,
.entry-meta .posted-on::after {
	content: "";
}

/* Posts list */
.page-header {
	margin-bottom: 1.25rem;
}

.page-title {
	font-size: 1.5rem;
	border-left: 3px solid var(--sable-accent);
	padding-left: 0.75rem;
}

.archive-description {
	color: var(--sable-muted);
	margin-top: 0.5rem;
}

.posts-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.post-list-item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	background: var(--sable-surface);
	border: 1px solid var(--sable-border);
	border-radius: var(--sable-radius);
	padding: 0.85rem;
}

.post-thumb {
	display: block;
	overflow: hidden;
	border-radius: var(--sable-radius);
	aspect-ratio: 16 / 10;
	background: #d1d5db;
}

.post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.post-thumb:hover img {
	transform: scale(1.04);
}

.entry-title {
	font-size: 1.15rem;
	margin: 0.35rem 0 0.45rem;
}

.entry-title a {
	color: var(--sable-text);
}

.entry-title a:hover {
	color: var(--sable-accent);
}

.entry-summary {
	font-size: 0.92rem;
	color: #374151;
}

.read-more {
	display: inline-block;
	margin-top: 0.35rem;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--sable-accent);
}

/* Pagination */
.navigation.pagination,
.posts-navigation,
.nav-links {
	margin-top: 1.75rem;
}

.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	justify-content: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.55rem;
	border: 1px solid var(--sable-border);
	background: var(--sable-surface);
	color: var(--sable-text);
	border-radius: var(--sable-radius);
	font-size: 0.875rem;
	font-weight: 500;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--sable-accent);
	border-color: var(--sable-accent);
	color: #fff;
}

.page-numbers.dots {
	border: 0;
	background: transparent;
}

/* Sidebar */
.sidebar {
	min-width: 0;
}

.widget {
	background: var(--sable-surface);
	border: 1px solid var(--sable-border);
	border-radius: var(--sable-radius);
	padding: 1rem;
	margin-bottom: 1rem;
}

.widget-title {
	font-size: 1rem;
	margin: 0 0 0.85rem;
	padding-bottom: 0.55rem;
	border-bottom: 2px solid var(--sable-accent);
}

.widget-title span {
	display: inline-block;
}

.widget ul li {
	padding: 0.45rem 0;
	border-bottom: 1px solid var(--sable-border);
	font-size: 0.9rem;
}

.widget ul li:last-child {
	border-bottom: 0;
}

.widget a {
	color: var(--sable-text);
}

.widget a:hover {
	color: var(--sable-accent);
}

.sidebar-search {
	margin-bottom: 1rem;
}

.no-comments-note {
	color: var(--sable-muted);
	font-size: 0.9rem;
	margin: 0;
}

.sable-recent-posts li {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	border-bottom: 1px solid var(--sable-border);
	padding: 0.55rem 0;
}

.sable-recent-posts .thumb {
	flex-shrink: 0;
	width: 72px;
	overflow: hidden;
	border-radius: 3px;
}

.sable-recent-posts .thumb img {
	width: 72px;
	height: 56px;
	object-fit: cover;
}

.sable-recent-posts .title {
	display: block;
	font-weight: 600;
	font-size: 0.85rem;
	line-height: 1.35;
	margin-bottom: 0.2rem;
}

.sable-recent-posts .date {
	font-size: 0.75rem;
	color: var(--sable-muted);
}

.blogroll-version {
	font-size: 0.8rem;
	color: var(--sable-muted);
	margin-bottom: 0.65rem;
}

.blogroll-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.65rem;
	max-height: 280px;
	overflow: auto;
}

.blogroll-list li {
	border: 0 !important;
	padding: 0 !important;
}

.blogroll-list a {
	font-size: 0.78rem;
	color: var(--sable-muted);
}

/* Missed section */
.missed-section {
	background: var(--sable-surface);
	border-top: 1px solid var(--sable-border);
	padding: 1.75rem 0 2rem;
}

.section-title {
	font-size: 1.15rem;
	margin-bottom: 1rem;
	padding-bottom: 0.55rem;
	border-bottom: 2px solid var(--sable-accent);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.missed-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.missed-card {
	border: 1px solid var(--sable-border);
	border-radius: var(--sable-radius);
	overflow: hidden;
	background: var(--sable-bg);
}

.missed-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #d1d5db;
}

.missed-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.missed-body {
	padding: 0.75rem 0.85rem 1rem;
}

.missed-title {
	font-size: 0.95rem;
	margin: 0.35rem 0 0.4rem;
}

.missed-title a {
	color: var(--sable-text);
}

.missed-title a:hover {
	color: var(--sable-accent);
}

/* Single / page */
.single-post,
.page-article {
	background: var(--sable-surface);
	border: 1px solid var(--sable-border);
	border-radius: var(--sable-radius);
	padding: 1.15rem;
}

.single-post .entry-title,
.page-article .entry-title {
	font-size: clamp(1.4rem, 4vw, 2rem);
}

.post-featured-image {
	margin: 1rem 0 1.25rem;
	border-radius: var(--sable-radius);
	overflow: hidden;
}

.entry-content {
	font-size: 1rem;
	line-height: 1.75;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.5em;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.25rem;
	margin-bottom: 1em;
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content blockquote {
	margin: 1.25rem 0;
	padding: 0.85rem 1rem;
	border-left: 3px solid var(--sable-accent);
	background: var(--sable-bg);
	color: #374151;
}

.entry-footer {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--sable-border);
	font-size: 0.875rem;
}

.post-navigation {
	margin: 1.5rem 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.post-navigation a {
	display: block;
	padding: 0.85rem 1rem;
	background: var(--sable-surface);
	border: 1px solid var(--sable-border);
	border-radius: var(--sable-radius);
	color: var(--sable-text);
}

.nav-subtitle {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--sable-muted);
	margin-bottom: 0.25rem;
}

/* Comments */
.comments-area {
	margin-top: 1.5rem;
	background: var(--sable-surface);
	border: 1px solid var(--sable-border);
	border-radius: var(--sable-radius);
	padding: 1.15rem;
}

.comment-list {
	margin: 1rem 0;
}

.comment-list .comment {
	padding: 1rem 0;
	border-bottom: 1px solid var(--sable-border);
}

.comment-form label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
	font-size: 0.875rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--sable-border);
	border-radius: var(--sable-radius);
	margin-bottom: 0.85rem;
}

.comment-form .submit {
	background: var(--sable-accent);
	color: #fff;
	border: 0;
	padding: 0.7rem 1.25rem;
	border-radius: var(--sable-radius);
	cursor: pointer;
	font-weight: 600;
}

.comment-form .submit:hover {
	background: #0d5f59;
}

/* Footer */
.site-footer {
	background: #0b1220;
	color: #9ca3af;
	margin-top: auto;
}

.footer-widgets {
	padding: 1.75rem 0 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widgets-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.footer-column .widget {
	background: transparent;
	border: 0;
	padding: 0;
	color: #d1d5db;
}

.footer-column .widget-title {
	color: #fff;
	border-bottom-color: var(--sable-accent);
}

.footer-column a {
	color: #cbd5e1;
}

.footer-column a:hover {
	color: #fff;
}

.site-info {
	padding: 1rem 0;
	text-align: center;
	font-size: 0.85rem;
}

.copyright {
	margin: 0.5rem 0 0;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.25rem;
	margin-bottom: 0.5rem;
}

.footer-menu a {
	color: #cbd5e1;
}

.error-404 .page-content,
.no-results .page-content {
	background: var(--sable-surface);
	border: 1px solid var(--sable-border);
	border-radius: var(--sable-radius);
	padding: 1.25rem;
}

/* ========== Tablet ========== */
@media (min-width: 640px) {
	.post-list-item {
		grid-template-columns: 180px 1fr;
		align-items: start;
	}

	.post-thumb {
		aspect-ratio: 4 / 3;
	}

	.featured-secondary {
		grid-template-columns: 1fr 1fr;
	}

	.featured-list-strip {
		grid-template-columns: 1fr 1fr;
	}

	.missed-grid {
		grid-template-columns: 1fr 1fr;
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr 1fr;
	}
}

/* ========== Desktop ========== */
@media (min-width: 992px) {
	.menu-toggle {
		display: none;
	}

	.category-navigation {
		max-height: none !important;
		overflow: visible !important;
	}

	.category-menu {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		padding: 0;
	}

	.category-menu > li {
		position: relative;
	}

	.category-menu > li > a {
		padding: 0.75rem 0.9rem;
		border-bottom: 0;
		font-size: 0.875rem;
		white-space: nowrap;
	}

	.category-menu .sub-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 200px;
		background: #0f172a;
		padding: 0.35rem 0;
		z-index: 50;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	}

	.category-menu > li:hover > .sub-menu,
	.category-menu > li:focus-within > .sub-menu {
		display: block;
	}

	.content-inner {
		grid-template-columns: minmax(0, 1fr) 320px;
		align-items: start;
		gap: 2rem;
	}

	.no-sidebar .content-inner {
		grid-template-columns: 1fr;
	}

	.featured-grid {
		grid-template-columns: 1.4fr 1fr;
		gap: 1rem;
	}

	.featured-secondary {
		grid-template-columns: 1fr 1fr;
	}

	.featured-list-strip {
		grid-template-columns: repeat(5, 1fr);
	}

	.missed-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.footer-widgets-inner {
		grid-template-columns: repeat(3, 1fr);
	}

	.header-search-bar .search-form {
		max-width: 420px;
		margin-left: auto;
	}

	.single-post,
	.page-article {
		padding: 1.75rem;
	}
}

@media (min-width: 1200px) {
	.container {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.content-inner {
		grid-template-columns: minmax(0, 1fr) 340px;
	}
}

/* Align wide / blocks */
.alignwide {
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}

.wp-block-image img {
	border-radius: var(--sable-radius);
}


/* Sidebar vertical partner links (no section label) */
.sidebar-link-stack {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin: 0 0 1rem;
	padding: 0.35rem 0 0;
}
.sidebar-link-stack li {
	border: 0 !important;
	padding: 0 !important;
	list-style: none;
}
.sidebar-link-stack a {
	display: block;
	font-family: var(--sable-serif);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--sable-text);
	padding: 0.55rem 0;
	border-bottom: 1px solid var(--sable-border);
}
.sidebar-link-stack a:hover {
	color: var(--sable-accent);
}
.widget-archives-links .widget-title {
	margin-bottom: 0.35rem;
}