.blog-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .blog-container {
    padding: 0rem 2rem 6rem 2rem;
  }
}

/* Blog Header */
.blog-header {
  margin-bottom: 3rem;
}

.blog-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: rgba(0, 0, 0, 0.1);
  color: #000000;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .blog-title {
    font-size: 3rem;
  }
}

.blog-intro {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.75;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Blog Sections */
.blog-section {
  margin-bottom: 3rem;
}

.blog-text,
.section-intro,
.list {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.blog-heading,
.cta-heading {
  font-size: 1.875rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 2rem;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.advantage-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.advantage-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.advantage-image {
  width: 80%;
  margin: 20px 0px 0px 0px;
}
.advantage-content {
  flex: 1;
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  margin-top: 5px;
}

.advantage-description {
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.image-caption {
  margin: 0px 0px 0px 120px;
  font-size: 14px;
}

.advantage-reasoning {
  background-color: rgba(0, 0, 0, 0.03);
  border-left: 4px solid #000000;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
}

.advantage-reasoning p {
  font-size: 0.975rem;
  color: #4b5563;
  margin: 0;
  line-height: 28px;
  font-size: 14px;
}

.advantage-reasoning strong {
  color: #000000;
  font-style: normal;
}

/* Impact Section */
.impact-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
}

.impact-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1rem;
}

.impact-content p {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Blog List */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.blog-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #000000;
}

.list-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #000000;
  font-weight: bold;
}

/* Blog CTA */
.blog-cta {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.03) 100%);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.cta-text {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (min-width: 768px) {
  .advantage-card {
    display: flex;
    gap: 1rem;
  }

  .advantage-icon {
    margin-bottom: 0;
  }
}

/* Author Section */
.author-section {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: 2rem;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-details {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #1a1a1a;
}

.author-title {
  font-size: 0.9rem;
  color: #0066cc;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.author-bio {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.blog-hero-image {
  width: 100%;
}
