.news-categories-grid {
  margin-bottom: 40px;
  padding-top: 40px;
}
.news-categories-grid .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
  padding: 0 20px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0px 0px 0px;
  background: linear-gradient(60deg, #faaf40 320px, #f8f8f8 320px);
}
.news-categories-grid .categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.news-categories-grid .categories-grid .category-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.news-categories-grid .categories-grid .category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: #faaf40;
}
.news-categories-grid .categories-grid .category-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-categories-grid .categories-grid .category-item .category-content .category-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  transition: color 0.3s ease;
}
.news-categories-grid .categories-grid .category-item:hover .category-name {
  color: #faaf40;
}

.news-content-section .news-sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
}
.news-content-section .news-sort-bar .page-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin: 0;
}
.news-content-section .news-sort-bar .sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-content-section .news-sort-bar .sort-options label {
  font-weight: 600;
  color: #333;
}
.news-content-section .news-sort-bar .sort-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  outline: none;
}
.news-content-section .news-sort-bar .sort-options select:focus {
  border-color: #faaf40;
  box-shadow: 0 0 5px rgba(250, 175, 64, 0.3);
}
.news-content-section .news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.news-content-section .news-grid .news-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.news-content-section .news-grid .news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #faaf40;
}
.news-content-section .news-grid .news-item .news-image {
  overflow: hidden;
  height: auto;
}
.news-content-section .news-grid .news-item .news-image a {
  display: block;
  height: 100%;
  padding: 20px 0 20px 20px;
}
.news-content-section .news-grid .news-item .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news-content-section .news-grid .news-item .news-image:hover img {
  transform: scale(1.05);
}
.news-content-section .news-grid .news-item .news-content {
  padding: 20px;
}
.news-content-section .news-grid .news-item .news-content .news-title {
  margin-bottom: 4px;
}
.news-content-section .news-grid .news-item .news-content .news-title a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-content-section .news-grid .news-item .news-content .news-title a:hover {
  color: #faaf40;
}
.news-content-section .news-grid .news-item .news-content .news-meta {
  margin-bottom: 4px;
}
.news-content-section .news-grid .news-item .news-content .news-meta .news-time {
  color: #999;
  font-size: 14px;
  font-style: italic;
}
.news-content-section .news-grid .news-item .news-content .news-summary {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
  display: -webkit-box;
  height: 49px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-content-section .news-grid .news-item .news-content .news-read-more a {
  color: #faaf40;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}
.news-content-section .news-grid .news-item .news-content .news-read-more a:hover {
  color: #333;
}
.news-content-section .news-grid .news-item .news-content .news-read-more a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.news-content-section .news-grid .news-item .news-content .news-read-more a:hover i {
  transform: translateX(3px);
}
.news-content-section .news-grid .no-news {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 16px;
}

@media (max-width: 768px) {
  .news-categories-grid {
    padding-top: 20px;
    margin-bottom: 30px;
  }
  .news-categories-grid .section-title {
    font-size: 18px;
    height: 40px;
    margin-bottom: 20px;
    background: linear-gradient(60deg, #faaf40 80%, #f8f8f8 80%);
  }
  .news-categories-grid .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
  .news-categories-grid .categories-grid .category-item {
    padding: 15px;
  }
  .news-categories-grid .categories-grid .category-item .category-name {
    font-size: 14px;
  }
  .news-content-section .news-sort-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 15px;
  }
  .news-content-section .news-sort-bar .page-title {
    font-size: 18px;
  }
  .news-content-section .news-sort-bar .sort-options {
    flex-direction: column;
    gap: 8px;
  }
  .news-content-section .news-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .news-content-section .news-grid .news-item .news-image {
    height: 200px;
  }
  .news-content-section .news-grid .news-item .news-content {
    padding: 15px;
  }
  .news-content-section .news-grid .news-item .news-content .news-title a {
    font-size: 16px;
  }
  .news-content-section .news-grid .news-item .news-content .news-summary {
    font-size: 13px;
  }
}
.grid-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 30px;
  padding-top: 40px;
}

.white-space-temp {
  width: 100%;
  height: 355px;
  overflow: hidden;
  position: relative;
}
.white-space-temp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.white-space-temp .banner-title {
  padding-top: 50px;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(50px);
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}
.white-space-temp .banner-title h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
}

.item-cat {
  margin-bottom: 30px;
}
.item-cat:last-child {
  margin-bottom: 0;
}

.item-grid {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.item-grid img {
  margin-bottom: 10px;
  width: 100%;
}
.item-grid .name {
  font-weight: 700;
  font-size: 16px;
  color: #6d6e70;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: normal;
  transition: 0.1s;
}
.item-grid .name.first-name {
  font-size: 24px;
}
.item-grid .name:hover {
  color: #faaf40;
}
.item-grid .detail-time-hit {
  font-style: italic;
  font-size: 14px;
  color: #999;
  margin-bottom: 0;
  margin-top: 10px;
  font-weight: 100;
  line-height: normal;
}
.item-grid .detail-time-hit i {
  margin-right: 5px;
}

.list-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
.list-item .item-news:nth-child(1) {
  grid-area: 1/4/1/1;
}
.list-item .item-news:nth-child(1) img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-item .item-news:nth-child(1) .sum {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
  color: #6d6e70;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: normal;
}
.list-item .item-news:not(:first-child) img {
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.show-more {
  text-align: center;
  margin-top: 50px;
}
.show-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 40px;
  border-radius: 5px;
  background: #eee;
  color: #6d6e70;
  transition: 0.1s;
}
.show-more a i {
  margin-left: 5px;
}
.show-more a:hover {
  background: #ccc;
}

.h3_left {
  margin-bottom: 10px;
  line-height: normal;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 50px;
  border-radius: 10px 0px 0px 0px;
  background: linear-gradient(60deg, #faaf40 320px, #f8f8f8 320px);
}

.h3_right {
  display: flex;
  align-items: center;
  line-height: normal;
  color: #000;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #dddddd;
  padding: 0 20px;
  height: 60px;
}

.grid-left .item-grid {
  padding: 20px;
}

.grid-right .item-grid {
  margin-bottom: 30px;
}
.grid-right .item-grid:last-child {
  margin-bottom: 0;
}

.list-right {
  padding: 20px;
}
.list-right .item-right {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px dotted #dddddd;
}
.list-right .item-right:last-child {
  margin-bottom: 0;
}
.list-right .item-right img {
  margin-bottom: 0;
}
.list-right .item-right .name {
  font-weight: normal;
  transition: 0.1s;
}
.list-right .item-right .name:hover {
  color: #faaf40;
}

.list-tag {
  padding-bottom: 10px;
}

.item-tag {
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
  margin-bottom: 10px;
  padding: 0 15px;
  height: 40px;
  background: #f8f8f8;
  border: 1px solid #ccc;
  font-size: 16px;
  color: #6d6e70;
  transition: 0.1s;
}
.item-tag:hover {
  color: #faaf40;
}

.list-news-cate .item {
  display: grid;
  grid-template-columns: 270px auto;
  grid-gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
.list-news-cate .item img {
  margin-bottom: 0;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-news-cate .item .sum {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
  color: #6d6e70;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: normal;
}
.list-news-cate .item:first-child {
  grid-template-columns: 1fr;
}
.list-news-cate .item:first-child img {
  height: auto;
}
.list-news-cate .item:first-child .name {
  font-size: 24px;
}
.list-news-cate .item:first-child .sum {
  -webkit-line-clamp: unset;
}

.pagination {
  padding-bottom: 10px;
  background: none;
}

@media (max-width: 769px) {
  .list-news-cate .item img {
    height: auto;
  }
  .grid-container {
    grid-template-columns: auto;
    padding-top: 20px;
    grid-gap: 20px;
  }
  .h3_left {
    height: 35px;
    font-size: 14px;
    padding: 0 10px;
    background: linear-gradient(60deg, #faaf40 80%, #f8f8f8 80%);
  }
  .grid-left .item-grid {
    padding: 10px;
  }
  .item-grid .name.first-name {
    font-size: 14px;
  }
  .list-item {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .list-item .item-news:nth-child(1) {
    grid-area: unset;
  }
  .item-grid .name {
    font-size: 14px;
  }
  .list-item .item-news:not(:first-child) img {
    height: auto;
    margin-bottom: 0;
  }
  .list-item .item-news:not(:first-child) {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 10px;
  }
  .show-more {
    margin-top: 20px;
  }
  .show-more a {
    height: 30px;
  }
  .h3_right {
    font-size: 14px;
    padding: 10px;
    height: 35px;
  }
  .list-right {
    padding: 10px;
  }
  .list-right .item-right {
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .list-tag {
    padding: 10px 10px 10px 5px;
  }
  .item-tag {
    height: 35px;
    font-size: 14px;
  }
  .list-news-cate .item:first-child .sum {
    font-size: 14px;
  }
  .list-news-cate .item:first-child .name {
    font-size: 14px;
  }
  .list-news-cate .item {
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .list-news-cate .item .sum {
    font-size: 14px;
  }
  .list-item .item-news:nth-child(1) img {
    height: auto;
  }
}/*# sourceMappingURL=home.css.map */