.post_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.post_content_img_wrap {
  height: auto;
}

.post_content_info_wrap {
  border-bottom: 1px solid #adccf9;
  padding-bottom: 16px;
}

.post_content_info_list {
  display: flex;
  gap: 16px;
}

.post_content_info_item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post_content_info_item_img {
  font-size: 14px;
  font-weight: 600;
  color: #5b5a5f;
}

.post_content_info_item_text {
  font-size: 11px;
  font-weight: 600;
  color: #5b5a5f;
}

.post_content_text {
  font-size: 11px;
  font-weight: 500;
  color: #5b5a5f;
}

.post_list_wrap {
  border-bottom: 1px solid #adccf9;
  padding-bottom: 16px;
}

.post_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto;
}

.post_link {
  background-color: #f6f5f4;
  border: 1px solid #d2d1d9;
  font-size: 14px;
  font-weight: 600;
  color: #040113;
  line-height: 16px;
  padding: 8px 16px;
  display: inline-flex;
  height: 100%;
  transition: all 0.5s ease;
}

.post_link:hover {
  color: #fc0307;
}

.aside_content_wrap_visibility {
  display: none;
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1024px) {
  .post_wrapper {
    display: flex;
    /* gap: 24px; */
  }

  .post_content_wrap {
    width: 70%;
  }

  .post_content_info_item_img {
    font-size: 16px;
  }

  .post_content_info_item_text {
    font-size: 13px;
  }

  .post_content_text {
    font-size: 13px;
  }

  .post_aside_wrap {
    width: 30%;
    position: sticky;
    top: 20px;
  }

  .aside_content_wrap_visibility {
    display: block;
  }

  .aside_news_item {
    margin-bottom: 16px;
  }

  .aside_news_item:last-child {
    margin-bottom: 0;
  }

  .aside_news_link {
    display: flex;
    gap: 16px;
    color: #040113;
    transition: all 0.5s ease;
  }

  .aside_news_link:hover {
    color: #fc0307;
  }

  .aside_news_link_img_wrap {
    height: 90px;
    width: 120px;
  }

  .aside_news_info_wrap {
    padding: 8px 0;
    width: 50%;
  }

  .aside_news_info_subtitle {
    font-size: 11px;
    font-weight: 600;
    color: #5b5a5f;
    margin-bottom: 8px;
  }

  .aside_news_info_title {
    font-size: 13px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media screen and (min-width: 1200px) {
  .post_wrapper {
    gap: 24px;
  }

  .post_list {
    gap: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .post_content_info_item_img {
    font-size: 18px;
  }

  .post_content_info_item_text {
    font-size: 15px;
  }

  .post_content_text {
    font-size: 15px;
  }

  .aside_news_link_img_wrap {
    height: 100px;
    width: 150px;
  }

  .aside_news_info_subtitle {
    font-size: 13px;
  }

  .aside_news_info_title {
    font-size: 15px;
  }
}
