.news_style1 .news_general {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 24px;
}
.news_style1 .news_item .wrap_figure figure {
  height: 240px;
  overflow: hidden;
  border-radius: 20px;
}
.news_style1 .news_item .wrap_figure figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s;
}
.news_style1 .news_item .wrap_figure figure:hover img {
  transform: scale(1.1);
}
.news_style1 .news_item .text_widget {
  margin: 20px 0px 0px 0px;
}
.news_style1 .news_item .text_widget p {
  margin: 12px 0px 0px 0px;
}
.news_style1 .news_item .text_widget p a {
  font-size: 20px;
  line-height: 28px;
  color: var(--black);
  transition: all 0.5s;
}
.news_style1 .news_item .text_widget p a:hover {
  color: var(--orange);
}
@media (max-width: 1024px) {
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news_style1 .tg_date {
    order: 2;
  }
  .news_style1 .news_item .text_widget {
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .news_style1 .news_general {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .news_style1 .news_item {
    display: flex;
    gap: 16px;
  }
  .news_style1 .news_item .wrap_figure figure {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .news_style1 .news_general {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 16px;
  }
  .news_style1 .news_item .text_widget p a {
    font-size: 14px;
    line-height: 22px;
  }
  .news_style1 .news_item .text_widget p {
    margin: 0px;
  }
  .news_style1 .tg_date {
    order: 2;
  }
  .news_style1 .news_item .text_widget {
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .news_style1 .news_item {
    display: flex;
    gap: 16px;
  }
  .news_style1 .news_item .wrap_figure figure {
    width: 140px;
    height: 90px;
    border-radius: 12px;
  }
  .news_style1 .news_item .wrap_figure figure img {
    border-radius: 12px;
  }
}
/* end news_style1 */
.news_style2 .tg_date {
  font-size: 14px;
  line-height: 22px;
}
.news_style2 .news_general .news_item {
  margin: 0px 0px 24px 0px;
  padding: 0px 0px 24px 0px;
  border-bottom: 1px solid #d0d5d8;
  display: flex;
  align-items: center;
  gap: 24px;
}
.news_style2 .news_general > .news_item:last-child {
  margin: 0px;
  padding: 0px;
  border-bottom: none;
}
.news_style2 .news_item .wrap_figure figure {
  width: 300px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
}
.news_style2 .news_item .wrap_figure figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.5s;
}
.news_style2 .news_item .wrap_figure figure:hover img {
  transform: scale(1.1);
}
.news_style2 .news_item .text_widget {
  flex-grow: 1;
  position: relative;
  padding: 0px 60px 0px 0px;
}
.news_style2 .news_item .text_widget p {
  margin: 6px 0px 0px 0px;
}
.news_style2 .news_item .text_widget p a {
  color: var(--black);
  transition: all 0.5s;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.news_style2 .news_item .text_widget p a:hover {
  color: var(--orange);
}
.news_style2 .tg_excerpt {
  margin: 20px 0px 0px 0px;
}
.news_style2 .tg_excerpt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300;
}
.news_style2 .see_details_btn {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0px, -50%);
  transition: all 0.5s;
  background: #ffeee4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.news_style2 .see_details_btn:hover {
  background: var(--orange);
}
.news_style2 .see_details_btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news_style2 .see_details_btn svg path {
  transition: all 0.5s;
}
.news_style2 .see_details_btn:hover svg path {
  fill: var(--white);
}
.news_style2 .tg_border_btn a {
  padding: 4px 42px;
  margin: 40px 0px 0px 0px;
  font-size: 12px;
}
.news_style2 .tg_border_btn a i {
  width: 20px;
  height: 20px;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .news_style2 .news_item .text_widget p a {
    font-size: 18px;
    line-height: 26px;
  }
  .news_style2 .news_item .wrap_figure figure {
    width: 250px;
    height: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news_style2 .news_category .category_bg {
    gap: 40px;
  }
  .news_style2 .tg_excerpt {
    margin: 10px 0px 0px 0px;
    font-size: 14px;
    line-height: 22px;
  }
  .news_style2 .news_item .text_widget p a {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .news_style2 .tg_date {
    font-size: 12px;
    line-height: 20px;
  }
  .news_style2 .news_item .text_widget {
    padding: 0px 60px 0px 0px;
  }
  .news_style2 .tg_border_btn a {
    margin: 24px 0px 0px 0px;
  }
  .news_style2 .tg_excerpt {
    margin: 10px 0px 0px 0px;
    font-size: 12px;
    line-height: 20px;
  }
  .news_style2 .news_item .text_widget p a {
    font-size: 14px;
    line-height: 22px;
  }
  .news_style2 .news_item .wrap_figure figure {
    width: 100%;
    height: 200px;
  }
  .news_style2 .news_general .news_item {
    flex-direction: column;
    align-items: inherit;
    gap: 16px;
    padding: 0px 0px 16px 0px;
    margin: 0px 0px 16px 0px;
  }
}
/* end news_style2 */

.news_style3 .news_detailds_top .news_item .wrap_figure figure {
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}
.news_style3 .news_detailds_top .news_item .wrap_figure figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.5s;
}
.news_style3 .news_detailds_top .news_item .wrap_figure figure:hover img {
  transform: scale(1.1);
}
.news_style3 .news_detailds_top .news_item .text_widget {
  margin: 24px 0px 0px 0px;
}
.news_style3 .news_detailds_top .news_item .text_widget p {
  margin: 6px 0px 0px 0px;
}
.news_style3 .news_detailds_top .news_item .text_widget p a {
  font-weight: 500;
  color: var(--black);
  transition: all 0.5s;
}
.news_style3 .news_detailds_top .news_item .text_widget p a:hover {
  color: var(--orange);
}
.news_style3 .news_detailds_bottom {
  margin: 35px 0px 0px 0px;
}
.news_style3 .news_detailds_bottom .news_item {
  margin: 0px 0px 16px 0px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.news_style3 .news_detailds_bottom > .news_item:last-child {
  margin: 0px;
}
.news_style3 .news_detailds_bottom .news_item .wrap_figure figure {
  width: 190px;
  height: 115px;
  border-radius: 12px;
  overflow: hidden;
}
.news_style3 .news_detailds_bottom .news_item .wrap_figure figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.5s;
}
.news_style3 .news_detailds_bottom .news_item .wrap_figure figure:hover img {
  transform: scale(1.1);
}
.news_style3 .tg_date {
  font-size: 14px;
  line-height: 22px;
}
.news_style3 .news_detailds_bottom .news_item .text_widget p {
  margin: 6px 0px 0px 0px;
}
.news_style3 .news_detailds_bottom .news_item .text_widget p a {
  font-weight: 500;
  color: var(--black);
  transition: all 0.5s;
}
.news_style3 .news_detailds_bottom .news_item .text_widget p a:hover {
  color: var(--orange);
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .news_style3 .news_category .category_bg {
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .news_style3 .news_detailds_bottom {
    margin: 24px 0px 0px 0px;
  }
  .news_style3 .news_detailds_top .news_item .text_widget {
    margin: 16px 0px 0px 0px;
  }
  .news_style3 .news_detailds_top .news_item .wrap_figure figure img {
    border-radius: 12px;
  }
  .news_style3 .news_detailds_top .news_item .wrap_figure figure {
    height: 200px;
    border-radius: 12px;
  }
  .news_style3 .news_detailds_bottom .news_item .text_widget p a {
    font-size: 14px;
    line-height: 22px;
  }
  .news_style3 .tg_date {
    font-size: 12px;
    line-height: 20px;
    order: 2;
  }
  .news_style3 .news_detailds_bottom .news_item .text_widget {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .news_style3 .news_detailds_bottom .news_item {
    gap: 16px;
    align-items: inherit;
  }
  .news_style3 .news_detailds_bottom .news_item .wrap_figure figure {
    width: 140px;
    height: 90px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news_style3 .news_general .news_detailds_bottom {
    width: 50%;
    margin: 0px;
  }
  .news_style3 .news_general .news_detailds_top {
    width: 50%;
  }
  .news_style3 .news_general {
    display: flex;
    gap: 24px;
  }
}
@media (max-width: 767px) {
}
/* end news_style3 */
/* end css rau */
