/*
Theme Name: Khemora
Theme URI: https://khemora.com
Author: Khemora
Description: Custom one-page digital marketing theme for Khemora - dark, premium, scroll-interactive, with a built-in blog layout.
Version: 1.0.0
Requires at least: 6.0
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: khemora
*/
/* ═══════════════ KHEMORA — style.css ═══════════════ */

:root {
  --bg: #07090f;
  --bg-alt: #0c101a;
  --surface: #111726;
  --border: rgba(255, 255, 255, 0.08);
  --text: #eef1f8;
  --text-dim: #9aa3b8;
  --accent: #34d399;       /* emerald */
  --accent-2: #f0b429;     /* gold */
  --gradient: linear-gradient(100deg, #34d399 0%, #6ee7b7 45%, #f0b429 100%);
  --radius: 18px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

.container { width: min(1140px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

em { font-style: normal; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

/* ═══════════ PRELOADER ═══════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  animation: pulse 1.2s ease-in-out infinite;
}
.preloader-logo span { color: var(--accent); }

.preloader-word {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.35em;
  font-size: 0.95rem;
  color: var(--text-dim);
}
.preloader-word span {
  opacity: 0;
  animation: letterIn 0.4s ease forwards;
}
.preloader-word span:nth-child(1) { animation-delay: 0.05s; }
.preloader-word span:nth-child(2) { animation-delay: 0.12s; }
.preloader-word span:nth-child(3) { animation-delay: 0.19s; }
.preloader-word span:nth-child(4) { animation-delay: 0.26s; }
.preloader-word span:nth-child(5) { animation-delay: 0.33s; }
.preloader-word span:nth-child(6) { animation-delay: 0.40s; }
.preloader-word span:nth-child(7) { animation-delay: 0.47s; }

.preloader-bar {
  width: 180px;
  height: 3px;
  background: var(--surface);
  border-radius: 3px;
  margin: 1.4rem auto 0;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
  animation: loadBar 1.4s ease forwards;
}

@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes letterIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes loadBar { to { width: 100%; } }

/* ═══════════ SCROLL PROGRESS ═══════════ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--gradient);
  z-index: 900;
}

/* ═══════════ NAVBAR ═══════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 1.1rem 0;
}
#navbar.scrolled {
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.65rem 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}
.logo-dot { color: var(--accent); }

.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--gradient);
  color: #07090f !important;
  padding: 0.55rem 1.2rem;
  border-radius: 99px;
  font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { filter: brightness(1.1); }

#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
#hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: 0.3s;
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  will-change: transform;
}
.orb-1 { width: 480px; height: 480px; background: #34d399; top: -140px; right: -100px; }
.orb-2 { width: 380px; height: 380px; background: #f0b429; bottom: -120px; left: -120px; opacity: 0.22; }
.orb-3 { width: 260px; height: 260px; background: #6366f1; top: 40%; left: 55%; opacity: 0.18; }

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
}

.hero-content { text-align: center; }

.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.82rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  margin-bottom: 1.6rem;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: riseUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 1.5s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 1.62s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 1.74s; }
.hero-title .line:nth-child(4) .line-inner { animation-delay: 1.86s; }

@keyframes riseUp { to { transform: translateY(0); } }

.hero-sub {
  max-width: 620px;
  margin: 1.6rem auto 0;
  color: var(--text-dim);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--gradient);
  color: #07090f;
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(52, 211, 153, 0.35); }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-3px); }
.btn-full { width: 100%; }

.hero-trust {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}
.trust-item { color: var(--text-dim); font-size: 0.88rem; }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeIn 1s ease 2.6s forwards;
}
.mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--text-dim);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.wheel {
  width: 3px; height: 8px;
  background: var(--accent);
  border-radius: 3px;
  animation: wheelScroll 1.6s ease-in-out infinite;
}
@keyframes wheelScroll { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(10px); opacity: 0.2; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 7rem 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-head p { color: var(--text-dim); margin-top: 1rem; }

/* ═══════════ STATS ═══════════ */
.stats { padding: 4.5rem 0; border-block: 1px solid var(--border); background: var(--bg-alt); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.3rem; }

/* ═══════════ SERVICES ═══════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(52,211,153,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(52,211,153,0.4); box-shadow: 0 18px 50px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }

.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-dim); font-size: 0.94rem; margin-top: 0.6rem; }
.service-tag {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ═══════════ WHY US ═══════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-text p { color: var(--text-dim); margin-top: 1.2rem; }

.trust-list { list-style: none; margin-top: 2rem; display: grid; gap: 1.4rem; }
.trust-list li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.trust-list li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 0.1rem;
  color: var(--accent);
}
.trust-list strong { display: block; color: var(--text); font-family: var(--font-head); margin-bottom: 0.2rem; }

/* Dashboard mock */
.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.dashboard-card:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }

.dash-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.dash-dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-dot.red { background: #f87171; }
.dash-dot.yellow { background: #fbbf24; }
.dash-dot.green { background: #34d399; }
.dash-title { margin-left: 0.6rem; font-size: 0.78rem; color: var(--text-dim); }

.dash-body { padding: 1.6rem 1.4rem; display: grid; gap: 1.3rem; }

.dash-metric {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.82rem;
}
.dash-metric span { color: var(--text-dim); }
.dash-metric strong { text-align: right; color: var(--accent); font-family: var(--font-head); }

.dash-bar { height: 8px; background: rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden; }
.dash-fill {
  height: 100%;
  width: 0;
  border-radius: 8px;
  background: var(--gradient);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.dash-fill.down { background: linear-gradient(90deg, #f0b429, #f87171); }
.in-view .dash-fill { width: var(--w); }

.dash-footer {
  padding: 0.8rem 1.4rem;
  border-top: 1px solid var(--border);
  font-size: 0.74rem;
  color: var(--text-dim);
  text-align: center;
}

/* ═══════════ TIMELINE / PROCESS ═══════════ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
}
.timeline-line {
  position: absolute;
  top: 0;
  left: 4%; right: 4%;
  height: 2px;
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
}
.timeline-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  transition: width 0.2s linear;
}

.timeline-step { text-align: left; }
.step-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.7rem;
}
.timeline-step p { color: var(--text-dim); font-size: 0.92rem; margin-top: 0.5rem; }

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonial-slider { max-width: 780px; margin: 0 auto; overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 1rem;
}
.testimonial p {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.5;
}
.testimonial footer { margin-top: 1.4rem; color: var(--text-dim); font-size: 0.9rem; }
.testimonial footer strong { color: var(--accent); }

.slider-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 2.2rem; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--surface);
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}
.dot.active { background: var(--accent); transform: scale(1.25); }

.testimonial-note { text-align: center; margin-top: 2.4rem; font-size: 0.78rem; color: var(--text-dim); opacity: 0.7; }

/* ═══════════ CONTACT ═══════════ */
.contact-section {
  background:
    radial-gradient(600px circle at 85% 20%, rgba(52,211,153,0.07), transparent 60%),
    radial-gradient(500px circle at 10% 90%, rgba(240,180,41,0.05), transparent 60%),
    var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-text p { color: var(--text-dim); margin-top: 1.2rem; }
.contact-details { margin-top: 2rem; display: grid; gap: 0.7rem; }
.contact-line { color: var(--text-dim); text-decoration: none; font-size: 0.95rem; }
a.contact-line:hover { color: var(--accent); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: grid;
  gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
}
.contact-form input, .contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-note { font-size: 0.75rem; color: var(--text-dim); text-align: center; }

/* ═══════════ FOOTER ═══════════ */
.footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; background: var(--bg-alt); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo { font-size: 1.6rem; margin-bottom: 0.8rem; }
.footer-grid p { color: var(--text-dim); font-size: 0.9rem; max-width: 280px; }
.footer-grid h4 { margin-bottom: 1rem; font-size: 0.95rem; }
.footer-grid a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  transition: color 0.25s;
}
.footer-grid a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-title .line-inner { transform: none; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(7, 9, 15, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; }
  #hamburger { display: flex; z-index: 850; }

  .services-grid, .timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
  .hero-trust { flex-direction: column; gap: 0.6rem; align-items: center; }
  .scroll-hint { display: none; }
}


/* ═══════════ BLOG / POSTS (WordPress) ═══════════ */
.blog-wrap { padding: 9rem 0 6rem; min-height: 70vh; }
.blog-title { text-align: center; margin-bottom: 3rem; }
.blog-title h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
.blog-title p { color: var(--text-dim); margin-top: 0.6rem; }

.post-list { display: grid; gap: 1.5rem; max-width: 760px; margin: 0 auto; }
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: rgba(52,211,153,0.4); }
.post-card h2 { font-size: 1.4rem; }
.post-card h2 a { color: var(--text); text-decoration: none; }
.post-card h2 a:hover { color: var(--accent); }
.post-meta { color: var(--text-dim); font-size: 0.8rem; margin: 0.4rem 0 0.8rem; }
.post-card .excerpt { color: var(--text-dim); font-size: 0.95rem; }
.read-more { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 0.9rem; }

.single-post-wrap { max-width: 760px; margin: 0 auto; }
.single-post-wrap .entry-content { color: var(--text-dim); margin-top: 2rem; }
.single-post-wrap .entry-content h2,
.single-post-wrap .entry-content h3 { color: var(--text); margin: 2rem 0 0.8rem; }
.single-post-wrap .entry-content p { margin-bottom: 1.2rem; }
.single-post-wrap .entry-content a { color: var(--accent); }
.single-post-wrap .entry-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.single-post-wrap .entry-content ul,
.single-post-wrap .entry-content ol { margin: 0 0 1.2rem 1.4rem; }

.pagination-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
.pagination-nav a { color: var(--accent); text-decoration: none; font-weight: 600; }
