/*
Theme Name: SuperFast Bro
Theme URI: https://www.idtheme.com/superfast/
Author: Kurisu
Author URI: https://www.idtheme.com/superfast/
Description: SuperFast Bro - Fork 2026. Clean, simple, elegan, super aesthetic, GenZ-ready, super ringan, SEO-Friendly, Mobile-Friendly, Ads-Compatible. Poppins + flawless darkmode + idblog-core integrated.
Version: 2.4.1
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: superfast
Tags: two-columns, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, featured-images, microformats, sticky-post, theme-options, threaded-comments, translation-ready, blog, e-commerce

Superfast is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Design Tokens & CSS Variables
# Normalize & Reset
# Sidr Mobile Menu
# Elements & Base Typography
# Forms & Search Bars
# Grid & Layout System
# Header & Navigation
	## Topbar & Social Icons
	## Main Header & Logo
	## Sticky Navigation Bar & Menu
	## Search Dropdown
	## Dark Mode Switch
# Content & Post Cards
	## Feed & Archive Cards
	## Small Thumbnail Layout
	## Masonry Grid
	## Meta, Badges & Pills
# Single Post & Article Typography
	## Single Header & Meta
	## Article Body (H2-H6, Blockquote, Code, Tables)
	## Core WordPress Blocks
	## Tags & Post Navigation
# Comments Section
# Sidebar & Widgets
# Pagination & Back to Top
# Error 404 & Empty States
# Footer & Stripes
# Media & Captions
# Dark Mode (Comprehensive)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Design Tokens & CSS Variables
--------------------------------------------------------------*/
:root {
	--font-heading: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--font-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	
	/* Brand Accents */
	--brand: #6366f1;
	--brand-hover: #4f46e5;
	--brand-light: rgba(99, 102, 241, 0.08);
	--brand-gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
	--brand-glow: rgba(99, 102, 241, 0.25);
	
	/* Light Mode Surfaces */
	--bg: #f8fafc;
	--card: #ffffff;
	--card-subtle: #f1f5f9;
	--ink: #0f172a;
	--ink-secondary: #334155;
	--muted: #64748b;
	--border: #e2e8f0;
	--border-subtle: #f1f5f9;
	--header-bg: rgba(255, 255, 255, 0.94);
	
	/* Shadows */
	--shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.05);
	--shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
	--shadow-hover: 0 14px 34px -4px rgba(15, 23, 42, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
	
	/* Border Radii */
	--radius-sm: 8px;
	--radius: 16px;
	--radius-lg: 20px;
	--radius-full: 9999px;
}

/* Dark Mode Tokens */
html[data-theme='dark'] {
	--bg: #090d16;
	--card: #111827;
	--card-subtle: #1e293b;
	--ink: #f8fafc;
	--ink-secondary: #cbd5e1;
	--muted: #94a3b8;
	--border: #1e293b;
	--border-subtle: #172033;
	--header-bg: rgba(17, 24, 39, 0.94);
	--brand: #818cf8;
	--brand-hover: #a5b4fc;
	--brand-light: rgba(129, 140, 248, 0.15);
	--brand-glow: rgba(129, 140, 248, 0.3);
	--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.35);
	--shadow: 0 4px 24px -2px rgba(0, 0, 0, 0.5);
	--shadow-hover: 0 14px 38px -4px rgba(0, 0, 0, 0.7);
	color-scheme: dark;
}

/*--------------------------------------------------------------
# Normalize & Reset
--------------------------------------------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-family: var(--font-body);
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background-color: var(--bg);
	color: var(--ink-secondary);
	font-family: var(--font-body);
	font-size: 15.5px;
	line-height: 1.75;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}

audio, canvas, progress, video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden], template {
	display: none;
}

img {
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

a {
	background-color: transparent;
	color: var(--brand);
	text-decoration: none;
	transition: all 0.2s ease;
}

a:hover, a:focus, a:active {
	color: var(--brand-hover);
	outline: 0;
}

b, strong {
	font-weight: 600;
	color: var(--ink);
}

dfn {
	font-style: italic;
}

mark {
	background: #fef08a;
	color: #713f12;
	padding: 0.1em 0.3em;
	border-radius: 4px;
}

small {
	font-size: 85%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup { top: -0.5em; }
sub { bottom: -0.25em; }

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	border: 0;
	border-top: 1px solid var(--border);
	margin: 24px 0;
}

pre, textarea {
	overflow: auto;
}

code, kbd, pre, samp {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 0.9em;
}

button, input, optgroup, select, textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
	cursor: pointer;
}

button, select {
	text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
	appearance: button;
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled], html input[disabled] {
	cursor: default;
	opacity: 0.6;
}

input {
	line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="search"] {
	appearance: textfield;
	-webkit-appearance: textfield;
	box-sizing: border-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
	appearance: none;
	-webkit-appearance: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/*--------------------------------------------------------------
# Sidr Mobile Menu (Modern Drawer)
--------------------------------------------------------------*/
.sidr {
	display: block;
	position: fixed;
	top: 0;
	padding-top: 60px;
	height: 100%;
	width: 100%;
	max-width: 320px;
	z-index: 999999;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: 14px;
	background: var(--card);
	color: var(--ink);
	box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
	transition: left 0.25s cubic-bezier(0.16, 1, 0.3, 1), right 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidr.sidr-right { left: auto; right: -100%; }
.sidr.sidr-left { left: -100%; right: auto; }

.sidr .sidr-inner {
	padding: 10px 0 30px;
}

.sidr ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidr ul li {
	position: relative;
	display: block;
	margin: 0;
	line-height: 42px;
	border-bottom: 1px solid var(--border-subtle);
}

.sidr ul li a {
	padding: 0 20px;
	display: block;
	text-decoration: none;
	color: var(--ink);
	font-weight: 500;
	transition: all 0.2s ease;
}

.sidr ul li a:hover,
.sidr ul li.active > a,
.sidr ul li.sidr-class-active > a {
	background-color: var(--brand-light);
	color: var(--brand);
	padding-left: 24px;
}

.sidr ul li ul {
	background: var(--card-subtle);
	margin: 0;
}

.sidr ul li ul li a {
	padding-left: 36px;
	font-size: 13.5px;
}

.sidr form {
	margin: 15px 20px;
}

.sidr input[type="search"],
.sidr input[type="text"] {
	width: 100%;
	color: var(--ink);
	border: 1px solid var(--border) !important;
	font-size: 13.5px;
	background-color: var(--bg);
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	margin: 10px 0;
	display: block;
	outline: none;
	transition: border-color 0.2s ease;
}

.sidr input[type="search"]:focus,
.sidr input[type="text"]:focus {
	border-color: var(--brand) !important;
}

.sidr .sub-toggle {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	border-left: 1px solid var(--border);
	width: 44px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	transition: color 0.2s;
}

.sidr .sub-toggle:hover {
	color: var(--brand);
	background: var(--brand-light);
}

.sidr .sub-toggle .gmr-icon-up:after,
.sidr .sub-toggle .gmr-icon-down:after {
	display: inline-block;
	content: '';
	border-width: 0 2px 2px 0;
	border-style: solid;
	border-color: currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	height: 6px;
	width: 6px;
	margin-top: -3px;
}

.sidr .sub-toggle .gmr-icon-up:after {
	transform: rotate(225deg);
	margin-top: 3px;
}

.sidr-class-site-description,
.sidr ul.sidr-class-sub-menu { display: none; }
.sidr ul.sidr-class-sub-menu.active { display: block; }

a#sidr-id-close-topnavmenu-button {
	color: var(--ink) !important;
	position: absolute;
	right: 16px;
	top: 14px;
	z-index: 99999;
	font-size: 22px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	background: var(--card-subtle);
}

.sidr-class-gmr-logo {
	padding: 0 20px;
	background-color: var(--card);
	height: 56px;
	line-height: 56px;
	position: absolute;
	top: 0;
	width: 100%;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border);
}

.sidr-class-gmr-logo img {
	max-height: 36px;
	width: auto;
}

/*--------------------------------------------------------------
# Elements & Base Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--font-heading);
	color: var(--ink);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
	margin-top: 0;
	margin-bottom: 12px;
}

h1, .h1 { font-size: clamp(1.75rem, 3.5vw, 2.35rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.025em; }
h2, .h2 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 600; line-height: 1.3; }
h3, .h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.35; }
h4, .h4 { font-size: 1.15rem; font-weight: 600; }
h5, .h5 { font-size: 1rem; font-weight: 600; }
h6, .h6 { font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

p {
	margin: 0 0 1.2em;
}

blockquote {
	margin: 24px 0;
	padding: 18px 24px;
	background: var(--brand-light);
	border-left: 4px solid var(--brand);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-style: italic;
	color: var(--ink);
}

blockquote p:last-child {
	margin-bottom: 0;
}

code {
	padding: 2px 6px;
	font-size: 0.88em;
	color: var(--brand);
	background-color: var(--brand-light);
	border-radius: 6px;
}

kbd {
	padding: 3px 8px;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	background: var(--brand-gradient);
	border-radius: var(--radius-full);
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

pre {
	display: block;
	padding: 18px 20px;
	margin: 20px 0;
	font-size: 13.5px;
	line-height: 1.65;
	word-break: normal;
	word-wrap: normal;
	color: #e2e8f0;
	background-color: #0f172a;
	border-radius: var(--radius-sm);
	box-shadow: inset 0 2px 6px rgba(0,0,0,0.3);
}

pre code {
	padding: 0;
	font-size: inherit;
	color: inherit;
	white-space: pre;
	background-color: transparent;
}

/*--------------------------------------------------------------
# Forms & Search Bars
--------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
	width: 100%;
	background-color: var(--bg);
	color: var(--ink);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 10px 14px;
	font-size: 14px;
	line-height: 1.5;
	outline: 0;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	border-color: var(--brand);
	background-color: var(--card);
	box-shadow: 0 0 0 3px var(--brand-glow);
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
a.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	padding: 10px 22px;
	border-radius: var(--radius-full);
	border: none;
	background: var(--brand);
	color: #ffffff !important;
	cursor: pointer;
	text-decoration: none !important;
	box-shadow: 0 2px 10px var(--brand-glow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button:hover,
a.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px var(--brand-glow);
	background: var(--brand-hover);
	opacity: 1;
}

button:active,
input[type="submit"]:active {
	transform: translateY(0);
}

/* Modern Search Forms */
.search-form,
.gmr-searchform {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.search-form label {
	width: 100%;
	margin-bottom: 0;
}

.search-form input[type="search"],
.search-form input[type="text"],
.gmr-searchform input[type="text"] {
	width: 100%;
	padding: 10px 54px 10px 18px;
	border-radius: var(--radius-full);
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--ink);
	font-size: 13.5px;
	outline: none;
	transition: all 0.2s ease;
}

.search-form input[type="search"]:focus,
.search-form input[type="text"]:focus,
.gmr-searchform input[type="text"]:focus {
	border-color: var(--brand);
	background: var(--card);
	box-shadow: 0 0 0 3px var(--brand-glow);
}

.search-form .search-submit,
.gmr-searchform .search-submit {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	padding: 6px 16px;
	font-size: 12px;
	font-weight: 600;
	border-radius: var(--radius-full);
	background: var(--brand);
	color: #fff !important;
	border: none;
}

/*--------------------------------------------------------------
# Grid & Layout System
--------------------------------------------------------------*/
.container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

@media (min-width: 768px) {
	.container { width: 750px; }
}
@media (min-width: 992px) {
	.container { width: 970px; max-width: 960px; }
}
@media (min-width: 1200px) {
	.container { width: 1180px; max-width: 1140px; }
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -12px;
	margin-right: -12px;
}

.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-masonry-4, .col-masonry-6 {
	position: relative;
	min-height: 1px;
	padding-left: 12px;
	padding-right: 12px;
	width: 100%;
}

@media (min-width: 500px) {
	.col-masonry-4, .col-masonry-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 992px) {
	.col-md-12 { flex: 0 0 100%; max-width: 100%; }
	.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-md-6 { flex: 0 0 50%; max-width: 50%; }
	.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-md-3 { flex: 0 0 25%; max-width: 25%; }
	.col-masonry-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-masonry-6 { flex: 0 0 50%; max-width: 50%; }
	.col-md-offset-2 { margin-left: 16.666667%; }
}

.clearfix::before, .clearfix::after,
.row::before, .row::after {
	content: " ";
	display: table;
}
.clearfix::after, .row::after {
	clear: both;
}

.pull-left { float: left !important; }
.pull-right { float: right !important; }

#site-container {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.gmr-content {
	flex: 1 0 auto;
	padding: 24px 0 40px;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
/* Topbar (Secondary Menu) */
.gmr-secondmenuwrap {
	background: var(--card);
	border-bottom: 1px solid var(--border);
	font-size: 13px;
	padding: 2px 0;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.gmr-secondmenu {
	float: left;
	margin: 0;
	padding: 0;
}

.gmr-secondmenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.gmr-secondmenu ul li a {
	color: var(--muted);
	font-weight: 500;
	padding: 6px 12px;
	border-radius: var(--radius-full);
	display: inline-block;
	transition: all 0.15s ease;
}

.gmr-secondmenu ul li a:hover {
	color: var(--brand);
	background: var(--brand-light);
}

/* Social Icons */
.gmr-social-icon {
	float: right;
	margin: 0;
	padding: 0;
}

.gmr-social-icon ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 6px;
}

.gmr-social-icon ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: var(--radius-full);
	color: var(--muted);
	font-size: 14px;
	transition: all 0.2s ease;
}

.gmr-social-icon ul li a:hover {
	color: var(--brand);
	background: var(--brand-light);
	transform: translateY(-1px);
}

/* Main Site Header (Logo) */
.site-header {
	padding: 16px 0;
	background: var(--card);
	transition: background-color 0.2s ease;
}

.gmr-headwrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.gmr-logo {
	display: inline-flex;
	align-items: center;
}

.gmr-logo img {
	max-height: 54px;
	width: auto;
	height: auto;
	display: block;
}

.site-title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0;
	line-height: 1.2;
}

.site-title a {
	color: var(--ink);
}

.site-title a:hover {
	color: var(--brand);
}

.site-description {
	font-size: 12.5px;
	color: var(--muted);
	display: block;
	margin-top: 3px;
}

/* Sticky Navigation Bar */
.top-header {
	background: var(--header-bg);
	border-bottom: 1px solid var(--border);
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.top-header.pos-stickymenu {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 9999;
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
}

.admin-bar .top-header.pos-stickymenu {
	top: 32px;
}
@media (max-width: 782px) {
	.admin-bar .top-header.pos-stickymenu { top: 46px; }
}

.gmr-menuwrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 52px;
}

.gmr-mainmenu {
	display: flex;
	align-items: center;
	flex: 1;
}

#primary-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}

#primary-menu > li {
	position: relative;
}

#primary-menu > li > a {
	display: flex;
	align-items: center;
	padding: 8px 14px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--ink);
	border-radius: var(--radius-full);
	transition: all 0.2s ease;
	letter-spacing: 0.01em;
}

#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current_page_item > a,
#primary-menu > li.current-menu-ancestor > a {
	background-color: var(--brand-light);
	color: var(--brand);
	font-weight: 600;
}

/* Submenu Arrow Indicator */
#primary-menu > li.menu-item-has-children > a,
#primary-menu > li.page_item_has_children > a {
	padding-right: 24px;
}

#primary-menu > li.menu-item-has-children > a::after,
#primary-menu > li.page_item_has_children > a::after {
	content: '';
	position: absolute;
	right: 11px;
	top: 50%;
	width: 5px;
	height: 5px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
	transition: transform 0.2s ease;
	opacity: 0.7;
}

#primary-menu > li.menu-item-has-children:hover > a::after,
#primary-menu > li.page_item_has_children:hover > a::after {
	transform: translateY(-25%) rotate(225deg);
}

/* Submenu Dropdowns */
#primary-menu .sub-menu,
#primary-menu .children {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 210px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-hover);
	padding: 8px;
	list-style: none;
	margin: 0;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#primary-menu .sub-menu .sub-menu,
#primary-menu .children .children {
	top: 0;
	left: calc(100% + 4px);
}

#primary-menu li:hover > .sub-menu,
#primary-menu li:hover > .children,
#primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#primary-menu .sub-menu li a {
	display: block;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
	border-radius: var(--radius-sm);
	transition: all 0.15s ease;
}

#primary-menu .sub-menu li a:hover,
#primary-menu .sub-menu li.current-menu-item > a {
	background-color: var(--brand-light);
	color: var(--brand);
	padding-left: 18px;
}

/* Search Dropdown Button */
.search-button.topnav-button {
	width: 36px;
	height: 36px;
	border-radius: var(--radius-full);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--border) !important;
	color: var(--ink) !important;
	box-shadow: none !important;
	padding: 0;
	margin-left: 8px;
	font-size: 15px;
	transition: all 0.2s ease;
}

.search-button.topnav-button:hover {
	background: var(--brand-light);
	color: var(--brand) !important;
	border-color: var(--brand) !important;
	transform: translateY(-1px);
}

.search-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	width: 300px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-hover);
	padding: 14px;
	z-index: 999999;
}

.search-dropdown.active {
	display: block;
	animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Dark Mode Switch Button */
.gmr-dark-toggle {
	width: 44px;
	height: 30px;
	border-radius: var(--radius-full);
	border: 1px solid var(--border);
	background: var(--card);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: var(--ink);
	margin-left: 10px;
	box-shadow: var(--shadow-sm);
	transition: all 0.2s ease;
}

.gmr-dark-toggle:hover {
	border-color: var(--brand);
	color: var(--brand);
	transform: scale(1.04);
}

.gmr-dark-toggle .st-icon-sun { display: block; }
.gmr-dark-toggle .st-icon-moon { display: none; }
html[data-theme='dark'] .gmr-dark-toggle .st-icon-sun { display: none; }
html[data-theme='dark'] .gmr-dark-toggle .st-icon-moon { display: block; }

/* Responsive Hamburger Menu Button */
#gmr-responsive-menu {
	display: none;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: 1px solid var(--border);
	color: var(--ink);
	border-radius: var(--radius-full);
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: none;
}

@media (max-width: 991px) {
	#gmr-responsive-menu { display: inline-flex; }
	.gmr-mainmenu, .gmr-secondmenu { display: none; }
}

/*--------------------------------------------------------------
# Content & Post Cards
--------------------------------------------------------------*/
.gmr-box-content {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	margin-bottom: 24px;
	position: relative;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.gmr-box-content:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
	border-color: var(--brand-glow);
}

.gmr-single.gmr-box-content:hover {
	transform: none;
	box-shadow: var(--shadow);
	border-color: var(--border);
}

/* Card Thumbnail */
.content-thumbnail {
	position: relative;
	overflow: hidden;
	background: var(--card-subtle);
	aspect-ratio: 16/9;
}

.content-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gmr-box-content:hover .content-thumbnail img {
	transform: scale(1.04);
}

.item-article {
	padding: 22px 24px;
}

/* Title */
.entry-title {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 10px;
	letter-spacing: -0.015em;
}

.entry-title a {
	color: var(--ink);
	text-decoration: none;
	transition: color 0.2s ease;
}

.entry-title a:hover {
	color: var(--brand);
}

/* Meta Data */
.entry-meta,
.gmr-metacontent {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 12.5px;
	color: var(--muted);
	margin-bottom: 12px;
}

.entry-meta a,
.gmr-metacontent a {
	color: var(--muted);
	font-weight: 500;
}

.entry-meta a:hover,
.gmr-metacontent a:hover {
	color: var(--brand);
}

.entry-meta .posted-on::before,
.gmr-metacontent .posted-on::before {
	content: '•';
	margin-right: 6px;
	opacity: 0.5;
}

.entry-content p {
	font-size: 14.5px;
	line-height: 1.68;
	color: var(--muted);
	margin: 0 0 14px;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--brand);
}

.read-more:hover {
	text-decoration: underline;
}

/* Sticky Post Badge */
.kbd-sticky {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	padding: 4px 12px;
	font-size: 11px;
	letter-spacing: 0.05em;
}

/* Small Thumbnail Layout */
.gmr-smallthumb .gmr-box-content {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.gmr-smallthumb .content-thumbnail {
	flex: 0 0 240px;
	max-width: 240px;
	height: 160px;
	aspect-ratio: auto;
	margin: 16px 0 16px 16px;
	border-radius: var(--radius-sm);
}

.gmr-smallthumb .item-article {
	flex: 1;
	padding: 16px 20px;
}

@media (max-width: 640px) {
	.gmr-smallthumb .gmr-box-content {
		flex-direction: column;
		align-items: stretch;
	}
	.gmr-smallthumb .content-thumbnail {
		flex: 1 0 auto;
		max-width: 100%;
		height: auto;
		aspect-ratio: 16/9;
		margin: 0;
		border-radius: 0;
	}
	.gmr-smallthumb .item-article {
		padding: 18px 20px;
	}
}

/* Masonry Layout */
.gmr-masonry .gmr-box-content {
	margin-bottom: 24px;
}

/*--------------------------------------------------------------
# Single Post & Article Typography
--------------------------------------------------------------*/
.gmr-single {
	padding: 32px 36px;
}

@media (max-width: 768px) {
	.gmr-single {
		padding: 20px 18px;
	}
}

.gmr-single .entry-header {
	margin-bottom: 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--border);
	text-align: left;
}

.gmr-single .entry-title {
	font-size: clamp(1.6rem, 3.5vw, 2.3rem);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -0.025em;
	color: var(--ink);
	margin-bottom: 16px;
}

.gmr-single .entry-header .byline,
.gmr-single .entry-header .posted-on,
.gmr-single .entry-header .gmr-view {
	font-size: 13px;
	color: var(--muted);
	font-weight: 500;
}

.gmr-single figure.wp-caption {
	margin-bottom: 28px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.gmr-single figure.wp-caption img {
	width: 100%;
	display: block;
}

.entry-content-single {
	font-size: 16px;
	line-height: 1.8;
	color: var(--ink-secondary);
}

.entry-content-single p {
	margin-bottom: 1.65em;
	font-size: 16px;
	color: var(--ink-secondary);
}

.entry-content-single h2 {
	margin-top: 1.8em;
	margin-bottom: 0.8em;
	font-size: clamp(1.35rem, 2.5vw, 1.7rem);
	font-weight: 700;
	color: var(--ink);
	position: relative;
	padding-left: 14px;
}

.entry-content-single h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 4px;
	background: var(--brand-gradient);
	border-radius: var(--radius-full);
}

.entry-content-single h3 {
	margin-top: 1.6em;
	margin-bottom: 0.6em;
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 600;
	color: var(--ink);
}

.entry-content-single a {
	color: var(--brand);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 500;
}

.entry-content-single a:hover {
	color: var(--brand-hover);
}

.entry-content-single ul,
.entry-content-single ol {
	padding-left: 24px;
	margin-bottom: 1.6em;
}

.entry-content-single li {
	margin-bottom: 0.5em;
}

/* Tables inside Content */
.entry-content table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	margin: 24px 0;
}

.entry-content th {
	background: var(--card-subtle);
	color: var(--ink);
	font-weight: 600;
	padding: 12px 16px;
	border-bottom: 1px solid var(--border);
	text-align: left;
}

.entry-content td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-subtle);
	color: var(--ink-secondary);
}

.entry-content tr:last-child td {
	border-bottom: none;
}

.entry-content tr:hover td {
	background: var(--card-subtle);
}

/* Core WordPress Blocks */
.wp-block-image {
	border-radius: var(--radius);
	overflow: hidden;
	margin: 24px 0;
	box-shadow: var(--shadow);
}

.wp-block-image img {
	display: block;
	width: 100%;
}

.wp-block-image figcaption {
	font-size: 12.5px;
	color: var(--muted);
	text-align: center;
	margin-top: 8px;
	font-style: italic;
}

.wp-block-gallery {
	display: flex;
	gap: 16px;
	margin: 24px 0;
}

.wp-block-gallery .wp-block-image {
	margin: 0;
	border-radius: var(--radius-sm);
}

.wp-block-separator {
	border: 0;
	border-top: 1px solid var(--border);
	margin: 32px 0;
}

.wp-block-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 20px 0;
}

.wp-block-button__link {
	border-radius: var(--radius-full) !important;
	font-weight: 600 !important;
	padding: 10px 24px !important;
	transition: all 0.2s ease !important;
}

.wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px var(--brand-glow);
}

/* Post Navigation (Next / Prev) */
.post-navigation {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
	background: var(--card-subtle);
	padding: 16px 20px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	transition: all 0.2s ease;
}

.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
	border-color: var(--brand);
	transform: translateY(-2px);
}

.post-navigation .nav-previous span,
.post-navigation .nav-next span {
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted);
	font-weight: 600;
	margin-bottom: 4px;
}

.post-navigation a {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.4;
	display: block;
}

@media (max-width: 600px) {
	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}
}

/* Tags in Single Footer */
.entry-footer .tags-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.entry-footer .tags-links a {
	background: var(--card-subtle);
	border: 1px solid var(--border);
	border-radius: var(--radius-full);
	padding: 4px 14px;
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
	text-decoration: none;
	transition: all 0.2s ease;
}

.entry-footer .tags-links a:hover {
	background: var(--brand);
	color: #fff !important;
	border-color: var(--brand);
	transform: translateY(-1px);
}

/*--------------------------------------------------------------
# Sidebar & Widgets
--------------------------------------------------------------*/
.widget-area .widget {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow);
	margin-bottom: 24px;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.widget-title {
	font-size: 13.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ink);
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 18px;
	border-bottom: 2px solid var(--brand-light);
	text-align: left;
}

.widget-title::before,
.widget-title::after {
	display: none !important;
}

.widget-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--brand-gradient);
	display: block !important;
}

.widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget ul li {
	padding: 10px 0;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.widget ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.widget ul li a {
	color: var(--ink-secondary);
	font-weight: 500;
	transition: color 0.15s ease;
}

.widget ul li a:hover {
	color: var(--brand);
}

/* Recent Posts widget thumbnail */
.idblog-rp-widget li#listpost img {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-sm);
	object-fit: cover;
	margin-right: 14px;
}

/* Tag Cloud in Widget */
.widget .tagcloud a {
	display: inline-block;
	background: var(--card-subtle);
	border: 1px solid var(--border);
	border-radius: var(--radius-full);
	padding: 4px 12px;
	font-size: 12px !important;
	font-weight: 500;
	color: var(--muted);
	margin: 0 4px 8px 0;
	transition: all 0.2s ease;
}

.widget .tagcloud a:hover {
	background: var(--brand);
	color: #fff !important;
	border-color: var(--brand);
	transform: translateY(-1px);
}

/* Sticky Sidebar */
@media (min-width: 992px) {
	.pos-sticky {
		position: sticky;
		position: -webkit-sticky;
		top: 72px;
	}
}

/*--------------------------------------------------------------
# Comments Section
--------------------------------------------------------------*/
.comments-area {
	padding: 28px 32px;
}

@media (max-width: 768px) {
	.comments-area { padding: 20px 18px; }
}

.comments-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
}

ol.comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}

ol.comment-list li.comment {
	padding: 18px 0;
	border-bottom: 1px solid var(--border);
}

ol.comment-list li div.vcard img.avatar {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	box-shadow: 0 0 0 2px var(--border);
	float: left;
	margin-right: 14px;
}

ol.comment-list li div.comment-author cite.fn {
	font-style: normal;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--ink);
}

ol.comment-list li div.comment-metadata {
	font-size: 12px;
	color: var(--muted);
	margin-top: 2px;
}

ol.comment-list li p {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--ink-secondary);
	margin: 10px 0 12px;
}

ol.comment-list li div.reply a {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	background: var(--card-subtle);
	border: 1px solid var(--border);
	border-radius: var(--radius-full);
	font-size: 11.5px;
	font-weight: 600;
	color: var(--ink);
	transition: all 0.2s ease;
}

ol.comment-list li div.reply a:hover {
	background: var(--brand);
	color: #fff !important;
	border-color: var(--brand);
}

ol.comment-list li ol.children {
	list-style: none;
	padding-left: 32px;
	margin-top: 16px;
	border-left: 2px solid var(--border);
}

@media (max-width: 600px) {
	ol.comment-list li ol.children {
		padding-left: 16px;
	}
}

/* Comment Form Layout */
#reply-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 16px;
}

#commentform {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

#commentform p.comment-notes,
#commentform p.comment-form-comment,
#commentform p.comment-form-url,
#commentform p.form-submit,
#commentform p.logged-in-as {
	grid-column: 1 / -1;
	margin: 0;
}

#commentform p.comment-form-author,
#commentform p.comment-form-email {
	margin: 0;
}

@media (max-width: 640px) {
	#commentform {
		grid-template-columns: 1fr;
	}
}

#commentform textarea {
	border-radius: var(--radius-sm);
	padding: 14px;
	min-height: 110px;
}

/*--------------------------------------------------------------
# Pagination & Back to Top
--------------------------------------------------------------*/
ul.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none !important;
	padding: 0;
	margin: 36px 0 20px;
}

ul.page-numbers li span.page-numbers,
ul.page-numbers li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border-radius: 10px;
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--ink);
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: var(--shadow-sm);
	transition: all 0.2s ease;
}

ul.page-numbers li a:hover {
	border-color: var(--brand);
	color: var(--brand);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

ul.page-numbers li span.current {
	background: var(--brand);
	color: #fff !important;
	border-color: var(--brand);
	box-shadow: 0 4px 12px var(--brand-glow);
}

/* Back to Top Floating Button */
.gmr-ontop {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 46px;
	height: 46px;
	border-radius: var(--radius-full);
	background: var(--card);
	color: var(--brand) !important;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-hover);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	z-index: 999999;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease;
}

.gmr-ontop:hover {
	transform: translateY(-4px) scale(1.05);
	background: var(--brand);
	color: #fff !important;
}

.gmr-ontop.gmr-hide {
	display: none !important;
}

/*--------------------------------------------------------------
# Error 404 & Empty States
--------------------------------------------------------------*/
.error-404,
.no-results {
	text-align: center;
	padding: 48px 24px;
}

.error-404 .page-title,
.no-results .page-title {
	font-size: clamp(1.5rem, 3.5vw, 2.2rem);
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 14px;
}

.error-404 .page-content,
.no-results .entry-content {
	max-width: 480px;
	margin: 0 auto;
}

.error-404 p,
.no-results p {
	font-size: 15px;
	color: var(--muted);
	margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Footer & Stripes
--------------------------------------------------------------*/
#footer-container {
	margin-top: auto;
	background: var(--card);
	border-top: 1px solid var(--border);
	transition: background-color 0.2s ease;
}

.gmr-bgstripes {
	width: 100%;
	height: 3px;
	overflow: hidden;
	display: flex;
}

.gmr-bgstripe {
	flex: 1;
	height: 3px;
}

.gmr-color1 { background: #6366f1; }
.gmr-color2 { background: #3b82f6; }
.gmr-color3 { background: #06b6d4; }
.gmr-color4 { background: #10b981; }
.gmr-color5 { background: #84cc16; }
.gmr-color6 { background: #eab308; }
.gmr-color7 { background: #f97316; }
.gmr-color8 { background: #ef4444; }
.gmr-color9 { background: #ec4899; }
.gmr-color10 { background: #a855f7; }

.widget-footer {
	padding: 40px 0 20px;
}

.site-footer {
	text-align: center;
	padding: 20px 0 28px;
	font-size: 13px;
	color: var(--muted);
	border-top: 1px solid var(--border-subtle);
}

.site-footer a {
	color: var(--muted);
	font-weight: 500;
}

.site-footer a:hover {
	color: var(--brand);
}

/*--------------------------------------------------------------
# Media & Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
	font-size: 12.5px;
	color: var(--muted);
	text-align: center;
}

.wp-caption-text,
figcaption {
	margin: 8px 0 0;
	font-style: italic;
}

/*--------------------------------------------------------------
# Dark Mode (Comprehensive Override Layer)
--------------------------------------------------------------*/
html[data-theme='dark'] body {
	background: var(--bg) !important;
	color: var(--ink-secondary) !important;
}

html[data-theme='dark'] .gmr-secondmenuwrap,
html[data-theme='dark'] .site-header,
html[data-theme='dark'] .top-header,
html[data-theme='dark'] .gmr-menuwrap,
html[data-theme='dark'] .gmr-box-content,
html[data-theme='dark'] .widget,
html[data-theme='dark'] .sidr,
html[data-theme='dark'] .search-dropdown,
html[data-theme='dark'] #footer-container {
	background: var(--card) !important;
	border-color: var(--border) !important;
	color: var(--ink) !important;
}

html[data-theme='dark'] .entry-title a,
html[data-theme='dark'] .site-title a,
html[data-theme='dark'] #primary-menu > li > a,
html[data-theme='dark'] .gmr-secondmenu ul li a,
html[data-theme='dark'] .gmr-social-icon ul li a,
html[data-theme='dark'] .comments-title,
html[data-theme='dark'] #reply-title,
html[data-theme='dark'] ol.comment-list li div.comment-author cite.fn {
	color: var(--ink) !important;
}

html[data-theme='dark'] .entry-title a:hover,
html[data-theme='dark'] .site-title a:hover,
html[data-theme='dark'] #primary-menu > li > a:hover,
html[data-theme='dark'] .gmr-secondmenu ul li a:hover,
html[data-theme='dark'] .gmr-social-icon ul li a:hover {
	color: var(--brand) !important;
}

html[data-theme='dark'] input[type="text"],
html[data-theme='dark'] input[type="email"],
html[data-theme='dark'] input[type="url"],
html[data-theme='dark'] input[type="search"],
html[data-theme='dark'] textarea,
html[data-theme='dark'] select {
	background-color: var(--bg) !important;
	border-color: var(--border) !important;
	color: var(--ink) !important;
}

html[data-theme='dark'] input[type="text"]:focus,
html[data-theme='dark'] input[type="email"]:focus,
html[data-theme='dark'] input[type="url"]:focus,
html[data-theme='dark'] input[type="search"]:focus,
html[data-theme='dark'] textarea:focus {
	border-color: var(--brand) !important;
	background-color: var(--card) !important;
}

html[data-theme='dark'] .gmr-ontop {
	background: var(--card) !important;
	border-color: var(--border) !important;
	color: var(--brand) !important;
}

html[data-theme='dark'] .gmr-ontop:hover {
	background: var(--brand) !important;
	color: #fff !important;
}

html[data-theme='dark'] .post-navigation .nav-previous,
html[data-theme='dark'] .post-navigation .nav-next,
html[data-theme='dark'] .entry-footer .tags-links a,
html[data-theme='dark'] .widget .tagcloud a,
html[data-theme='dark'] ol.comment-list li div.reply a {
	background: var(--card-subtle) !important;
	border-color: var(--border) !important;
	color: var(--ink) !important;
}

html[data-theme='dark'] ul.page-numbers li span.page-numbers,
html[data-theme='dark'] ul.page-numbers li a {
	background: var(--card) !important;
	border-color: var(--border) !important;
	color: var(--ink) !important;
}

html[data-theme='dark'] ul.page-numbers li span.current {
	background: var(--brand) !important;
	color: #fff !important;
	border-color: var(--brand) !important;
}
