/* ==========================================
   MOBILE MENU — Responsive additions
   ========================================== */

/* Hamburger Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
  transition: background .2s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 47, 134, .08);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 4px;
  transition: transform .3s ease, opacity .3s ease;
}

/* Mobile Navigation Dropdown */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 20px;
  background: rgba(255, 250, 253, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  border-radius: 14px;
  transition: background .2s ease, color .2s ease;
}

.mobile-menu a:hover {
  background: rgba(255, 47, 134, .07);
  color: var(--hot);
}

.mobile-menu a.is-current,
.mobile-menu .current-menu-item > a,
.mobile-menu .current_page_item > a {
  background: rgba(255, 47, 134, .1);
  color: var(--hot);
}

.mobile-menu .btn {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

/* Show mobile menu when toggled */
.mobile-menu.is-open {
  display: flex;
}

/* Show hamburger on small screens */
@media (max-width: 980px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav .btn {
    display: none; /* Ẩn CTA button trong nav — chỉ dùng trong mobile menu */
  }
}

/* ==========================================
   ENTRY CONTENT (Bài viết đơn)
   ========================================== */
.entry-content h2,
.entry-content h3 {
  color: var(--ink);
  margin: 32px 0 14px;
}

.entry-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
}

.entry-content h3 {
  font-size: clamp(22px, 2.8vw, 30px);
}

.entry-content p {
  margin: 0 0 18px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.85;
}

.entry-content a {
  color: var(--hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content img {
  border-radius: 18px;
  margin: 20px 0;
}

.entry-content blockquote {
  border-left: 4px solid var(--hot);
  padding: 14px 24px;
  margin: 24px 0;
  background: rgba(255, 47, 134, .06);
  border-radius: 0 16px 16px 0;
  font-style: italic;
  color: var(--text);
}

/* ==========================================
   PAGINATION
   ========================================== */
.page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  transition: .2s ease;
}

.page-numbers a:hover,
.page-numbers .current {
  background: var(--hot);
  color: white;
  border-color: var(--hot);
}
