.block-posts {
  padding: 50px 0;
  margin-bottom: 154px;
}

.block-posts__headings {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  margin-bottom: 56px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.block-posts__text {
  margin: 0;
}

.block-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  max-width: 1340px;
  margin-right: auto;
  margin-left: auto;
}

.block-posts__item {
  display: flex;
  flex-direction: column;
}

.block-posts__image-box {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 26px;
}

.block-posts__image-box--default {
  height: 230px;
}

.block-posts__image-box--same_ratio {
  aspect-ratio: 3/2;
}

.block-posts__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-posts__image-box--auto .block-posts__image {
  height: auto;
  -o-object-fit: unset;
     object-fit: unset;
}

.block-posts__content {
  padding: 0 35px 0 20px;
}

.block-posts__tag {
  color: var(--tg-color-primary-black);
  display: inline-block;
  border-radius: 30px;
  padding: 4px 13px;
  background-color: #D4E4FC;
  white-space: nowrap;
  font-size: 11px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 14px;
}

.block-posts__name {
  margin-bottom: 14px;
}

.block-posts__name a {
  color: var(--tg-color-primary-black);
  font-size: 22px;
  line-height: 31px;
  letter-spacing: -0.66px;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

.block-posts__name a:hover {
  color: var(--tg-color-blue-500);
}

.block-posts__link {
  color: var(--tg-color-primary-black);
  opacity: 0.6;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.15px;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

.block-posts__link:hover {
  color: var(--tg-color-blue-500);
}

@media screen and (max-width: 767px) {
  .block-posts {
    margin-bottom: 72px;
  }

  .block-posts__headings {
    margin-bottom: 40px;
  }

  .block-posts__title {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.72px;
  }

  .block-posts__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }

  .block-posts__name {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.54px;
  }

  .block-posts__name a {
    font-size: 18px;
    line-height: 28px;
  }

  .block-posts__content {
    padding: 0 20px 0 20px;
  }
}