.latest-news .box, #poststuff .latest-news .box {
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid #AFACAC;
  background-color: #fff;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .latest-news .box:hover, #poststuff .latest-news .box:hover {
    box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 0.1); }

.latest-news__items, #poststuff .latest-news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }
  @media (max-width: 992px) {
    .latest-news__items, #poststuff .latest-news__items {
      grid-template-columns: repeat(1, 1fr); } }

.latest-news__item .title, #poststuff .latest-news__item .title {
  color: #000;
  font-weight: 600; }

.latest-news__item .btn-v2, #poststuff .latest-news__item .btn-v2 {
  margin-top: auto; }
