
.helper__news {
  padding-bottom: 70px;
}
.helper__news-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
.helper__products-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 20px;
}
.helper__news-title {
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.helper__news-image {
  margin-bottom: 15px;
}
.helper__news-img {
  width: 278px;
  max-height: 180px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.helper__news-item {
  width: 278px;
  height: 280px;
  background: #e30017;
  margin: 5px;
  overflow: hidden;
}
.helper__news-name {
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}
.helper__news-date {
  color: #eaeaea;
  font-size: 12px;
}
.helper__news-box {
  padding: 0 15px;
}
@media (max-width: 550px) {
  .helper__news-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
    gap: 30px;
    justify-content: space-between;
    align-items: center;
  }
  .helper__news-link {
    padding: 0;
  }
  .helper__news .news-link {
    display: none;
  }
  .helper__news-item {
    width: 150px;
    height: 175px;
  }
  .helper__news-box {
    padding: 0 5px;
  }
  .helper__news-name {
    font-size: 12px;
  }
}
@media (max-width: 325px) {
  .helper__news-link {
    display: block;
  }
  .helper__news-item {
    margin: 0 auto;
    width: 278px;
    height: 280px;
  }
  .helper__news-name {
    font-size: 16px;
  }
}
