/*
Theme Name: Pregnancy & Fitness
Description: A modern WordPress theme for pregnancy and fitness wellness websites. Features comprehensive styling without Tailwind CSS dependencies, designed for reproductive health, fitness guidance, and nutrition advice.
Version: 1.0.0
Author: Your Name
Text Domain: pregnancy-fitness
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

This theme captures the complete design system from the React version with traditional CSS.
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties (Design System) */
:root {
  /* Core Colors */
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 15 82% 75%;
  --primary-foreground: 210 40% 98%;
  --secondary: 279 40% 85%;
  --secondary-foreground: 279 40% 25%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 158 64% 80%;
  --accent-foreground: 158 64% 20%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 15 82% 75%;
  --radius: 1rem;
  
  /* Brand Color Palette */
  --peach-50: #FEF7F4;
  --peach-100: #FEEEE8;
  --peach-200: #FFE5D9;
  --peach-300: #FFD4C4;
  --peach-400: #FFB8A3;
  --peach-500: #FF9B82;
  --peach-600: #E8876D;
  --peach-700: #D17358;
  --peach-800: #BA5F43;
  --peach-900: #A34B2E;
  
  --lavender-50: #F8F5FA;
  --lavender-100: #F1EBF5; 
  --lavender-200: #E8DAEF;
  --lavender-300: #D8C2E3;
  --lavender-400: #C39BD1;
  --lavender-500: #AE74BF;
  --lavender-600: #9960A8;
  --lavender-700: #844C91;
  --lavender-800: #6F387A;
  --lavender-900: #5A2463;
  
  --mint-50: #F0FDF4;
  --mint-100: #E1FCE8;
  --mint-200: #D5F4E6;
  --mint-300: #A7F3D0;
  --mint-400: #6EE7B7;
  --mint-500: #34D399;
  --mint-600: #10B981;
  --mint-700: #059669;
  --mint-800: #047857;
  --mint-900: #065F46;

  /* Gray Scale */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #FFE5D9 0%, #E8DAEF 50%, #D5F4E6 100%);
  --gradient-primary: linear-gradient(135deg, #FF9B82 0%, #AE74BF 100%);
  --gradient-peach-lavender: linear-gradient(135deg, #FFB8A3 0%, #C39BD1 100%);
  --gradient-peach-mint: linear-gradient(135deg, #FFB8A3 0%, #6EE7B7 100%);
  --gradient-lavender-mint: linear-gradient(135deg, #C39BD1 0%, #D5F4E6 100%);
  --gradient-text: linear-gradient(135deg, #FF9B82 0%, #AE74BF 50%, #34D399 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Typography */
  --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
  --font-poppins: 'Poppins', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark mode variables */
.dark {
  --background: 222.2 84% 4.9%;
  --foreground: 210 40% 98%;
  --card: 222.2 84% 4.9%;
  --card-foreground: 210 40% 98%;
  --popover: 222.2 84% 4.9%;
  --popover-foreground: 210 40% 98%;
  --primary: 15 82% 75%;
  --primary-foreground: 222.2 47.4% 11.2%;
  --secondary: 279 40% 25%;
  --secondary-foreground: 279 40% 85%;
  --muted: 217.2 32.6% 17.5%;
  --muted-foreground: 215 20.2% 65.1%;
  --accent: 158 64% 20%;
  --accent-foreground: 158 64% 80%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 210 40% 98%;
  --border: 217.2 32.6% 17.5%;
  --input: 217.2 32.6% 17.5%;
  --ring: 15 82% 75%;
}

/* Base Styles & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: hsl(var(--border));
}

* {
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  font-family: var(--font-inter);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-poppins);
  font-weight: 600;
  line-height: 1.2;
  color: hsl(var(--foreground));
  margin: 0;
}

h1 { font-size: 2.25rem; } /* 36px */
h2 { font-size: 1.875rem; } /* 30px */
h3 { font-size: 1.5rem; } /* 24px */
h4 { font-size: 1.25rem; } /* 20px */
h5 { font-size: 1.125rem; } /* 18px */
h6 { font-size: 1rem; } /* 16px */

/* Responsive Typography */
@media (min-width: 640px) {
  h1 { font-size: 3.75rem; } /* 60px */
  h2 { font-size: 2.5rem; } /* 40px */
  h3 { font-size: 2rem; } /* 32px */
  h4 { font-size: 1.5rem; } /* 24px */
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

a {
  color: hsl(var(--primary));
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  opacity: 0.8;
}

/* Layout Container */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 80rem; /* 1280px */
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border));
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

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

.site-logo img {
  height: 2.5rem;
  width: auto;
}

.main-navigation {
  display: none;
  gap: 3rem;
}

.main-navigation a {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray-700);
  transition: var(--transition-smooth);
}

.main-navigation a:hover,
.main-navigation a.current-menu-item {
  color: hsl(var(--primary));
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 0.375rem;
  transition: var(--transition-smooth);
}

.mobile-menu a:hover,
.mobile-menu a.current-menu-item {
  color: hsl(var(--primary));
  background-color: hsla(var(--primary), 0.1);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  border-top: 1px solid hsl(var(--border));
}

@media (min-width: 1024px) {
  .main-navigation {
    display: flex;
  }
  
  .header-actions {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding: 6rem 1.5rem 8rem;
  text-align: center;
}

.hero-content {
  max-width: 42rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray-600);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 9999px;
  transition: var(--transition-smooth);
}

.hero-badge:hover {
  border-color: rgba(17, 24, 39, 0.2);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 5rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.hero-stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-actions {
    flex-direction: row;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 6rem 2rem 8rem;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  text-decoration: none;
  padding: 0.5rem 1rem;
  height: 2.25rem;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--ring));
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  height: 2.75rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: hsla(var(--secondary), 0.8);
}

.btn-outline {
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
}

.btn-ghost:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

/* Card Styles */
.card {
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.5rem;
}

.card-title {
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.card-content {
  padding: 1.5rem;
  padding-top: 0;
}

.card-hover {
  transition: var(--transition-smooth);
  cursor: pointer;
}

.card-hover:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Input Styles */
.input {
  display: flex;
  height: 2.25rem;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.input::placeholder {
  color: hsl(var(--muted-foreground));
}

.input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--ring));
}

.input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.badge-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow);
}

.badge-outline {
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}

/* Special Design Classes */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-gradient {
  background: var(--gradient-hero);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-peach-lavender {
  background: var(--gradient-peach-lavender);
}

.bg-gradient-peach-mint {
  background: var(--gradient-peach-mint);
}

.bg-gradient-lavender-mint {
  background: var(--gradient-lavender-mint);
}

/* Service Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--lavender-400);
  margin-bottom: 1rem;
}

.testimonial-content {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

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

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-peach-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--gray-700);
}

.testimonial-name {
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--gray-600);
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Newsletter Section */
.newsletter-section {
  padding: 5rem 1.5rem;
  background-color: white;
}

.newsletter-card {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(to right, var(--peach-100), var(--lavender-100), var(--mint-100));
  border-radius: 0.75rem;
  box-shadow: var(--shadow-2xl);
  max-width: 80rem;
  margin: 0 auto;
}

.newsletter-icon {
  display: inline-flex;
  padding: 1rem;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.newsletter-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.newsletter-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

.newsletter-form .input {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

.newsletter-disclaimer {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.newsletter-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.newsletter-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.newsletter-dot.peach { background-color: var(--peach-400); }
.newsletter-dot.lavender { background-color: var(--lavender-400); }
.newsletter-dot.mint { background-color: var(--mint-400); }

@media (min-width: 640px) {
  .newsletter-title {
    font-size: 2.25rem;
  }
  
  .newsletter-form {
    flex-direction: row;
  }
  
  .newsletter-form .input {
    flex: 1;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(to bottom right, var(--peach-50), var(--lavender-50));
  margin-top: 5rem;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

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

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand-text {
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.footer-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-600);
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-600);
  transition: var(--transition-smooth);
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(40px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Blog Specific Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}

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

.blog-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  background-color: hsla(var(--primary), 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Single Post Styles */
.post-header {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--gradient-hero);
}

.post-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.post-content {
  max-width: 48rem;
  margin: 3rem auto;
  padding: 0 1.5rem;
  line-height: 1.8;
}

.post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.post-content blockquote {
  border-left: 4px solid hsl(var(--primary));
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray-600);
  opacity: 0.8;
}

.post-content img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  max-width: 100%;
  height: auto;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--ring));
}

/* WordPress Specific */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

.alignleft {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

/* Loading States */
.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  .site-header,
  .site-footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1, h2, h3, h4, h5, h6 {
    break-after: avoid;
  }
}