.news-title-cs {
  font-size: 30px;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 30px;
}

.news-list-cop {
  display: flex;
  gap: 0px;
  margin-bottom: 40px;
}

.news-list-left {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.no-data-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-list-right {
  width: 25%;
  padding: 0px 0px 0px 19px;
}

.blog-pos {
  position: sticky;
  top: 20px;
  transition: 0.45s ease-in-out;
}

.blog-img a img {
  width: 100%;
  height: 220px;
  border-radius: 7px;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar-blog {
  margin-bottom: 20px;
}
.sidebar-blog a img {
  width: 100%;
  height: 355px;
  border-radius: 7px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-list {
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-list:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-top {
  display: flex;
  margin: 12px 0px 12px 10px;
}
.blog-top span img {
  width: 20px;
  height: 20px;
}

.blog-author {
  margin-left: 5px;
  font-size: 12px;
}
.blog-author a {
  text-decoration: none;
  font-weight: bold;
}

.blog-content {
  margin: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  flex: 1;
}

.blog-linkr {
  font-weight: 600;
  color: #3a3a3a;
  transition: 0.3s ease-in-out;
  text-transform: none;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  display: block;
  margin-bottom: 10px;
}
.blog-linkr:hover {
  color: #e60023;
}

.blog-link {
  margin-top: auto;
  font-size: 12px;
}
.blog-link a {
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 500;
  transition: color 0.3s ease;
}
.blog-link a:hover {
  color: #f79853;
}
.blog-link a:hover .icon {
  transform: translateX(3px);
}
.blog-link .icon {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.no-data {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  background: #f9f9f9;
  border-radius: 10px;
  border: 2px dashed #ddd;
}

.no-data-content {
  text-align: center;
  padding: 40px;
}

.no-data-icon {
  font-size: 60px;
  color: #ccc;
  margin-bottom: 20px;
}

.no-data-title {
  font-size: 24px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 600;
}

.no-data-text {
  font-size: 16px;
  color: #999;
  line-height: 1.5;
}

.news-page .page__title {
  text-align: left;
}

.news__main {
  padding: 60px 0;
}

@media (max-width: 991px) {
  .news-list-left {
    width: 100%;
  }
  .news-list-right {
    width: 100%;
    padding-left: 0px;
  }
  .news-page .page__title {
    text-align: center;
  }
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .news__item-index .thumb__tag {
    left: 10px;
    top: 10px;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 20px;
    border-radius: 2px;
  }
  .news__item-time {
    font-size: 14px;
  }
  .news__item-time svg {
    max-height: 16px;
  }
  .news__item-index h3 {
    font-size: 16px;
    line-height: 1.4;
  }
  .news__item-index .btn-read-more {
    font-size: 14px;
  }
  .news-list-cop {
    margin-bottom: 0px;
  }
  .news__main {
    padding: 24px 0;
  }
}
@media (max-width: 767px) {
  .news__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}