:root {
  --color-bg: #fafafa;
  --color-text: #1a1a1a;
  --color-muted: #6b7280;
  --color-accent: #1e293b;
  --color-highlight: #3b82f6;
  --color-secondary: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-card-bg: #ffffff;
  --color-card-border: #e5e7eb;
  --max-width: 800px;
  --font-inner: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-inner);
  background: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

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

/* Enhanced Header */
.header-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--color-accent) 0%, #2d3748 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.header-bar img {
  max-height: 50px;
  transition: transform 0.2s ease;
}

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

.header-bar nav {
  display: flex;
  gap: 2rem;
}

.header-bar nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}

.header-bar nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.header-bar nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-highlight);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header-bar nav a:hover::after {
  width: 80%;
}

/* Enhanced Ribbon */
.ribbon {
  height: 4px;
  background: linear-gradient(90deg, var(--color-highlight) 0%, var(--color-secondary) 50%, var(--color-warning) 100%);
}

/* Typography Improvements */
h1, h2, h3 {
  color: var(--color-accent);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

h1 { 
  font-size: 2.5rem; 
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-highlight) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 { 
  font-size: 1.75rem; 
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-highlight);
  padding-bottom: 0.5rem;
}

h3 { 
  font-size: 1.25rem; 
  color: var(--color-highlight); 
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--color-muted);
  line-height: 1.6;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

/* Enhanced Cards */
.card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-highlight) 0%, var(--color-secondary) 100%);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-highlight);
}

.card h2 {
  margin-top: 0;
  color: var(--color-accent);
}

.card h3 {
  margin-top: 0;
  color: var(--color-highlight);
}

/* Enhanced CTA */
.cta {
  text-align: center;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, #2d3748 100%);
  border-radius: 16px;
  color: white;
  box-shadow: var(--shadow-lg);
}

.cta p {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.cta a {
  background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta a:hover::before {
  left: 100%;
}

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

/* Enhanced Images */
.centered-image {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.centered-image:hover {
  transform: scale(1.02);
}

/* Service Icons */
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

/* Enhanced Footer */
footer {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-card-border);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-bar {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  
  .header-bar nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .container {
    padding: 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
}

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

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

.slide-in {
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Enhanced Links */
a {
  color: var(--color-highlight);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Blockquote Enhancement */
blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-highlight);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-radius: 0 8px 8px 0;
  color: var(--color-muted);
  font-style: italic;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-highlight);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Value Grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  padding: 1.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid var(--color-card-border);
  transition: all 0.3s ease;
}

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

.value-item h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.value-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Services Grid */
.services-preview {
  margin: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-highlight) 100%);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--color-muted);
}

.service-link {
  color: var(--color-highlight);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-link:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Blog Preview */
.blog-preview {
  margin: 4rem 0;
}

.blog-teaser {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.blog-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.blog-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.blog-content p {
  margin-bottom: 1.5rem;
  color: var(--color-muted);
}

.read-more {
  color: var(--color-highlight);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.read-more:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Responsive adjustments for new components */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-teaser {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-image {
    order: -1;
  }
}

/* Enhanced Service Cards */
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-header h2 {
  margin: 0;
  font-size: 1.5rem;
  flex: 1;
}

.service-tag {
  background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.feature {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-highlight);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Process Section */
.process-section {
  margin: 4rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-secondary) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  margin: 1rem 0 0.5rem;
  color: var(--color-accent);
}

.process-step p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
  .service-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .service-tag {
    align-self: flex-start;
    margin-left: 0;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Contact Page Components */
.contact-methods {
  margin: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-highlight) 100%);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card h3 {
  margin: 0 0 1rem;
  color: var(--color-accent);
}

.contact-card p {
  margin-bottom: 1.5rem;
  color: var(--color-muted);
}

.contact-link {
  color: var(--color-highlight);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-highlight);
  border-radius: 6px;
  background: transparent;
}

.contact-link:hover {
  background: var(--color-highlight);
  color: white;
  transform: translateY(-1px);
}

/* Response Time Section */
.response-time {
  margin: 4rem 0;
}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.expectation {
  padding: 1.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid var(--color-card-border);
  transition: all 0.3s ease;
}

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

.expectation h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.expectation p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .expectations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Blog Index Page Components */
.blog-categories {
  margin: 2rem 0 3rem;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-tab {
  background: transparent;
  border: 2px solid var(--color-card-border);
  color: var(--color-muted);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.category-tab:hover {
  border-color: var(--color-highlight);
  color: var(--color-highlight);
}

.category-tab.active {
  background: var(--color-highlight);
  border-color: var(--color-highlight);
  color: white;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.blog-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-highlight) 0%, var(--color-secondary) 100%);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-highlight);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-category {
  background: var(--color-highlight);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-date {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.blog-card h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  line-height: 1.4;
}

.blog-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-highlight);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.read-more-btn {
  color: var(--color-highlight);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-highlight);
  border-radius: 6px;
  background: transparent;
  font-size: 0.9rem;
}

.read-more-btn:hover {
  background: var(--color-highlight);
  color: white;
  transform: translateY(-1px);
}

/* Newsletter Section */
.blog-newsletter {
  margin: 4rem 0;
}

.newsletter-signup {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-card-border);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-highlight);
}

.newsletter-btn {
  background: var(--color-highlight);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.newsletter-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-1px);
}

.newsletter-note {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
}

/* Responsive adjustments for blog page */
@media (max-width: 768px) {
  .category-tabs {
    gap: 0.5rem;
  }
  
  .category-tab {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .newsletter-signup {
    flex-direction: column;
  }
  
  .newsletter-input {
    min-width: auto;
  }
}

/* Blog Post Template Components */
.article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.article-date,
.article-category,
.article-read-time {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.article-category {
  background: var(--color-highlight);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.article-content {
  margin-bottom: 4rem;
}

.article-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Related Posts Section */
.related-posts {
  margin: 4rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--color-card-border);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.related-post {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.related-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-highlight) 100%);
}

.related-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h3 {
  margin: 1rem 1.5rem 0.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.related-post p {
  margin: 0 1.5rem 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.related-post .read-more {
  display: block;
  margin: 0 1.5rem 1.5rem;
  color: var(--color-highlight);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.related-post .read-more:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Responsive adjustments for blog posts */
@media (max-width: 768px) {
  .article-meta {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
