.post-hero-section-1 {
  background: linear-gradient(90deg, #f9f9fb 0%, #ebedf3 50%);
}
.post-hero-section-1 .content {
  flex-direction: column;
  gap: 80px;
}
.post-hero-section-1 .section-side-one,
.post-hero-section-1 .section-side-two {
  max-width: 800px;
}
.post-hero-section-1 .section-side-one {
  grid-column: 1/span 6;
  display: flex;
  flex-direction: column;
  gap: var(--inner-spacing-sm);
}
.post-hero-section-1 .section-side-two {
  grid-column: 7/span 6;
}
.post-hero-section-1 .post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.post-hero-section-1 .post-meta-separator {
  color: var(--gray-400);
}
.post-hero-section-1 .post-date {
  color: var(--gray-600);
}
.post-hero-section-1 .page-title {
  margin: 0;
}
.post-hero-section-1 .image-container {
  width: 100%;
  aspect-ratio: 800/427;
  border-radius: var(--border-radius-6xl);
  overflow: hidden;
}
.post-hero-section-1 .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1024px) {
  .post-hero-section-1 .content {
    grid-template-columns: 1fr;
  }
  .post-hero-section-1 .section-side-one,
  .post-hero-section-1 .section-side-two {
    grid-column: 1/-1;
  }
}