.line-clamp-5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.blog-content {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.blog-details {
  width: 100%;
}

.blog-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  background: #e8f1ff;
  padding: 32px 0px;
  border-radius: 8px;
}

.blog-header .blog-breadcrumb {
  background: #2563eb;
  color: white;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 0px 8px 8px 0px;
}

.blog-header .blog-header-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0px 24px;
}

.blog-header .blog-header-content .blog-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.blog-header .blog-header-content .blog-owner {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.blog-header .blog-header-content .blog-owner * {
  margin: 0;
}

.blog-header .blog-header-content .blog-owner img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.blog-aside {
  flex-shrink: 0;
  width: 300px;
}

@media (max-width: 992px) {
  .blog-content {
    flex-direction: column;
  }

  .blog-aside {
    width: 100%;
  }
}
