/* ============================================================
   styles.css — MySuggestion.in  |  DO NOT EDIT UNLESS NEEDED
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@600;700;800;900&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --primary:      #4F46E5;
  --primary-dark: #3730A3;
  --primary-lt:   rgba(79,70,229,0.1);
  --secondary:    #22C55E;
  --bg:           #ffffff;
  --bg-secondary: #f8fafc;
  --text:         #0f172a;
  --text-muted:   #64748b;
  --border:       #e2e8f0;
  --card-bg:      #ffffff;
  --navbar-bg:    rgba(255,255,255,0.85);
  --shadow:       0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.1);
  --radius:       16px;
}
.dark {
  --bg:           #030712;
  --bg-secondary: #0f172a;
  --text:         #f1f5f9;
  --text-muted:   #94a3b8;
  --border:       #1e293b;
  --card-bg:      #0f172a;
  --navbar-bg:    rgba(3,7,18,0.85);
  --shadow:       0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.4);
}

/* ── RESET ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; font-weight: 800; line-height: 1.2; }
.gradient-text {
  background: linear-gradient(135deg,#4F46E5 0%,#7C3AED 50%,#22C55E 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg,#4F46E5 0%,#818cf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: #fff;
  font-family: 'Poppins',sans-serif; font-weight: 600; font-size: .9rem;
  padding: .75rem 1.5rem; border-radius: 12px; border: none;
  box-shadow: 0 4px 20px rgba(79,70,229,.3);
  transition: all .2s; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79,70,229,.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--primary);
  font-family: 'Poppins',sans-serif; font-weight: 600; font-size: .9rem;
  padding: .75rem 1.5rem; border-radius: 12px; border: 2px solid var(--primary);
  transition: all .2s;
}
.btn-secondary:hover { background: var(--primary); color: #fff; }

/* ── CARDS ── */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(79,70,229,.3); }

/* ── SKELETON ── */
.skeleton {
  background: linear-gradient(90deg,var(--border) 25%,rgba(255,255,255,.05) 50%,var(--border) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px;
}
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }

/* ── ANIMATED GRADIENT ── */
.animated-gradient {
  background: linear-gradient(-45deg,#4F46E5,#7C3AED,#06b6d4,#22C55E);
  background-size: 400% 400%; animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%}
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .3s;
}
#navbar.scrolled {
  background: var(--navbar-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: .5rem; }
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(79,70,229,.4); flex-shrink: 0;
}
.nav-logo-icon svg { width: 18px; height: 18px; fill: #fff; }
.nav-logo-text { font-family: 'Poppins',sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--text); }
.nav-logo-text span.accent { color: var(--primary); }
.nav-logo-text span.green  { color: var(--secondary); }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  position: relative; padding: .5rem .75rem; border-radius: 10px; font-size: .875rem;
  font-weight: 500; color: var(--text-muted); transition: all .2s; white-space: nowrap;
}
.nav-link:hover,.nav-link.active { color: var(--primary); background: var(--primary-lt); }
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary); border-radius: 2px; transition: width .3s;
}
.nav-link:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem .75rem; border-radius: 10px; font-size: .875rem;
  font-weight: 500; color: var(--text-muted); background: none; border: none;
  transition: all .2s; white-space: nowrap;
}
.nav-dropdown-btn:hover { color: var(--primary); background: var(--primary-lt); }
.nav-dropdown-btn svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0; width: 200px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s; overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: .75rem; padding: .75rem 1rem;
  font-size: .875rem; color: var(--text-muted); transition: all .2s;
}
.nav-dropdown-menu a:hover { background: var(--primary-lt); color: var(--primary); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-icon-btn {
  width: 36px; height: 36px; border-radius: 10px; border: none;
  background: none; color: var(--text-muted); display: flex; align-items: center;
  justify-content: center; transition: all .2s;
}
.nav-icon-btn:hover { background: var(--primary-lt); color: var(--primary); }
.nav-icon-btn svg { width: 18px; height: 18px; }
.nav-subscribe { display: none; }
@media(min-width:640px){ .nav-subscribe { display: inline-flex; } }

/* Mobile menu */
.mobile-menu-btn { display: none; }
@media(max-width:767px){ .mobile-menu-btn { display: flex; } .nav-links,.nav-actions .nav-subscribe { display: none; } }
#mobile-menu {
  display: none; padding: 1rem 1.5rem; background: var(--card-bg);
  border-top: 1px solid var(--border);
}
#mobile-menu.open { display: block; }
#mobile-menu a, #mobile-menu button {
  display: block; width: 100%; padding: .75rem; border-radius: 12px;
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  text-align: left; background: none; border: none; transition: all .2s;
}
#mobile-menu a:hover, #mobile-menu button:hover { background: var(--primary-lt); color: var(--primary); }
#mobile-menu .mobile-section-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-muted); padding: .5rem .75rem .25rem;
  pointer-events: none;
}
.mobile-subscribe { margin-top: .75rem; display: block; text-align: center; }

/* Search bar */
#search-bar { display: none; padding: .75rem 1.5rem; }
#search-bar.open { display: block; }
#search-bar input {
  width: 100%; padding: .75rem 1rem .75rem 2.75rem;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--card-bg); color: var(--text); font-size: .875rem;
  outline: none; transition: border-color .2s;
}
#search-bar input:focus { border-color: var(--primary); }
.search-icon-wrap { position: relative; }
.search-icon-wrap svg { position: absolute; left: .875rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden; padding-top: 64px;
  background: linear-gradient(135deg, #f8fafc 0%, rgba(238,242,255,.5) 50%, rgba(240,253,244,.3) 100%);
}
.dark #hero { background: linear-gradient(135deg,#030712 0%,rgba(30,27,75,.2) 50%,#030712 100%); }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.hero-grid {
  position: absolute; inset: 0; opacity: .03; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%234F46E5' fill-opacity='1'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.dark .hero-grid { opacity: .07; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 5rem 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.8); color: var(--text); border: 1px solid var(--border);
  border-radius: 100px; padding: .5rem 1rem; font-size: .8rem; font-weight: 500;
  margin-bottom: 2rem; backdrop-filter: blur(10px); box-shadow: var(--shadow);
}
.dark .hero-badge { background: rgba(15,23,42,.8); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero-h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1.5rem; }
.hero-h1 .sub { font-size: 80%; font-weight: 700; color: var(--text-muted); }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 3rem; }
.hero-pill {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem; border-radius: 100px; border: 1px solid var(--border);
  font-size: .8rem; font-weight: 500; color: var(--text); background: var(--bg);
  box-shadow: var(--shadow); transition: all .2s;
}
.hero-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: rgba(79,70,229,.4); }
.hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; max-width: 500px; margin: 0 auto; }
@media(min-width:640px){ .hero-stats { grid-template-columns: repeat(4,1fr); max-width: 700px; } }
.hero-stat-val { font-family: 'Poppins',sans-serif; font-weight: 900; font-size: 2rem; }
.hero-stat-lbl { font-size: .75rem; color: var(--text-muted); margin-top: .25rem; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text-muted); font-size: .7rem; z-index: 2;
}
.scroll-mouse {
  width: 20px; height: 32px; border: 2px solid currentColor; border-radius: 100px;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px; background: currentColor; border-radius: 100px;
  animation: scrollAnim 1.5s infinite;
}
@keyframes scrollAnim { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(6px);opacity:.4} }

/* ══════════════════════════════════════════════════════════
   CATEGORY SECTION
══════════════════════════════════════════════════════════ */
#categories { padding: 5rem 0; }
.section-badge {
  display: inline-block; padding: .375rem 1rem; background: var(--primary-lt);
  color: var(--primary); border-radius: 100px; font-size: .8rem; font-weight: 600; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); max-width: 480px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.category-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media(min-width:640px){ .category-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px){ .category-grid { grid-template-columns: repeat(5,1fr); } }
.cat-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.5rem 1rem; transition: all .3s;
}
.cat-card:hover { transform: translateY(-6px); }
.cat-icon {
  width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center;
  justify-content: center; font-size: 1.75rem; margin-bottom: 1rem;
  transition: transform .3s;
}
.cat-card:hover .cat-icon { transform: scale(1.1); }
.cat-name { font-family: 'Poppins',sans-serif; font-size: .875rem; font-weight: 700; margin-bottom: .375rem; color: var(--text); transition: color .2s; }
.cat-card:hover .cat-name { color: var(--primary); }
.cat-desc { font-size: .75rem; color: var(--text-muted); margin-bottom: .75rem; line-height: 1.4; }
.cat-count { font-size: .7rem; font-weight: 700; padding: .25rem .75rem; border-radius: 100px; }

/* ══════════════════════════════════════════════════════════
   POSTS SECTION
══════════════════════════════════════════════════════════ */
.posts-section { padding: 5rem 0; background: var(--bg-secondary); }
.posts-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.view-all { display: flex; align-items: center; gap: .4rem; color: var(--primary); font-weight: 600; font-size: .875rem; transition: gap .2s; }
.view-all:hover { gap: .7rem; }
.posts-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:640px){ .posts-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .posts-grid { grid-template-columns: repeat(4,1fr); } }
.posts-grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:640px){ .posts-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .posts-grid-3 { grid-template-columns: repeat(3,1fr); } }

/* Post Card */
.post-card { cursor: pointer; }
.post-thumb {
  height: 192px; position: relative; overflow: hidden;
  background: linear-gradient(-45deg,#4F46E5,#7C3AED,#06b6d4,#22C55E);
  background-size: 400% 400%; animation: gradientShift 8s ease infinite;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-thumb-emoji { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.post-cat-badge {
  position: absolute; top: .75rem; left: .75rem;
  padding: .25rem .75rem; border-radius: 100px; font-size: .7rem; font-weight: 700; color: #fff;
}
.post-featured-badge {
  position: absolute; top: .75rem; right: .75rem;
  padding: .2rem .6rem; border-radius: 100px; font-size: .65rem; font-weight: 700;
  background: #f59e0b; color: #fff;
}
.post-body { padding: 1.25rem; }
.post-tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: .75rem; }
.post-tag {
  padding: .1rem .5rem; background: var(--primary-lt); color: var(--primary);
  border-radius: 6px; font-size: .65rem; font-weight: 600;
}
.post-title {
  font-family: 'Poppins',sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: .5rem; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .2s;
}
.post-card:hover .post-title { color: var(--primary); }
.post-excerpt {
  font-size: .8rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-meta { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; border-top: 1px solid var(--border); }
.post-author { display: flex; align-items: center; gap: .5rem; }
.author-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg,var(--primary),var(--secondary));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: .7rem; font-weight: 700;
}
.author-name { font-size: .7rem; font-weight: 600; color: var(--text); }
.author-date { font-size: .65rem; color: var(--text-muted); }
.post-stats { display: flex; align-items: center; gap: .75rem; font-size: .7rem; color: var(--text-muted); }
.post-stats span { display: flex; align-items: center; gap: .25rem; }
.post-stats svg { width: 12px; height: 12px; }

/* Section label badges */
.label-featured { display: inline-flex; align-items: center; gap: .375rem; padding: .375rem 1rem; background: rgba(245,158,11,.1); color: #d97706; border-radius: 100px; font-size: .75rem; font-weight: 600; margin-bottom: .5rem; }
.label-latest   { display: inline-flex; align-items: center; gap: .375rem; padding: .375rem 1rem; background: var(--primary-lt); color: var(--primary); border-radius: 100px; font-size: .75rem; font-weight: 600; margin-bottom: .5rem; }

/* ══════════════════════════════════════════════════════════
   NEWSLETTER SECTION
══════════════════════════════════════════════════════════ */
#newsletter-section {
  padding: 5rem 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg,#4F46E5 0%,#7C3AED 50%,#3730A3 100%);
}
#newsletter-section::before {
  content: ''; position: absolute; inset: 0; opacity: .1;
  background-image: radial-gradient(circle at 25% 25%,#fff 1px,transparent 1px),radial-gradient(circle at 75% 75%,#fff 1px,transparent 1px);
  background-size: 40px 40px;
}
.newsletter-inner { position: relative; max-width: 700px; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.newsletter-icon {
  width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  backdrop-filter: blur(10px);
}
.newsletter-icon svg { width: 28px; height: 28px; stroke: #fff; }
.newsletter-inner h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.newsletter-inner p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 2rem; }
.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
@media(min-width:640px){ .newsletter-form { flex-direction: row; } }
.newsletter-form input {
  flex: 1; padding: .875rem 1rem; border-radius: 12px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .875rem; outline: none; transition: all .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.newsletter-submit {
  padding: .875rem 1.5rem; background: #fff; color: var(--primary);
  font-family: 'Poppins',sans-serif; font-weight: 700; border: none; border-radius: 12px;
  font-size: .875rem; white-space: nowrap; transition: all .2s; box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.newsletter-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.newsletter-note { margin-top: 1rem; font-size: .75rem; color: rgba(255,255,255,.5); }
.newsletter-success {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px); border-radius: 16px;
  padding: 1.5rem 2rem; color: #fff;
}
.success-check { width: 40px; height: 40px; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.success-check svg { width: 20px; height: 20px; stroke: #fff; }

/* ══════════════════════════════════════════════════════════
   SINGLE POST PAGE
══════════════════════════════════════════════════════════ */
.post-page { padding-top: 64px; }
.post-hero { padding: 3rem 0 2rem; }
.post-hero-breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--text-muted); margin-bottom: 1.5rem; flex-wrap: wrap; }
.post-hero-breadcrumb a:hover { color: var(--primary); }
.post-hero-cat-badge { display: inline-block; padding: .375rem 1rem; border-radius: 100px; font-size: .75rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.post-hero-title { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1rem; max-width: 800px; }
.post-hero-excerpt { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin-bottom: 2rem; line-height: 1.7; }
.post-hero-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.post-hero-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar-lg {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,var(--primary),var(--secondary));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.post-cover {
  width: 100%; max-height: 480px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 2.5rem; box-shadow: var(--shadow-lg);
}
.post-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media(min-width:1024px){ .post-layout { grid-template-columns: 1fr 300px; } }
.post-content { min-width: 0; }
.prose h2,.prose h3 { font-family: 'Poppins',sans-serif; color: var(--text); margin: 2rem 0 1rem; }
.prose h2 { font-size: 1.5rem; } .prose h3 { font-size: 1.25rem; }
.prose p { color: var(--text); margin-bottom: 1.25rem; line-height: 1.8; font-family: inherit !important; font-size: 1rem; white-space: normal; word-break: break-word; overflow-wrap: break-word; }
.prose ul,.prose ol { margin: 1rem 0 1.25rem 1.5rem; color: var(--text); }
.prose li { margin-bottom: .5rem; line-height: 1.7; }
.prose blockquote {
  border-left: 4px solid var(--primary); padding: 1rem 1.5rem; margin: 1.5rem 0;
  background: var(--primary-lt); border-radius: 0 12px 12px 0; color: var(--text-muted); font-style: italic;
}
.prose strong { color: var(--text); font-weight: 700; }
/* Fix Quill-generated content */
.prose pre, .prose code { font-family: inherit !important; background: none !important; white-space: normal !important; font-size: 1rem !important; }
.prose .ql-syntax { font-family: inherit !important; white-space: normal !important; background: rgba(79,70,229,.07) !important; border-radius: 8px; padding: .75rem 1rem; margin: 1rem 0; }
.prose * { max-width: 100%; word-break: break-word; }
.post-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { padding: 1.5rem; }
.sidebar-title { font-family: 'Poppins',sans-serif; font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text); margin-bottom: 1.25rem; }
.related-post { display: flex; gap: .875rem; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.related-post:last-child { border-bottom: none; }
.related-thumb {
  width: 72px; height: 60px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: var(--primary-lt);
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-thumb-emoji { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.related-post-title { font-size: .8rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: .35rem; transition: color .2s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-post:hover .related-post-title { color: var(--primary); }
.related-meta { font-size: .7rem; color: var(--text-muted); }
.share-buttons { display: flex; flex-wrap: wrap; gap: .75rem; }
.share-btn {
  display: flex; align-items: center; gap: .4rem; padding: .5rem 1rem;
  border-radius: 10px; font-size: .8rem; font-weight: 600; border: none;
  transition: all .2s; cursor: pointer;
}
.share-twitter  { background: #e7f5ff; color: #1DA1F2; } .share-twitter:hover  { background: #1DA1F2; color: #fff; }
.share-whatsapp { background: #e7faf0; color: #25D366; } .share-whatsapp:hover { background: #25D366; color: #fff; }
.share-copy     { background: var(--primary-lt); color: var(--primary); } .share-copy:hover { background: var(--primary); color: #fff; }

/* ══════════════════════════════════════════════════════════
   CATEGORY PAGE
══════════════════════════════════════════════════════════ */
.cat-page { padding-top: 64px; }
.cat-page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg));
}
.cat-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.cat-page-hero p { color: var(--text-muted); max-width: 500px; }
.cat-page-posts { padding: 3rem 0 5rem; }
.empty-state { text-align: center; padding: 5rem 0; color: var(--text-muted); }
.empty-state .empty-icon { font-size: 4rem; margin-bottom: 1rem; }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-page { padding-top: 100px; padding-bottom: 0; }
.about-hero { padding: 2rem 0 3rem; text-align: center; }
.about-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.about-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin: 3rem 0; }
@media(min-width:640px){ .about-stats { grid-template-columns: repeat(4,1fr); } }
.about-stat { text-align: center; padding: 1.5rem; }
.about-stat-val { font-family: 'Poppins',sans-serif; font-size: 2rem; font-weight: 900; }
.about-stat-lbl { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.values-grid { display: grid; grid-template-columns: repeat(1,1fr); gap: 1rem; }
@media(min-width:640px){ .values-grid { grid-template-columns: repeat(2,1fr); } }
.value-card { padding: 1.5rem; }
.value-icon { font-size: 2rem; margin-bottom: .75rem; }
.team-grid { display: grid; grid-template-columns: repeat(1,1fr); gap: 1.5rem; }
@media(min-width:640px){ .team-grid { grid-template-columns: repeat(3,1fr); } }
.team-card { padding: 2rem 1.5rem; text-align: center; }
.team-emoji { font-size: 3rem; margin-bottom: .75rem; }
.team-name { font-family: 'Poppins',sans-serif; font-weight: 700; margin-bottom: .25rem; }
.team-role { color: var(--primary); font-size: .85rem; font-weight: 600; margin-bottom: .5rem; }
.team-bio { font-size: .8rem; color: var(--text-muted); }
.about-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.about-section { padding: 3rem 0; }
.about-section h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-page { padding-top: 100px; padding-bottom: 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media(min-width:1024px){ .contact-grid { grid-template-columns: 280px 1fr; } }
.contact-info-card { display: flex; align-items: center; gap: 1rem; padding: 1rem; transition: all .2s; }
.contact-info-card:hover { border-color: rgba(79,70,229,.4); }
.contact-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--primary-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.contact-info-card:hover .contact-icon { background: var(--primary); }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--primary); transition: stroke .2s; }
.contact-info-card:hover .contact-icon svg { stroke: #fff; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); }
.form-input {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: 12px;
  background: var(--card-bg); color: var(--text); font-size: .875rem; outline: none;
  transition: border-color .2s; font-family: inherit;
}
.form-input:focus { border-color: var(--primary); }
textarea.form-input { resize: vertical; min-height: 140px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width:640px){ .form-grid { grid-template-columns: 1fr 1fr; } }
.contact-success { text-align: center; padding: 3rem; }

/* ══════════════════════════════════════════════════════════
   NEWSLETTER PAGE
══════════════════════════════════════════════════════════ */
.newsletter-page { padding-top: 100px; padding-bottom: 5rem; }
.newsletter-page-inner { max-width: 600px; margin: 0 auto; }
.newsletter-page h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.newsletter-page .desc { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.newsletter-perks { margin-bottom: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.perk { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--text-muted); }
.perk-icon { width: 32px; height: 32px; border-radius: 10px; background: var(--primary-lt); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 0; }
@media(min-width:768px){ .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-socials { display: flex; gap: .75rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all .2s;
}
.footer-social svg { width: 15px; height: 15px; }
.footer-social:hover { color: #fff; transform: translateY(-2px); }
.footer-col h4 { font-family: 'Poppins',sans-serif; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col a { font-size: .875rem; color: var(--text-muted); transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  padding: 1.25rem 0; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center;
  font-size: .8rem; color: var(--text-muted);
}
@media(min-width:640px){ .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-heart { color: #ef4444; animation: pulse 1.5s infinite; display: inline; }

/* ══════════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════════ */
#toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--card-bg); border: 1px solid var(--border); color: var(--text);
  padding: .75rem 1.25rem; border-radius: 14px; box-shadow: var(--shadow-lg);
  font-size: .875rem; font-weight: 500;
  transform: translateY(100px); opacity: 0; transition: all .3s;
  max-width: 320px;
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ══════════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; } .mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }   .mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; } .mb-8 { margin-bottom: 2rem; }
.hidden { display: none; }
.loading-spinner {
  width: 36px; height: 36px; border: 3px solid var(--border);
  border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite;
  margin: 3rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
