@charset "UTF-8";
.all_content_news_details {
  display: flex;
  gap: 2.5rem;
}

.all_news_page {
  padding: 30px 0;
}
.all_news_page .inner_news_content_page {
  width: 100%;
}

.item-background-border {
  padding: 20px;
  background: #f6f3ec;
  border-radius: 24px;
}

.title_cat_layout::after {
  content: "";
  position: absolute;
  top: 15%;
  height: 70%;
  width: 3px;
  background: #eacd75;
  left: 0;
  display: block;
}

.news_cate_layout1 .cate_layout_title,
.news_cate_layout2 .cate_layout_title,
.news_cate_layout3 .cate_layout_title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 40px;
  color: #333;
  margin-bottom: 2rem;
}
.news_cate_layout1 .cate_layout_title .title,
.news_cate_layout2 .cate_layout_title .title,
.news_cate_layout3 .cate_layout_title .title {
  width: 80%;
  background: linear-gradient(to right, rgb(246, 243, 235) 50%, rgb(246, 243, 235) 0%, rgba(246, 243, 235, 0) 100%);
}
.news_cate_layout1 .cate_layout_title .btn_watch_all,
.news_cate_layout2 .cate_layout_title .btn_watch_all,
.news_cate_layout3 .cate_layout_title .btn_watch_all {
  width: 20%;
}
.news_cate_layout1 .cate_layout_title a,
.news_cate_layout2 .cate_layout_title a,
.news_cate_layout3 .cate_layout_title a {
  color: inherit;
  text-decoration: none;
}
.news_cate_layout1 .cate_layout_title a:hover,
.news_cate_layout2 .cate_layout_title a:hover,
.news_cate_layout3 .cate_layout_title a:hover {
  background: linear-gradient(to bottom, #eacd75, #ddb359);
}

.group_news_card,
.group_news_card-detail {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.group_news_card .first_item,
.group_news_card-detail .first_item {
  flex: 1;
  max-width: 60%;
  min-width: 0;
}
.group_news_card .first_item .img_news_wrapper,
.group_news_card-detail .first_item .img_news_wrapper {
  width: 100%;
  height: 451px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}
.group_news_card .first_item .img_news_wrapper img,
.group_news_card-detail .first_item .img_news_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.group_news_card .first_item .news_desc,
.group_news_card-detail .first_item .news_desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.group_news_card .first_item .news_desc .release_date_row,
.group_news_card-detail .first_item .news_desc .release_date_row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.group_news_card .first_item .news_desc .release_date_row .release_category_name,
.group_news_card-detail .first_item .news_desc .release_date_row .release_category_name {
  color: #764d2a;
}
.group_news_card .first_item .news_desc .release_date_row span,
.group_news_card-detail .first_item .news_desc .release_date_row span {
  display: flex;
  align-items: center;
}
.group_news_card .first_item .news_desc .release_date_row span img,
.group_news_card-detail .first_item .news_desc .release_date_row span img {
  width: 16px;
  height: 16px;
}
.group_news_card .first_item .news_desc .release_date_row .release_date,
.group_news_card-detail .first_item .news_desc .release_date_row .release_date {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}
.group_news_card .first_item .news_desc .summary,
.group_news_card-detail .first_item .news_desc .summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em;
}
.group_news_card .first_item .news_desc .news_title,
.group_news_card-detail .first_item .news_desc .news_title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3rem;
}
.group_news_card .first_item .news_desc .news_summary,
.group_news_card-detail .first_item .news_desc .news_summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.group_news_card .first_item:hover .img_news_wrapper img,
.group_news_card-detail .first_item:hover .img_news_wrapper img {
  transform: scale(1.05);
}
.group_news_card .first_item:hover .news_title,
.group_news_card-detail .first_item:hover .news_title {
  color: #007ec3;
}
.group_news_card .grid_news_item,
.group_news_card-detail .grid_news_item {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  min-width: 0;
}
.group_news_card .grid_news_item .news_item,
.group_news_card-detail .grid_news_item .news_item {
  display: flex;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: #f6f3ec;
  transition: all 0.3s ease;
}
.group_news_card .grid_news_item .news_item .img_news_wrapper,
.group_news_card-detail .grid_news_item .news_item .img_news_wrapper {
  flex: 1;
  max-width: 270px;
  max-height: 151px;
  overflow: hidden;
  border-radius: 24px;
  height: inherit;
}
.group_news_card .grid_news_item .news_item .img_news_wrapper img,
.group_news_card-detail .grid_news_item .news_item .img_news_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.group_news_card .grid_news_item .news_item .news_desc,
.group_news_card-detail .grid_news_item .news_item .news_desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.group_news_card .grid_news_item .news_item .news_desc .release_date_row,
.group_news_card-detail .grid_news_item .news_item .news_desc .release_date_row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  white-space: nowrap;
}
.group_news_card .grid_news_item .news_item .news_desc .release_date_row span,
.group_news_card-detail .grid_news_item .news_item .news_desc .release_date_row span {
  display: flex;
  align-items: center;
}
.group_news_card .grid_news_item .news_item .news_desc .release_date_row span img,
.group_news_card-detail .grid_news_item .news_item .news_desc .release_date_row span img {
  width: 14px;
  height: 14px;
}
.group_news_card .grid_news_item .news_item .news_desc .release_date_row .release_date,
.group_news_card-detail .grid_news_item .news_item .news_desc .release_date_row .release_date {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}
.group_news_card .grid_news_item .news_item .news_desc .summary,
.group_news_card-detail .grid_news_item .news_item .news_desc .summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em;
}
.group_news_card .grid_news_item .news_item .news_desc .news_title,
.group_news_card-detail .grid_news_item .news_item .news_desc .news_title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3rem;
}
.group_news_card .grid_news_item .news_item .news_desc .news_summary,
.group_news_card-detail .grid_news_item .news_item .news_desc .news_summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em; /* line-height * số dòng */
}
.group_news_card .grid_news_item .news_item:hover,
.group_news_card-detail .grid_news_item .news_item:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.group_news_card .grid_news_item .news_item:hover .img_news_wrapper img,
.group_news_card-detail .grid_news_item .news_item:hover .img_news_wrapper img {
  transform: scale(1.05);
}
.group_news_card .grid_news_item .news_item:hover .news_title,
.group_news_card-detail .grid_news_item .news_item:hover .news_title {
  color: #007ec3;
}

.news_cate_layout2 .group_news_card.group_news_card-detail {
  grid-template-columns: 1fr;
}
.news_cate_layout2 .group_news_card.group_news_card-detail .news_item {
  display: flex;
  gap: 1.5rem;
}
.news_cate_layout2 .group_news_card.group_news_card-detail .news_item .img_news_wrapper {
  max-width: 270px;
  height: 152px;
}
.news_cate_layout2 .group_news_card.group_news_card-detail .news_item .news_desc .summary p {
  margin-bottom: 0rem;
}

.news_cate_layout2 .group_news_card,
.news_cate_layout3 .group_news_card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news_cate_layout2 .group_news_card .news_item,
.news_cate_layout3 .group_news_card .news_item {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #f6f3ec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.news_cate_layout2 .group_news_card .news_item .img_news_wrapper,
.news_cate_layout3 .group_news_card .news_item .img_news_wrapper {
  width: 100%;
  height: 277px;
  overflow: hidden;
  border-radius: 1.5rem;
}
.news_cate_layout2 .group_news_card .news_item .img_news_wrapper img,
.news_cate_layout3 .group_news_card .news_item .img_news_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news_cate_layout2 .group_news_card .news_item .news_desc .release_date_row,
.news_cate_layout3 .group_news_card .news_item .news_desc .release_date_row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0px;
}
.news_cate_layout2 .group_news_card .news_item .news_desc .release_date_row span,
.news_cate_layout3 .group_news_card .news_item .news_desc .release_date_row span {
  display: flex;
  align-items: center;
}
.news_cate_layout2 .group_news_card .news_item .news_desc .release_date_row span img,
.news_cate_layout3 .group_news_card .news_item .news_desc .release_date_row span img {
  width: 16px;
  height: 16px;
}
.news_cate_layout2 .group_news_card .news_item .news_desc .release_date_row .release_date,
.news_cate_layout3 .group_news_card .news_item .news_desc .release_date_row .release_date {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}
.news_cate_layout2 .group_news_card .news_item .news_desc .news_title,
.news_cate_layout3 .group_news_card .news_item .news_desc .news_title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3rem;
}
.news_cate_layout2 .group_news_card .news_item .news_desc .summary p,
.news_cate_layout3 .group_news_card .news_item .news_desc .summary p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em; /* line-height * số dòng */
}
.news_cate_layout2 .group_news_card .news_item .news_desc .summary,
.news_cate_layout3 .group_news_card .news_item .news_desc .summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em; /* line-height * số dòng */
}
.news_cate_layout2 .group_news_card .news_item:hover,
.news_cate_layout3 .group_news_card .news_item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.news_cate_layout2 .group_news_card .news_item:hover .img_news_wrapper img,
.news_cate_layout3 .group_news_card .news_item:hover .img_news_wrapper img {
  transform: scale(1.05);
}
.news_cate_layout2 .group_news_card .news_item:hover .news_title,
.news_cate_layout3 .group_news_card .news_item:hover .news_title {
  color: #007ec3;
}

.group_news_card_hot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
}
.group_news_card_hot .news_item {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  transition: all 0.3s ease;
  gap: 0.75rem;
  width: 100%;
  min-height: 68px;
}
.group_news_card_hot .news_item .img_news_wrapper {
  max-width: 120px;
  min-width: 120px;
  width: 120px;
  height: 68px;
  flex-shrink: 0;
}
.group_news_card_hot .news_item .img_news_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 0.5rem;
}
.group_news_card_hot .news_item .news_desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}
.group_news_card_hot .news_item .news_desc .news_title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  word-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
  min-height: 3rem;
}
.group_news_card_hot .news_item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.group_news_card_hot .news_item:hover .img_news_wrapper img {
  transform: scale(1.05);
}
.group_news_card_hot .news_item:hover .news_title {
  color: #007ec3;
}

.other_video_thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.other_video_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.other_video_thumb .play_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.other_video_thumb .play_icon img {
  width: 1.125rem !important;
  height: 24px !important;
}

.video_url {
  height: 100%;
}
.video_url .other_video_card {
  background: #faf7ef;
  border-radius: 20px;
  padding: 1.125rem 1.125rem 12px 1.125rem;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s;
  height: inherit;
  transition: all 0.3s ease;
}
.video_url .other_video_card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.video_url .other_video_card .other_video_thumb {
  width: 100%;
  max-height: 277px;
  overflow: hidden;
  border-radius: 1.5rem;
}
.video_url .other_video_card .other_video_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video_url .other_video_card .other_video_thumb .play_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video_url .other_video_card .other_video_thumb .play_icon img {
  width: 1.125rem;
  height: 24px;
}
.video_url .other_video_card .other_video_info {
  width: 100%;
}
.video_url .other_video_card .other_video_info .other_video_name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.5;
  min-height: 3rem;
}
.video_url .other_video_card .other_video_info .other_video_meta {
  font-size: 1rem;
  color: #bfa76a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.video_url .other_video_card .other_video_info .other_video_meta span {
  font-weight: 400;
}

@media (max-width: 768px) {
  .group_news_card_hot {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .group_news_card_hot {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (min-width: 1025px) {
  .group_news_card_hot {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
.btn_watch_all {
  padding: 0.75rem 1rem;
  background: #fff;
  color: #49454f;
  text-decoration: none;
  border-radius: 1.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 1px solid #cac4d0;
}
.btn_watch_all svg {
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}
.btn_watch_all:hover {
  background: linear-gradient(to bottom, #eacd75, #ddb359);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 126, 195, 0.3);
}
.btn_watch_all:hover svg {
  transition: all 0.3s ease;
  transform: translateX(4px);
}

.breadcrumb {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.breadcrumb a {
  color: #666;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #007ec3;
}
.breadcrumb p {
  color: #666;
  margin: 0;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-container .news-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.news-container .news-item.featured {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.news-container .news-item.featured .img_news_wrapper {
  height: 277px;
}
.news-container .news-item.featured .news_desc .news_title {
  font-size: 28px;
}
.news-container .news-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.news-container .news-item .img_news_wrapper {
  width: 100%;
  height: 277px;
  overflow: hidden;
}
.news-container .news-item .img_news_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news-container .news-item .news_desc {
  padding: 20px;
}
.news-container .news-item .news_desc .release_date_row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.news-container .news-item .news_desc .release_date_row span {
  display: flex;
  align-items: center;
}
.news-container .news-item .news_desc .release_date_row span img {
  width: 16px;
  height: 16px;
}
.news-container .news-item .news_desc .release_date_row .release_date {
  font-size: 0.875rem;
  color: #666;
  font-weight: 400;
}
.news-container .news-item .news_desc .summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em;
}
.news-container .news-item .news_desc .news_title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3rem;
}
.news-container .news-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.news-container .news-item:hover .img_news_wrapper img {
  transform: scale(1.05);
}
.news-container .news-item:hover .news_title {
  color: #007ec3;
}

@media (max-width: 1024px) {
  .group_news_card {
    flex-direction: column;
  }
  .group_news_card .first_item {
    max-width: 100%;
  }
  .group_news_card .grid_news_item {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .inner_news_content_page {
    padding-bottom: 3rem;
  }
  .video_url .other_video_card {
    height: initial;
  }
  .my-container {
    padding: 0 12px;
  }
  .all_news_page {
    padding: 20px 0;
  }
  .all_content_news_details {
    flex-direction: column;
    gap: 1.5rem;
  }
  .news_cate_layout1,
  .news_cate_layout2,
  .news_cate_layout3 {
    margin-bottom: 40px;
  }
  .news_cate_layout1 .cate_layout_title,
  .news_cate_layout2 .cate_layout_title,
  .news_cate_layout3 .cate_layout_title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .news_cate_layout1 .cate_layout_title .title,
  .news_cate_layout2 .cate_layout_title .title,
  .news_cate_layout3 .cate_layout_title .title {
    width: 80%;
    background: linear-gradient(to right, rgb(246, 243, 235) 50%, rgb(246, 243, 235) 0%, rgba(246, 243, 235, 0) 100%);
  }
  .news_cate_layout1 .cate_layout_title .btn_watch_all,
  .news_cate_layout2 .cate_layout_title .btn_watch_all,
  .news_cate_layout3 .cate_layout_title .btn_watch_all {
    width: 20%;
  }
  .news_cate_layout1 .cate_layout_title .link_all,
  .news_cate_layout2 .cate_layout_title .link_all,
  .news_cate_layout3 .cate_layout_title .link_all {
    position: absolute;
    right: 0;
  }
  .group_news_card .grid_news_item .news_item .news_desc,
  .group_news_card-detail .grid_news_item .news_item .news_desc {
    overflow: hidden;
    gap: 0 !important;
  }
  .group_news_card .item-background-border {
    padding: 1rem;
  }
  .group_news_card .first_item .img_news_wrapper {
    height: 224px;
  }
  .group_news_card .first_item .news_desc {
    gap: 1rem;
  }
  .group_news_card .first_item .news_desc .release_date_row {
    margin: 0;
  }
  .group_news_card .grid_news_item {
    gap: 1rem;
  }
  .group_news_card .grid_news_item .news_item {
    gap: 12px;
  }
  .group_news_card .grid_news_item .news_item .img_news_wrapper {
    flex: 1;
    width: 100%;
    height: 120px;
    border-radius: 1rem;
  }
  .group_news_card .grid_news_item .news_item .news_desc .news_title {
    font-size: 1rem;
    -webkit-line-clamp: 2;
  }
  .group_news_card .grid_news_item .news_item .news_desc .news_summary {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em; /* line-height * số dòng */
  }
  .news_cate_layout2 .group_news_card,
  .news_cate_layout3 .group_news_card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-container .news-item.featured {
    grid-template-columns: 1fr;
  }
  .news-container .news-item.featured .img_news_wrapper {
    height: 200px;
  }
  .news-container .news-item.featured .news_desc .news_title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .group_news_card .grid_news_item .news_item {
    padding: 12px;
  }
  .group_news_card .grid_news_item .news_item .news_desc .news_title {
    font-size: 14px;
  }
  .group_news_card .grid_news_item .news_item .news_desc .release_date_row .release_date {
    font-size: 11px;
  }
}
