/*
Theme Name: EK3 Light
Description: قالب عربى خفيف لموقع المطبخ الاقتصادي. RTL بالكامل، تصميم فاتح، متجاوب، ومهيأ للسرعة ولمواضع الإعلانات.
Author: Migration tooling
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.1
Requires PHP: 7.4
Text Domain: ek3-light
*/

/* ==========================================================================
   Design tokens — values carried over from the original Blogger skin so the
   site keeps its identity after the move.
   ========================================================================== */
:root {
	--ek3-primary: #035dcd;
	--ek3-primary-dark: #024aa4;
	--ek3-primary-soft: #e8f1fd;
	--ek3-body-bg: #f7f7f7;
	--ek3-surface: #ffffff;
	--ek3-border: #e9e9e9;
	--ek3-border-soft: #f2f2f2;
	--ek3-text: #222222;
	--ek3-title: #171921;
	--ek3-muted: #666666;
	--ek3-link: #194ca9;
	--ek3-max: 1100px;
	--ek3-radius: 6px;
	--ek3-gap: 22px;
	--ek3-shadow: 0 1px 3px rgba(16, 24, 40, .06);
	--ek3-font: "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--ek3-body-bg);
	color: var(--ek3-text);
	font-family: var(--ek3-font);
	font-size: 16px;
	line-height: 1.9;
	direction: rtl;
	text-align: right;
	overflow-wrap: break-word;
}

img, picture, video, iframe { max-width: 100%; }
img { height: auto; border: 0; }

a { color: var(--ek3-link); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
	color: var(--ek3-title);
	line-height: 1.45;
	margin: 1.4em 0 .6em;
	font-weight: 700;
}

ul, ol { padding-inline-start: 1.4em; }

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

table { border-collapse: collapse; width: 100%; }

figure { margin: 0; }

:focus-visible { outline: 2px solid var(--ek3-primary); outline-offset: 2px; }

.ek3-sr {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.ek3-skip {
	position: absolute; inset-inline-start: -9999px; top: 0; z-index: 999;
	background: var(--ek3-primary); color: #fff; padding: 10px 16px;
}
.ek3-skip:focus { inset-inline-start: 0; }

/* ==========================================================================
   Layout
   ========================================================================== */
.ek3-wrap {
	max-width: var(--ek3-max);
	margin: 0 auto;
	padding: 0 14px;
}

.ek3-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--ek3-gap);
	padding: var(--ek3-gap) 0 40px;
}

@media (min-width: 992px) {
	.ek3-layout { grid-template-columns: minmax(0, 1fr) 300px; }
}

.ek3-main { min-width: 0; }

/* ==========================================================================
   Header
   ========================================================================== */
.ek3-topbar {
	background: var(--ek3-surface);
	border-bottom: 1px solid var(--ek3-border);
	font-size: 13px;
}
.ek3-topbar__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 12px; min-height: 38px;
}
.ek3-topbar__menu, .ek3-topbar__social {
	display: flex; align-items: center; gap: 14px;
	list-style: none; margin: 0; padding: 0; flex-wrap: wrap;
}
.ek3-topbar a { color: var(--ek3-muted); }
.ek3-topbar a:hover { color: var(--ek3-primary); text-decoration: none; }
.ek3-topbar__social a {
	width: 26px; height: 26px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--ek3-primary); color: #fff;
}
.ek3-topbar__social svg { width: 14px; height: 14px; fill: currentColor; }

@media (max-width: 700px) {
	.ek3-topbar__menu { display: none; }
	.ek3-topbar__inner { justify-content: center; }
}

.ek3-header {
	background: var(--ek3-surface);
	border-bottom: 1px solid var(--ek3-border);
	position: sticky; top: 0; z-index: 60;
}
.ek3-header__inner {
	display: flex; align-items: center; gap: 14px; min-height: 68px;
}
.ek3-brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.ek3-brand img { max-height: 54px; width: auto; display: block; }
.ek3-brand__text { font-size: 22px; font-weight: 700; color: var(--ek3-primary); }
.ek3-brand__text:hover { text-decoration: none; }
.ek3-tagline { display: none; }

.ek3-burger {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); background: var(--ek3-surface);
	cursor: pointer; flex: 0 0 auto;
}
.ek3-burger svg { width: 22px; height: 22px; stroke: var(--ek3-title); stroke-width: 2; fill: none; }

.ek3-header__spacer { flex: 1 1 auto; }

.ek3-searchtoggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); background: var(--ek3-surface); cursor: pointer;
}
.ek3-searchtoggle svg { width: 18px; height: 18px; stroke: var(--ek3-title); stroke-width: 2; fill: none; }

/* ---- primary navigation ---- */
.ek3-nav { flex: 1 1 auto; min-width: 0; }
.ek3-nav__list {
	display: flex; align-items: center; gap: 2px;
	list-style: none; margin: 0; padding: 0; flex-wrap: wrap;
}
.ek3-nav__list li { position: relative; }
.ek3-nav__list a {
	display: block; padding: 10px 11px; color: var(--ek3-title);
	font-size: 14.5px; font-weight: 500; border-radius: var(--ek3-radius);
	white-space: nowrap;
}
.ek3-nav__list a:hover { color: var(--ek3-primary); background: var(--ek3-primary-soft); text-decoration: none; }
.ek3-nav__list .current-menu-item > a,
.ek3-nav__list .current-menu-parent > a { color: var(--ek3-primary); }

.ek3-nav__list .menu-item-has-children > a::after {
	content: ""; display: inline-block; margin-inline-start: 6px;
	border: 4px solid transparent; border-top-color: currentColor;
	transform: translateY(2px);
}

.ek3-nav__list ul {
	position: absolute; top: 100%; inset-inline-start: 0; min-width: 210px;
	background: var(--ek3-surface); border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); box-shadow: 0 6px 18px rgba(16, 24, 40, .1);
	list-style: none; margin: 0; padding: 6px; z-index: 70;
	display: none;
}
.ek3-nav__list li:hover > ul,
.ek3-nav__list li:focus-within > ul { display: block; }
.ek3-nav__list ul a { padding: 8px 10px; font-size: 14px; white-space: normal; }

@media (max-width: 991px) {
	.ek3-nav {
		position: fixed; inset: 0 auto 0 0; width: min(84vw, 320px);
		background: var(--ek3-surface); z-index: 120; padding: 16px;
		transform: translateX(-100%); transition: transform .22s ease;
		overflow-y: auto; box-shadow: 0 0 30px rgba(0, 0, 0, .18);
	}
	body.rtl .ek3-nav { inset: 0 0 0 auto; transform: translateX(100%); }
	.ek3-nav.is-open { transform: translateX(0) !important; }
	.ek3-nav__list { display: block; }
	.ek3-nav__list a { padding: 11px 6px; border-bottom: 1px solid var(--ek3-border-soft); border-radius: 0; }
	.ek3-nav__list ul {
		position: static; display: block; border: 0; box-shadow: none;
		padding: 0 12px 0 0; min-width: 0;
	}
	.ek3-nav__list .menu-item-has-children > a::after { float: left; margin-top: 12px; }
	.ek3-navclose {
		display: inline-flex; align-items: center; justify-content: center;
		width: 34px; height: 34px; margin-bottom: 10px; cursor: pointer;
		border: 1px solid var(--ek3-border); border-radius: var(--ek3-radius);
		background: var(--ek3-surface); font-size: 18px; line-height: 1;
	}
	.ek3-overlay {
		position: fixed; inset: 0; background: rgba(0, 0, 0, .45);
		z-index: 110; opacity: 0; visibility: hidden; transition: opacity .2s;
	}
	.ek3-overlay.is-open { opacity: 1; visibility: visible; }
}

@media (min-width: 992px) {
	.ek3-burger, .ek3-navclose, .ek3-overlay { display: none; }
}

/* ---- header search drawer ---- */
.ek3-headersearch {
	display: none; padding: 12px 0; border-top: 1px solid var(--ek3-border);
	background: var(--ek3-surface);
}
.ek3-headersearch.is-open { display: block; }

.ek3-searchform { display: flex; gap: 8px; }
.ek3-searchform input[type="search"] {
	flex: 1 1 auto; min-width: 0; padding: 10px 12px;
	border: 1px solid var(--ek3-border); border-radius: var(--ek3-radius);
	background: #fbfbfb;
}
.ek3-searchform button {
	padding: 10px 18px; border: 0; border-radius: var(--ek3-radius);
	background: var(--ek3-primary); color: #fff; cursor: pointer;
}
.ek3-searchform button:hover { filter: brightness(1.08); }

/* ==========================================================================
   Intro / page heading
   ========================================================================== */
.ek3-pagehead {
	background: var(--ek3-surface); border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); padding: 18px 18px 14px;
	margin-bottom: var(--ek3-gap);
}
.ek3-pagehead h1, .ek3-pagehead h2 { margin: 0 0 6px; font-size: 24px; }
.ek3-pagehead p { margin: 0; color: var(--ek3-muted); font-size: 15px; }

.ek3-breadcrumbs {
	font-size: 13px; color: var(--ek3-muted); margin-bottom: 12px;
	display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.ek3-breadcrumbs a { color: var(--ek3-muted); }
.ek3-breadcrumbs a:hover { color: var(--ek3-primary); }
.ek3-breadcrumbs span[aria-hidden] { opacity: .5; }

/* ==========================================================================
   Post cards
   ========================================================================== */
.ek3-grid {
	display: grid; gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-auto-flow: row;
	align-items: stretch;
}

.ek3-card {
	background: var(--ek3-surface); border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); overflow: hidden;
	display: flex; flex-direction: column; height: 100%;
	box-shadow: var(--ek3-shadow);
}
.ek3-card:hover { border-color: #d8e3f5; }

.ek3-card__media { display: block; position: relative; background: #eef1f5; aspect-ratio: 16 / 9; }
.ek3-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ek3-card__cat {
	position: absolute; inset-block-start: 10px; inset-inline-start: 10px;
	background: var(--ek3-primary); color: #fff; font-size: 12px;
	padding: 3px 9px; border-radius: 3px;
}
.ek3-card__cat:hover { text-decoration: none; color: #fff; }

.ek3-card__body { padding: 12px 13px 14px; display: flex; flex-direction: column; flex: 1 1 auto; }
.ek3-card__title { margin: 0 0 8px; font-size: 16.5px; line-height: 1.55; }
.ek3-card__title a { color: var(--ek3-title); }
.ek3-card__title a:hover { color: var(--ek3-primary); text-decoration: none; }
.ek3-card__excerpt { margin: 0 0 12px; font-size: 14px; color: var(--ek3-muted); line-height: 1.75; }
.ek3-card__foot {
	margin-top: auto; display: flex; align-items: center;
	justify-content: space-between; gap: 8px;
	font-size: 12.5px; color: var(--ek3-muted);
}
.ek3-card__more { color: var(--ek3-primary); font-weight: 600; }

/* ==========================================================================
   Single post
   ========================================================================== */
.ek3-article {
	background: var(--ek3-surface); border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); padding: 20px;
}
@media (max-width: 600px) { .ek3-article { padding: 15px; } }

.ek3-article__title { margin: 0 0 12px; font-size: 27px; line-height: 1.45; }
@media (max-width: 600px) { .ek3-article__title { font-size: 22px; } }

.ek3-meta {
	display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center;
	font-size: 13px; color: var(--ek3-muted);
	padding-bottom: 14px; margin-bottom: 16px;
	border-bottom: 1px solid var(--ek3-border-soft);
}
.ek3-meta a { color: var(--ek3-muted); }
.ek3-meta a:hover { color: var(--ek3-primary); }
.ek3-meta__item { display: inline-flex; align-items: center; gap: 5px; }
.ek3-meta svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.8; fill: none; }

/* ---- content typography ---- */
.ek3-content { font-size: 16.5px; line-height: 1.95; }
.ek3-content > *:first-child { margin-top: 0; }
.ek3-content p { margin: 0 0 1.05em; }
.ek3-content h2 {
	font-size: 22px; margin: 1.7em 0 .6em; padding-inline-start: 12px;
	border-inline-start: 4px solid var(--ek3-primary);
}
.ek3-content h3 { font-size: 18.5px; }
.ek3-content h4 { font-size: 17px; }
.ek3-content ul, .ek3-content ol { margin: 0 0 1.1em; }
.ek3-content li { margin-bottom: .45em; }
.ek3-content img { border-radius: var(--ek3-radius); }
.ek3-content figure { margin: 1.2em 0; }
.ek3-content figcaption { font-size: 13.5px; color: var(--ek3-muted); text-align: center; margin-top: 8px; }
.ek3-content hr { border: 0; border-top: 1px solid var(--ek3-border); margin: 1.8em 0; }
.ek3-content blockquote {
	margin: 1.3em 0; padding: 12px 16px; background: #fafbfc;
	border-inline-start: 4px solid var(--ek3-primary); color: #444;
}
.ek3-content a { color: var(--ek3-link); text-decoration: underline; text-underline-offset: 2px; }

/* tables coming from the archive */
.ek3-table-scroll { overflow-x: auto; margin: 1.3em 0; -webkit-overflow-scrolling: touch; }
.ek3-content table { min-width: 320px; font-size: 15px; background: var(--ek3-surface); }
.ek3-content th, .ek3-content td {
	border: 1px solid var(--ek3-border); padding: 9px 11px; text-align: right;
}
.ek3-content thead th, .ek3-content tr:first-child th { background: var(--ek3-primary-soft); color: var(--ek3-title); }
.ek3-content tbody tr:nth-child(even) { background: #fbfcfd; }

/* ---- classes authored inside the Blogger posts, previously unstyled ---- */
.ek3-content .key-phrase,
.ek3-content .keyword,
.ek3-content .keywords,
.ek3-content .key-word,
.ek3-content .highlight { font-weight: 600; color: var(--ek3-title); }

.ek3-content .recipe-box,
.ek3-content .ingredients-box,
.ek3-content .ingredients,
.ek3-content .ingredients-list,
.ek3-content .recipe-section {
	background: #fafcff; border: 1px solid #dce7f7;
	border-radius: var(--ek3-radius); padding: 14px 16px; margin: 1.3em 0;
}
.ek3-content .recipe-box > *:first-child,
.ek3-content .ingredients-box > *:first-child { margin-top: 0; }

.ek3-content .note,
.ek3-content .tip,
.ek3-content .pro-tip,
.ek3-content .key-point,
.ek3-content .highlight-box {
	background: #f3f9f3; border-inline-start: 4px solid #4c9a5a;
	border-radius: var(--ek3-radius); padding: 12px 15px; margin: 1.2em 0;
}

.ek3-content .warning,
.ek3-content .alert-box,
.ek3-content .medical-alert {
	background: #fff7ed; border-inline-start: 4px solid #d97706;
	border-radius: var(--ek3-radius); padding: 12px 15px; margin: 1.2em 0;
}

.ek3-content .faq-section,
.ek3-content .faq-item,
.ek3-content .faq {
	background: var(--ek3-surface); border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); padding: 12px 15px; margin: .8em 0;
}
.ek3-content .faq-question,
.ek3-content .faq-item > strong,
.ek3-content .faq-section > strong {
	display: block; font-weight: 700; color: var(--ek3-primary); margin-bottom: 6px;
}
.ek3-content .faq-item p:last-child,
.ek3-content .faq-section p:last-child { margin-bottom: 0; }

.ek3-content .recipe-step,
.ek3-content .method-step { margin: .8em 0; }

.ek3-content .about-author {
	background: #fafafa; border: 1px dashed var(--ek3-border);
	border-radius: var(--ek3-radius); padding: 13px 15px; margin: 1.4em 0;
	font-size: 15px; color: var(--ek3-muted);
}

.ek3-content .separator { text-align: center; }
.ek3-content .separator a { display: inline-block; }

/* calculators embedded in a handful of posts */
.ek3-content input[type="number"],
.ek3-content input[type="text"],
.ek3-content select {
	padding: 8px 10px; border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); background: #fff; max-width: 100%;
}
.ek3-content button {
	padding: 9px 18px; border: 0; border-radius: var(--ek3-radius);
	background: var(--ek3-primary); color: #fff; cursor: pointer;
}
.ek3-content label { display: inline-block; margin-bottom: 4px; }

/* ---- table of contents ---- */
.ek3-toc {
	background: #fafcff; border: 1px solid #dce7f7;
	border-radius: var(--ek3-radius); padding: 12px 16px; margin: 0 0 1.6em;
}
.ek3-toc__title {
	margin: 0; font-size: 16px; font-weight: 700; color: var(--ek3-title);
	display: flex; align-items: center; justify-content: space-between;
	cursor: pointer; gap: 10px;
}
.ek3-toc__title::-webkit-details-marker { display: none; }
.ek3-toc ol { margin: 10px 0 0; padding-inline-start: 1.3em; font-size: 15px; }
.ek3-toc li { margin-bottom: 5px; }

/* ---- share ---- */
.ek3-share { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }
.ek3-share a {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 8px 14px; border-radius: var(--ek3-radius);
	background: var(--ek3-primary); color: #fff; font-size: 13.5px;
}
.ek3-share a:hover { text-decoration: none; filter: brightness(1.08); }
.ek3-share svg { width: 15px; height: 15px; fill: currentColor; }
.ek3-share .is-wa { background: #25d366; }
.ek3-share .is-tg { background: #229ed9; }
.ek3-share .is-fb { background: #1877f2; }
.ek3-share .is-x { background: #14171a; }

/* ---- related ---- */
.ek3-related { margin-top: var(--ek3-gap); }
.ek3-related > h2 { margin: 0 0 14px; font-size: 20px; }

/* ==========================================================================
   Sidebar
   ========================================================================== */
.ek3-sidebar { min-width: 0; }
.ek3-widget {
	background: var(--ek3-surface); border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); padding: 15px; margin-bottom: 16px;
}
.ek3-widget__title {
	margin: 0 0 12px; font-size: 16px; padding-bottom: 9px;
	border-bottom: 2px solid var(--ek3-primary); display: inline-block;
}
.ek3-widget ul { list-style: none; margin: 0; padding: 0; }
.ek3-widget li + li { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--ek3-border-soft); }
.ek3-widget a { color: var(--ek3-title); font-size: 14.5px; }
.ek3-widget a:hover { color: var(--ek3-primary); text-decoration: none; }
.ek3-widget .count { color: var(--ek3-muted); font-size: 12.5px; }

.ek3-plist li { display: flex; gap: 10px; align-items: flex-start; }
.ek3-plist img { width: 74px; height: 56px; object-fit: cover; border-radius: 4px; flex: 0 0 auto; }
.ek3-plist__t { font-size: 14px; line-height: 1.6; }

.ek3-catlist li { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

@media (min-width: 992px) {
	.ek3-sidebar--sticky { position: sticky; top: 84px; }
}

/* ==========================================================================
   Ads — reserved boxes so filling them never shifts the layout
   ========================================================================== */
.ek3-ad {
	margin: 18px 0; display: flex; align-items: center; justify-content: center;
	min-height: 110px; overflow: hidden;
}
.ek3-ad ins { width: 100%; }
.ek3-ad--placeholder {
	background: repeating-linear-gradient(45deg, #f4f5f7, #f4f5f7 10px, #eef0f3 10px, #eef0f3 20px);
	border: 1px dashed #d6d9de; border-radius: var(--ek3-radius);
	color: #9aa0a8; font-size: 13px;
}
.ek3-ad--sidebar { min-height: 250px; }
.ek3-ad--top { margin-top: var(--ek3-gap); }

/* ==========================================================================
   Comments
   ========================================================================== */
.ek3-comments {
	background: var(--ek3-surface); border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); padding: 18px; margin-top: var(--ek3-gap);
}
.ek3-comments > h2 { margin: 0 0 14px; font-size: 19px; }
.ek3-commentlist { list-style: none; margin: 0; padding: 0; }
.ek3-commentlist ul.children { list-style: none; padding-inline-start: 20px; margin-top: 12px; }
.ek3-comment {
	border: 1px solid var(--ek3-border-soft); border-radius: var(--ek3-radius);
	padding: 12px 14px; margin-bottom: 12px; background: #fcfcfd;
}
.ek3-comment__head { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.ek3-comment__head img { border-radius: 50%; }
.ek3-comment__author { font-weight: 700; font-size: 14.5px; color: var(--ek3-title); }
.ek3-comment__date { font-size: 12.5px; color: var(--ek3-muted); }
.ek3-comment__body { font-size: 15px; }
.ek3-comment__body p:last-child { margin-bottom: 0; }
.ek3-comment .reply { font-size: 13px; }

.comment-respond { margin-top: 18px; }
.comment-respond .comment-reply-title { font-size: 17px; margin: 0 0 10px; }
.comment-form label { display: block; font-size: 14px; margin-bottom: 4px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%; padding: 9px 11px; border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); background: #fbfbfb; margin-bottom: 12px;
}
.comment-form textarea { min-height: 130px; }
.comment-form .submit {
	padding: 10px 22px; border: 0; border-radius: var(--ek3-radius);
	background: var(--ek3-primary); color: #fff; cursor: pointer;
}
.comment-form .comment-form-cookies-consent { display: flex; gap: 8px; align-items: flex-start; }
.comment-form .comment-form-cookies-consent input { margin-top: 6px; }

/* ==========================================================================
   Pagination
   ========================================================================== */
.ek3-pagination { margin: 26px 0 0; }
.ek3-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.ek3-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 12px;
	background: var(--ek3-surface); border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); color: var(--ek3-title); font-size: 14.5px;
}
.ek3-pagination .page-numbers:hover { border-color: var(--ek3-primary); color: var(--ek3-primary); text-decoration: none; }
.ek3-pagination .page-numbers.current { background: var(--ek3-primary); border-color: var(--ek3-primary); color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.ek3-footer {
	background: #1f2530; color: #c7ccd4; margin-top: 30px;
	padding: 30px 0 0; font-size: 14.5px;
}
.ek3-footer a { color: #c7ccd4; }
.ek3-footer a:hover { color: #fff; text-decoration: none; }
.ek3-footer__cols {
	display: grid; gap: 24px; grid-template-columns: minmax(0, 1fr);
	padding-bottom: 24px;
}
@media (min-width: 768px) {
	.ek3-footer__cols { grid-template-columns: 1.6fr 1fr 1fr; }
}
.ek3-footer h2 { color: #fff; font-size: 16px; margin: 0 0 12px; }
.ek3-footer ul { list-style: none; margin: 0; padding: 0; }
.ek3-footer li { margin-bottom: 8px; }
.ek3-footer p { margin: 0 0 10px; line-height: 1.85; }
.ek3-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .12); padding: 14px 0;
	text-align: center; font-size: 13.5px; color: #9aa2ad;
}

.ek3-tocolumns { columns: 2; column-gap: 18px; }
@media (max-width: 480px) { .ek3-tocolumns { columns: 1; } }

/* ==========================================================================
   404 / no results / search
   ========================================================================== */
.ek3-empty {
	background: var(--ek3-surface); border: 1px solid var(--ek3-border);
	border-radius: var(--ek3-radius); padding: 34px 20px; text-align: center;
}
.ek3-empty h1 { margin: 0 0 10px; font-size: 60px; color: var(--ek3-primary); line-height: 1; }
.ek3-empty h2 { margin: 0 0 10px; font-size: 21px; }
.ek3-empty p { color: var(--ek3-muted); margin: 0 auto 18px; max-width: 480px; }
.ek3-empty .ek3-searchform { max-width: 420px; margin: 0 auto; }

/* ==========================================================================
   Back to top
   ========================================================================== */
.ek3-top {
	position: fixed; inset-block-end: 18px; inset-inline-end: 18px;
	width: 42px; height: 42px; border-radius: 50%; border: 0;
	background: var(--ek3-primary); color: #fff; cursor: pointer;
	display: none; align-items: center; justify-content: center; z-index: 90;
	box-shadow: 0 4px 12px rgba(3, 93, 205, .35);
}
.ek3-top.is-visible { display: inline-flex; }
.ek3-top svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.2; fill: none; }

@media print {
	.ek3-topbar, .ek3-header, .ek3-sidebar, .ek3-footer,
	.ek3-ad, .ek3-share, .ek3-top, .ek3-comments { display: none !important; }
	.ek3-article { border: 0; padding: 0; }
}
