.post_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.post_content_wrap {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
}

.post_content_img_wrap {
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.post_content_info_wrap {
  border-bottom: 1px solid rgba(0, 0, 64, 0.35);
  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 {
  height: 15px;
  width: 15px;
  object-fit: contain;
}

.post_content_info_item_text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(26, 49, 60);
}

.post_content_text {
  font-size: 11px;
  font-weight: 500;
  color: rgb(26, 49, 60);
}

.post_socials_list_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 64, 0.35);
  padding-bottom: 16px;
}

.post_socials_list_title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(26, 49, 60);
}

.post_socials_list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post_socials_link_img {
  height: 15px;
  width: 15px;
  object-fit: contain;
  fill: #1a313c;
  transition: ease 0.9s;
}

.post_socials_link_img:hover {
  fill: #00eeff;
}

.post_aside_wrap {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
}

.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 {
    padding: 24px;
    width: 70%;
  }

  .post_content_info_item_img {
    height: 20px;
    width: 20px;
  }

  .post_content_info_item_text {
    font-size: 13px;
  }

  .post_content_text {
    font-size: 13px;
  }

  .post_socials_list_title {
    font-size: 13px;
  }

  .post_socials_link_img {
    height: 20px;
    width: 20px;
  }

  .post_aside_wrap {
    padding: 24px;
    width: 30%;
  }

  .aside_content_wrap_visibility {
    display: block;
  }

  .aside_news_item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
    background: #ffffff;
    margin-bottom: 16px;
    transition: ease 0.9s;
  }

  .aside_news_item:hover {
    box-shadow: 0px 0px 25px rgba(0, 0, 64, 0.5);
  }

  .aside_news_item:last-child {
    margin-bottom: 0;
  }

  .aside_news_link {
    display: flex;
    gap: 16px;
    color: rgb(26, 49, 60);
    transition: ease 0.9s;
  }

  .aside_news_link:hover {
    color: rgb(12, 90, 166);
  }

  .aside_news_link_img_wrap {
    height: 90px;
    width: 120px;
    border-radius: 16px;
    overflow: hidden;
  }

  .aside_news_link_img_wrap img {
    transition: transform 0.9s ease;
  }

  .aside_news_link:hover .aside_news_link_img_wrap img {
    transform: scale(1.1);
  }

  .aside_news_info_wrap {
    padding: 8px 0;
    width: 50%;
  }

  .aside_news_info_subtitle {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(165, 165, 165);
    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_socials_list_wrap {
    gap: 16px;
  }

  .post_socials_list {
    gap: 16px;
  }
}

@media screen and (min-width: 1440px) {
  .post_content_info_item_img {
    height: 25px;
    width: 25px;
  }

  .post_content_info_item_text {
    font-size: 15px;
  }

  .post_content_text {
    font-size: 15px;
  }

  .post_socials_list_title {
    font-size: 15px;
  }

  .post_socials_link_img {
    height: 25px;
    width: 25px;
  }

  .aside_news_link_img_wrap {
    height: 100px;
    width: 150px;
  }

  .aside_news_info_subtitle {
    font-size: 13px;
  }

  .aside_news_info_title {
    font-size: 15px;
  }
}
