/* ===== Blog Article CSS ===== */
.blog-article {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0 auto;
  max-width: 900px;
  padding: 20px;
}

/* Headings */
.blog-article h2, .blog-article h3, .blog-article h4 {
  margin-top: 1.8em;
  margin-bottom: 0.8em;
  line-height: 1.3;
  font-weight: 600;
  color: #1a1a1a;
}

/* Paragraphs */
.blog-article p {
  margin-bottom: 1.2em;
}

/* Lists */
.blog-article ul, .blog-article ol {
  margin-left: 1.5em;
  margin-bottom: 1.2em;
}

/* Image-text row for side-by-side layout */
.image-text-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 1.5em 0;
  gap: 20px;
}

.image-text-row .image {
  flex: 1 1 40%;
  max-width: 400px;
}

.image-text-row .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.image-text-row .text {
  flex: 1 1 55%;
  min-width: 220px;
}

/* Image caption in italic */
.image-text-row .caption {
  font-style: italic;
  font-size: 0.9em;
  margin-top: 0.5em;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .image-text-row {
    flex-direction: column;
  }

  .image-text-row .image, .image-text-row .text {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Soft CTA buttons (optional) */
.blog-article .cta-button {
  display: inline-block;
  margin-top: 1.5em;
  padding: 10px 22px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.blog-article .cta-button:hover {
  background-color: #005bb5;
}
