/* ===== NEWS SECTION ===== */
.news-section {
  padding: 40px 0;
}
.news-section__row{
  --gutter: 15px;
}
.news-section__header {
  margin-bottom: 32px;
}
.news-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}
.news-section__subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}
.news-section__block{
  background: #f3f3f3;
  padding: 20px;
  border-radius: 12px;
}
/* News Featured Section */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  /* Grid 2x2 */
}
@media (max-width: 991px) {
  .news-featured {
    grid-template-columns: 1fr;
  }
}
.news-featured__main {
  position: relative;
}
.news-featured__main-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-featured__main-image {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-featured__main-image {
    height: 400px;
  }
}
.news-featured__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-featured__main-link:hover .news-featured__main-img {
  transform: scale(1.05);
}
.news-featured__main-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  padding: 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-featured__main-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #FFC107;
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.news-featured__main-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .news-featured__main-title {
    font-size: 22px;
  }
}
.news-featured__main-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.news-featured__main-author {
  font-weight: 600;
}
.news-featured__main-separator {
  opacity: 0.7;
}
.news-featured__main-date {
  opacity: 0.9;
}
.news-featured__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .news-featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-featured__grid {
    grid-template-columns: 1fr;
  }
}
.news-featured__grid-item {
  position: relative;
}
.news-featured__grid-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-featured__grid-image {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-featured__grid-image {
    height: 200px;
  }
}
.news-featured__grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-featured__grid-link:hover .news-featured__grid-img {
  transform: scale(1.05);
}
.news-featured__grid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-featured__grid-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #FFC107;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.news-featured__grid-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-featured__grid-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.news-featured__grid-author {
  font-weight: 600;
}
.news-featured__grid-separator {
  opacity: 0.7;
}
.news-featured__grid-date {
  opacity: 0.9;
}

/* Section Title */
.news-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    margin: 0 0 20px;
}
.news-section-title__text {
   
}

/* Prominent Article */
.news-prominent {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}
.news-prominent:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
@media (max-width: 991px) {
  .news-prominent {
    grid-template-columns: 1fr;
  }
}
.news-prominent__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.news-prominent__image-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  position: relative;
}
.news-prominent__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-prominent__image-link:hover .news-prominent__image {
  transform: scale(1.05);
}
.news-prominent__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: #3b82f6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-prominent__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}
.news-prominent__title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}
.news-prominent__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-prominent__title a:hover {
  color: var(--color-1);
}
.news-prominent__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  flex-wrap: wrap;
}
.news-prominent__author {
  font-weight: 600;
  color: #374151;
}
.news-prominent__separator {
  opacity: 0.5;
}
.news-prominent__date {
  color: #6b7280;
}
.news-prominent__read-time {
  color: #6b7280;
}
.news-prominent__excerpt {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* News List */
.news-list {
  display: grid;
  gap: 24px;
  margin-bottom: 20px;
}

/* News Card */
.news-card {
  display: grid;
  grid-template-columns: 345px 1fr;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.news-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .news-card {
    grid-template-columns: 1fr;
  }
}
.news-card__media {
  position: relative;
  overflow: hidden;
}
.news-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
}
.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-card__image-link:hover .news-card__image {
  transform: scale(1.05);
}
.news-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 5px 0;
  font-size: 13px;
  color: #6b7280;
  &>*:not(:last-child):after{
    content: "•";
    margin: 0 8px;
  }
}

.news-card__category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-card__date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.news-card__date i {
  font-size: 16px;
}
.news-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}
.news-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-card__title a:hover {
  color: var(--color-1);
}
.news-card__excerpt {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}
.news-card__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.news-card__author i {
  font-size: 16px;
}
.news-card__read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.news-card__read-more i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.news-card__read-more:hover {
  color: #d97706;
}
.news-card__read-more:hover i {
  transform: translateX(4px);
}
.news-card__newsletter {
  background: var(--bg-linear);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #fff;
}
.news-card__newsletter-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card__newsletter-icon i {
  font-size: 30px;
}
.news-card__newsletter-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.news-card__newsletter-text {
  font-size: 14px;
  margin: 0 0 20px 0;
  opacity: 0.9;
}
.news-card__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card__newsletter-input {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
}
.news-card__newsletter-btn {
  padding: 12px 24px;
  background: #fff;
  color: var(--color-1);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.news-card__newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.news-card__newsletter-btn i {
  font-size: 18px;
}



/* ===== NEWS DETAIL ===== */
.news-detail {
  padding: 40px 0;
}

.detail-article {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .detail-article {
    padding: 24px;
  }
}
.detail-article__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e5e7eb;
}
.detail-article__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #6b7280;
  flex-wrap: wrap;
}
.detail-article__category {
  padding: 6px 14px;
  background: white;
  box-shadow: 0 0 2px 0 #ffc107;
  color: var(--color-1);
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.detail-article__date, .detail-article__views {
  display: flex;
  align-items: center;
  gap: 6px;
}
.detail-article__date i, .detail-article__views i {
  font-size: 18px;
}
.detail-article__title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 24px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .detail-article__title {
    font-size: 28px;
  }
}
.detail-article__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail-article__author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.detail-article__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-article__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-article__author-name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.detail-article__author-role {
  font-size: 13px;
  color: #6b7280;
}
.detail-article__featured-image {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.detail-article__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.detail-article__body {
  margin-bottom: 32px;
}
.detail-article__lead {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(230, 160, 4, 0.05);
  border-left: 4px solid var(--color-1);
  border-radius: 8px;
}
.detail-article__tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
  margin-top: 20px;
}
.detail-article__tags-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
.detail-article__tags-label i {
  color: var(--color-1);
}
.detail-article__tag {
  padding: 6px 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #374151;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.detail-article__tag:hover {
  background: rgba(230, 160, 4, 0.1);
  border-color: var(--color-1);
  color: var(--color-1);
}
.detail-article__share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.detail-article__share-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
.detail-article__share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.detail-article__share-btn i {
  font-size: 18px;
}
.detail-article__share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.detail-article__share-btn--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}
.detail-article__share-btn--zalo:hover {
  background: #0068ff;
  border-color: #0068ff;
  color: #fff;
}
.detail-article__share-btn--copy:hover {
  background: var(--bg-linear);
  border-color: var(--color-1);
  color: #fff;
}

/* Related News */
.news-related__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 24px 0;
}
.news-related__title i {
  color: var(--color-1);
  font-size: 28px;
}
.news-related__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .news-related__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-related__list {
    grid-template-columns: 1fr;
  }
}
.news-related__item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.news-related__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.news-related__image-link {
  display: block;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.news-related__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-related__item:hover .news-related__image {
  transform: scale(1.05);
}
.news-related__content {
  padding: 16px;
}
.news-related__date {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}
.news-related__title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}
.news-related__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-related__title a:hover {
  color: var(--color-1);
}
/*# sourceMappingURL=maps/news.css.map */
