/* Half Half Parenting - Gen Z Modern Design */
/* Bold, Fresh, Mobile-First, Scroll-Stopping */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  /* Gen Z Color Palette - Bold & Vibrant */
  --primary: #FF6B6B;         /* Coral red */
  --primary-light: #FFE5E5;
  --secondary: #4ECDC4;       /* Teal pop */
  --accent: #FFE66D;          /* Gen Z yellow */
  --purple: #9B5DE5;          /* Playful purple */
  --dark: #1A1A2E;            /* Deep navy-black */
  --text: #16213E;
  --text-muted: #6B7280;
  --bg: #FFFFFF;
  --bg-cream: #FFFBF5;
  --bg-gradient: linear-gradient(135deg, #FFFBF5 0%, #FFF5F5 50%, #F5FFFC 100%);
  --glass: rgba(255, 255, 255, 0.8);
  --border: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(255, 107, 107, 0.15);

  /* Typography */
  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  /* Sizing */
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-gradient);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== MODERN LAYOUT ========== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== GLASSMORPHISM HEADER ========== */

.site-header {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

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

.nav-main ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-main a {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.nav-main a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
}

/* ========== HERO - BOLD & MODERN ========== */

.hero {
  padding: 3rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-featured {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

/* Hero featured is now an anchor - style it as block */
.hero-featured {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hero-featured img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-featured:hover img {
  transform: scale(1.03);
}

.hero-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: white;
}

.category-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.category-tag.teal { background: var(--secondary); }
.category-tag.purple { background: var(--purple); }
.category-tag.yellow { background: var(--accent); color: var(--dark); }

.hero-featured h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-featured p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Trending Pills */
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trending-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trending-label::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.trending-item {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.trending-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.trending-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.trending-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== CAMPAIGN BANNER - GRADIENT CARD ========== */

.campaign-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #2A9D8F 100%);
  color: white;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.campaign-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.campaign-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
}

.campaign-banner p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
  position: relative;
}

.campaign-banner .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--secondary);
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  transition: all 0.3s ease;
}

.campaign-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ========== ARTICLE CARDS - MODERN GRID ========== */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.view-all {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.view-all:hover {
  gap: 0.5rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.article-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Stretched link - makes entire card clickable */
.article-card h3 a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.article-card:hover h3 a {
  color: var(--primary);
}

/* Ensure category tag doesn't block card clicks */
.article-card .category-tag {
  pointer-events: none;
}

.article-card-image {
  position: relative;
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover img {
  transform: scale(1.08);
}

.article-card .category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 0.65rem;
}

.article-card-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.article-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.article-card h3 a {
  color: var(--text);
}

.article-card h3 a:hover {
  color: var(--primary);
}

.article-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ========== CONTENT WITH SIDEBAR ========== */

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.sidebar-widget h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.sidebar-widget li:last-child {
  border-bottom: none;
}

.sidebar-widget a:hover {
  color: var(--primary);
}

/* ========== AD ZONES ========== */

.ad-zone {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #F5F5F5 100%);
  border: 1px dashed rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 1rem;
  margin: 1.5rem 0;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.ad-zone-header { min-height: 90px; }
.ad-zone-sidebar { min-height: 250px; }
.ad-zone-in-content { min-height: 250px; margin: 2rem 0; }
.ad-zone-footer { min-height: 90px; }

/* ========== NEWSLETTER - BOLD CTA ========== */

.newsletter-section {
  background: var(--dark);
  padding: 4rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-content {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-section h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.newsletter-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: white;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--primary);
}

.newsletter-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #FF5252;
  transform: scale(1.05);
}

/* ========== FOOTER - CLEAN & MODERN ========== */

.site-footer {
  background: var(--dark);
  color: white;
  padding: 4rem 1.25rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.625rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ========== ARTICLE PAGE ========== */

/* Article Main Layout with Sidebar */
.article-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

@media (min-width: 1024px) {
  .article-main {
    grid-template-columns: 1fr 320px;
  }
}

/* Article without sidebar - centered layout */
.article-main.no-sidebar {
  max-width: 800px;
}

@media (min-width: 1024px) {
  .article-main.no-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Article Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.article-sidebar .sidebar-widget {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.article-sidebar .sidebar-widget h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

/* Campaign Widget in Sidebar */
.campaign-widget {
  background: linear-gradient(135deg, var(--primary) 0%, #E55050 100%) !important;
  color: white;
  text-align: center;
}

.campaign-widget h4 {
  color: white !important;
}

.campaign-widget p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.widget-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.btn-small {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Newsletter Widget */
.newsletter-widget {
  background: var(--dark) !important;
  color: white;
}

.newsletter-widget h4 {
  color: white !important;
}

.newsletter-widget p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

.newsletter-widget .newsletter-form input {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.newsletter-widget .newsletter-form button {
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-widget .newsletter-form button:hover {
  background: #E55050;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

/* Article Header - Updated for new layout */
.article-content .article-header {
  background: none;
  padding: 0;
  text-align: left;
  margin-bottom: 2rem;
}

.article-content .article-header h1 {
  margin: 0.75rem 0 1rem;
  max-width: none;
  text-align: left;
}

.article-content .article-header .category-tag {
  margin-bottom: 0;
}

/* Article Meta */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Hero Offer - Direct Answer with Image */
.hero-offer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin: 2rem 0;
}

@media (min-width: 600px) {
  .hero-offer {
    grid-template-columns: 2fr 1fr;
  }
}

.hero-offer .direct-answer {
  margin: 0;
}

.hero-offer-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.hero-offer-image img {
  max-width: 160px;
  border-radius: var(--radius-md);
}

.hero-offer-image p {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.75rem;
  text-align: center;
}

/* Direct Answer Box (AEO) */
.direct-answer {
  background: linear-gradient(135deg, var(--primary-light) 0%, #FFF5F5 100%);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.direct-answer p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Table of Contents */
.table-of-contents {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}

.table-of-contents h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--text);
}

.table-of-contents ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.table-of-contents li {
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.table-of-contents li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.table-of-contents a {
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
}

.table-of-contents a:hover {
  color: var(--primary);
}

/* Campaign CTA in Article */
.campaign-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, #2A9D8F 100%);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2.5rem 0;
  text-align: center;
}

.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.campaign-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.campaign-cta p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0 0 1.25rem;
}

.btn-cta {
  display: inline-block;
  background: white;
  color: var(--secondary);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Related Articles */
.related-articles {
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-articles h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.related-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.related-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.related-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

/* Article Hero Image - Updated */
.article-content .article-hero-image {
  max-width: none;
  margin: 0 0 2rem;
  padding: 0;
}

.article-content .article-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* Steps Section */
.steps-section {
  margin: 2.5rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.step-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: var(--bg);
}

.faq-accordion summary {
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-accordion[open] summary::after {
  content: '-';
}

.faq-accordion p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Standalone Article Header (for pages without sidebar) */
.article-header {
  background: var(--bg-gradient);
  padding: 4rem 1.25rem;
  text-align: center;
  position: relative;
}

.article-header .category-tag {
  margin-bottom: 1.25rem;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.2;
  color: var(--text);
}

.article-header .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.article-hero-image {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.article-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}

.article-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content ul,
.article-content ol {
  margin: 1.25rem 0 1.75rem 1.25rem;
}

.article-content li {
  margin-bottom: 0.625rem;
  line-height: 1.7;
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}

/* FAQ Section - Modern Accordion Style */
.faq-section {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.faq-section h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq-item h3::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.faq-item p {
  margin: 0;
  padding-left: 2.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== CAMPAIGN PAGES ========== */

.campaign-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.campaign-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #E55050 100%);
  color: white;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.campaign-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.campaign-hero h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.campaign-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  position: relative;
}

.campaign-form {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.campaign-form h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  background: var(--bg);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-checkbox input {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--primary);
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.btn-submit:hover {
  background: #E55050;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========== RESPONSIVE ========== */

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1.5fr 1fr;
    align-items: stretch;
  }

  .hero-featured img {
    height: 100%;
    min-height: 420px;
  }

  .hero-featured h2 {
    font-size: 2rem;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr 320px;
  }

  .article-header h1 {
    font-size: 2.75rem;
  }

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

@media (min-width: 1024px) {
  .hero {
    padding: 4rem 1.25rem 5rem;
  }

  .hero-featured h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-top: 1px solid var(--border);
  }

  .nav-main.active {
    display: block;
  }

  .nav-main ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-main a {
    display: block;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
  }

  .menu-toggle {
    display: flex;
  }

  .hero-sidebar {
    display: none;
  }

  .newsletter-section h3 {
    font-size: 1.5rem;
  }
}

/* ========== UTILITIES ========== */

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
  .article-card,
  .trending-item,
  .btn,
  .btn-submit,
  a {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
}
