/*
Theme Name: Mkito Media
Theme URI: https://mkito.media/
Author: Mkito Media
Author URI: https://mkito.media/
Description: A modern, fast, responsive WordPress magazine theme built for media, entertainment, music, videos, news, and digital content publishers. Mkito Media includes a featured hero slider, AJAX live search, dark/light mode with system preference detection, reading progress bar, back-to-top button, category color badges, social media widget area, newsletter subscription, popular posts badges, copy-code button, built-in SEO with Open Graph and Schema, and a full-featured dashboard settings page. Lightweight, accessible, translation-ready, and optimized for performance.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mkito-media
Tags: blog, news, entertainment, magazine, custom-logo, custom-menu, featured-images, right-sidebar, threaded-comments, translation-ready, responsive-layout, dark-mode, accessibility-ready, seo-friendly
*/

/* Mkito Media - CSS Variables & Global Styles
   ================================================ */

:root {
	/* Brand Colors */
	--mk-accent: #e63946;
	--mk-accent-2: #ff6b6b;
	--mk-accent-dark: #c1121f;
	--mk-bg: #ffffff;
	--mk-page-bg: #f8f9fa;
	--mk-surface: #ffffff;
	--mk-surface-2: #f1f3f5;
	--mk-text: #1a1a2e;
	--mk-muted: #6c757d;
	--mk-border: #dee2e6;
	--mk-strong-border: #ced4da;
	--mk-success: #2ec4b6;
	--mk-warning: #ff9f1c;
	--mk-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	--mk-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);

	/* Layout */
	--mk-radius: 12px;
	--mk-radius-sm: 6px;
	--mk-radius-lg: 18px;
	--mk-container: 1180px;
	--mk-content-gap: 24px;

	/* Typography */
	--mk-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--mk-heading-font: 'Urbanist', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--mk-heading-weight: 700;
	--mk-title-spacing: -0.025em;
	--mk-body-size: 16px;
	--mk-line-height: 1.65;

	/* Component Sizes */
	--mk-logo-desktop-height: 100px;
	--mk-logo-mobile-height: 64px;
	--mk-header-min-height: 160px;
}

/* Dark Mode Variables */
body.mk-dark {
	--mk-bg: #0f0f23;
	--mk-page-bg: #0f0f23;
	--mk-surface: #1a1a2e;
	--mk-surface-2: #16213e;
	--mk-text: #e8e8e8;
	--mk-muted: #a0a0b0;
	--mk-border: #2a2a4a;
	--mk-strong-border: #3a3a5a;
	--mk-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	--mk-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Respect OS preference for dark mode */
@media (prefers-color-scheme: dark) {
	body:not(.mk-light):not(.mk-dark) {
		--mk-bg: #0f0f23;
		--mk-page-bg: #0f0f23;
		--mk-surface: #1a1a2e;
		--mk-surface-2: #16213e;
		--mk-text: #e8e8e8;
		--mk-muted: #a0a0b0;
		--mk-border: #2a2a4a;
		--mk-strong-border: #3a3a5a;
		--mk-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
		--mk-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
	}
}

/* === RESET & BASE === */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--mk-bg);
	color: var(--mk-text);
	font-family: var(--mk-font);
	font-size: var(--mk-body-size);
	line-height: var(--mk-line-height);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	transition: background-color 0.3s ease, color 0.3s ease;
}

body.mk-modal-open {
	overflow: hidden;
}

img,
picture,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover,
a:focus {
	color: var(--mk-accent);
}

p {
	margin: 0 0 1rem;
}

ul,
ol {
	margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--mk-heading-font);
	font-weight: var(--mk-heading-weight);
	letter-spacing: var(--mk-title-spacing);
	line-height: 1.2;
}

/* Utility */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 18px;
	background: var(--mk-accent);
	color: #fff;
	border-radius: var(--mk-radius-sm);
	font-weight: 700;
	white-space: normal;
}

.mk-container {
	width: 100%;
	max-width: var(--mk-container);
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}

.mk-site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* === READING PROGRESS BAR === */
.mk-progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 0%;
	height: 3px;
	background: linear-gradient(90deg, var(--mk-accent), var(--mk-accent-2));
	transition: width 0.1s linear;
}

/* === BACK TO TOP === */
.mk-back-to-top {
	position: fixed;
	z-index: 9998;
	right: 20px;
	bottom: 80px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--mk-accent);
	color: #fff;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(230, 57, 70, 0.35);
	font-size: 1.3rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mk-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mk-back-to-top:hover,
.mk-back-to-top:focus {
	background: var(--mk-accent-dark);
	color: #fff;
	transform: translateY(-2px);
}

/* === HEADER === */
.mk-site-header {
	background: var(--mk-surface);
	position: relative;
	z-index: 1000;
}

.mk-logo-row {
	position: relative;
	min-height: var(--mk-header-min-height);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.mk-branding {
	max-width: min(420px, 80vw);
}

.custom-logo-link,
.custom-logo-link img {
	display: inline-block;
}

.custom-logo-link img {
	max-height: var(--mk-logo-desktop-height);
	width: auto;
	margin: 0 auto;
}

.mk-site-title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 850;
	letter-spacing: -0.06em;
	line-height: 1;
}

.mk-site-title a {
	background: linear-gradient(135deg, var(--mk-accent), var(--mk-accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.mk-site-description {
	margin: 6px 0 0;
	color: var(--mk-muted);
	font-size: 0.9rem;
}

.mk-main-nav-wrap {
	background: var(--mk-surface);
	border-top: 1px solid var(--mk-border);
	border-bottom: 1px solid var(--mk-border);
}

.mk-nav-bar {
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mk-primary-nav {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.mk-menu,
.mk-mobile-menu,
.mk-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mk-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.mk-menu > li {
	position: relative;
}

.mk-menu > li > a {
	position: relative;
	display: block;
	padding: 14px 6px;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mk-menu > li > a::after {
	content: "";
	position: absolute;
	right: 6px;
	bottom: 4px;
	left: 6px;
	height: 3px;
	background: var(--mk-accent);
	border-radius: 3px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.mk-menu > li:hover > a::after,
.mk-menu > li:focus-within > a::after,
.mk-menu > .current-menu-item > a::after,
.mk-menu > .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.mk-menu .sub-menu {
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: var(--mk-surface);
	border: 1px solid var(--mk-border);
	border-radius: 0 0 var(--mk-radius-sm) var(--mk-radius-sm);
	box-shadow: var(--mk-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.mk-menu li:hover > .sub-menu,
.mk-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mk-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: var(--mk-radius-sm);
	font-size: 0.88rem;
	font-weight: 600;
}

.mk-menu .sub-menu a:hover,
.mk-menu .sub-menu a:focus {
	background: var(--mk-surface-2);
}

.mk-nav-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 20px;
}

.mk-icon-button,
.mk-menu-toggle,
.mk-search-close,
.mk-search-submit {
	border: 0;
	cursor: pointer;
}

.mk-icon-button {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: transparent;
	color: var(--mk-text);
	font-weight: 600;
	font-size: 1.2rem;
}

.mk-search-toggle {
	color: var(--mk-accent);
}

.mk-icon-button:hover,
.mk-icon-button:focus {
	background: var(--mk-surface-2);
	color: var(--mk-accent);
	outline: none;
}

.mk-mobile-action,
.mk-menu-toggle,
.mk-mobile-nav {
	display: none;
}

.mk-menu-toggle {
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background: var(--mk-surface-2);
	color: var(--mk-text);
	border-radius: var(--mk-radius-sm);
	font-weight: 600;
}

.mk-menu-toggle-lines,
.mk-menu-toggle-lines::before,
.mk-menu-toggle-lines::after {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}

.mk-menu-toggle-lines {
	position: relative;
}

.mk-menu-toggle-lines::before,
.mk-menu-toggle-lines::after {
	content: "";
	position: absolute;
	left: 0;
}

.mk-menu-toggle-lines::before {
	top: -6px;
}

.mk-menu-toggle-lines::after {
	top: 6px;
}

/* Category Color Badges */
.mk-cat-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	background: var(--mk-surface-2);
	color: var(--mk-text);
	border: 1px solid var(--mk-border);
	border-radius: 4px;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: all 0.2s ease;
}

.mk-cat-badge:hover,
.mk-cat-badge:focus {
	background: var(--mk-text);
	border-color: var(--mk-text);
	color: var(--mk-surface);
}

/* Category color badges */
.mk-cat-badge.is-style-1 { border-color: #e63946; color: #e63946; }
.mk-cat-badge.is-style-2 { border-color: #457b9d; color: #457b9d; }
.mk-cat-badge.is-style-3 { border-color: #2ec4b6; color: #2ec4b6; }
.mk-cat-badge.is-style-4 { border-color: #ff9f1c; color: #ff9f1c; }
.mk-cat-badge.is-style-5 { border-color: #7209b7; color: #7209b7; }
.mk-cat-badge.is-style-6 { border-color: #f15bb5; color: #f15bb5; }
.mk-cat-badge.is-style-7 { border-color: #00bbf9; color: #00bbf9; }
.mk-cat-badge.is-style-8 { border-color: #06d6a0; color: #06d6a0; }

.mk-cat-badge.is-style-1:hover { background: #e63946; border-color: #e63946; color: #fff; }
.mk-cat-badge.is-style-2:hover { background: #457b9d; border-color: #457b9d; color: #fff; }
.mk-cat-badge.is-style-3:hover { background: #2ec4b6; border-color: #2ec4b6; color: #fff; }
.mk-cat-badge.is-style-4:hover { background: #ff9f1c; border-color: #ff9f1c; color: #fff; }
.mk-cat-badge.is-style-5:hover { background: #7209b7; border-color: #7209b7; color: #fff; }
.mk-cat-badge.is-style-6:hover { background: #f15bb5; border-color: #f15bb5; color: #fff; }
.mk-cat-badge.is-style-7:hover { background: #00bbf9; border-color: #00bbf9; color: #fff; }
.mk-cat-badge.is-style-8:hover { background: #06d6a0; border-color: #06d6a0; color: #fff; }

/* Mobile quick nav */
.mk-mobile-menu a::before {
	--mk-mobile-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10.6 12 3l9 7.6V21h-6v-6H9v6H3V10.6z'/%3E%3C/svg%3E");
}

/* === FEATURED HERO === */
.mk-hero {
	margin-top: 28px;
	margin-bottom: 28px;
}

.mk-hero-grid {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.mk-hero-grid::-webkit-scrollbar {
	display: none;
}

.mk-hero-card {
	flex: 0 0 calc((100% - 48px) / 3);
	scroll-snap-align: start;
}

.mk-hero-link {
	position: relative;
	display: block;
	min-height: 300px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--mk-accent), var(--mk-accent-2));
	border-radius: var(--mk-radius);
	isolation: isolate;
}

.mk-hero-card .mk-thumb-img,
.mk-hero-card .mk-thumb-fallback {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.mk-hero-link:hover .mk-thumb-img,
.mk-hero-link:focus .mk-thumb-img {
	transform: scale(1.05);
}

.mk-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.85) 100%);
}

.mk-hero-content {
	position: absolute;
	z-index: 2;
	right: 20px;
	bottom: 20px;
	left: 20px;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.mk-hero-date {
	display: block;
	margin-bottom: 6px;
	font-size: 1rem;
	font-weight: 600;
}

.mk-hero-title {
	display: block;
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: var(--mk-title-spacing);
}

.mk-hero-badge {
	display: inline-block;
	margin-bottom: 10px;
	padding: 4px 10px;
	background: var(--mk-accent);
	color: #fff;
	border-radius: 4px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Hot post badge */
.mk-hot-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-left: 8px;
	padding: 2px 8px;
	background: linear-gradient(135deg, var(--mk-accent), var(--mk-accent-2));
	color: #fff;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	vertical-align: middle;
}

/* === LAYOUT === */
.mk-main {
	margin-top: 20px;
	margin-bottom: 60px;
	flex: 1 0 auto;
}

.mk-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: var(--mk-content-gap);
	align-items: start;
}

.mk-main-column {
	min-width: 0;
}

.mk-list-panel {
	padding: 24px 28px 28px;
	background: var(--mk-surface);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius-lg);
	box-shadow: var(--mk-shadow);
}

.mk-section-header {
	margin-bottom: 6px;
	padding: 0 0 16px;
}

.mk-section-header::after {
	content: "";
	display: block;
	width: 120px;
	height: 3px;
	margin-top: 14px;
	background: var(--mk-accent);
	border-radius: 3px;
}

.mk-section-title,
.mk-widget-title,
.mk-footer-widget-title {
	margin: 0;
	font-family: var(--mk-heading-font);
	font-weight: var(--mk-heading-weight);
	letter-spacing: var(--mk-title-spacing);
}

.mk-section-title {
	display: block;
	font-size: clamp(1.5rem, 2.5vw, 1.9rem);
	line-height: 1.1;
	text-transform: uppercase;
}

.mk-archive-description {
	margin-top: 10px;
	color: var(--mk-muted);
}

/* === POST CARDS === */
.mk-post-card {
	min-width: 0;
	overflow: hidden;
	background: var(--mk-surface);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mk-post-card:hover {
	box-shadow: var(--mk-shadow-lg);
	transform: translateY(-2px);
}

.mk-card-thumb {
	position: relative;
	display: block;
	aspect-ratio: 390 / 220;
	overflow: hidden;
	background: var(--mk-surface-2);
}

.mk-card-thumb .mk-thumb-img,
.mk-card-thumb .mk-thumb-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.mk-post-card:hover .mk-card-thumb .mk-thumb-img,
.mk-card-thumb:focus .mk-thumb-img {
	transform: scale(1.04);
}

.mk-card-body {
	padding: 14px 16px 16px;
}

.mk-card-cat {
	margin-bottom: 8px;
}

.mk-card-title {
	margin: 0;
	font-size: 1.08rem;
	font-weight: var(--mk-heading-weight);
	line-height: 1.25;
	letter-spacing: var(--mk-title-spacing);
}

.mk-card-title + .mk-post-meta {
	margin-top: 8px;
}

.mk-post-meta {
	color: var(--mk-muted);
	font-size: 0.85rem;
	font-weight: 500;
}

.mk-post-meta time::before {
	content: "•";
	margin-right: 6px;
	font-weight: 700;
}

.mk-post-meta .mk-views-count {
	margin-left: 6px;
}

.mk-post-list {
	display: block;
}

.mk-post-list .mk-post-card {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	padding: 22px 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--mk-strong-border);
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
	transform: none;
}

.mk-post-list .mk-post-card:last-child {
	border-bottom: 0;
}

.mk-post-list .mk-card-thumb {
	border-radius: var(--mk-radius);
}

.mk-post-list .mk-card-body {
	padding: 0;
}

.mk-post-list .mk-card-title {
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
	line-height: 1.2;
}

.mk-thumb-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--mk-accent), var(--mk-accent-2));
	color: #fff;
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.08em;
}

.mk-thumb-fallback span {
	transform: translateY(-2px);
}

/* === SIDEBAR === */
.mk-sidebar {
	position: sticky;
	top: 20px;
	min-width: 0;
}

.mk-widget {
	margin-bottom: 20px;
	padding: 28px 32px 26px;
	background: var(--mk-surface);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius-lg);
	box-shadow: var(--mk-shadow);
}

.mk-widget-title {
	position: relative;
	display: block;
	margin-bottom: 18px;
	padding-bottom: 12px;
	font-size: clamp(1.3rem, 2vw, 1.6rem);
	line-height: 1;
	text-transform: uppercase;
}

.mk-widget-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 120px;
	height: 3px;
	background: var(--mk-accent);
	border-radius: 3px;
}

.mk-trending-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mk-trending-list li {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--mk-strong-border);
}

.mk-trending-list li:first-child {
	padding-top: 0;
}

.mk-trending-list li:last-child {
	border-bottom: 0;
}

.mk-trend-thumb {
	position: relative;
	width: 80px;
	height: 80px;
	overflow: hidden;
	background: var(--mk-surface-2);
	border-radius: 999px;
}

.mk-trend-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 999px;
}

.mk-trend-rank {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.mk-trend-thumb .mk-thumb-img,
.mk-trend-thumb .mk-thumb-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-size: 1.4rem;
}

.mk-trend-text a {
	display: block;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: var(--mk-title-spacing);
}

.mk-trend-text time {
	display: block;
	margin-top: 4px;
	color: var(--mk-muted);
	font-size: 0.72rem;
	font-weight: 500;
}

.mk-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mk-category-list li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid var(--mk-border);
	font-weight: 600;
}

.mk-category-list li:last-child {
	border-bottom: 0;
}

.mk-category-list li a {
	flex: 1;
}

/* === SINGLE POST === */
.mk-single-card,
.mk-comments,
.post-navigation,
.mk-related-posts,
.mk-empty-results,
.mk-error-404 {
	margin-bottom: 22px;
	padding: clamp(22px, 3vw, 28px);
	background: var(--mk-surface);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius-lg);
	box-shadow: var(--mk-shadow);
}

.mk-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-items: center;
	margin-bottom: 18px;
	color: var(--mk-muted);
	font-size: 0.88rem;
	font-weight: 500;
}

.mk-breadcrumbs a {
	font-weight: 600;
}

.mk-breadcrumbs a:first-child::before {
	content: "⌂";
	margin-right: 3px;
}

.mk-breadcrumb-sep {
	margin: 0 2px;
}

.mk-single-cat {
	margin-bottom: 14px;
}

.mk-single-title {
	margin: 0;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 850;
	line-height: 1.1;
	letter-spacing: -0.05em;
}

.mk-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	align-items: center;
	margin-top: 16px;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--mk-muted);
}

.mk-single-author::before {
	content: "◉";
	margin-right: 4px;
	font-size: 0.8em;
	color: var(--mk-accent);
}

.mk-single-date::before {
	content: "·";
	margin-right: 10px;
}

.mk-single-thumb {
	margin: 24px -28px 0;
	overflow: hidden;
	border-radius: var(--mk-radius);
}

.mk-single-thumb img {
	width: 100%;
}

.mk-entry-content {
	margin-top: 28px;
	font-size: 1.04rem;
	line-height: 1.8;
}

.mk-entry-content > *:first-child {
	margin-top: 0;
}

.mk-entry-content > *:last-child {
	margin-bottom: 0;
}

.mk-entry-content a {
	color: var(--mk-accent);
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.mk-entry-content h1,
.mk-entry-content h2,
.mk-entry-content h3 {
	margin-top: 1.8rem;
}

.mk-entry-content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid var(--mk-accent);
	background: var(--mk-surface-2);
	border-radius: 0 var(--mk-radius-sm) var(--mk-radius-sm) 0;
	font-size: 1.05rem;
	font-weight: 500;
	font-style: italic;
}

.mk-entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.mk-entry-content th,
.mk-entry-content td {
	padding: 10px;
	border: 1px solid var(--mk-border);
	text-align: left;
}

.mk-entry-content pre {
	position: relative;
	overflow: auto;
	padding: 16px;
	background: #1a1a2e;
	color: #e5e7eb;
	border-radius: var(--mk-radius-sm);
	font-size: 0.9rem;
	line-height: 1.6;
}

.mk-copy-code-btn {
	position: absolute;
	top: 6px;
	right: 6px;
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	font-size: 0.72rem;
	font-weight: 600;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.2s ease, background 0.2s ease;
}

pre:hover .mk-copy-code-btn {
	opacity: 1;
}

.mk-copy-code-btn:hover {
	background: rgba(255, 255, 255, 0.25);
}

.mk-copy-code-btn.is-copied {
	background: var(--mk-success);
	border-color: var(--mk-success);
}

.mk-entry-footer {
	margin-top: 22px;
}

.mk-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.mk-tags span {
	font-weight: 600;
}

.mk-tags a {
	display: inline-flex;
	padding: 5px 10px;
	background: var(--mk-surface-2);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 500;
}

/* === SHARE BOX === */
.mk-share-box {
	margin-top: 28px;
	padding: 18px;
	background: var(--mk-surface-2);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius);
}

.mk-share-box h2 {
	margin: 0 0 12px;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.mk-share-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mk-share-icon {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mk-share-icon:hover,
.mk-share-icon:focus {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.mk-share-facebook { background: #1877f2; }
.mk-share-x { background: #000; }
.mk-share-whatsapp { background: #25d366; }
.mk-share-telegram { background: #229ed9; }
.mk-share-copy { background: linear-gradient(135deg, var(--mk-accent), var(--mk-accent-2)); }
.mk-share-copy.is-copied { background: #1a1a2e; }

.mk-share-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

/* === PAGINATION === */
.mk-pagination {
	margin-top: 28px;
}

.mk-pagination > .page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.mk-pagination li {
	margin: 0;
	padding: 0;
}

.mk-pagination a,
.mk-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 14px;
	background: var(--mk-surface-2);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius-sm);
	font-weight: 700;
	font-size: 1rem;
}

.mk-pagination .current,
.mk-pagination a:hover,
.mk-pagination a:focus {
	background: var(--mk-accent);
	border-color: var(--mk-accent);
	color: #fff;
}

.mk-pagination .dots {
	min-width: auto;
	padding: 0 4px;
	background: transparent;
	border: 0;
	color: var(--mk-muted);
}

/* === RELATED POSTS === */
.mk-related-posts .mk-section-title {
	margin-bottom: 14px;
}

.mk-related-posts .mk-section-title::after {
	content: "";
	display: block;
	width: 100px;
	height: 3px;
	margin-top: 10px;
	background: var(--mk-accent);
	border-radius: 3px;
}

.mk-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.mk-related-grid .mk-card-title {
	font-size: 0.95rem;
}

/* === COMMENTS === */
.mk-comments-title {
	margin: 0 0 14px;
	font-size: 1.2rem;
}

.mk-comment-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mk-comment-list .comment {
	padding: 12px 0;
	border-bottom: 1px solid var(--mk-border);
}

.mk-comment-list .comment:last-child {
	border-bottom: 0;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	width: 100%;
	padding: 12px 14px;
	background: var(--mk-surface-2);
	color: var(--mk-text);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius-sm);
}

.form-submit .submit {
	padding: 10px 18px;
	background: var(--mk-accent);
	color: #fff;
	border: 0;
	border-radius: var(--mk-radius-sm);
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.form-submit .submit:hover {
	background: var(--mk-accent-dark);
}

/* === SEARCH MODAL === */
.mk-search-modal[hidden] {
	display: none;
}

.mk-search-modal {
	position: fixed;
	z-index: 9999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgba(2, 6, 23, 0.8);
	backdrop-filter: blur(6px);
}

.mk-search-panel {
	width: min(640px, 100%);
	padding: clamp(20px, 4vw, 32px);
	background: var(--mk-surface);
	border-radius: var(--mk-radius-lg);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.mk-search-panel h2 {
	margin: 0 0 16px;
	font-size: clamp(1.4rem, 5vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -0.055em;
}

.mk-search-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-radius: 999px;
	font-size: 1.8rem;
	line-height: 1;
}

.mk-search-close:hover,
.mk-search-close:focus {
	background: var(--mk-accent);
}

.mk-search-form {
	display: flex;
	gap: 10px;
}

.mk-search-form label {
	flex: 1;
}

.mk-search-input-wrap {
	position: relative;
	flex: 1;
	min-width: 0;
}

.mk-search-input-wrap label {
	display: block;
	flex: none;
}

.mk-search-field {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	background: var(--mk-surface-2);
	color: var(--mk-text);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius-sm);
}

.mk-search-submit {
	min-height: 48px;
	padding: 0 18px;
	background: var(--mk-accent);
	color: #fff;
	border-radius: var(--mk-radius-sm);
	font-weight: 600;
}

.mk-search-submit:hover,
.mk-search-submit:focus {
	background: var(--mk-accent-dark);
}

.mk-live-search-results {
	position: absolute;
	z-index: 50;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	max-height: min(380px, 70vh);
	overflow: auto;
	padding: 8px;
	background: var(--mk-surface);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius);
	box-shadow: var(--mk-shadow-lg);
}

.mk-live-search-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 8px;
	border-radius: var(--mk-radius-sm);
}

.mk-live-search-item:hover,
.mk-live-search-item:focus {
	background: var(--mk-surface-2);
}

.mk-live-search-item img,
.mk-live-search-fallback {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: var(--mk-radius-sm);
}

.mk-live-search-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--mk-accent), var(--mk-accent-2));
	color: #fff;
	font-weight: 700;
}

.mk-live-search-item strong,
.mk-live-search-item em {
	display: block;
}

.mk-live-search-item strong {
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
}

.mk-live-search-item em,
.mk-live-search-empty {
	color: var(--mk-muted);
	font-size: 0.76rem;
	font-style: normal;
	font-weight: 500;
}

.mk-live-search-empty {
	padding: 12px;
	text-align: center;
}

/* === HEADER SEARCH BAR === */
.mk-header-search-wrap {
	background: var(--mk-surface);
	padding: 6px 0 20px;
}

.mk-header-search-form {
	position: relative;
	display: flex;
	align-items: center;
	width: min(640px, 100%);
	min-height: 56px;
	margin: 0 auto;
	padding: 4px;
	background: var(--mk-surface-2);
	border: 1px solid var(--mk-border);
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mk-header-search-form .mk-search-input-wrap {
	flex: 1 1 auto;
	min-width: 0;
}

.mk-header-search-form .mk-search-field {
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	background: transparent;
	color: var(--mk-text);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	font-size: clamp(1.1rem, 4vw, 1.6rem);
	font-weight: 400;
	outline: none;
}

.mk-header-search-form .mk-search-field::placeholder {
	color: var(--mk-muted);
	opacity: 0.7;
}

.mk-header-search-form .mk-search-submit {
	flex: 0 0 auto;
	min-width: 120px;
	min-height: 48px;
	padding: 0 24px;
	background: var(--mk-accent);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
}

.mk-header-search-form .mk-search-submit:hover {
	background: var(--mk-accent-dark);
}

/* === FOOTER === */
.mk-site-footer {
	margin-top: auto;
	background: var(--mk-surface-2);
	color: var(--mk-text);
	border-top: 1px solid var(--mk-border);
}

.mk-footer-widgets {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	padding-top: 36px;
	padding-bottom: 34px;
}

.mk-footer-widget-title {
	margin-bottom: 12px;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mk-footer-social {
	padding: 20px 0;
	text-align: center;
	border-top: 1px solid var(--mk-border);
}

.mk-footer-social h3 {
	margin: 0 0 12px;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mk-social-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.mk-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--mk-surface);
	color: var(--mk-text);
	border: 1px solid var(--mk-border);
	border-radius: 999px;
	font-size: 1.1rem;
	transition: all 0.2s ease;
}

.mk-social-link:hover,
.mk-social-link:focus {
	background: var(--mk-accent);
	border-color: var(--mk-accent);
	color: #fff;
	transform: translateY(-2px);
}

.mk-social-link svg {
	width: 18px;
	height: 18px;
	display: block;
}

.mk-newsletter {
	padding: 24px 0;
	text-align: center;
	border-top: 1px solid var(--mk-border);
}

.mk-newsletter h3 {
	margin: 0 0 6px;
	font-size: 1.1rem;
}

.mk-newsletter p {
	margin: 0 0 14px;
	color: var(--mk-muted);
	font-size: 0.88rem;
}

.mk-newsletter-form {
	display: flex;
	justify-content: center;
	gap: 10px;
	max-width: 480px;
	margin: 0 auto;
}

.mk-newsletter-form input[type="email"] {
	flex: 1;
	min-width: 0;
	padding: 12px 16px;
	background: var(--mk-surface);
	color: var(--mk-text);
	border: 1px solid var(--mk-border);
	border-radius: 999px;
	font-size: 0.9rem;
}

.mk-newsletter-form button {
	padding: 12px 24px;
	background: var(--mk-accent);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.mk-newsletter-form button:hover {
	background: var(--mk-accent-dark);
}

.mk-site-info-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 28px 0;
	font-size: 0.95rem;
	font-weight: 400;
	text-align: center;
	border-top: 1px solid var(--mk-border);
}

.mk-site-info p {
	margin: 0;
}

.mk-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.mk-footer-menu a {
	font-weight: 600;
	font-size: 0.85rem;
}

.mk-footer-credit a {
	color: inherit;
	font-weight: 600;
}

.mk-footer-credit a:hover {
	color: var(--mk-accent);
}

/* === FLOATING WHATSAPP === */
.mk-floating-whatsapp {
	position: fixed;
	z-index: 9998;
	right: 20px;
	bottom: 20px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 48px;
	padding: 8px 14px 8px 8px;
	background: #25d366;
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
	font-weight: 600;
}

.mk-floating-whatsapp:hover,
.mk-floating-whatsapp:focus {
	background: #128c4a;
	color: #fff;
	transform: translateY(-1px);
}

.mk-floating-whatsapp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	font-size: 1rem;
}

.mk-floating-whatsapp svg {
	width: 18px;
	height: 18px;
	display: block;
}

/* === WHATSAPP BUTTON === */
.mk-whatsapp-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	margin-top: 16px;
	padding: 8px 14px;
	color: #25d366;
	border: 1px solid #25d366;
	border-radius: var(--mk-radius-sm);
	font-weight: 600;
	text-align: center;
}

.mk-whatsapp-button:hover,
.mk-whatsapp-button:focus {
	background: rgba(37, 211, 102, 0.08);
	color: #25d366;
}

.mk-whatsapp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background: #25d366;
	color: #fff;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
}

/* === 404 PAGE === */
.mk-error-404 {
	text-align: center;
}

.mk-error-404 h1 {
	font-size: clamp(2rem, 6vw, 4rem);
	margin: 0 0 10px;
}

.mk-error-404 p {
	font-size: 1.1rem;
	color: var(--mk-muted);
	max-width: 480px;
	margin: 0 auto 20px;
}

.mk-404-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}

.mk-404-link {
	padding: 10px 20px;
	background: var(--mk-surface-2);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius-sm);
	font-weight: 600;
	transition: all 0.2s ease;
}

.mk-404-link:hover {
	background: var(--mk-accent);
	border-color: var(--mk-accent);
	color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 1120px) {
	.mk-content-layout {
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 20px;
	}

	.mk-widget {
		padding-right: 24px;
		padding-left: 24px;
	}

	.mk-post-list .mk-post-card {
		grid-template-columns: 240px minmax(0, 1fr);
		gap: 22px;
	}

	.mk-footer-widgets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	.mk-hero-card {
		flex-basis: calc((100% - 24px) / 2);
	}

	.mk-content-layout {
		grid-template-columns: 1fr;
	}

	.mk-sidebar {
		position: static;
	}

	.mk-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	body {
		background: var(--mk-page-bg);
	}

	.mk-container {
		padding-right: 12px;
		padding-left: 12px;
	}

	.mk-logo-row {
		min-height: 100px;
		display: grid;
		grid-template-columns: 40px minmax(0, 1fr) 40px;
		gap: 6px;
		background: var(--mk-surface);
	}

	.mk-mobile-action {
		display: inline-flex;
	}

	.mk-mobile-action.mk-search-toggle {
		justify-self: end;
	}

	.mk-mobile-action.mk-theme-toggle {
		justify-self: start;
	}

	.mk-nav-actions,
	.mk-main-nav-wrap {
		display: none;
	}

	.custom-logo-link img {
		max-height: var(--mk-logo-mobile-height);
	}

	.mk-site-title {
		font-size: clamp(1.5rem, 8vw, 2.2rem);
	}

	.mk-site-description {
		display: none;
	}

	.mk-mobile-nav {
		display: block;
		margin: 0 12px 14px;
		background: var(--mk-surface);
		border: 1px solid var(--mk-border);
		border-radius: var(--mk-radius);
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.mk-mobile-menu {
		display: grid;
		grid-template-columns: repeat(5, minmax(70px, 1fr));
		min-width: 100%;
	}

	.mk-mobile-menu a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 6px;
		min-height: 92px;
		padding: 10px 6px;
		font-size: 0.72rem;
		font-weight: 700;
		letter-spacing: 0.02em;
		text-transform: uppercase;
	}

	.mk-mobile-menu a::before {
		content: "";
		display: block;
		width: 28px;
		height: 28px;
		background: currentColor;
		-webkit-mask: var(--mk-mobile-icon) center / contain no-repeat;
		mask: var(--mk-mobile-icon) center / contain no-repeat;
	}

	.mk-hero {
		display: none;
	}

	.mk-main {
		margin-top: 14px;
		margin-bottom: 40px;
	}

	.mk-list-panel {
		padding: 24px 18px 22px;
	}

	.mk-section-title {
		font-size: 1.6rem;
	}

	.mk-post-list .mk-post-card {
		grid-template-columns: minmax(110px, 36%) minmax(0, 1fr);
		gap: 14px;
		padding: 14px 0;
	}

	.mk-post-list .mk-card-thumb {
		height: 110px;
		aspect-ratio: auto;
	}

	.mk-post-list .mk-card-cat {
		margin-bottom: 6px;
	}

	.mk-post-list .mk-card-title {
		font-size: 1.05rem;
		line-height: 1.2;
	}

	.mk-sidebar {
		margin-top: 24px;
	}

	.mk-widget {
		padding: 28px 24px 24px;
	}

	.mk-content-layout {
		gap: 0;
	}

	.mk-single-card {
		padding: 24px 22px;
	}

	.mk-single-thumb {
		margin-right: -22px;
		margin-left: -22px;
	}

	.mk-footer-widgets {
		grid-template-columns: 1fr;
	}

	.mk-newsletter-form {
		flex-direction: column;
		align-items: center;
	}

	.mk-newsletter-form input[type="email"] {
		width: 100%;
	}

	.mk-site-info-inner {
		flex-direction: column;
		line-height: 1.8;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	.mk-main {
		margin-bottom: 36px;
	}

	.mk-list-panel {
		padding: 20px 16px 18px;
	}

	.mk-post-list .mk-post-card {
		grid-template-columns: minmax(100px, 36%) minmax(0, 1fr);
	}

	.mk-post-list .mk-card-thumb {
		height: 100px;
	}

	.mk-post-list .mk-card-title {
		font-size: 0.98rem;
	}

	.mk-related-grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}

	.mk-related-grid .mk-card-title {
		font-size: 0.82rem;
	}

	.mk-search-form {
		flex-direction: column;
	}

	.mk-trending-list li {
		grid-template-columns: 80px minmax(0, 1fr);
	}

	.mk-trend-thumb {
		width: 80px;
		height: 80px;
	}

	.mk-trend-text a {
		font-size: 0.95rem;
	}

	.mk-pagination > .page-numbers {
		justify-content: flex-start;
		gap: 8px;
	}
}

@media (max-width: 430px) {
	.mk-container {
		padding-right: 10px;
		padding-left: 10px;
	}

	.mk-mobile-menu {
		grid-template-columns: repeat(5, minmax(60px, 1fr));
	}

	.mk-mobile-menu a {
		min-height: 82px;
		font-size: 0.65rem;
		padding: 8px 4px;
	}

	.mk-mobile-menu a::before {
		width: 24px;
		height: 24px;
	}

	.mk-list-panel {
		padding: 18px 14px 16px;
	}

	.mk-post-list .mk-post-card {
		grid-template-columns: 100px minmax(0, 1fr);
		gap: 12px;
	}

	.mk-post-list .mk-card-thumb {
		height: 90px;
	}

	.mk-post-list .mk-card-title {
		font-size: 0.92rem;
	}

	.mk-widget {
		padding: 24px 20px 20px;
	}

	.mk-trending-list li {
		grid-template-columns: 70px minmax(0, 1fr);
	}

	.mk-trend-thumb {
		width: 70px;
		height: 70px;
	}

	.mk-trend-text a {
		font-size: 0.9rem;
	}

	.mk-single-title {
		font-size: 1.6rem;
	}

	.mk-single-thumb {
		margin-right: -14px;
		margin-left: -14px;
	}

	.mk-pagination a,
	.mk-pagination span {
		min-width: 42px;
		height: 42px;
		font-size: 0.9rem;
	}
}

