/* stylelint-disable */
.section-blog {
  overflow: hidden;
  padding: clamp(32px, 5.99vw, 115px) 0;
}
.section-blog__wrapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 2.5vw, 48px);
}
.section-blog__wrapp > .editor h3 {
  text-align: left !important;
}
.section-blog__posts {
  display: grid;
  gap: 24px;
}
.section-blog .post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-blog .post-card__thumb {
  position: relative;
  height: clamp(240px, 31.25vw, 320px);
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.section-blog .post-card__thumb img,
.section-blog .post-card__thumb picture {
  width: 100%;
  height: 100%;
}
.section-blog .post-card__pubtime {
  position: absolute;
  padding: 8px;
  left: 16px;
  top: 16px;
  background-color: #fff;
  border-radius: 36px;
  font-size: 14px;
  line-height: 150%;
  color: #000;
}
.section-blog .post-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-blog .post-card__body span {
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-blog .post-card__body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1025px) {
  .section-blog {
    background-color: var(--bg-d);
  }
  .section-blog__posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .section-blog__posts {
    grid-template-columns: 100%;
  }
}
/*# sourceMappingURL=section-blog.css.map */