/* BlogPostsGrid - Magento 2 */
.blogposts-bloco {
  width: 100%;
  background: #F9F9F9;
  padding: 94px 0 84px 0;
}

.blogposts-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blogposts-title {
  font-size: 32px;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 25px;
  font-family: inherit;
  font-weight: 700;
}

.blogposts-title span {
  font-weight: 300;
}

.blogposts-grid {
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: flex-start;
}

.blogposts-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border-radius: 16px;
  text-decoration: none;
  width: 346px;
  transition: box-shadow 0.2s;
  box-shadow: none;
}

.blogposts-card:hover {
  box-shadow: none;
  text-decoration: none;
  color: #222;
}

.blogposts-img {
  width: 100%;
  height: 208px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.blogposts-text {
  font-size: 18px;
  color: #222;
  margin-top: 10px;
  text-align: left;
  font-weight: 400;
  padding: 0;
}

@media (max-width: 767px) {
  .blogposts-title {
    font-size: 25px;
    line-height: 22px;
    max-width: 262px;
    margin-bottom: 30px;
  }

  .blogposts-grid {
    display: block;
  }

  .blogposts-card {
    width: 100%;
    margin-bottom: 30px;
    align-items: baseline;
  }

  .blogposts-img {
    height: auto;
  }

  .blogposts-text {
    font-size: 16px;
  }
}