/* Blog Grid Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.blog-card__image-link {
  display: block;
  overflow: hidden;
}

.blog-card__image-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card__content {
  padding: 20px;
}

.blog-card__category {
  display: inline-block;
  background: #1a5276;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 10px;
}

.blog-card__title a {
  color: #333;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: #1a5276;
}

.blog-card__excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px;
}

.blog-card__link {
  color: #1a5276;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.blog-card__link:hover {
  text-decoration: underline;
}

/* Article Featured Image */
.article-featured-image {
  margin: 20px 0 30px;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Blog 1: How-To Guide - Numbered Steps */
.guide-steps { margin: 2rem 0; }
.guide-step { display: flex; gap: 1.5rem; margin-bottom: 2rem; padding: 1.5rem; background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; }
.guide-step__number { width: 48px; height: 48px; background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.guide-step__content { flex: 1; }
.guide-step__title { font-size: 1.1rem; font-weight: 600; color: #1f2937; margin-bottom: 0.5rem; }
.guide-step__text { color: #6b7280; line-height: 1.7; margin: 0; }

.tip-box { background: linear-gradient(135deg, #e8f0fe 0%, #dbeafe 100%); border-left: 4px solid #1e40af; padding: 1.25rem 1.5rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0; }
.tip-box__title { font-weight: 600; color: #1e40af; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.tip-box__text { color: #374151; line-height: 1.6; margin: 0; }

.warning-box { background: #fef3c7; border-left: 4px solid #f59e0b; padding: 1.25rem 1.5rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0; }
.warning-box__title { font-weight: 600; color: #b45309; margin-bottom: 0.5rem; }
.warning-box__text { color: #78350f; line-height: 1.6; margin: 0; }

/* Blog 2: Questions Checklist */
.checklist { margin: 1.5rem 0; }
.checklist-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; background: #fff; border: 1px solid #e5e7eb; margin-bottom: 0.75rem; border-radius: 8px; transition: all 0.2s ease; }
.checklist-item:hover { border-color: #1e40af; background: #f8fafc; }
.checklist-item__icon { width: 28px; height: 28px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.checklist-item__icon svg { width: 16px; height: 16px; fill: #16a34a; }
.checklist-item__content { flex: 1; }
.checklist-item__title { font-weight: 600; color: #1f2937; margin-bottom: 0.25rem; }
.checklist-item__text { color: #6b7280; font-size: 0.9rem; line-height: 1.5; margin: 0; }

.comparison-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.comparison-table th { background: #1e40af; color: #fff; padding: 1rem; text-align: left; font-weight: 600; }
.comparison-table td { padding: 1rem; border-bottom: 1px solid #e5e7eb; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #f8fafc; }

.question-category { background: #f8fafc; padding: 1.5rem; border-radius: 12px; margin-bottom: 1.5rem; border: 1px solid #e5e7eb; }
.question-category__title { font-size: 1.1rem; font-weight: 600; color: #1e40af; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.question-category__title svg { width: 20px; height: 20px; fill: #1e40af; }

/* Blog 3: Pros/Cons & Stats */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.pros-box, .cons-box { padding: 1.5rem; border-radius: 12px; }
.pros-box { background: #dcfce7; border: 1px solid #86efac; }
.cons-box { background: #fef2f2; border: 1px solid #fecaca; }
.pros-box__title, .cons-box__title { font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.pros-box__title { color: #166534; }
.cons-box__title { color: #991b1b; }
.pros-box ul, .cons-box ul { margin: 0; padding-left: 1.25rem; }
.pros-box li, .cons-box li { margin-bottom: 0.5rem; line-height: 1.5; }
.pros-box li { color: #166534; }
.cons-box li { color: #991b1b; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

.stat-highlight { display: flex; gap: 2rem; justify-content: center; margin: 2rem 0; padding: 2rem; background: linear-gradient(135deg, #1e40af 0%, #1e3a5f 100%); border-radius: 12px; }
.stat-item { text-align: center; color: #fff; }
.stat-item__number { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.stat-item__label { font-size: 0.875rem; opacity: 0.9; margin-top: 0.25rem; }
@media (max-width: 600px) { .stat-highlight { flex-wrap: wrap; gap: 1.5rem; } .stat-item { flex: 1 1 40%; } }

.quote-callout { position: relative; background: #f8fafc; padding: 2rem 2rem 2rem 4rem; border-radius: 12px; margin: 2rem 0; border: 1px solid #e5e7eb; }
.quote-callout::before { content: '"'; position: absolute; left: 1rem; top: 0.5rem; font-size: 4rem; color: #1e40af; opacity: 0.3; font-family: Georgia, serif; line-height: 1; }
.quote-callout__text { font-size: 1.1rem; color: #374151; line-height: 1.7; font-style: italic; margin: 0 0 0.75rem; }
.quote-callout__author { color: #6b7280; font-size: 0.9rem; }

.benefit-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin: 1.5rem 0; }
.benefit-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 1.25rem; transition: all 0.2s ease; }
.benefit-card:hover { border-color: #1e40af; box-shadow: 0 4px 12px rgba(30,64,175,0.1); }
.benefit-card__icon { width: 40px; height: 40px; background: #e8f0fe; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.benefit-card__icon svg { width: 20px; height: 20px; fill: #1e40af; }
.benefit-card__title { font-weight: 600; color: #1f2937; margin-bottom: 0.5rem; }
.benefit-card__text { color: #6b7280; font-size: 0.9rem; line-height: 1.5; margin: 0; }
@media (max-width: 600px) { .benefit-cards { grid-template-columns: 1fr; } }

/* Shared Blog Enhancements */
.article-intro { font-size: 1.15rem; color: #374151; line-height: 1.8; border-left: 4px solid #1e40af; padding-left: 1.5rem; margin-bottom: 2rem; }

.section-label { display: inline-flex; align-items: center; gap: 0.5rem; background: #e8f0fe; color: #1e40af; padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }

.inline-cta { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); padding: 2rem; border-radius: 12px; text-align: center; margin: 2rem 0; }
.inline-cta__title { color: #fff; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.inline-cta__text { color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; }
.inline-cta .button { background: #fff; color: #1e40af; }
