/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.mobile-nav-inner {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  padding: 80px 28px 40px;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.mobile-nav-inner ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-inner ul a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  color: var(--dark);
  transition: var(--transition);
}
.mobile-nav-inner ul a:hover { background: var(--cream); color: var(--gold); }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1ea952;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: white;
}

.whatsapp-float-icon { font-size: 20px; }

@media (max-width: 480px) {
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .whatsapp-float-label { display: none; }
}

/* Post content typography */
.post-content h2 { font-size: 26px; margin: 36px 0 16px; }
.post-content h3 { font-size: 20px; margin: 28px 0 12px; }
.post-content p  { margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--dark-soft);
}
.post-content img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
}

/* Pagination */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  margin: 0 3px;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.page-numbers.dots { border: none; }
a.prev.page-numbers, a.next.page-numbers {
  width: auto;
  padding: 0 16px;
  border-radius: 50px;
}
