.inner-news {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.inner-news__item {
  background-color: var(--main-gray);
  border-radius: 10px;
  padding: 24px;
  box-sizing: border-box;
  user-select: none;
  text-decoration: none;
  transition: all 300ms ease;
  min-height: 220px;
}

.inner-news__item:hover {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}

.inner-news__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}

.inner-news__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 10px;
}

.inner-news__add-date {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--main-red);
}

.inner-news__item-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .inner-news {
    grid-template-columns: repeat(2, 1fr);
  }
  .inner-news__title {
    font-size: 18px;
  }
  .inner-news__description {
    font-size: 16px;
    line-height: 1.2;
  }
  .inner-news__item {
    border-radius: 14px;
    min-height: 230px;
  }
}

@media screen and (min-width: 1200px) {
  .inner-news {
    margin-top: 46px;
  }
  .inner-news {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .inner-news__title {
    font-size: 20px;
  }
  .inner-news__item {
    padding: 30px;
    min-height: 255px;
  }
}
