.article-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.header-image {
  width: 100%;
  margin-top: 20px;
}

.header-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
  margin-bottom: 20px;
}

.article-summary,
.section-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 28px;
}

.article-summary {
  margin-bottom: 30px;
}

.article-content-info {
  margin-bottom: 30px;
}
.content-section {
  margin-bottom: 12px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 28px;
  margin-bottom: 5px;
}


/* related articles */

.article-blog-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.blog-post {
  padding: 12px 0;
}

.blog-image {
  width: 100%;
  height: 324px;
  object-fit: cover;
  margin-bottom: 20px;
}

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