.post_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.post_content_wrap {
  background-color: #00001b;
  box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  padding: 16px;
}

.post_content_img_wrap {
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.post_info_list_wrap {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 16px;
}

.post_info_list {
  display: flex;
  gap: 16px;
}

.post_info_item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post_info_item_img {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.post_info_item_text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.post_content_text {
  font-size: 12px;
  font-weight: 500;
  color: #adadb6;
}

.socials_list_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 16px;
}

.socials_list_title {
  font-size: 14px;
  font-weight: 700;
  color: #adadb6;
  text-transform: uppercase;
}

.aside_content_wrap:first-child {
  display: none;
}

@media screen and (min-width: 1024px) {
  .post_wrapper {
    display: flex;
  }

  .post_content_wrap {
    width: 70%;
  }

  .post_info_item_img {
    font-size: 16px;
  }

  .post_info_item_text {
    font-size: 14px;
  }

  .post_content_text {
    font-size: 14px;
  }

  .socials_list_title {
    font-size: 16px;
  }

  .post_aside_wrap {
    width: 30%;
  }

  .aside_content_wrap:first-child {
    display: block;
  }

  .aside_news_item {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
    margin-bottom: 16px;
    transition: box-shadow 0.3s ease;
  }

  .aside_news_item:hover {
    box-shadow: 0 0 25px rgba(0, 0, 27, 0.5);
  }

  .aside_news_item:last-child {
    margin-bottom: 0;
  }

  .aside_news_link {
    display: flex;
    gap: 16px;
    color: #00001b;
    transition: all 0.3s ease;
  }

  .aside_news_link:hover {
    color: #ff4b44;
  }

  .aside_news_img_wrap {
    position: relative;
    width: 150px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
  }

  .aside_news_img_wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 27, 0.25);
    z-index: 2;
    transition: background-color 0.3s ease;
  }

  .aside_news_link:hover .aside_news_img_wrap::before {
    background-color: rgba(0, 0, 27, 0.5);
  }

  .aside_news_img_wrap img {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .aside_news_link:hover .aside_news_img_wrap img {
    transform: scale(1.1);
  }

  .aside_news_info_wrap {
    padding: 8px 0;
    width: 50%;
  }

  .aside_news_info_subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #ff4b44;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .aside_news_info_title {
    font-size: 14px;
    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_content_wrap {
    padding: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .post_info_item_img {
    font-size: 18px;
  }

  .post_info_item_text {
    font-size: 16px;
  }

  .post_content_text {
    font-size: 16px;
  }

  .socials_list_title {
    font-size: 18px;
  }

  .aside_news_info_subtitle {
    font-size: 14px;
  }

  .aside_news_info_title {
    font-size: 16px;
  }
}
