.post_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 5px;
  background: #f6f6f6;
  padding: 16px;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
  margin-bottom: 15px;
}

.post_content_wrap {
  width: 100%;
}

.post_content_img_wrap {
  margin-bottom: 15px;
  height: 250px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.post_content_info_wrap {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(165, 165, 165, 0.35);
  margin-bottom: 15px;
}

.post_content_info_list {
  display: flex;
  gap: 15px;
}

.post_content_info_item {
  align-items: center;
  display: flex;
  gap: 5px;
}

.post_content_info_item_img {
  height: 15px;
  width: 15px;
  object-fit: contain;
}

.post_content_info_item_text {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(255, 172, 75);
}

.post_content_text {
  font-size: 14px;
  font-weight: 500;
  color: rgb(105, 105, 105);
}

.post_socials_list_wrap {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(165, 165, 165, 0.35);
}

.post_socials_list {
  align-items: center;
  display: flex;
  column-gap: 10px;
  justify-content: flex-end;
}

.post_socials_link_img {
  width: 10px;
  height: 10px;
  object-fit: contain;
  transition: ease 0.5s;
  filter: contrast(100%);
}

.post_socials_link_img:hover {
  filter: contrast(90%);
}

.post_aside_wrap {
  width: 100%;
}

.aside_content_wrap_display_none {
  display: none;
}

.aside_news_item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: #f6f6f6;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
  transition: ease 0.5s;
}

.aside_news_item:last-child {
  margin-bottom: 0;
}

.aside_news_item:hover {
  box-shadow: 0px 0px 25px rgba(254, 89, 0, 0.5);
}

.aside_news_link {
  display: flex;
  transition: ease 0.5s;
  column-gap: 15px;
  color: rgb(3, 5, 35);
}

.aside_news_link:hover {
  color: rgb(255, 172, 75);
}

.aside_news_link_img_wrap {
  height: 75px;
  width: 90px;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.aside_news_info_wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aside_news_info_title {
  font-size: 12px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.league_table_post {
  width: 100%;
}

.league_table_head_post td:first-child,
.league_table_body_post td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 32px;
}

.league_table_head_post td:nth-child(2),
.league_table_body_post td:nth-child(2) {
  position: sticky;
  left: 32px;
  z-index: 3;
  min-width: 140px;
}

.league_table_head_point_text_post {
  font-size: 16px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.league_table_body_point_text_post {
  font-size: 14px;
  font-weight: 700;
  color: rgb(3, 5, 35);
}

.league_table_body_info_link_img_post {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.league_table_body_info_link_title_post {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (min-width: 576px) {
  .post_wrapper {
    gap: 20px;
    margin-bottom: 20px;
  }

  .post_content_info_wrap {
    margin-bottom: 20px;
  }

  .post_content_info_list {
    gap: 20px;
  }
}

@media screen and (min-width: 768px) {
  .post_wrapper {
    padding: 18px;
  }

  .post_content_img_wrap {
    height: 350px;
  }

  .post_content_info_item_img {
    height: 20px;
    width: 20px;
  }

  .post_content_info_item_text {
    font-size: 13px;
  }

  .post_socials_link_img {
    width: 15px;
    height: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .post_wrapper {
    flex-direction: row;
    gap: 25px;
    margin-bottom: 25px;
  }

  .post_content_wrap {
    width: 75%;
  }

  .post_content_info_wrap {
    margin-bottom: 25px;
  }

  .post_content_info_list {
    gap: 25px;
  }

  .post_content_info_item {
    gap: 10px;
  }

  .post_content_text {
    font-size: 16px;
  }

  .post_aside_wrap {
    width: 25%;
  }

  .aside_content_wrap_display_none {
    display: block;
  }

  .aside_news_info_wrap {
    padding: 2px;
  }

  .league_table_head_post td:first-child,
  .league_table_body_post td:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 30px;
  }

  .league_table_head_post td:nth-child(2),
  .league_table_body_post td:nth-child(2) {
    position: sticky;
    left: 30px;
    z-index: 3;
    min-width: 60px;
  }

  .league_table_head_point_text_post {
    font-size: 14px;
  }

  .league_table_body_point_text_post {
    font-size: 12px;
  }

  .league_table_body_info_link_title_post {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .post_wrapper {
    flex-direction: row;
    gap: 45px;
    margin-bottom: 30px;
    padding: 20px;
  }

  .post_content_info_wrap {
    margin-bottom: 30px;
  }

  .post_content_info_item_text {
    font-size: 15px;
  }

  .post_content_img_wrap {
    height: 450px;
  }

  .post_content_text {
    font-size: 18px;
  }

  .aside_news_info_wrap {
    padding: 5px;
  }

  .aside_news_link_img_wrap {
    height: 90px;
    width: 110px;
  }

  .aside_news_info_title {
    font-size: 14px;
  }
}

@media screen and (min-width: 1440px) {
  .post_wrapper {
    padding: 24px;
  }

  .post_content_img_wrap {
    height: 550px;
  }

  .post_content_info_item_img {
    height: 25px;
    width: 25px;
  }

  .post_socials_link_img {
    width: 20px;
    height: 20px;
  }

  .aside_news_link_img_wrap {
    height: 100px;
    width: 150px;
  }
}
