/*
Theme Name: Wedroz Theme
Theme URI: https://wedroz.com
Author: Wedroz Development Team
Author URI: https://wedroz.com
Description: A modern, high-performance magazine-style WordPress theme for Wedroz wedding planning platform. Features pink/magenta brand identity, dark navy footer, magazine grid blog layout, single post template, Core Web Vitals optimizations, and native JSON-LD SEO schema.
Version: 1.1.0
Text Domain: wedroz
Tags: blog, e-commerce, custom-menu, featured-images, responsive-layout, theme-options
*/

/* ==========================================================================
   1. DESIGN SYSTEM TOKENS & RESET
   ========================================================================== */
:root {
  --wedroz-pink: #E6007E;
  --wedroz-pink-dark: #C2185B;
  --wedroz-pink-light: #FFF0F6;
  --wedroz-pink-hover: #D00070;
  --wedroz-navy: #0B1830;
  --wedroz-navy-light: #162846;
  --wedroz-navy-muted: #2A3C5A;
  --wedroz-gold: #FFB800;
  --wedroz-gold-hover: #E0A200;

  --wedroz-bg: #FFFFFF;
  --wedroz-surface: #F8F9FA;
  --wedroz-surface-hover: #F1F3F5;
  --wedroz-border: #E9ECEF;
  --wedroz-border-dark: #DEE2E6;

  --wedroz-text: #1E293B;
  --wedroz-text-muted: #475569;
  --wedroz-text-light: #64748B;
  --wedroz-text-white: #FFFFFF;

  --wedroz-radius-sm: 8px;
  --wedroz-radius-md: 12px;
  --wedroz-radius-lg: 16px;
  --wedroz-radius-xl: 24px;
  --wedroz-radius-pill: 9999px;

  --wedroz-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --wedroz-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --wedroz-shadow-lg: 0 16px 32px rgba(11, 24, 48, 0.14);
  --wedroz-shadow-pink: 0 8px 24px rgba(230, 0, 126, 0.2);

  --wedroz-font-sans: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --wedroz-header-height: 64px;
  --wedroz-header-height-mobile: 56px;
  --wedroz-max-width: 1280px;
}

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

html {
  font-family: var(--wedroz-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--wedroz-text);
  background-color: var(--wedroz-bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--wedroz-pink);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--wedroz-pink-dark);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.wedroz-container {
  width: 100%;
  max-width: var(--wedroz-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ==========================================================================
   2. GLOBAL HEADER (Exact Wedroz UI Design System)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  background-color: #E31B6D;
  color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.site-header .wedroz-container {
  height: 100%;
  max-width: 1440px;
  padding-left: 0.75rem;
  padding-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.site-logo .logo-img {
  width: 45px !important;
  height: 45px !important;
  max-width: 45px !important;
  max-height: 45px !important;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  display: block;
  transition: transform 0.25s ease;
}

.site-logo:hover .logo-img {
  transform: scale(1.08);
}

.site-logo .logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.95rem;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  line-height: 1;
}

.city-selector-wrapper {
  position: relative;
}

.city-selector-btn {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.city-selector-btn:hover {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Navigation Hover Dropdowns & SVG Chevron Transitions */
.has-dropdown {
  position: relative;
}

.nav-chevron {
  transition: transform 0.25s ease;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

.city-dropdown.active,
.primary-menu .has-dropdown:hover .nav-dropdown {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

/* 1. City Dropdown Specific (Exact Matching UI, OnClick Only) */
.city-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #FFFFFF;
  width: 250px;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(11, 24, 48, 0.18);
  padding: 0;
  display: none;
  z-index: 1020;
  border: 1px solid rgba(11, 24, 48, 0.08);
  overflow: hidden;
}

.city-dropdown-header {
  padding: 1rem 1.25rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #8A94A6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  border-bottom: 1px solid #F0F2F5;
  text-align: left;
}

.city-item {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.15rem !important;
  color: #0B1830 !important;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  border-bottom: 1px solid #F0F2F5;
  transition: all 0.15s ease;
}

.city-item:last-child {
  border-bottom: none;
}

.city-item:hover {
  background: rgba(222, 33, 115, 0.05) !important;
  color: #DE2173 !important;
}

.city-item.selected span {
  font-weight: 600;
  color: #0B1830;
}

.state-accordion-group {
  border-bottom: 1px solid #F0F2F5;
}

.state-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.15rem;
  background: transparent;
  border: none;
  color: #0B1830;
  font-size: 0.86rem;
  font-weight: 700 !important;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: all 0.15s ease;
}

.state-accordion-btn:hover {
  background: rgba(222, 33, 115, 0.05);
  color: #DE2173;
}

.accordion-chevron {
  transition: transform 0.25s ease;
}

.state-accordion-btn.active .accordion-chevron {
  transform: rotate(180deg);
}

/* Hide primary cities when Rajasthan accordion is open to maintain fixed dropdown height */
.city-dropdown.rajasthan-open .city-item-primary {
  display: none !important;
}

.state-cities-sub {
  display: none;
  background: #FAFBFD;
  padding: 0.25rem 0 0.5rem;
  border-top: 1px dashed #E2E8F0;
  max-height: 320px;
  overflow-y: auto;
}

.state-cities-sub.active {
  display: block;
}

.state-cities-sub a {
  display: block;
  padding: 0.45rem 1.15rem 0.45rem 1.85rem !important;
  color: #525D6E !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  font-family: 'Open Sans', sans-serif !important;
  text-decoration: none;
  border-bottom: none !important;
}

.state-cities-sub a:hover {
  color: #DE2173 !important;
  background: rgba(222, 33, 115, 0.05) !important;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #FFFFFF;
  color: var(--wedroz-navy);
  border-radius: var(--wedroz-radius-md);
  box-shadow: var(--wedroz-shadow-lg);
  min-width: 210px;
  padding: 0.5rem 0;
  list-style: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 1020;
  border: 1px solid var(--wedroz-border);
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.1rem;
  color: #525D6E !important;
  font-weight: 500 !important;
  font-size: 0.88rem !important;
  font-family: 'Poppins', sans-serif;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown a:hover {
  background: var(--wedroz-pink-light);
  color: var(--wedroz-pink) !important;
}

/* ==========================================================================
   VENUES & VENDORS MEGA MENU
   ========================================================================== */
.has-mega-menu {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 100vw;
  max-width: 100vw;
  background: #FFFFFF;
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 16px 40px rgba(11, 24, 48, 0.15);
  padding: 1.5rem 8vw;
  display: grid;
  grid-template-columns: 240px 220px 1fr;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1030;
  text-align: left;
}

.mega-menu.mega-vendors {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-heading {
  font-size: 0.76rem;
  font-weight: 600;
  color: #DE2173;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: 'Open Sans', 'Poppins', sans-serif;
}

.mega-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
}

.mega-list a {
  color: #525D6E !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  font-family: 'Open Sans', sans-serif !important;
  padding: 0 !important;
  text-decoration: none;
  transition: color 0.15s ease;
}

.mega-list a:hover {
  color: #DE2173 !important;
}

.mega-list a.mega-link-pink {
  color: #DE2173 !important;
  font-weight: 700 !important;
  margin-top: 0.5rem;
  display: inline-block;
  text-decoration: none !important;
}

.mega-list a.mega-link-pink:hover {
  color: #DE2173 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.mega-destination {
  padding-left: 1.5rem;
  border-left: 1px solid var(--wedroz-border);
}

.mega-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
}

.mega-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.mega-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mega-card:hover img {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.mega-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0B1830;
  font-family: 'Open Sans', sans-serif;
}

.header-nav {
  display: flex;
  align-items: center;
}

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

.primary-menu>li>a {
  color: #FFFFFF;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  padding: 0.25rem 0;
  display: inline-flex;
  align-items: center;
}

.primary-menu>li>a:hover,
.primary-menu .current-menu-item>a,
.primary-menu .current-post-ancestor>a {
  color: #FFFFFF;
  opacity: 0.95;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-toggle-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.search-toggle-btn:hover {
  transform: scale(1.08);
}

.btn-vendor-register {
  border: 1px solid #FFD700;
  color: #FFD700 !important;
  background: transparent;
  padding: 0.3rem 0.85rem;
  border-radius: var(--wedroz-radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-vendor-register .gold-dot {
  color: #FFD700;
  font-size: 0.75rem;
}

.btn-vendor-register:hover {
  background: rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.link-login {
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.3rem 0.5rem;
  white-space: nowrap;
}

.btn-signup {
  background: #FFFFFF;
  color: #E6007E !important;
  padding: 0.45rem 1.25rem;
  border-radius: var(--wedroz-radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--wedroz-pink-dark) !important;
}

.mobile-hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--wedroz-header-height-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--wedroz-navy);
  color: #FFFFFF;
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-drawer.active {
  display: flex;
}

.mobile-drawer .primary-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
}

.mobile-drawer .primary-menu a {
  font-size: 1.1rem;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-actions .btn-signup,
.mobile-actions .btn-vendor-register {
  text-align: center;
  width: 100%;
}

/* ==========================================================================
   3. BREADCRUMBS BAR
   ========================================================================== */
.wedroz-breadcrumbs-bar {
  background-color: var(--wedroz-surface);
  border-bottom: 1px solid var(--wedroz-border);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.wedroz-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--wedroz-text-muted);
}

.wedroz-breadcrumbs a {
  color: var(--wedroz-text-muted);
}

.wedroz-breadcrumbs a:hover {
  color: var(--wedroz-pink);
}

.wedroz-breadcrumbs .sep {
  color: var(--wedroz-text-light);
  font-size: 0.75rem;
}

.wedroz-breadcrumbs .current-crumb {
  color: var(--wedroz-text);
  font-weight: 600;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   4. BLOG LISTING — MAGAZINE GRID & CARD COMPONENTS
   ========================================================================== */
.blog-archive-header {
  padding: 2.5rem 0 1.5rem;
}

.blog-archive-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--wedroz-navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.blog-archive-intro {
  font-size: 1.05rem;
  color: var(--wedroz-text-muted);
  max-width: 800px;
  line-height: 1.65;
}

/* Dynamic Category Pills */
.category-filter-wrapper {
  margin: 1.5rem 0 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}

.category-filter-wrapper::-webkit-scrollbar {
  display: none;
}

.category-pills {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  white-space: nowrap;
}

.category-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--wedroz-radius-pill);
  background: var(--wedroz-surface);
  border: 1px solid var(--wedroz-border);
  color: var(--wedroz-text);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.category-pill:hover,
.category-pill.active {
  background: var(--wedroz-pink);
  color: #FFFFFF !important;
  border-color: var(--wedroz-pink);
  box-shadow: var(--wedroz-shadow-pink);
}

/* Layout Grid Container */
.archive-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 1200px) {
  .archive-layout.has-sidebar {
    grid-template-columns: 1fr 340px;
  }
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* Unified Category Badge Pill Component */
.badge-category {
  display: inline-block;
  align-self: flex-start;
  background: var(--wedroz-pink);
  color: #FFFFFF !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 4px 12px;
  border-radius: var(--wedroz-radius-pill);
  margin-bottom: 0.85rem;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(230, 0, 126, 0.25);
}

/* --- 4A. FEATURED HERO CARD --- */
.card-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: #FFFFFF;
  border-radius: var(--wedroz-radius-xl);
  overflow: hidden;
  box-shadow: var(--wedroz-shadow-sm);
  border: 1px solid var(--wedroz-border);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card-hero:hover {
  transform: translateY(-4px);
  box-shadow: var(--wedroz-shadow-md);
}

.card-hero .card-image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--wedroz-surface);
}

.card-hero .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.card-hero:hover .card-image-wrap img {
  transform: scale(1.04);
}

.card-hero .card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.card-hero .card-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-hero .card-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--wedroz-navy);
  line-height: 1.3;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-hero .card-title a {
  color: var(--wedroz-navy);
}

.card-hero .card-title a:hover {
  color: var(--wedroz-pink);
}

.card-hero .card-excerpt {
  font-size: 15px;
  color: var(--wedroz-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- 4B. STANDARD MAGAZINE GRID CARD --- */
.card-standard {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--wedroz-border);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card-standard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-standard .card-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: var(--wedroz-surface);
}

.card-standard .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.card-standard:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-standard .card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-standard .card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--wedroz-navy);
  line-height: 1.35;
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-standard .card-title a {
  color: var(--wedroz-navy);
}

.card-standard .card-title a:hover {
  color: var(--wedroz-pink);
}

.card-standard .card-excerpt {
  font-size: 14px;
  color: var(--wedroz-text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* Meta Row Alignment */
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 12px;
  color: var(--wedroz-text-light);
  margin-top: auto;
  padding-top: 0.5rem;
}

.card-hero .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.card-standard .author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.meta-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--wedroz-text);
}

.card-standard .author-name {
  font-size: 12px;
}

.post-date-read {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 12px;
  color: var(--wedroz-text-light);
}

.dot-sep {
  font-size: 0.55rem;
  color: var(--wedroz-text-light);
}

/* --- 4C. SPOTLIGHT CARD (2-col wide) --- */
.card-spotlight {
  grid-column: span 2;
  display: flex;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--wedroz-border);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card-spotlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-spotlight .card-image-wrap {
  width: 42%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  min-height: 220px;
}

.card-spotlight .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.card-spotlight:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-spotlight .card-content {
  width: 58%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-spotlight .card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--wedroz-navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.card-spotlight .card-title a {
  color: var(--wedroz-navy);
}

.card-spotlight .card-title a:hover {
  color: var(--wedroz-pink);
}

.card-spotlight .card-excerpt {
  font-size: 14px;
  color: var(--wedroz-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Numbered Pagination (WordPress standard) */
.pagination-wrapper {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

.pagination-wrapper .pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-wrapper .nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--wedroz-radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wedroz-text);
  background: var(--wedroz-surface);
  border: 1px solid var(--wedroz-border);
  transition: all 0.2s ease;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
  background: var(--wedroz-pink);
  color: #FFFFFF !important;
  border-color: var(--wedroz-pink);
  box-shadow: var(--wedroz-shadow-pink);
}

/* Sidebar Widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.widget-card {
  background: #FFFFFF;
  border-radius: var(--wedroz-radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--wedroz-border);
  box-shadow: var(--wedroz-shadow-sm);
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wedroz-navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--wedroz-pink-light);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--wedroz-pink);
}

.widget-newsletter {
  background: linear-gradient(135deg, var(--wedroz-pink-light) 0%, #FFFFFF 100%);
  border: 1.5px solid rgba(230, 0, 126, 0.2);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--wedroz-radius-pill);
  border: 1px solid var(--wedroz-border-dark);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--wedroz-pink);
  box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.15);
}

.newsletter-submit {
  background: var(--wedroz-pink);
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: var(--wedroz-radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-submit:hover {
  background: var(--wedroz-pink-dark);
}

.popular-post-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.popular-post-item:last-child {
  margin-bottom: 0;
}

.popular-post-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--wedroz-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.popular-post-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popular-post-title {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--wedroz-navy);
  margin-bottom: 0.25rem;
}

.popular-post-date {
  font-size: 0.75rem;
  color: var(--wedroz-text-light);
}

/* ==========================================================================
   5. SINGLE BLOG POST TEMPLATE
   ========================================================================== */
.single-post-container {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  max-width: 900px;
}

.single-header {
  margin-bottom: 2rem;
}

.single-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wedroz-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.single-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--wedroz-border);
}

.author-meta-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.single-hero-wrap {
  margin-bottom: 2.5rem;
  border-radius: var(--wedroz-radius-xl);
  overflow: hidden;
  box-shadow: var(--wedroz-shadow-md);
  aspect-ratio: 16/9;
  background: var(--wedroz-surface);
}

.single-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-intro-lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--wedroz-navy);
  margin-bottom: 2rem;
}

.wedroz-toc {
  background: var(--wedroz-surface);
  border-left: 4px solid var(--wedroz-pink);
  border-radius: 0 var(--wedroz-radius-md) var(--wedroz-radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--wedroz-navy);
  cursor: pointer;
  user-select: none;
}

.toc-toggle-icon {
  transition: transform 0.2s ease;
}

.wedroz-toc.collapsed .toc-list {
  display: none;
}

.wedroz-toc.collapsed .toc-toggle-icon {
  transform: rotate(-90deg);
}

.toc-list {
  list-style: none;
  margin-top: 0.85rem;
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.toc-list a {
  color: var(--wedroz-text);
  font-weight: 500;
}

.toc-list a:hover {
  color: var(--wedroz-pink);
}

.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--wedroz-text);
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wedroz-navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.entry-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wedroz-navy);
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content blockquote {
  background: var(--wedroz-pink-light);
  border-left: 4px solid var(--wedroz-pink);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--wedroz-radius-md) var(--wedroz-radius-md) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--wedroz-navy);
  margin: 2rem 0;
}

.social-share-section {
  margin: 3rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--wedroz-border);
  border-bottom: 1px solid var(--wedroz-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-share-title {
  font-weight: 700;
  color: var(--wedroz-navy);
  font-size: 0.95rem;
}

.social-share-buttons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--wedroz-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.share-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #FFFFFF;
}

.share-whatsapp {
  background-color: #25D366;
}

.share-pinterest {
  background-color: #E60023;
}

.share-facebook {
  background-color: #1877F2;
}

.share-twitter {
  background-color: #000000;
}

.share-copy {
  background-color: var(--wedroz-navy);
  cursor: pointer;
}

.author-bio-card {
  background: var(--wedroz-surface);
  border-radius: var(--wedroz-radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 3.5rem;
  border: 1px solid var(--wedroz-border);
}

.author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-bio-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wedroz-navy);
  margin-bottom: 0.35rem;
}

.author-bio-details p {
  font-size: 0.9rem;
  color: var(--wedroz-text-muted);
  line-height: 1.5;
}

.related-posts-section {
  margin-top: 4rem;
}

.section-title-pink {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--wedroz-navy);
  margin-bottom: 1.75rem;
  position: relative;
  display: inline-block;
}

.section-title-pink::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--wedroz-pink);
  border-radius: 2px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ==========================================================================
   6. GLOBAL FOOTER (Dark Navy #0B1830)
   ========================================================================== */
/* ==========================================================================
   6. GLOBAL FOOTER (Exact UI Matching Dark Navy #0B1426)
   ========================================================================== */
.site-footer {
  background-color: #0B1426;
  color: #8A94A6;
  margin-top: auto;
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.88rem;
  font-family: 'Poppins', 'Inter', sans-serif;
  width: 100%;
}

.site-footer .wedroz-container {
  width: 100%;
  max-width: 100% !important;
  padding-left: 4.5vw;
  padding-right: 4.5vw;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.2fr;
  gap: 2.25rem;
  padding-bottom: 2rem;
}

.brand-col .site-logo {
  gap: 0.65rem;
}

.site-footer .logo-img,
.brand-col .logo-img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  filter: none !important;
  object-fit: contain;
}

.brand-col .logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.85rem;
  color: #FFFFFF;
}

.footer-col-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 1.1rem;
  font-family: 'Poppins', sans-serif;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}

.footer-menu a {
  color: #8A94A6;
  font-size: 0.86rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-menu a:hover {
  color: #FFFFFF;
}

.footer-menu a.font-bold {
  color: #FFFFFF !important;
  font-weight: 500 !important;
}

.footer-brand-tagline {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  color: #8A94A6;
  line-height: 1.6;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A94A6;
  transition: all 0.2s ease;
}

.social-icon-link:hover {
  background: var(--wedroz-pink);
  color: #FFFFFF;
}

.app-desc {
  color: #8A94A6;
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-badge-link img {
  height: 38px;
  width: auto;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}

.app-badge-link:hover img {
  opacity: 0.88;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: left;
  font-size: 0.82rem;
  color: #64748B;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2rem;
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .magazine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-hero {
    grid-template-columns: 1fr;
  }

  .card-spotlight {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --wedroz-header-height: var(--wedroz-header-height-mobile);
  }

  .header-nav,
  .header-right {
    display: none;
  }

  .mobile-hamburger {
    display: block;
  }

  .blog-archive-title {
    font-size: 1.75rem;
  }

  .magazine-grid {
    grid-template-columns: 1fr;
  }

  .card-hero,
  .card-spotlight {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .card-hero .card-title {
    font-size: 22px;
  }

  .card-hero .card-content,
  .card-spotlight .card-content {
    padding: 1.5rem;
  }

  .single-title {
    font-size: 1.75rem;
  }

  .author-bio-card {
    flex-direction: column;
    text-align: center;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

/* Newsletter Subscribe Banner & Floating Toast Notification */
.footer-subscribe-banner {
  background: linear-gradient(135deg, rgba(222, 33, 115, 0.15) 0%, rgba(222, 33, 115, 0.05) 100%);
  border: 1px solid rgba(222, 33, 115, 0.3);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.subscribe-title {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.35rem;
}

.subscribe-subtitle {
  color: #8A94A6;
  font-size: 0.88rem;
  margin: 0;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.subscribe-form input[type="email"] {
  background: #0B1830;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  min-width: 280px;
  outline: none;
  transition: border-color 0.2s ease;
}

.subscribe-form input[type="email"]:focus {
  border-color: #DE2173;
}

.subscribe-form .btn-subscribe {
  background: #DE2173;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.subscribe-form .btn-subscribe:hover {
  background: #C41B63;
  transform: translateY(-1px);
}

.subscribe-right {
  flex-shrink: 0;
  min-width: 400px;
}

/* Inline success message inside the subscribe banner card */
.subscribe-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  animation: fadeIn 0.3s ease;
}

.success-icon {
  font-size: 1.4rem;
  color: #22C55E;
  flex-shrink: 0;
}

.success-text {
  color: #FFFFFF;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  line-height: 1.4;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 576px) {
  .footer-subscribe-banner {
    padding: 1.5rem 1.25rem !important;
    gap: 1.5rem !important;
  }
  
  .subscribe-title {
    font-size: 1.1rem !important;
  }
  
  .subscribe-right {
    min-width: unset !important;
    width: 100% !important;
  }
  
  .subscribe-form {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }
  
  .subscribe-form input[type="email"] {
    min-width: unset !important;
    width: 100% !important;
  }
  
  .subscribe-form .btn-subscribe {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */
.site-hero {
  position: relative;
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  padding: 4.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 380px;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 2.75rem;
  color: #0B1830;
  margin: 0;
  line-height: 1.2;
}

.hero-subtitle-pill {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.55rem 1.75rem;
  border-radius: var(--wedroz-radius-pill);
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hero-subtitle-pill span {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0B1830;
  font-family: 'Open Sans', 'Inter', sans-serif;
}

.hero-search-form {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin-top: 0.5rem;
}

.hero-search-input {
  width: 100%;
  padding: 1.1rem 4.5rem 1.1rem 1.75rem;
  border-radius: var(--wedroz-radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1.05rem;
  color: #0B1830;
  outline: none;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-family: 'Open Sans', 'Inter', sans-serif;
  transition: all 0.2s ease;
}

.hero-search-input:focus {
  border-color: var(--wedroz-pink);
  box-shadow: 0 10px 35px rgba(222, 33, 115, 0.12);
}

.hero-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--wedroz-pink);
  color: #FFFFFF;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.hero-search-btn:hover {
  background: #C41B63;
}

.hero-search-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.hero-tag {
  background: #FFFFFF;
  color: #525D6E;
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 0.45rem 1.25rem;
  border-radius: var(--wedroz-radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.hero-tag:hover {
  border-color: var(--wedroz-pink);
  color: var(--wedroz-pink);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .site-hero {
    padding: 3rem 1.25rem;
    min-height: 320px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle-pill {
    padding: 0.45rem 1.25rem;
  }
  
  .hero-subtitle-pill span {
    font-size: 0.9rem;
  }
  
  .hero-search-input {
    padding: 0.9rem 4rem 0.9rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .hero-search-btn {
    width: 38px;
    height: 38px;
  }
}

/* ==========================================================================
   9. COMMENTS AREA & FORM STYLING
   ========================================================================== */
.comments-area {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #E2E8F0;
  max-width: 800px;
}

.comments-title,
.comment-reply-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0B1830;
  margin-bottom: 1.5rem;
}

/* Comment List */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment-list .comment {
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 1.5rem;
}

.comment-list .comment:last-child {
  border-bottom: none;
}

.comment-body {
  display: flex;
  gap: 1rem;
}

.comment-meta {
  flex-shrink: 0;
}

.comment-meta img {
  border-radius: 50%;
  border: 1px solid #E2E8F0;
}

.comment-content {
  flex-grow: 1;
}

.comment-author cite {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  font-style: normal;
  color: #0B1830;
}

.comment-metadata {
  font-size: 0.78rem;
  color: #8A94A6;
  margin-bottom: 0.5rem;
}

.comment-metadata a {
  color: #8A94A6;
  text-decoration: none;
}

.comment-content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #334155;
}

.reply a {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wedroz-pink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.reply a:hover {
  color: #C41B63;
}

/* Comment Form */
.comment-respond {
  margin-top: 3rem;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.logged-in-as {
  font-size: 0.88rem;
  color: #525D6E;
  margin-bottom: 0.5rem;
}

.logged-in-as a {
  color: var(--wedroz-pink);
  text-decoration: none;
  font-weight: 500;
}

.logged-in-as a:hover {
  text-decoration: underline;
}

.comment-form-comment {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  width: 100%;
}

.comment-form-comment label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: #0B1830;
}

.comment-form-comment textarea {
  width: 100%;
  min-height: 140px;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #CBD5E1;
  font-size: 0.95rem;
  color: #0B1830;
  font-family: 'Open Sans', 'Inter', sans-serif;
  outline: none;
  resize: vertical;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form-comment textarea:focus {
  border-color: var(--wedroz-pink);
  box-shadow: 0 0 0 3px rgba(222, 33, 115, 0.1);
}

.comment-form .form-submit {
  margin: 0;
}

.comment-form input[type="submit"] {
  background: var(--wedroz-pink) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: var(--wedroz-radius-pill) !important;
  padding: 0.75rem 2rem !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.15s ease !important;
  box-shadow: 0 4px 12px rgba(222, 33, 115, 0.2) !important;
}

.comment-form input[type="submit"]:hover {
  background: #C41B63 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(222, 33, 115, 0.3) !important;
}

.comment-form input[type="submit"]:active {
  transform: translateY(0) !important;
}

/* MOBILE SIDEBAR DRAWERS */
#mobile-menu-container.mobile-open #mobile-sidebar {
  transform: translateX(0) !important;
}
#mobile-menu-container.mobile-open #mobile-overlay {
  opacity: 1 !important;
  pointer-events: auto !important;
}