main section.blog-type {
  flex-direction: column;
  gap: 32px;
}
main section.blog-type .posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
main section.blog-type .posts-grid .post-tile {
  display: flex;
  flex-direction: column;
  padding: 0;
}
main section.blog-type .posts-grid .post-tile .post {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
main section.blog-type .posts-grid .post-tile .post img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
main section.blog-type .posts-grid .post-tile .post img.icon {
  width: 15px;
}
main section.blog-type .posts-grid .post-tile .post.full-width {
  grid-column: 1/-1;
}
main section.blog-type .posts-grid .post-tile .post .date,
main section.blog-type .posts-grid .post-tile .post .description {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}
main section.blog-type .posts-grid .post-tile .post .post-date {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}
main section.blog-type .posts-grid .post-tile .post .title {
  font-size: 18px;
}
main section.blog-type .posts-grid .post-tile .post .main-text {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 14px;
}
main section.blog-type .posts-grid .post-tile .orange-btn {
  margin-top: auto;
}
main section.blog-type .posts-grid .row-divider {
  grid-column: 1/-1;
  height: 1px;
  background: rgba(0, 0, 0, 0.0509803922);
  margin: -8px 0 0 0;
}
main section.blog-type .posts-grid .tile-row {
  display: contents;
}

@media screen and (max-width: 1599px) {
  main section.blog-type .posts-grid .post-tile .post .description {
    font-size: 10px;
  }
  main section.blog-type .posts-grid .post-tile .post .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  main section.blog-type .posts-grid {
    grid-template-columns: 1fr;
  }
  main section.blog-type .posts-grid .post-tile {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0509803922);
  }
  main section.blog-type .posts-grid .post-tile.full-width {
    grid-column: 1;
  }
}

/*# sourceMappingURL=blog-type.css.map */
