.news__header {}

/* ============== NEWS HEADER CSS START ============== */
.content__news .news__header {
  background: #FAFAFA;
}

.news__header .header__navbar {

}

.news__header .navbar__el {
  display: inline-block;
  position: relative;
}

.news__header .navbar__el--sub:after {
  content: "";
  height: 2.8rem;
  border-right: solid 1px #C0C0C0;
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
}

.news__header .navbar__el a {
  display: inline-block;
  text-decoration: none;
  color: #767676;
  font-size: 2rem;
  line-height: 2.8rem;
  padding: 2.4rem 3.2rem;
}

.news__header .navbar__el--active a {
  /* \1 */
  font-weight: 700;
  color: var(--primary-color);
}

.news__header .navbar__el--main a {
  color: var(--text-color);
  padding: 2.8rem 0.9rem;
}
/* ============== NEWS HEADER CSS END ============== */

/* ============== NEWS BODY CSS START ============== */
.content__news .news__body {
  padding: 3.6rem 0;
  background: #F6F6F6;
}

.news__body .news_section-1 {
  display: flex;
  max-height: 95rem;
}

.news_section-1 .section-1__main {
  width: 66.15%;
  margin-right: 2.15%;
  display: flex;
}

.news_section-1 .section-1__small {
  width: 31.7%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem 0rem;
}


.news__body .news__main {
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 1.6rem;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news__body .news__main:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.news__body .news__main a,
.news__body .news__small a,
.news__body .news__list .news__item a {
  color: var(--text-color);
}

.news__body .news__main .main__img {
  width: 100%;
  height: 57rem;
}

.news__body .news__main .main__img img {    border-radius: 1.6rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__body .news__main .main__content {
  padding: 4rem;
}

.news__body .news__main .main__tittle {
  /* \1 */
  font-size: 3.9rem;
  line-height: 5.46rem;
  font-weight: 700;
}

.news__body .news__main .main__notification,
.news__body .news__small .small__notification,
.news__body .news__list .item__notification {
  color: var(--text-color);
  margin-top: 1.6rem;
  /* \1 */
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;

}

.news__body .news__main .notification__date,
.news__body .news__small .notification__date,
.news__body .news__list .notification__date {
  font-family: FFZ_Poppins-Regular;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 400;
}

.news__body .news__main .notification__category,
.news__body .news__small .notification__category,
.news__body .news__list .notification__category {
  text-transform: uppercase;
}

.news__body .news__main .notification__date::before,
.news__body .news__small .notification__date::before,
.news__body .news__list .notification__date::before {
  content: "● ";
  margin: 0 1.1rem;
}

.news__body .news__main .main__description {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 2.24rem;
  max-height: 4.48rem;  /* 2 dòng */
  font-weight: 400;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* Giới hạn số dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__body .news__small {
  height: 50%;
  background: #FFFFFF;
  border-radius: 1.6rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news__body .news__small:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.news__body .small__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news__body .news__small .small__img {
  width: 100%;
  height: 27.5rem;
}

.news__body .news__small .small__img img {
  border-radius: 1.6rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__body .news__small .small__tittle {
  /* \1 */
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.8rem;
  max-height: 5.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news__body .news__list {
}

.news__body .news__list .news__ul {
  margin-top: 2rem;
  width: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
  padding: 1.6rem;
  background: #FFFFFF;
}

.news__body .news__list .news__item {}

.news__body .news__list .news__item:not(:first-child) {
  margin-top: 1.6rem;
}

.news__body .news__list .news__item a {
  display: flex;
}

.news__body .news__list .item__img {
  width: 32%;
  height: 27.5rem;
}

.news__body .news__list .item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
}

.news__body .news__list .item__content {
  width: 68%;
  padding: 0 3.2rem;
}

.news__body .news__list .item__tittle {
  /* \1 */
  font-size: 2.5rem;
  line-height: 3.5rem;
  font-weight: 700;
}

.news__body .news__list .item__description {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 2.24rem;
  font-weight: 400;
}
/* ============== NEWS BODY CSS END ============== */

@media (max-width: 767px) {
  .content__news .news__body {
    padding: 20px;
  }

  .content__news .news__content {
    width: 100%;
  }
  
  .news__body .news_section-1 {
    display: block;
    max-height: none;
    padding-bottom: 35px;
    border-bottom: solid 1px #EBEBEB;
  }
  
  .news_section-1 .section-1__main {
    width: 100%;
    margin-right: 0;
  }
  
  .news_section-1 .section-1__small {
    width: 100%;
    gap: 2rem 0rem;
  }
  
  .news__body .news__main {
    border-radius: 16px;
  }
  
  .news__body .news__main .main__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
  
  .news__body .news__main .main__img img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .news__body .news__main .main__content {
    padding: 20px;
  }
  
  .news__body .news__main .main__tittle {
    font-size: 16px;
    line-height: 23px;
  }
  
  .news__body .news__main .main__notification,
  .news__body .news__small .small__notification,
  .news__body .news__list .item__notification {
    margin-top: 16px;
    font-size: 16px;
    line-height: 23px;
  
  }
  
  .news__body .news__main .notification__date,
  .news__body .news__small .notification__date,
  .news__body .news__list .notification__date {
    font-size: 16px;
    line-height: 23px;
  }
  
  .news__body .news__main .notification__date::before,
  .news__body .news__small .notification__date::before,
  .news__body .news__list .notification__date::before {
    content: "● ";
    margin: 0 5px;
  }
  
  .news__body .news__small {
    margin-top: 20px;
    border-radius: 16px;
  }
  
  .news__body .small__url {
    width: 100%;
  }
  
  .news__body .small__content {
    padding: 20px;
  }
  
  .news__body .news__small .small__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
  
  .news__body .news__small .small__img img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .news__body .news__small .small__tittle {
    font-size: 16px;
    line-height: 23px;
  }
  
  .news__body .news__list {
  }
  
  .news__body .news__list .news__ul {
    margin-top: 20px;
    border-radius: 16px;
    padding: 1.6rem;
  }
  
  .news__body .news__list .news__item {
    border-bottom: solid 1px #EBEBEB;
    padding: 16px 0;
  }
  
  .news__body .news__list .news__item:last-child {
    border-bottom: none;
  }
  
  .news__body .news__list .news__item a {
    display: flex;
  }
  
  .news__body .news__list .item__img {
    width: 160px;
    height: 100px;
  }
  
  .news__body .news__list .item__img img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
  }
  
  .news__body .news__list .item__content {
    flex: 1;
    padding: 0 15px;
    margin-left: 10px;
  }
  
  .news__body .news__list .item__tittle {
    font-size: 14px;
    line-height: 20px;
  }
  
  .news__body .news__list .item__description {
    margin-top: 1.6rem;
    font-size: 1.6rem;
    line-height: 2.24rem;
    font-weight: 400;
  }
}

/* 56% */
@media (min-width: 768px) and (max-width: 1023px) {

}

/* 64% */
@media (min-width: 1024px) and (max-width: 1279px) {

}

/* 75% */
@media (min-width: 1280px) and (max-width: 1535px) {

}

/* 85% */
@media (min-width: 1536px) and (max-width: 1919px) {

}
