.blog {
  padding: 140px 0 100px;
}

.blog-meta {
  margin-bottom: 56px;
}

.blog-img {
  border-radius: var(--border-radius-primary);
  max-height: 550px;
  object-fit: cover;
  width: 100%;
}

.blog-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  align-items: center;
}

.blog-content .wrapper,
.blog-content .blog-list {
  width: calc(100% / 2 - 20px);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-highlight {
  background-color: var(--secondary-background);
  border-left: 5px solid var(--secondary-color);
  padding: 20px;
  border-radius: 12px;
}

.highlight-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #3a3a3a;
}

.highlight-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin: 12px 0;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .blog-content .wrapper,
  .blog-content .blog-list {
    width: 100%;
  }
}
