:root {
  color-scheme: light;
  --bg: #f3f5fb;
  --panel: rgba(255,255,255,0.82);
  --panel-strong: rgba(255,255,255,0.92);
  --text: #1f2937;
  --muted: #5d6676;
  --primary-1: #c9953e;
  --primary-2: #8a5a1c;
  --primary-gradient: linear-gradient(135deg, var(--primary-1), var(--primary-2));
  --primary-gradient-soft: linear-gradient(135deg, rgba(201,149,62,.22), rgba(138,90,28,.08));
  --secondary-solid: #8a5a1c;
  --gold: var(--secondary-solid);
  --gold-2: #5f3b10;
  --line: rgba(25, 35, 52, 0.16);
  --section-soft-a: rgba(255,255,255,0.84);
  --section-soft-b: rgba(201,149,62,0.08);
  --header-bg: rgba(255,255,255,0.86);
  --page-gradient-a: rgba(201,149,62,0.18);
  --page-gradient-b: rgba(60,92,148,0.12);
  --page-gradient-base: #f3f5fb;
}

body[data-theme="dark"] {
  color-scheme: dark;
  --bg: #030405;
  --panel: rgba(255,255,255,0.05);
  --panel-strong: rgba(7, 9, 14, 0.9);
  --text: #f9f4ea;
  --muted: #b7b0a2;
  --primary-1: #d9aa5b;
  --primary-2: #171a22;
  --primary-gradient: linear-gradient(135deg, var(--primary-1), var(--primary-2));
  --primary-gradient-soft: linear-gradient(135deg, rgba(217,170,91,.16), rgba(23,26,34,.14));
  --secondary-solid: #d9aa5b;
  --gold: var(--secondary-solid);
  --gold-2: #c7954a;
  --line: rgba(255,255,255,0.13);
  --section-soft-a: rgba(255,255,255,0.025);
  --section-soft-b: rgba(255,255,255,0.035);
  --header-bg: rgba(4, 5, 8, 0.92);
  --page-gradient-a: rgba(255,255,255,0.03);
  --page-gradient-b: rgba(255,255,255,0.015);
  --page-gradient-base: #020304;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, var(--page-gradient-a), transparent 30%),
    radial-gradient(circle at 90% 18%, var(--page-gradient-b), transparent 34%),
    linear-gradient(135deg, var(--page-gradient-base) 0%, var(--bg) 100%);
  line-height: 1.7;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

img, button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

.page-shell { position: relative; overflow: hidden; }
.container { width: min(94%, 1240px); margin: 0 auto; padding-inline: clamp(10px, 1.6vw, 18px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

body:not([data-theme="dark"]) .site-header {
  background:
    var(--primary-gradient-soft),
    rgba(255,255,255,.94);
  border-bottom-color: rgba(25,35,52,.12);
  box-shadow: 0 10px 26px rgba(25,35,52,.05);
}

body[data-theme="dark"] .site-header {
  background: var(--header-bg);
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .72rem;
  padding: .42rem 0;
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}

.main-nav { display: flex; gap: 1.2rem; flex-wrap: nowrap; align-items: center; min-width: 0; }
.main-nav a { color: var(--muted); transition: color .2s ease; }
.main-nav a:hover { color: var(--gold); }

.header-categories {
  display: inline-flex;
  gap: .5rem;
  flex-wrap: nowrap;
  align-items: center;
  min-width: 0;
}

.header-category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .62rem 1.04rem;
  border-radius: 999px;
  border: 1px solid rgba(217,170,91,.35);
  background: rgba(217,170,91,.10);
  color: #f4dba8;
  font-size: .93rem;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  min-height: 42px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

body:not([data-theme="dark"]) .header-category-btn {
  color: #060400;
  border-color: rgb(201 149 62);
  background: rgb(253 196 100 / 58%);
}

.header-category-btn:hover {
  color: #fff4dc;
  border-color: rgba(217,170,91,.62);
  background: rgba(217,170,91,.2);
  transform: translateY(-1px);
}

.header-category-parent {
  position: relative;
  display: inline-flex;
}

.header-parent-link {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.header-parent-indicator {
  display: inline-block;
  font-size: .86rem;
  line-height: 1;
  margin-inline-start: .05rem;
  opacity: .85;
  transition: transform .2s ease, opacity .2s ease;
  pointer-events: none;
}

.header-category-parent.open .header-parent-indicator {
  transform: rotate(180deg);
}

.header-submenu {
  position: absolute;
  top: calc(100% + .58rem);
  right: 0;
  min-width: 210px;
  padding: .45rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: 0 20px 44px rgba(0,0,0,.22);
  display: none;
  flex-direction: column;
  gap: .22rem;
  z-index: 40;
}

.header-category-parent.open .header-submenu {
  display: flex;
}

.header-submenu-link {
  display: block;
  padding: .42rem .55rem;
  border-radius: 11px;
  color: var(--text);
  background: rgba(255,255,255,.04);
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.header-submenu-link:hover {
  color: var(--gold);
  background: rgba(217,170,91,.12);
  opacity: .98;
}

body:not([data-theme="dark"]) .header-submenu-link {
  background: rgba(255,255,255,.78);
}

body:not([data-theme="dark"]) .header-category-btn:hover {
  color: #3f2b10;
  border-color: rgba(201,149,62,.55);
  background: rgba(201,149,62,.24);
}

.header-home-btn {
  background: var(--primary-gradient);
  border-color: rgba(201,149,62,.55);
  color: #fff4db;
  font-weight: 700;
}

body:not([data-theme="dark"]) .header-home-btn {
  color: #4a3213;
}

.header-more-wrap {
  position: relative;
}

.header-more-wrap[hidden] {
  display: none !important;
}

.header-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .62rem 1.04rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: .93rem;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  min-height: 42px;
  cursor: pointer;
}

body:not([data-theme="dark"]) .header-more-btn {
  border-color: rgba(25,35,52,.18);
  background: rgba(255,255,255,.85);
  color: #334155;
}

.header-more-btn::after {
  content: '▾';
  margin-inline-start: .38rem;
  font-size: .72rem;
  opacity: .9;
}

.header-more-menu {
  position: absolute;
  top: calc(100% + .45rem);
  right: 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: .35rem;
  padding: .55rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
  z-index: 35;
}

.header-more-wrap.open .header-more-menu {
  display: flex;
}

.header-more-link {
  display: block;
  padding: .5rem .6rem;
  border-radius: 9px;
  color: var(--text);
  background: rgba(255,255,255,.35);
}

.header-more-link:hover {
  color: var(--text);
  background: rgba(217,170,91,.15);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
}

body:not([data-theme="dark"]) .nav-toggle {
  border-color: rgba(25,35,52,.18);
  background: rgba(255,255,255,.8);
}

body:not([data-theme="dark"]) .nav-toggle span {
  background: #334155;
}

.main-nav.is-open {
  display: flex;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.35);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

body[data-theme="dark"] .theme-toggle {
  background: rgba(255,255,255,.08);
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(201,149,62,.55);
  background: rgba(201,149,62,.12);
}

.theme-toggle-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.05rem;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  border-radius: 999px;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 10px 30px rgba(201,149,62,0.22);
}
.btn-dark {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.hero { padding: 3.6rem 0 2.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero-fullscreen {
  padding: 0;
  min-height: auto;
  --hero-slider-height: clamp(420px, 78vh, 760px);
}
.hero-carousel {
  min-height: var(--hero-slider-height);
  border-radius: 0;
  border: none;
}
.carousel {
  position: relative;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
}
.carousel-track { position: relative; width: 100%; height: 100%; }

.hero-fullscreen .hero-carousel,
.hero-fullscreen .hero-carousel .carousel,
.hero-fullscreen .hero-carousel .carousel-track,
.hero-fullscreen .hero-carousel .carousel-slide {
  height: var(--hero-slider-height);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform .8s ease;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5,7,13,0.58) 10%, rgba(5,7,13,0.30) 48%, rgba(5,7,13,0.12) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.30), rgba(0,0,0,0.06));
  z-index: 1;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.carousel-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.hero-fullscreen .carousel-slide img {
  border-radius: 0;
}
.hero-fullscreen .carousel-slide.active img {
  animation: heroCinematicMotion 7.2s ease-in-out both;
}
.carousel-caption {
  position: absolute;
  inset: auto 1.1rem 1.1rem 1.1rem;
  padding: 1.05rem 1.2rem;
  background: linear-gradient(95deg, rgba(4,6,12,0.85), rgba(4,6,12,0.42));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}
.hero-fullscreen .carousel-caption {
  z-index: 2;
  inset: auto 6% 13% 6%;
  max-width: min(760px, 90vw);
  background: transparent;
  border: none;
  backdrop-filter: none;
  padding: 0;
}
.carousel-tag {
  display: inline-flex;
  align-items: center;
  font-size: .74rem;
  color: #f8e4b9;
  border: 1px solid rgba(248,228,185,.35);
  background: rgba(217,170,91,.18);
  border-radius: 999px;
  padding: .2rem .5rem;
  margin-bottom: .45rem;
}
.carousel-caption h3 { margin: 0 0 .18rem; }
.carousel-caption p { margin: 0; color: #d8d2c4; }
.hero-fullscreen .carousel-caption h3 {
  font-size: clamp(2.45rem, 6.2vw, 6.1rem);
  line-height: 1.02;
  margin-bottom: .72rem;
  color: #fff;
  text-shadow: 0 14px 40px rgba(0,0,0,0.42);
  letter-spacing: -0.015em;
}
.hero-fullscreen .carousel-caption p {
  font-size: clamp(1.15rem, 2.35vw, 1.7rem);
  max-width: 46ch;
  color: #f2e7cf;
  text-shadow: 0 6px 24px rgba(0,0,0,0.28);
}
.carousel-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
  font-weight: 800;
  font-size: 1rem;
  color: #fff8eb;
  padding: .78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, rgba(217,170,91,.85), rgba(138,90,28,.88));
  box-shadow: 0 10px 28px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.14);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.carousel-link::after {
  content: '←';
  font-size: .95rem;
  transform: translateX(0);
  transition: transform .25s ease;
}
.carousel-link:hover {
  color: #fffef8;
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 16px 34px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.2);
}
.carousel-link:hover::after {
  transform: translateX(-4px);
}

.carousel-slide.active .carousel-tag,
.carousel-slide.active .carousel-caption h3,
.carousel-slide.active .carousel-caption p,
.carousel-slide.active .carousel-link {
  animation: heroCaptionIn .72s ease both;
}

.carousel-slide.active .carousel-caption h3 { animation-delay: .06s; }
.carousel-slide.active .carousel-caption p { animation-delay: .14s; }
.carousel-slide.active .carousel-link { animation-delay: .22s; }
.carousel-dots {
  position: absolute;
  bottom: .8rem;
  left: 1rem;
  display: flex;
  gap: .4rem;
  z-index: 2;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all .25s ease;
}
.carousel-dot.active {
  width: 20px;
  background: linear-gradient(135deg, var(--gold), #f0c67a);
}

@keyframes heroCinematicMotion {
  0% { transform: scale(1.08) translate3d(0, 0, 0); filter: saturate(1.02); }
  50% { transform: scale(1.12) translate3d(-1.2%, -0.8%, 0); filter: saturate(1.08); }
  100% { transform: scale(1.16) translate3d(-2.2%, -1.2%, 0); filter: saturate(1.04); }
}

@keyframes heroCaptionIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.small { padding: .42rem .74rem; font-size: .82rem; }

.pill {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(217,170,91,0.3);
  border-radius: 999px;
  background: rgba(217,170,91,0.08);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero h1, .section-title h2, .about-grid h2, .contact-grid h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.hero p, .section-title p, .about-grid p, .contact-grid p {
  color: var(--muted);
  margin: 0 0 1.3rem;
  max-width: 60ch;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-panel {
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(217,170,91,0.08));
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.panel-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(7,8,14,0.15), rgba(7,8,14,0.88)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600"><rect fill="%2307070b" width="600" height="600"/><circle cx="482" cy="160" r="140" fill="%23d9aa5b" fill-opacity="0.16"/><rect x="90" y="330" width="310" height="170" rx="28" fill="%23ffffff" fill-opacity="0.05"/></svg>') center/cover;
}

.panel-card span { color: var(--gold); font-weight: 700; }
.panel-card strong { font-size: 2rem; margin: 0.5rem 0; }

.section {
  padding: 2.6rem 0;
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, var(--section-soft-a), transparent 55%, var(--section-soft-b));
  opacity: .85;
}
.section > .container {
  position: relative;
  z-index: 1;
}
.section:nth-of-type(even)::before {
  background: linear-gradient(120deg, rgba(255,255,255,0.012), transparent 45%, rgba(217,170,91,0.12));
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.posts-grid.posts-grid-single {
  grid-template-columns: minmax(250px, 360px);
  justify-content: start;
}

.posts-grid.posts-grid-double {
  grid-template-columns: repeat(2, minmax(250px, 360px));
  justify-content: start;
}

@media (max-width: 760px) {
  .posts-grid.posts-grid-single,
  .posts-grid.posts-grid-double {
    grid-template-columns: 1fr;
  }
}
.about-home-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}
.about-layout {
  align-items: stretch;
}
.about-image-box {
  padding: 0.9rem;
}
.about-image-box img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0;
}

/* About section visual cleanup: remove frame-heavy cards and keep image aligned with text height. */
.about-text-panel,
.about-media-panel {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.about-text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-panel .about-content-text {
  margin-top: .25rem;
}

.about-media-panel {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 22px;
}

.about-media-panel img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 34vw, 470px);
  object-fit: cover;
  margin: 0;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.about-stats {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.6rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.city-card {
  overflow: hidden;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  margin: 0;
}

.city-media-link {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
}

.city-media-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.city-card:hover .city-media-link img {
  transform: scale(1.05);
}

.city-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,11,20,.08) 46%, rgba(8,11,20,.84) 100%);
}

.city-media-title {
  position: absolute;
  right: .7rem;
  left: .7rem;
  bottom: .65rem;
  color: #f8f7f4;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  text-shadow: 0 8px 24px rgba(0,0,0,.72);
}

.location-cover-wrap {
  padding-top: 0;
  margin: 0;
  width: 100%;
  max-width: none;
}

.location-page-clean .location-cover-wrap {
  padding-inline: 0 !important;
}

.location-cover-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 320px;
  border: 0;
  background: #0b0f1a;
}

.location-cover-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.location-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,12,22,.08) 40%, rgba(6,8,14,.86) 100%);
}

.location-cover-content {
  position: absolute;
  right: clamp(.7rem, 2vw, 1.4rem);
  left: clamp(.7rem, 2vw, 1.4rem);
  bottom: clamp(.7rem, 2vw, 1.2rem);
  padding: 0;
  color: #f8fbff;
  text-shadow: 0 8px 28px rgba(0,0,0,.75);
}

.location-cover-content .eyebrow {
  margin-bottom: .4rem;
}

.location-cover-content h1 {
  margin: 0 0 .35rem;
  font-size: clamp(1.25rem, 2.9vw, 2.05rem);
}

.location-cover-content p {
  margin: 0;
  color: rgba(243,247,255,.92);
}

.location-neighborhood-row {
  display: flex;
  gap: .6rem;
  overflow-x: auto;
  padding: .18rem 0 .2rem;
  scrollbar-width: thin;
}

.location-neighborhoods-section::before {
  display: none;
  background: none;
}

.location-page-clean .section::before,
.location-page-clean .location-neighborhoods-section::before,
.location-page-clean .location-posts-section::before,
.location-page-clean .location-services-section::before {
  display: none !important;
  background: none !important;
}

.location-page-clean .content-card,
.location-page-clean .archive-card,
.location-page-clean .post-card,
.location-page-clean .location-service-card,
.location-page-clean .location-cover-card,
.location-page-clean .location-cover-content,
.location-page-clean .location-pill-btn,
.location-page-clean .location-pill-btn:hover,
.location-page-clean .location-pill-btn.active,
.location-page-clean .section-title,
.location-page-clean .location-neighborhood-row {
  background: none !important;
}

.location-page-clean .content-card,
.location-page-clean .archive-card,
.location-page-clean .post-card,
.location-page-clean .location-service-card,
.location-page-clean .location-cover-card,
.location-page-clean .location-cover-content,
.location-page-clean .location-pill-btn,
.location-page-clean .section-title,
.location-page-clean .location-neighborhood-row {
  box-shadow: none !important;
}

.location-pill-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .54rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(217,170,91,.34);
  background: none !important;
  color: #f4dfb7;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.location-pill-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(217,170,91,.58);
  background: none !important;
}

.location-pill-btn.active {
  background: none !important;
  border-color: rgba(217,170,91,.7);
  color: #fff6e2;
}

.location-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.location-service-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 0;
  background: #0b0f1a;
  min-height: 170px;
  transition: transform .2s ease;
}

.location-service-card:hover {
  transform: translateY(-2px);
}

.location-service-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  max-height: 210px;
  object-fit: cover;
  display: block;
}

.location-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,8,14,.08) 45%, rgba(6,8,14,.86) 100%);
}

.location-service-title {
  position: absolute;
  right: .62rem;
  left: .62rem;
  bottom: .58rem;
  font-weight: 700;
  color: #f7f7f9;
  text-shadow: 0 8px 24px rgba(0,0,0,.75);
}

body:not([data-theme="dark"]) .location-pill-btn {
  color: #5a4220;
  border-color: rgba(201,149,62,.42);
  background: none !important;
}

body:not([data-theme="dark"]) .location-pill-btn.active {
  color: #3f2a0f;
}

@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
  }
}
.category-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(243,245,251,0.94));
  border: 1px solid rgba(25,35,52,0.08);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
body[data-theme="dark"] .category-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(9,11,20,0.78));
  border-color: rgba(255,255,255,0.08);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.24);
}
.category-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(130deg, rgba(217,170,91,0.22), rgba(255,255,255,0.04));
}
.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.category-card:hover .category-image {
  transform: scale(1.04);
}
.category-count-badge {
  position: absolute;
  top: .75rem;
  inset-inline-end: .75rem;
  z-index: 2;
}
.category-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: .6rem;
  padding: .95rem .85rem .85rem;
  background: linear-gradient(to top, rgba(5,8,15,0.9), rgba(5,8,15,0.18));
}

.category-title {
  color: #fff8ea;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-overlay .category-count {
  color: #f7e5bf;
  background: rgba(217,170,91,0.18);
  border-color: rgba(217,170,91,0.42);
}

.category-overlay .category-count .count-number {
  background: rgba(12,16,28,0.74);
  color: #ffe0a6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.category-body {
  padding: 1rem 1rem 0.65rem;
}
.category-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}
.category-pill {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(217,170,91,0.12);
  border: 1px solid rgba(217,170,91,0.3);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}
.category-count {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #5a4220;
  background: rgba(201,149,62,0.18);
  border: 1px solid rgba(201,149,62,0.35);
  border-radius: 999px;
  padding: 0.16rem 0.48rem;
}

.category-count .count-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: #7a4c11;
  font-size: 0.74rem;
  line-height: 1;
  padding: 0 .28rem;
}

.category-count .count-label {
  color: inherit;
}

body[data-theme="dark"] .category-count {
  color: #f0dcb3;
  background: rgba(217,170,91,0.2);
  border-color: rgba(217,170,91,0.4);
}

body[data-theme="dark"] .category-count .count-number {
  background: rgba(12,16,28,0.72);
  color: #ffd996;
}
.category-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}
.category-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.3em;
}
.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.5rem 1rem 1rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}
body[data-theme="dark"] .category-link {
  color: #f7e8ca;
}
.category-link:hover {
  color: var(--gold);
}
.post-card {
  overflow: hidden;
  padding: 0;
}
.post-media-link {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
}

.post-media-topline {
  position: absolute;
  top: .6rem;
  inset-inline: .6rem;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  pointer-events: none;
}

.post-date-chip,
.post-city-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: .18rem .52rem;
  border-radius: 999px;
  background: rgba(8,11,20,.72);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff8ea;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

.post-date-chip {
  background: rgba(217,170,91,.18);
  border-color: rgba(217,170,91,.42);
  color: #fff3dc;
}

.post-media-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: .9rem .88rem .82rem;
  background: linear-gradient(to top, rgba(5,8,15,0.9), rgba(5,8,15,0.08));
  pointer-events: none;
}

.post-media-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  color: #fff9ec;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.42;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.post-image-stamp {
  position: absolute;
  inset-inline-start: .52rem;
  bottom: .52rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 34%, 250px);
  height: clamp(34px, 8.8vw, 60px);
  border-radius: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  overflow: hidden;
  padding: 0;
}

.post-image-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: .92;
}
.post-media-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform .3s ease;
}
.post-card:hover .post-media-link img {
  transform: scale(1.04);
}
.post-title-link {
  color: var(--text);
  transition: color .2s ease;
}
.post-title-link:hover {
  color: var(--gold);
}
.post-card .card-body {
  padding: .8rem 1rem 1rem;
}
.home-post-card .post-media-overlay {
  display: none;
}
.home-post-card .post-title-link {
  margin: 0 0 .35rem;
  font-size: 1rem;
  line-height: 1.45;
}
.home-post-card .post-title-link a {
  color: var(--text);
  transition: color .2s ease;
}
.home-post-card .post-title-link a:hover {
  color: var(--gold);
}
.post-date-text {
  margin: 0 0 .35rem;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}
.post-card h3 {
  margin: 0 0 .45rem;
}
.post-card p {
  margin: 0;
  color: var(--muted);
}

.posts-group {
  margin-top: 1rem;
}

.posts-group:first-of-type {
  margin-top: 0;
}

.posts-group-title {
  margin: 0 0 .65rem;
  font-size: 1.05rem;
  color: var(--text);
}

.posts-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .7rem;
}

.posts-group-head .posts-group-title {
  margin: 0;
}

.posts-group-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .34rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(217,170,91,.36);
  background: rgba(217,170,91,.12);
  color: var(--gold);
  font-size: .84rem;
  font-weight: 700;
  white-space: nowrap;
}

.posts-group-all:hover {
  background: rgba(217,170,91,.2);
}

.posts-group-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 285px);
  gap: .85rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .35rem;
}

.posts-group-track .posts-group-item {
  scroll-snap-align: start;
}

.posts-group-track::-webkit-scrollbar {
  height: 7px;
}

.posts-group-track::-webkit-scrollbar-thumb {
  background: rgba(217,170,91,.34);
  border-radius: 999px;
}

@media (max-width: 720px) {
  .posts-group-track {
    grid-auto-columns: minmax(220px, 78vw);
  }
}

.posts-group-title a {
  color: inherit;
}

.posts-group-title a:hover {
  color: var(--gold);
}

.blog-page {
  padding: 1rem 0 2rem;
}

.blog-hero {
  margin-bottom: .95rem;
}

.blog-hero-copy {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.42)),
    radial-gradient(circle at 86% 18%, rgba(217,170,91,.2), transparent 38%);
  padding: 1.05rem 1.1rem;
}

.blog-hero-copy h1 {
  margin: 0 0 .35rem;
  font-size: clamp(1.45rem, 2.35vw, 2.2rem);
  line-height: 1.38;
}

.blog-hero-copy p {
  margin: 0;
  color: var(--muted);
}

.blog-categories-section {
  margin-bottom: 1rem;
}

.blog-categories-head {
  margin-bottom: .7rem;
}

.blog-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .7rem;
}

.blog-category-chip {
  display: grid;
  justify-items: center;
  gap: .3rem;
  padding: 0 0 .45rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--panel), var(--panel-strong));
  text-decoration: none;
  overflow: hidden;
}

.blog-category-image-wrap {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
  margin-top: .45rem;
}

.blog-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
}

.blog-category-chip:hover .blog-category-image {
  transform: scale(1.06);
}

.blog-category-name {
  color: var(--text);
  font-size: .88rem;
  line-height: 1.4;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-posts-section {
  margin-top: .5rem;
}

.blog-posts-head {
  margin-bottom: .7rem;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .72rem;
}

.blog-card {
  display: block;
  gap: 0;
  padding: 0;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  overflow: hidden;
}

.blog-media {
  display: block;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.blog-card:hover .blog-media img {
  transform: scale(1.03);
}

.blog-body {
  display: grid;
  align-content: start;
  gap: .34rem;
  min-width: 0;
  padding: .58rem .72rem .72rem;
}

.blog-meta {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
}

.blog-title {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.5;
}

.blog-excerpt {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-empty-state {
  text-align: center;
  padding: 1.25rem;
}

.blog-empty-state p {
  margin: 0;
  color: var(--muted);
}


.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: .9rem;
  align-items: start;
}

.archive-hero-copy {
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.archive-hero-copy h1 {
  margin: 0 0 .45rem;
  font-size: clamp(1.95rem, 4.4vw, 3.15rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.archive-hero-copy p {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.archive-hero-section::before {
  display: none;
  background: none;
}

.archive-hero-section {
  background: transparent;
}

.archive-subcategories-section {
  margin: .2rem auto .9rem;
}

.archive-subcategories-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(120px, 138px);
  gap: .62rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .4rem;
}

.archive-subcategories-track::-webkit-scrollbar {
  height: 7px;
}

.archive-subcategories-track::-webkit-scrollbar-thumb {
  background: rgba(217,170,91,.34);
  border-radius: 999px;
}

.archive-subcategory-chip {
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  padding: 0;
  border: none;
  background: transparent;
}

.archive-subcategory-image-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
  position: relative;
}

.archive-subcategory-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
}

.archive-subcategory-chip:hover .archive-subcategory-image {
  transform: scale(1.06);
}

.archive-subcategory-name {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: .28rem .3rem;
  color: #fff;
  font-size: .68rem;
  text-align: center;
  line-height: 1.35;
  background: linear-gradient(to top, rgba(6,8,14,.86), rgba(6,8,14,.26));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-layout .content-stack {
  display: block;
}

.archive-toolbar {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: .8rem;
}

.archive-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  font-size: .9rem;
  color: var(--muted);
}

.archive-toolbar select {
  min-width: 110px;
}

.archive-posts-grid {
  display: grid;
  gap: .75rem;
}

.archive-posts-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.archive-posts-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-empty-state {
  grid-column: 1 / -1;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.1rem;
}

.archive-empty-state p {
  margin: 0;
  font-size: 1.05rem;
}

.archive-pagination {
  margin-top: .95rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.archive-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 .58rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.04);
  font-weight: 700;
}

.archive-page-btn:hover {
  border-color: rgba(217,170,91,.45);
  color: var(--gold);
}

.archive-page-btn.is-active {
  background: rgba(217,170,91,.16);
  border-color: rgba(217,170,91,.45);
  color: var(--gold);
}

.archive-card {
  padding: 0;
  border-radius: 20px;
}

.archive-card .post-media-link {
  border-radius: 20px 20px 0 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.archive-card .post-media-link img {
  border-radius: inherit;
}

.archive-card .card-body {
  padding: .58rem .58rem .65rem;
}

.archive-card h3 {
  font-size: 1rem;
  line-height: 1.5;
}

.archive-card .meta {
  font-size: .82rem;
}

.archive-card .card-body p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-layout .side-panel {
  background: linear-gradient(155deg, var(--panel), var(--panel-strong));
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: .72rem;
  position: sticky;
  top: 1rem;
}

.archive-layout .side-panel h3 {
  margin: 0 0 .55rem;
  font-size: 1rem;
}

.archive-layout .list-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .38rem;
}

.archive-layout .list-links li a,
.archive-layout .list-links li span {
  display: block;
  border-radius: 10px;
  padding: .43rem .58rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  color: var(--text);
  text-decoration: none;
  font-size: .88rem;
}

.archive-layout .list-links li a:hover {
  border-color: rgba(217,170,91,.45);
  background: rgba(217,170,91,.12);
}

.archive-layout .popular-keywords-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.archive-layout .popular-keyword-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .45rem .85rem;
  border: 1px solid rgba(217,170,91,.28);
  background: rgba(217,170,91,.1);
  color: var(--text);
  text-decoration: none;
  font-size: .9rem;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.archive-layout .popular-keyword-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(217,170,91,.45);
  background: rgba(217,170,91,.18);
}

.archive-layout .popular-keyword-empty {
  color: var(--muted);
  font-size: .9rem;
}

body[data-theme="dark"] .header-more-link,
body[data-theme="dark"] .archive-layout .list-links li a,
body[data-theme="dark"] .archive-layout .list-links li span {
  background: rgba(255,255,255,.05);
  color: #e8ddc6;
}

body[data-theme="dark"] .blog-hero-copy {
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    radial-gradient(circle at 86% 18%, rgba(217,170,91,.2), transparent 38%);
}

@media (max-width: 1100px) {
  .archive-posts-grid.cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archive-posts-grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-layout {
    grid-template-columns: 1fr;
  }
  .archive-layout .side-panel {
    position: static;
  }

  .archive-subcategories-track {
    grid-auto-columns: minmax(112px, 130px);
  }

  .archive-subcategory-image-wrap {
    width: 74px;
    height: 74px;
  }

  .blog-categories-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .blog-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card {
    gap: 0;
  }

  .blog-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .blog-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-category-image-wrap {
    width: 72px;
    height: 72px;
    margin-top: .38rem;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
}

.single-post-page {
  padding: 1.1rem 0 2rem;
}

.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: .9rem;
  align-items: start;
}

.single-post-main-stack {
  display: grid;
  gap: .65rem;
}

.single-post-card {
  --single-card-pad: 1rem;
  background: linear-gradient(155deg, var(--panel-strong), var(--panel));
  border-radius: 20px;
  padding: 0 var(--single-card-pad) var(--single-card-pad);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  overflow: hidden;
}

.single-post-side-panel {
  position: sticky;
  top: 1rem;
}

.single-side-card {
  background: linear-gradient(155deg, var(--panel-strong), var(--panel));
  border-radius: 16px;
  padding: .75rem;
}

.single-side-card h3 {
  margin: 0 0 .55rem;
  font-size: 1rem;
}

.related-posts-list {
  display: grid;
  gap: .5rem;
}

.related-post-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: .55rem;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding: 0;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.related-post-item:hover {
  border-color: rgba(217,170,91,.38);
  background: rgba(217,170,91,.08);
  transform: translateY(-1px);
}

.related-post-item img {
  width: 84px;
  height: 66px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  grid-row: 1 / 3;
}

.related-post-title {
  color: #f4ebdc;
  font-size: .9rem;
  line-height: 1.45;
  padding-inline-end: .45rem;
  padding-block-start: .3rem;
}

.related-post-date {
  color: var(--muted);
  font-size: .78rem;
  padding-inline-end: .45rem;
  padding-block-end: .3rem;
}

.single-post-header {
  display: grid;
  gap: .55rem;
  margin-bottom: .8rem;
}

.single-post-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.45;
}

.single-post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
}

.single-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: .22rem .58rem;
  border-radius: 999px;
  border: 1px solid rgba(217,170,91,.38);
  background: rgba(217,170,91,.12);
  color: #f9dfae;
  font-size: .82rem;
}

.single-meta-pill.featured {
  background: rgba(127,211,130,.14);
  border-color: rgba(127,211,130,.42);
  color: #c5f0c8;
}

.single-meta-text,
.single-meta-dot {
  color: var(--muted);
  font-size: .86rem;
}

.single-post-cover {
  margin: 0 calc(var(--single-card-pad) * -1) .7rem;
  position: relative;
  overflow: hidden;
}

.single-post-cover img {
  width: 100%;
  max-height: 530px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.single-post-cover::after {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.single-post-tags {
  margin: .85rem 0 .25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
}

.single-tag {
  display: inline-flex;
  align-items: center;
  padding: .22rem .54rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: .82rem;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.single-tag:hover {
  border-color: rgba(217,170,91,.52);
  background: rgba(217,170,91,.12);
  color: #ffe9ba;
}

.single-post-bottom-tools {
  display: grid;
  gap: .75rem;
}

.single-tool-box {
  background: linear-gradient(155deg, var(--panel-strong), var(--panel));
  border-radius: 14px;
  padding: .65rem;
  border: 1px solid rgba(255,255,255,.08);
}

.single-post-bottom-tools .single-post-tags {
  margin: 0;
}

.share-box {
  margin-top: .2rem;
}

.single-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  padding: 0;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.share-btn:hover {
  border-color: rgba(217,170,91,.52);
  background: rgba(217,170,91,.12);
}

.share-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  color: currentColor;
}

.share-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.article-body {
  margin-top: .8rem;
  color: #eee6d8;
  line-height: 1.95;
  font-size: 1.02rem;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  margin: 1rem 0 .55rem;
  line-height: 1.5;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote {
  margin: .6rem 0;
}

.article-body a {
  color: #8ad7ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body blockquote {
  border-inline-start: 3px solid rgba(217,170,91,.5);
  padding: .35rem .8rem;
  color: #ded7c8;
  background: rgba(255,255,255,.03);
  border-radius: 10px;
}

.single-post-footer {
  margin-top: 1rem;
}
.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.feature-showcase-card {
  text-align: center;
  padding: .95rem .85rem .9rem;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  border-radius: 16px;
}

.features-grid {
  align-items: start;
}

.feature-image-wrap {
  display: block;
  width: 88px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto .62rem;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}

.feature-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.feature-image-link {
  text-decoration: none;
  color: inherit;
}

.feature-image-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: none;
  background: transparent;
}

.feature-showcase-card h3 {
  margin: 0 0 .22rem;
}

.feature-showcase-card p {
  margin: 0;
  font-size: .87rem;
}

.feature-image-caption {
  position: static;
  transform: none;
  padding: 0;
  background: transparent;
  text-align: center;
  overflow: hidden;
}

.feature-image-caption h3 {
  margin: 0 0 .18rem;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-image-caption p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.52;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.features-settings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-settings-item {
  padding: .9rem;
}

.feature-settings-preview {
  width: 100%;
  max-width: 170px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto .8rem;
}

.feature-settings-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-settings-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 50%;
}

.feature-settings-form-inline {
  gap: .45rem;
}

.feature-settings-form-inline label {
  font-size: .87rem;
  color: var(--muted);
}
.card, .project-card, .stats-box, .contact-form, .content-card {
  background: linear-gradient(155deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--line);
  padding: 1.1rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.card h3, .project-card h3 { margin-top: 0; margin-bottom: 0.6rem; }
.card p, .project-card p, .contact-info p { color: var(--muted); }

.content-card.post-card,
.content-card.archive-card,
.content-card.blog-card {
  padding: 0;
}

.thumb {
  height: 180px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(217,170,91,0.28), rgba(255,255,255,0.06));
}
.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.stats-box {
  display: grid;
  gap: 0.8rem;
}
.stat {
  border: none;
  background:
    radial-gradient(circle at 85% 15%, rgba(217,170,91,0.22), transparent 44%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(10,13,24,0.62));
  padding: 1rem 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 8px 18px rgba(0,0,0,0.14);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat strong { color: var(--gold); font-size: 1.2rem; }
.stat:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 14px 28px rgba(0,0,0,0.18);
}

.about-stats .stat strong {
  font-size: clamp(1.18rem, 2.2vw, 1.6rem);
  letter-spacing: .01em;
}

.about-stats .stat span {
  color: #d2ccbf;
  font-size: .95rem;
}

body:not([data-theme="dark"]) .carousel-slide::after {
  background: linear-gradient(to top, rgba(7,10,18,.62) 0%, rgba(7,10,18,.28) 32%, rgba(7,10,18,0) 66%);
}

body:not([data-theme="dark"]) .carousel-caption {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

body:not([data-theme="dark"]) .carousel-caption p {
  color: #d8d2c4;
}

body:not([data-theme="dark"]) .hero-fullscreen .carousel-caption h3 {
  color: #fff;
  text-shadow: 0 14px 40px rgba(0,0,0,0.42);
}

body:not([data-theme="dark"]) .hero-fullscreen .carousel-caption p {
  color: #f2e7cf;
  text-shadow: 0 6px 24px rgba(0,0,0,0.28);
}

body:not([data-theme="dark"]) .carousel-link {
  color: #3d290d;
  border-color: rgba(122,76,17,.24);
  box-shadow: 0 10px 24px rgba(122,76,17,.16), inset 0 0 0 1px rgba(255,255,255,.22);
}

body:not([data-theme="dark"]) .carousel-link:hover {
  color: #2f210b;
  box-shadow: 0 12px 28px rgba(122,76,17,.2), inset 0 0 0 1px rgba(255,255,255,.26);
}

body:not([data-theme="dark"]) .panel-card {
  background: linear-gradient(160deg, rgba(255,255,255,.95), rgba(243,245,251,.92));
  border: 1px solid rgba(25,35,52,.1);
}

body:not([data-theme="dark"]) .stat {
  background:
    radial-gradient(circle at 85% 15%, rgba(201,149,62,0.18), transparent 44%),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(243,245,251,0.9));
  box-shadow: inset 0 0 0 1px rgba(25,35,52,0.06), 0 8px 18px rgba(25,35,52,0.08);
}

body:not([data-theme="dark"]) .stat:hover {
  box-shadow: inset 0 0 0 1px rgba(25,35,52,0.08), 0 12px 24px rgba(25,35,52,0.1);
}

body:not([data-theme="dark"]) .about-stats .stat span {
  color: #475569;
}

body:not([data-theme="dark"]) .category-overlay,
body:not([data-theme="dark"]) .post-media-overlay {
  background: linear-gradient(to top, rgba(5,8,15,0.9), rgba(5,8,15,0.12));
}

body:not([data-theme="dark"]) .category-title,
body:not([data-theme="dark"]) .post-media-title {
  color: #fff8ea;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

body:not([data-theme="dark"]) .single-side-card {
  background: linear-gradient(160deg, rgba(255,255,255,.96), rgba(243,245,251,.92));
  border: 1px solid rgba(25,35,52,.1);
}

body:not([data-theme="dark"]) .related-post-item {
  background: rgba(255,255,255,.9);
  border-color: rgba(25,35,52,.08);
}

body:not([data-theme="dark"]) .related-post-item:hover {
  background: rgba(201,149,62,.1);
  border-color: rgba(201,149,62,.3);
}

body:not([data-theme="dark"]) .related-post-title {
  color: #1f2937;
}

body:not([data-theme="dark"]) .related-post-date {
  color: #5d6676;
}

body:not([data-theme="dark"]) .single-meta-pill {
  color: #7a4c11;
  background: rgba(201,149,62,.18);
  border-color: rgba(201,149,62,.35);
}

body:not([data-theme="dark"]) .single-meta-pill.featured {
  color: #155e35;
  background: rgba(127,211,130,.2);
  border-color: rgba(46,160,93,.35);
}

body:not([data-theme="dark"]) .single-tag,
body:not([data-theme="dark"]) .share-btn {
  border-color: rgba(25,35,52,.16);
  background: rgba(255,255,255,.75);
  color: #1f2937;
}

body:not([data-theme="dark"]) .single-tag:hover,
body:not([data-theme="dark"]) .share-btn:hover {
  border-color: rgba(201,149,62,.45);
  background: rgba(201,149,62,.16);
  color: #5a4220;
}

body:not([data-theme="dark"]) .single-tool-box {
  border-color: rgba(25,35,52,.12);
}

body:not([data-theme="dark"]) .article-body {
  color: #1f2937;
}

body:not([data-theme="dark"]) .article-body a {
  color: #0f5e9c;
}

body:not([data-theme="dark"]) .article-body blockquote {
  color: #334155;
  background: rgba(255,255,255,.74);
  border-inline-start-color: rgba(201,149,62,.45);
}

.categories-grid > *,
.posts-grid > *,
.features-grid > * {
  animation: cardReveal .7s ease both;
}

.site-header {
  animation: headerIn .55s ease both;
}

.section-title h2,
.about-text-panel h2 {
  animation: textRise .75s ease both;
}

.about-media-panel img {
  animation: imageFloatIn .9s ease both;
}
.categories-grid > *:nth-child(2),
.posts-grid > *:nth-child(2),
.features-grid > *:nth-child(2) {
  animation-delay: .08s;
}
.categories-grid > *:nth-child(3),
.posts-grid > *:nth-child(3),
.features-grid > *:nth-child(3) {
  animation-delay: .16s;
}
.categories-grid > *:nth-child(4),
.posts-grid > *:nth-child(4),
.features-grid > *:nth-child(4) {
  animation-delay: .24s;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes headerIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes textRise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes imageFloatIn {
  from { opacity: 0; transform: scale(1.02) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.contact-form {
  display: grid;
  gap: 0.65rem;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 16px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 1px solid var(--gold); }
.contact-form select {
  color: #fff;
}
.contact-form select option {
  color: #fff;
  background: #151821;
}
.post-editor-form {
  gap: 0;
}
.post-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: .6rem;
  align-items: start;
}
.post-main-column,
.post-side-column {
  display: grid;
  gap: .6rem;
}
.post-side-column {
  position: sticky;
  top: .65rem;
}
.post-side-column > .btn {
  width: 100%;
  text-align: center;
}
.post-side-box .btn {
  width: 100%;
}
.post-side-box {
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,.015);
  padding: .55rem;
  display: grid;
  gap: .4rem;
}
.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text);
}
.checkbox-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
}
.rich-editor {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  line-height: 1.8;
}
.rich-editor:empty:before {
  content: attr(data-placeholder);
  color: var(--muted);
}
.editor-toolbar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}
.editor-toolbar .btn.small {
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
}
.editor-dropdown {
  position: relative;
  display: inline-flex;
}

.editor-dropdown-menu {
  position: absolute;
  top: calc(100% + .3rem);
  right: 0;
  min-width: 170px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-strong);
  box-shadow: 0 12px 34px rgba(0,0,0,.26);
  padding: .35rem;
  display: grid;
  gap: .26rem;
  z-index: 40;
}

.editor-dropdown-menu[hidden] {
  display: none !important;
}

.editor-dropdown-item {
  width: 100%;
  text-align: right;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 9px;
  min-height: 32px;
  padding: .32rem .55rem;
  cursor: pointer;
}

.editor-dropdown-item:hover {
  border-color: rgba(217,170,91,.6);
  background: rgba(217,170,91,.16);
}

.editor-color-menu {
  min-width: 206px;
  grid-template-columns: repeat(6, 1fr);
}

.editor-color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.36);
  background: var(--swatch);
  cursor: pointer;
  padding: 0;
}

.editor-color-swatch:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.gallery-hover-actions {
  position: absolute;
  top: .45rem;
  inset-inline-end: .45rem;
  z-index: 9;
  display: inline-flex;
  gap: .3rem;
  align-items: center;
  padding: .28rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(10,16,25,.94);
  box-shadow: 0 12px 34px rgba(0,0,0,.34);
}

.gallery-hover-actions .btn.small {
  min-height: 30px;
  border-radius: 9px;
  padding: .22rem .54rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  color: #ffffff;
  border-color: rgba(255,255,255,.36);
  background: rgba(15,23,36,.9);
}

.gallery-hover-actions .btn.small:hover {
  color: #ffffff;
  border-color: rgba(217,170,91,.72);
  background: rgba(217,170,91,.22);
}

.rich-editor .article-gallery {
  position: relative;
}

@media (max-width: 760px) {
  .gallery-hover-actions {
    top: .32rem;
    inset-inline-end: .4rem;
    gap: .22rem;
    padding: .24rem;
  }

  .gallery-hover-actions .btn.small {
    min-height: 28px;
    padding: .18rem .46rem;
    font-size: .7rem;
  }
}

body:not([data-theme="dark"]) .gallery-hover-actions {
  border-color: rgba(15,23,36,.22);
  background: rgba(255,255,255,.95);
}

body:not([data-theme="dark"]) .gallery-hover-actions .btn.small {
  color: #0f172a;
  border-color: rgba(15,23,36,.25);
  background: rgba(241,245,249,.95);
}

body:not([data-theme="dark"]) .gallery-hover-actions .btn.small:hover {
  color: #0b1220;
  border-color: rgba(201,149,62,.62);
  background: rgba(201,149,62,.2);
}
.icon-btn {
  min-width: 40px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.icon-svg {
  width: 18px;
  height: 18px;
  display: block;
}
.editor-media-picker {
  position: relative;
  display: inline-flex;
}
.editor-media-trigger {
  position: relative;
}
.editor-media-menu {
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  min-width: 180px;
  padding: .45rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  display: grid;
  gap: .3rem;
  z-index: 35;
}
.editor-media-menu-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .55rem .7rem;
  border: 1px solid rgba(217,170,91,.28);
  border-radius: 11px;
  background: rgba(217,170,91,.08);
  color: var(--text);
  cursor: pointer;
  text-align: right;
}
.editor-media-menu-item:hover {
  background: rgba(217,170,91,.16);
  border-color: rgba(217,170,91,.52);
}
.editor-media-menu-icon {
  width: 1.25rem;
  text-align: center;
  color: var(--gold);
  flex: 0 0 auto;
}
.editor-toolbar {
  padding: 0.55rem;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.rich-editor {
  margin-top: 0.35rem;
}
.rich-editor:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(217,170,91,0.16);
}
.article-body img, .content-card img, .single-post img {
  max-width: 100%;
  margin: 0;
}
.article-figure {
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.article-figure img {
  width: min(100%, 820px);
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}

.article-figure-large {
  margin: 1rem auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.article-body > .article-figure-large + .article-figure-large {
  margin-top: 1.25rem;
}

.article-figure-large img {
  width: min(100%, 980px);
  border-radius: 0;
}

/* Legacy editor content may contain image-only p/div blocks without figure wrapper. */
.article-body p > img:only-child,
.article-body div > img:only-child {
  width: min(100%, 820px);
  display: block;
  margin: 0 auto;
  border-radius: 0;
}

.article-gallery {
  margin: .6rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .65rem;
  align-items: stretch;
}

.article-body .article-gallery {
  display: grid !important;
}

.article-gallery-item {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.article-image-stamp {
  inset-inline-start: .5rem;
  bottom: .5rem;
  width: clamp(118px, 34%, 250px);
  height: clamp(34px, 8.8vw, 60px);
  border-radius: 10px;
  pointer-events: none;
}

.article-image-stamp img.article-watermark-image {
  width: 80%;
  height: 80%;
  object-fit: contain;
  opacity: .9;
  border-radius: 0;
}

.article-image-watermark-wrap {
  position: relative;
  display: inline-block;
  width: min(100%, 820px);
  margin: 0 auto;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.article-image-watermark-wrap > img {
  width: 100%;
}

.single-post-cover > .article-image-stamp {
  z-index: 4;
}

.article-gallery-item > .article-image-stamp,
.article-figure > .article-image-stamp,
.article-image-watermark-wrap > .article-image-stamp {
  z-index: 2;
}

.article-gallery-item > figcaption,
.article-figure > figcaption {
  z-index: 3;
}

.article-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  transition: transform .25s ease;
}

.article-gallery-item:hover img {
  transform: scale(1.04);
}

.article-body .article-gallery img {
  display: block !important;
}

.article-gallery figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin: 0;
  padding: .5rem .65rem .42rem;
  font-size: .78rem;
  line-height: 1.4;
  color: #f8fafc;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.64) 58%, rgba(0,0,0,.76) 100%);
  backdrop-filter: blur(3px);
  border: none;
  border-radius: 0;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.article-figure figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin: 0;
  padding: .6rem .85rem .52rem;
  color: #f8fafc;
  font-size: .82rem;
  border-radius: 0;
  border: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.62) 60%, rgba(0,0,0,.76) 100%);
  backdrop-filter: blur(3px);
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.zoomable-image {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.image-lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: min(94vw, 1300px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  color: #fff;
  background: rgba(255,255,255,.16);
  cursor: pointer;
}

.lightbox-close {
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 56px;
  border-radius: 12px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-nav.prev {
  right: 20px;
}

.lightbox-nav.next {
  left: 20px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,.28);
}
.message-box {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  font-weight: 700;
  border-radius: 16px;
}
.message-box.success { background: rgba(34,197,94,0.12); color: #dff8e8; }
.message-box.error { background: rgba(248,113,113,0.12); color: #ffdfdf; }
.site-footer {
  margin-top: 2rem;
  padding: 2rem 0 2.4rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.03));
}

body:not([data-theme="dark"]) .site-footer {
  background:
    linear-gradient(180deg, rgba(201,149,62,.14), rgba(255,255,255,.82)),
    rgba(255,255,255,.92);
  border-top-color: rgba(25,35,52,.12);
}

body[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.03));
}

body:not([data-theme="dark"]) .site-header {
  background:
    var(--primary-gradient-soft),
    rgba(255,255,255,.93);
  border-bottom-color: rgba(25,35,52,.12);
  box-shadow: 0 8px 24px rgba(25,35,52,.05);
}

body:not([data-theme="dark"]) .site-footer {
  background:
    linear-gradient(180deg, rgba(201,149,62,.16), rgba(255,255,255,.84)),
    rgba(255,255,255,.92);
  border-top-color: rgba(25,35,52,.12);
  color: #5d6676;
}

body[data-theme="dark"] .site-header {
  background: var(--header-bg);
  box-shadow: none;
}

body[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.03));
}

body[data-theme="dark"] .site-header {
  background: var(--header-bg);
  box-shadow: none;
}

body[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.03));
}

body:not([data-theme="dark"]) .footer-brand h3,
body:not([data-theme="dark"]) .footer-links-block h4 {
  color: #1f2937;
}

body:not([data-theme="dark"]) .footer-links-block a {
  color: #002362;
}

body:not([data-theme="dark"]) .footer-links-block a:hover {
  color: var(--gold);
}

body:not([data-theme="dark"]) .footer-social-block .footer-social-list a {
  background: rgba(255,255,255,.92);
  border-color: rgba(25,35,52,.12);
}

body:not([data-theme="dark"]) .footer-bottom {
  border-top-color: rgba(25,35,52,.12);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.footer-brand h3 {
  margin: 0 0 .55rem;
  color: var(--text);
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: .55rem;
}

.footer-logo {
  max-height: 58px;
  max-width: 220px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  line-height: 1.85;
}

.footer-links-block h4 {
  margin: 0 0 .55rem;
  color: var(--text);
  font-size: 1rem;
}

.footer-links-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .42rem;
}

.footer-links-block a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-links-block a:hover {
  color: var(--text);
  transform: translateX(-3px);
}

.footer-social-block .footer-social-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 44px;
  gap: .5rem;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  padding-bottom: .2rem;
}

.footer-social-block .footer-social-list li {
  margin: 0;
}

.footer-social-block .footer-social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.footer-social-link .footer-icon-svg,
.contact-fab .footer-icon-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-social-block .footer-social-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(201,149,62,.38);
  background: rgba(201,149,62,.11);
}

.footer-empty {
  color: var(--muted);
  opacity: .82;
}

.footer-bottom {
  margin-top: 1.15rem;
  padding-top: .9rem;
  border-top: 1px dashed var(--line);
  text-align: center;
}

.footer-watermark {
  display: block;
  margin: 0.8rem auto 0;
  max-height: 80px;
  opacity: .7;
}

.contact-fab-group {
  position: fixed;
  inset-inline-end: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  gap: .55rem;
}

.contact-fab {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.contact-fab:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 42px rgba(0,0,0,.3);
}

.contact-fab-phone {
  background: linear-gradient(135deg, #0f4c81, #1d6fb8);
}

.contact-fab-whatsapp {
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.contact-fab span {
  letter-spacing: .01em;
}

@media (max-width: 820px) {
  .features-settings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand,
  .footer-links-block {
    text-align: center;
  }

  .footer-social-block .footer-social-list {
    display: grid;
    grid-template-columns: repeat(4, 44px);
    grid-auto-flow: row;
    gap: .45rem;
    justify-content: center;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .footer-links-block ul {
    justify-items: center;
  }

  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + .45rem);
    right: 0;
    left: 0;
    padding: .8rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(8, 11, 20, .96);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
    flex-direction: column;
    gap: .55rem;
    z-index: 30;
  }
  .main-nav a {
    display: block;
    padding: .55rem .65rem;
    border-radius: 10px;
    background: rgba(255,255,255,.03);
  }
  .header-categories {
    width: 100%;
    margin: .2rem 0;
    gap: .45rem;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .header-category-btn {
    width: 100%;
    flex: 1 1 100%;
    min-height: 42px;
  }
  .header-category-parent {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .header-parent-link {
    width: 100%;
    justify-content: center;
  }
  .header-submenu {
    position: static;
    min-width: 0;
    width: 100%;
    align-self: stretch;
    margin-top: .4rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: 0 16px 34px rgba(0,0,0,.18);
  }
  .main-nav .header-submenu-link {
    width: 100%;
    min-height: 42px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: .62rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(92, 154, 217, .38);
    background: rgba(92, 154, 217, .14);
    color: #dbeafe;
  }
  .main-nav .header-submenu-link:hover {
    color: #eff6ff;
    background: rgba(92, 154, 217, .22);
  }
  .header-home-btn {
    width: 100%;
  }
  .header-more-wrap {
    width: 100%;
  }
  .header-more-btn {
    width: 100%;
    min-height: 42px;
  }
  .header-more-menu {
    position: static;
    margin-top: .4rem;
    min-width: 0;
    box-shadow: none;
  }
  .header-more-menu .header-category-btn {
    width: 100%;
  }
  .header-tools {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    direction: ltr;
    gap: .45rem;
    margin-inline-start: 0;
  }
  .categories-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-home-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .container { padding-inline: 10px; }
  .carousel { min-height: 380px; }
  .carousel-caption { inset: auto .7rem .7rem .7rem; }
  .hero-fullscreen { --hero-slider-height: clamp(300px, 58vh, 500px); }
  .hero-carousel { min-height: var(--hero-slider-height); }
  .hero-fullscreen .carousel-caption { inset: auto 7% 10% 7%; }
  .single-post-page {
    padding: .8rem 0 1.6rem;
  }
  .archive-layout {
    grid-template-columns: 1fr;
  }
  .location-cover-card {
    min-height: 250px;
    border-radius: 0;
  }
  .location-cover-card img {
    min-height: 250px;
  }
  .location-cover-content {
    padding: 0;
  }
  .location-services-grid {
    grid-template-columns: 1fr;
  }
  .archive-posts-grid.cols-4,
  .archive-posts-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .archive-layout .side-panel {
    position: static;
  }
  .archive-card {
    padding: 0;
    border-radius: 14px;
  }
  .archive-card .post-media-link {
    border-radius: 0;
    aspect-ratio: 16 / 9;
  }
  .single-post-layout {
    grid-template-columns: 1fr;
  }
  .single-post-main-stack {
    gap: .55rem;
  }
  .single-post-side-panel {
    position: static;
  }
  .single-post-card {
    --single-card-pad: .75rem;
    padding: 0 .75rem .75rem;
    border-radius: 14px;
  }
  .single-side-card {
    border-radius: 14px;
    padding: .65rem;
  }
  .single-post-cover img {
    max-height: 320px;
    border-radius: 0;
  }
  .single-cover-meta-overlay {
    right: .7rem;
    left: .7rem;
    bottom: .65rem;
  }
  .article-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-gallery img {
    height: 138px;
  }
  .lightbox-nav {
    width: 40px;
    height: 50px;
    font-size: 30px;
  }
  .lightbox-nav.prev {
    right: 10px;
  }
  .lightbox-nav.next {
    left: 10px;
  }
  .related-post-item {
    grid-template-columns: 70px minmax(0, 1fr);
  }
  .related-post-item img {
    width: 70px;
    height: 56px;
  }
}

.admin-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 100vh;
}
.admin-sidebar {
  background: #1d2327;
  border-left: none;
  padding: .5rem 0;
  box-shadow: none;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  margin-bottom: .5rem;
}
.admin-menu-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .58rem .78rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
}
.admin-menu-bars {
  width: 18px;
  display: grid;
  gap: 3px;
}
.admin-menu-bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.admin-menu-label {
  font-weight: 700;
  font-size: .86rem;
}
.admin-sidebar h3 {
  margin: 0;
  padding: .85rem .9rem;
  color: #f6f7f7;
  font-size: .95rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-quick-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem;
  padding: .55rem .65rem .45rem;
}
.admin-quick-actions-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0;
}
.admin-user-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .68rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  min-height: 40px;
}
.admin-user-chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(217,170,91,.12);
  flex: 0 0 auto;
}
.admin-user-chip-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.admin-user-chip-name {
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .86rem;
  font-weight: 700;
}
.admin-action-link {
  min-height: 40px;
}
.admin-icon-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  flex: 0 0 auto;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.admin-icon-button svg {
  width: 18px;
  height: 18px;
  display: block;
}
.admin-icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(201,149,62,.45);
  background: rgba(201,149,62,.12);
}
.admin-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
  flex: 0 0 auto;
}
.admin-theme-toggle .theme-toggle-icon {
  font-size: 1.05rem;
  line-height: 1;
}
.admin-quick-actions .btn.small {
  width: 100%;
  text-align: center;
  border-radius: 9px;
  padding: .42rem .6rem;
  font-size: .78rem;
}
.admin-sidebar a {
  display: block;
  padding: .56rem .85rem;
  margin-bottom: 0;
  border-radius: 0;
  color: #c3c4c7;
  font-size: .86rem;
  line-height: 1.4;
  border-inline-start: 3px solid transparent;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.admin-sidebar a.active, .admin-sidebar a:hover {
  background: #2c3338;
  color: #fff;
  border-inline-start-color: var(--gold);
  transform: none;
}
.admin-nav-group {
  margin-bottom: .2rem;
}
.admin-nav-title {
  font-size: .7rem;
  font-weight: 700;
  color: #8c8f94;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: .55rem 0 .3rem;
  padding: 0 .9rem;
}
.admin-content {
  padding: .9rem;
}

body:not([data-theme="dark"]) .admin-sidebar {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,245,251,0.96));
  border-inline-end: 1px solid var(--line);
}

body:not([data-theme="dark"]) .admin-sidebar h3 {
  color: #1f2937;
  border-bottom-color: rgba(25,35,52,.12);
}

body:not([data-theme="dark"]) .admin-nav-title {
  color: #6b7280;
}

body:not([data-theme="dark"]) .admin-sidebar a {
  color: #334155;
}

body:not([data-theme="dark"]) .admin-sidebar a.active,
body:not([data-theme="dark"]) .admin-sidebar a:hover {
  background: rgba(201,149,62,.14);
  color: #1f2937;
}

body:not([data-theme="dark"]) .admin-card {
  background: linear-gradient(155deg, var(--panel-strong), var(--panel));
  border-color: rgba(25,35,52,.12);
}

body:not([data-theme="dark"]) .admin-tabs {
  background: rgba(25,35,52,.04);
  border-color: rgba(25,35,52,.12);
}

body:not([data-theme="dark"]) .admin-tab-btn.active {
  color: #50330b;
}

body:not([data-theme="dark"]) .slider-mode-option,
body:not([data-theme="dark"]) .settings-card,
body:not([data-theme="dark"]) .about-settings-form .settings-card,
body:not([data-theme="dark"]) .media-library-item,
body:not([data-theme="dark"]) .admin-table,
body:not([data-theme="dark"]) .featured-image-preview {
  background: rgba(255,255,255,.72);
  border-color: rgba(25,35,52,.12);
}

body:not([data-theme="dark"]) .slider-mode-option strong {
  color: #1f2937;
}

body:not([data-theme="dark"]) .table-responsive {
  border-color: rgba(25,35,52,.12);
}

body:not([data-theme="dark"]) .admin-table th {
  background: rgba(201,149,62,.14);
  color: #7a4c11;
}

body:not([data-theme="dark"]) .settings-nav a {
  background: rgba(25,35,52,.04);
  color: #475569;
}

body:not([data-theme="dark"]) .settings-nav a.active,
body:not([data-theme="dark"]) .settings-nav a:hover {
  background: rgba(201,149,62,.16);
  color: #1f2937;
}

body:not([data-theme="dark"]) .settings-field input,
body:not([data-theme="dark"]) .settings-field textarea,
body:not([data-theme="dark"]) .contact-form input,
body:not([data-theme="dark"]) .contact-form textarea,
body:not([data-theme="dark"]) .contact-form select {
  background: rgba(255,255,255,.92);
  border-color: rgba(25,35,52,.18);
  color: #1f2937;
}

body:not([data-theme="dark"]) .about-content-text strong,
body:not([data-theme="dark"]) .about-content-text b {
  color: #7a4c11;
}

body:not([data-theme="dark"]) .about-content-text em,
body:not([data-theme="dark"]) .about-content-text i {
  color: #334155;
}

body:not([data-theme="dark"]) .about-content-text a {
  color: #0f5e9c;
}

body:not([data-theme="dark"]) .keyword-tag,
body:not([data-theme="dark"]) .keyword-chip {
  color: #5a4220;
  background: rgba(201,149,62,.18);
  border-color: rgba(201,149,62,.35);
}

body:not([data-theme="dark"]) .selected-main-image {
  border-color: rgba(25,35,52,.2);
}

body:not([data-theme="dark"]) .message-box.success {
  color: #165b2f;
  background: rgba(34,197,94,0.15);
}

body:not([data-theme="dark"]) .message-box.error {
  color: #7f1d1d;
  background: rgba(248,113,113,0.16);
}

body:not([data-theme="dark"]) .btn.btn-danger {
  color: #8f1f1f;
  background: rgba(239,68,68,0.16);
  border-color: rgba(239,68,68,0.35);
}
.admin-panel-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: .65rem;
}
.admin-quick-actions-top {
  display: inline-flex;
  gap: .45rem;
  padding: 0;
}
.admin-quick-actions-top .btn.small {
  width: auto;
  border-radius: 10px;
  padding: .42rem .72rem;
  font-size: .8rem;
}
.admin-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(10,13,24,0.94));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: .9rem;
  margin-bottom: .7rem;
  box-shadow: none;
}
.admin-card .admin-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
.admin-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.admin-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.meta-text {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.location-checklist {
  display: grid;
  gap: .45rem;
  max-height: 180px;
  overflow: auto;
  padding: .55rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
}

.location-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .88rem;
}

body:not([data-theme="dark"]) .location-checklist {
  border-color: rgba(25,35,52,.12);
  background: rgba(255,255,255,.72);
}

.admin-tabs {
  display: inline-flex;
  gap: .45rem;
  padding: .28rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: .65rem;
}

.admin-tab-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: .55rem .95rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.admin-tab-btn.active {
  background: linear-gradient(135deg, rgba(217,170,91,.18), rgba(138,90,28,.16));
  color: #fff2d6;
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.active {
  display: block;
}

.slider-mode-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: .75rem;
}

.slider-mode-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: .65rem;
  align-items: start;
  padding: .85rem .9rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
}

.slider-mode-option strong {
  display: block;
  margin-bottom: .2rem;
  color: #f9edd6;
}

.slider-mode-option p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.slider-mode-option.selected {
  border-color: rgba(217,170,91,.45);
  background: linear-gradient(140deg, rgba(217,170,91,.12), rgba(255,255,255,.03));
}
.table-responsive {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  direction: ltr;
}
.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255,255,255,0.02);
  direction: rtl;
}
.admin-table th,
.admin-table td {
  padding: 0.65rem 0.7rem;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: top;
}
.admin-table-thumb {
  width: 72px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
}
.admin-table-thumb-empty {
  display: inline-block;
  color: var(--muted);
  font-size: 0.88rem;
}
.admin-table th {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(217,170,91,0.06);
}
.admin-table tr:last-child td {
  border-bottom: none;
}
.table-card {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.action-buttons {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: nowrap;
}
.action-buttons form {
  margin: 0;
}
.action-buttons .btn {
  white-space: nowrap;
}
.btn.btn-danger {
  background: rgba(239,68,68,0.18);
  border-color: rgba(239,68,68,0.4);
  color: #ffdcdc;
}
.btn.btn-danger:hover {
  background: rgba(239,68,68,0.28);
}
.settings-grid { display: grid; gap: 1rem; }
.settings-nav { display: grid; gap: 0.4rem; }
.settings-nav a { display: block; padding: 0.75rem 0.9rem; border-radius: 12px; background: rgba(255,255,255,0.04); color: var(--muted); }
.settings-nav a.active, .settings-nav a:hover { background: rgba(217,170,91,0.14); color: var(--text); }
.settings-content section { margin-bottom: 1rem; }
.settings-content h3 { margin-bottom: 0.6rem; color: var(--gold); }
.settings-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: .75rem;
  display: grid;
  gap: 0.65rem;
  box-shadow: none;
}
.settings-field { display: grid; gap: 0.35rem; }
.settings-field label {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}
.settings-field input,
.settings-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0.65rem 0.75rem;
  border-radius: 9px;
}
.settings-field input:focus,
.settings-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(217,170,91,0.16);
}

.posts-settings-card {
  position: relative;
  overflow: hidden;
}

.posts-settings-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(201,149,62,0), rgba(201,149,62,.9), rgba(201,149,62,0));
}

.posts-settings-form {
  margin-top: .65rem;
  gap: .75rem;
}

.posts-settings-block {
  display: grid;
  gap: .35rem;
  padding: .05rem 0;
}

.posts-settings-block + .posts-settings-block {
  border-top: 1px dashed rgba(255,255,255,.16);
  padding-top: .65rem;
}

.posts-settings-title {
  margin: 0 0 .1rem;
  color: var(--gold);
  font-size: .96rem;
}

.posts-settings-row {
  display: flex;
  align-items: center;
  gap: .42rem;
  padding: .46rem .1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s ease;
}

.posts-settings-row:hover {
  background: rgba(217,170,91,.08);
}

.posts-settings-row input {
  margin: 0;
  inline-size: 1.18rem;
  block-size: 1.18rem;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.posts-settings-row input[type="radio"] {
  inline-size: 1.2rem;
  block-size: 1.2rem;
}

.posts-settings-text strong {
  display: block;
  color: var(--text);
  margin-bottom: .04rem;
  line-height: 1.35;
}

.posts-settings-text small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
}

.posts-settings-upload {
  display: grid;
  gap: .35rem;
  margin-top: .2rem;
}

.posts-settings-upload label,
.posts-settings-inline-field label {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 700;
}

.posts-settings-stamp-preview {
  width: min(170px, 100%);
  max-height: 76px;
  object-fit: contain;
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 10px;
  padding: .35rem;
}

.posts-settings-inline-field {
  display: grid;
  gap: .35rem;
  margin-top: .15rem;
}

.posts-settings-inline-field select {
  width: min(190px, 100%);
  padding: .56rem .65rem;
  border-radius: 10px;
}

.posts-settings-form .btn.btn-gold {
  margin-top: .25rem;
}

body:not([data-theme="dark"]) .posts-settings-block + .posts-settings-block {
  border-top-color: rgba(25,35,52,.18);
}

body:not([data-theme="dark"]) .posts-settings-row:hover {
  background: rgba(201,149,62,.12);
}

body:not([data-theme="dark"]) .posts-settings-stamp-preview {
  background: rgba(255,255,255,.78);
  border-color: rgba(25,35,52,.2);
}

.design-palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  gap: .45rem;
}

.design-palette-swatch {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  min-height: 40px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--palette-a), var(--palette-b));
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.design-palette-swatch:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0,0,0,.18);
}

.design-palette-swatch.active {
  border-color: rgba(201,149,62,.92);
  box-shadow: 0 0 0 2px rgba(201,149,62,.28);
}

.design-palette-swatch.custom {
  background:
    linear-gradient(45deg, rgba(255,255,255,.22) 25%, transparent 25%) 0 0 / 12px 12px,
    linear-gradient(-45deg, rgba(255,255,255,.22) 25%, transparent 25%) 0 0 / 12px 12px,
    var(--primary-gradient);
}

.design-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
  gap: .45rem;
  margin-top: .2rem;
}

.design-color-swatch {
  position: relative;
  width: 100%;
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.22);
  cursor: pointer;
  background: var(--color-chip);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.design-color-swatch:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}

.design-color-swatch.active {
  transform: scale(1.06);
  border-color: rgba(217,170,91,.94);
  box-shadow: 0 0 0 2px rgba(217,170,91,.3), 0 6px 14px rgba(0,0,0,.2);
}

.design-color-swatch.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 7px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: translate(-50%, -60%) rotate(-45deg);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
}

.design-selected-preview {
  margin-top: .75rem;
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

.design-selected-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  color: var(--ink-dim);
}

.design-selected-chip {
  width: 40px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: var(--selected-color);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}

body:not([data-theme="dark"]) .design-palette-swatch {
  border-color: rgba(25,35,52,.2);
}

body:not([data-theme="dark"]) .design-color-swatch {
  border-color: rgba(25,35,52,.24);
}

body:not([data-theme="dark"]) .design-selected-chip {
  border-color: rgba(25,35,52,.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}

.about-settings-form {
  display: grid;
  gap: 1rem;
}

.about-settings-section {
  margin: 0;
}

.about-settings-section h3 {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 1.02rem;
}

.about-settings-form .settings-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.about-editor-tools {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
}

.about-char-counter {
  margin-inline-start: auto;
  color: var(--muted);
  font-size: .88rem;
}

.about-editor-hint {
  color: var(--muted);
  font-size: .85rem;
}

.about-content-text {
  color: var(--muted);
  line-height: 1.9;
}

.about-content-text strong,
.about-content-text b {
  color: #ffe1a6;
  font-weight: 800;
}

.about-content-text em,
.about-content-text i {
  color: #cdd8ff;
  font-style: italic;
}

.about-content-text a {
  color: #7fd7ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.about-content-text a:hover {
  color: #b6e9ff;
}

/* Strong override for about visual blocks so generic .content-card styles do not bring frames back. */
.content-card.about-text-panel,
.content-card.about-media-panel {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.about-image-box.about-media-panel {
  padding: 0;
}

.about-layout .about-media-panel,
.about-home-grid .about-media-panel {
  height: 100%;
}

.about-layout .about-media-panel img,
.about-home-grid .about-media-panel img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  margin: 0 !important;
  border-radius: 22px;
}

.about-image-preview {
  width: min(320px, 100%);
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
}

.about-stats-fields-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-settings-submit {
  justify-self: start;
}

.seo-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: .15rem 0 .2rem;
}

.selected-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  min-height: 34px;
  padding: .35rem .15rem;
}

.keyword-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .45rem;
  align-items: center;
}

.keyword-input-row .btn.small {
  border-radius: 12px;
  padding: .62rem .9rem;
}

.keyword-tag {
  border: 1px solid rgba(217,170,91,.4);
  background: rgba(217,170,91,.16);
  color: #ffebc6;
  border-radius: 999px;
  padding: .24rem .58rem;
  cursor: pointer;
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: .38rem;
}

.keyword-tag:hover {
  background: rgba(217,170,91,.24);
}

.featured-image-preview {
  min-height: 120px;
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .45rem;
  color: var(--muted);
  text-align: center;
  background: rgba(255,255,255,.01);
}

.featured-image-preview img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.keyword-chip {
  border: 1px solid rgba(217,170,91,.35);
  background: rgba(217,170,91,.11);
  color: #f7e2b8;
  border-radius: 999px;
  padding: .25rem .62rem;
  cursor: pointer;
  font-size: .84rem;
}

.keyword-chip:hover {
  background: rgba(217,170,91,.2);
}

.wp-tags-box {
  display: grid;
  gap: .45rem;
}

.wp-tags-box input[type="text"] {
  min-height: 40px;
}

.selected-keywords:empty::before {
  content: 'لا توجد كلمات دلالية بعد';
  color: var(--muted);
  font-size: .88rem;
}

.selected-keywords .keyword-tag {
  border-radius: 999px;
}

.selected-main-image {
  color: var(--muted);
  font-size: .88rem;
  padding: .35rem .55rem;
  border-radius: 8px;
  border: 1px dashed rgba(255,255,255,.18);
}

.media-library-wrap {
  display: grid;
  gap: .45rem;
}

.media-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .6rem;
}

.media-library-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: .45rem;
  background: rgba(255,255,255,.02);
  min-width: 0;
  overflow: hidden;
}

.media-library-item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: .45rem;
}

.media-library-actions {
  display: grid;
  gap: .35rem;
}

.media-library-actions .btn.small {
  width: 100%;
  justify-content: center;
}

.media-library-item .media-meta-form {
  width: 100%;
  margin-top: .4rem;
}

.media-library-item .media-title-input {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: .52rem .62rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: .88rem;
  line-height: 1.25;
  box-sizing: border-box;
}

.media-library-item .media-title-input:focus {
  outline: none;
  border-color: rgba(217,170,91,.65);
  box-shadow: 0 0 0 2px rgba(217,170,91,.14);
}

.gallery-select-item {
  position: relative;
}

.media-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.media-pagination-link,
.media-pagination-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: .88rem;
}

.media-pagination-link:hover {
  border-color: rgba(217,170,91,.55);
  background: rgba(217,170,91,.12);
}

.media-pagination-link.is-current {
  border-color: rgba(217,170,91,.7);
  background: linear-gradient(135deg, rgba(217,170,91,.18), rgba(138,90,28,.12));
  color: var(--gold);
  font-weight: 700;
}

.media-pagination-status {
  color: var(--muted);
}

body:not([data-theme="dark"]) .media-pagination-link,
body:not([data-theme="dark"]) .media-pagination-status {
  border-color: rgba(25,35,52,.14);
  background: rgba(255,255,255,.76);
}

.gallery-select-item .media-select-badge {
  position: absolute;
  top: .55rem;
  inset-inline-start: .55rem;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(11, 15, 24, 0.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .16s ease, transform .16s ease, background .16s ease, border-color .16s ease;
  pointer-events: none;
  z-index: 3;
}

.gallery-select-item.selected .media-select-badge {
  opacity: 1;
  transform: scale(1);
  background: linear-gradient(135deg, rgba(217,170,91,.98), rgba(138,90,28,.96));
  border-color: rgba(255,255,255,.5);
}

.gallery-select-item.selected {
  border-color: rgba(217,170,91,.75);
  box-shadow: 0 0 0 2px rgba(217,170,91,.18), 0 16px 36px rgba(0,0,0,.18);
}

.gallery-select-item.selected img {
  filter: saturate(1.03) brightness(.92);
}

.media-check {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--text);
  font-size: .9rem;
  margin-bottom: .45rem;
}

@media (max-width: 760px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar {
    display: none;
    position: fixed;
    inset-inline: .55rem;
    top: 3.55rem;
    z-index: 120;
    height: auto;
    max-height: calc(100vh - 4.2rem);
    padding: .45rem .55rem;
    border-bottom: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    white-space: normal;
    box-shadow: 0 20px 46px rgba(0,0,0,.34);
  }
  body.admin-sidebar-open { overflow: hidden; }
  body.admin-sidebar-open .admin-sidebar { display: block; }
  .admin-sidebar h3 {
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: .35rem .45rem .55rem;
    font-size: .88rem;
  }
  .admin-panel-header {
    margin-bottom: .5rem;
    position: sticky;
    top: 0;
    z-index: 130;
    padding: .35rem 0 .45rem;
    background: linear-gradient(180deg, rgba(11,15,24,.98), rgba(11,15,24,.9));
    backdrop-filter: blur(10px);
    flex-direction: row;
  }
  .admin-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    order: 3;
  }
  .admin-theme-toggle {
    order: 2;
  }
  .admin-icon-button {
    width: 38px;
    height: 38px;
  }
  .admin-quick-actions-top {
    width: auto;
    justify-content: flex-end;
    gap: .35rem;
    order: 1;
  }
  .admin-quick-actions-top .btn.small {
    flex: 1 1 0;
    white-space: nowrap;
    border-radius: 999px;
    padding: .34rem .66rem;
    font-size: .76rem;
  }
  .admin-user-chip {
    padding: .32rem .56rem;
    min-height: 36px;
  }
  .admin-user-chip-name {
    max-width: 5.5rem;
    font-size: .8rem;
  }
  .admin-sidebar-open .admin-sidebar {
    height: calc(100vh - 4.2rem);
    max-height: none;
  }
  .admin-nav-group {
    display: grid;
    gap: .28rem;
    margin: .35rem 0 0;
  }
  .admin-nav-title {
    margin: .05rem 0 .05rem;
    padding: 0 .25rem;
    font-size: .64rem;
  }
  .admin-sidebar a {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-inline-start: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    padding: .52rem .7rem;
    font-size: .82rem;
    line-height: 1.35;
    background: rgba(255,255,255,.04);
  }
  .admin-sidebar a.active,
  .admin-sidebar a:hover {
    border-color: rgba(217,170,91,.7);
    background: rgba(217,170,91,.15);
  }
  .admin-content { padding: .6rem; }
  .admin-card {
    padding: .65rem;
    border-radius: 10px;
    margin-bottom: .55rem;
  }
  .admin-head-row { gap: .55rem; }
  .admin-tabs {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  .admin-tab-btn { padding: .45rem .7rem; }
  .settings-card { padding: .6rem; }
  .settings-field input,
  .settings-field textarea { padding: .58rem .66rem; }
  .settings-grid { grid-template-columns: 1fr; }
  .admin-table { min-width: 640px; }
  .action-buttons .btn.small { padding: 0.45rem 0.75rem; }
  .about-stats-fields-grid { grid-template-columns: 1fr; }
  .media-library-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-editor-layout {
    grid-template-columns: 1fr;
  }
  .post-side-column {
    position: static;
  }
}

@media (max-width: 760px) {
  body:not([data-theme="dark"]) .admin-sidebar {
    border-bottom-color: rgba(25,35,52,.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,245,251,0.96));
  }

  body:not([data-theme="dark"]) .admin-sidebar a {
    border-color: rgba(25,35,52,.2);
    border-inline-start-color: rgba(25,35,52,.2);
    background: rgba(255,255,255,.86);
    color: #334155;
  }

  body:not([data-theme="dark"]) .admin-sidebar a.active,
  body:not([data-theme="dark"]) .admin-sidebar a:hover {
    border-color: rgba(201,149,62,.55);
    background: rgba(201,149,62,.16);
    color: #1f2937;
  }
}
