section.shop {
  padding: 0 0 80px;
}
.title.shop {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 25px;
  margin-block: 80px 60px;
  margin-inline: auto;
  line-height: 1.4;
  font-size: 40px;
  letter-spacing: 0.1em;
}
.title.shop img {
  width: 20px;
  aspect-ratio: 20 / 52;
}
.title.shop img + img {
  rotate: 180deg;
}
.shop-news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.shop-news-list .news-grid {
  text-align: left;
  max-width: 270px;
}
.shop-news-list .news-grid figure {
  aspect-ratio: 1;
}
.shop-news-list .news-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.shop-news-list .news-grid .news-shop {
  margin-top: 15px;
}
.shop-news-list .news-grid .news-shop p {
  border-bottom: 1px solid #7d7d7d;
  padding-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
  color: #7d7d7d;
}
.shop-news-list .news-grid .news-title {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
.shop-news-list .news-grid .news-date time {
  font-size: 14px;
  font-weight: 400;
  color: #7d7d7d;
}
.no-posts {
  padding-block: 150px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  section.shop {
    padding: 0 0 50px;
  }
  .title.shop {
    gap: 0 25px;
    margin-block: 25px 30px;
    font-size: 25px;
  }
  .title.shop img {
    width: 15px;
  }
  .shop-news-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-news-list .news-grid .news-shop p {
    font-size: 12px;
  }
  .shop-news-list .news-grid .news-title {
    font-size: 14px;
  }
  .shop-news-list .news-grid .news-date time {
    font-size: 12px;
  }
  .no-posts {
    padding-block: 100px;
    font-size: 16px;
  }
}