main {
  /* ===== Tabs ===== */
  /* ===== Featured News ===== */
  /* ===== News List ===== */
  /* ===== Pagination ===== */
  /* ===== Solution Banner Backgrounds ===== */
}
main .banner {
  width: 100%;
  height: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('/img/newsPic/newsBanner.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
main .banner .banner-title {
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 24px;
}
main .banner .banner-subtitle {
  font-size: 18px;
  color: #C5D6E7;
  width: 700px;
  margin: 0 auto;
  line-height: 32px;
}
main .section {
  padding: 96px 0;
}
main .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
main .tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #F0F3F9;
  margin-bottom: 48px;
}
main .tab-item {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #5A6378;
  cursor: pointer;
  position: relative;
  transition: color 0.15s ease;
}
main .tab-item:hover {
  color: #1B6CFF;
}
main .tab-item.active {
  color: #1B6CFF;
  font-weight: 600;
}
main .tab-item.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1B6CFF;
}
main .news-featured {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #F0F3F9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 24px;
  text-decoration: none;
  color: inherit;
}
main .news-featured:hover {
  box-shadow: 0 12px 32px rgba(10, 22, 51, 0.1);
  border-color: #E8F1FF;
}
main .news-featured-cover {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
main .news-featured-cover svg {
  width: 72px;
  height: 72px;
  color: rgba(255, 255, 255, 0.4);
}
main .news-featured-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .news-featured-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .news-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #1B6CFF 0%, #00C2FF 100%);
  color: #fff;
  width: fit-content;
  margin-bottom: 16px;
}
main .news-featured-title {
  font-size: 24px;
  font-weight: 700;
  color: #0A1633;
  line-height: 1.4;
  margin-bottom: 12px;
}
main .news-featured-summary {
  font-size: 14px;
  color: #5A6378;
  line-height: 1.75;
  margin-bottom: 16px;
}
main .news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main .news-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid #F0F3F9;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
main .news-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(10, 22, 51, 0.08);
  border-color: #E8F1FF;
}
main .news-item-cover {
  width: 180px;
  height: 120px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
main .news-item-cover svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.5);
}
main .news-item-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .news-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main .news-item-category {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  background: #E8F1FF;
  color: #1B6CFF;
  width: fit-content;
  margin-bottom: 8px;
}
main .news-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #0A1633;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.15s ease;
}
main .news-item:hover .news-item-title {
  color: #1B6CFF;
}
main .news-item-summary {
  font-size: 14px;
  color: #5A6378;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
main .news-item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #9CA3B5;
  margin-top: 12px;
  flex-wrap: wrap;
}
main .news-item-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
main .news-item-meta svg {
  width: 14px;
  height: 14px;
}
main .news-item-tags {
  display: flex;
  gap: 4px;
}
main .news-item-tags span {
  font-size: 11px;
  color: #9CA3B5;
  padding: 2px 8px;
  background: #F8FAFF;
  border-radius: 6px;
}
main .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
main .page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #5A6378;
  background: #fff;
  border: 1px solid #F0F3F9;
  transition: all 0.15s ease;
  cursor: pointer;
}
main .page-btn:hover {
  color: #1B6CFF;
  border-color: #4D8FFF;
}
main .page-btn.active {
  background: #1B6CFF;
  color: #fff;
  border-color: #1B6CFF;
}
main .page-btn svg {
  width: 16px;
  height: 16px;
}
main .sol-banner-gov {
  background: linear-gradient(135deg, #1B6CFF 0%, #0A4FCC 100%);
}
main .sol-banner-edu {
  background: linear-gradient(135deg, #7C5CFC 0%, #5B3FD6 100%);
}
main .sol-banner-med {
  background: linear-gradient(135deg, #00C896 0%, #00A07A 100%);
}
main .sol-banner-tour {
  background: linear-gradient(135deg, #FF9500 0%, #FF6B00 100%);
}
main .sol-banner-media {
  background: linear-gradient(135deg, #FF4D8F 0%, #CC1A5C 100%);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  main .news-featured {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  main .news-item {
    flex-direction: column;
  }
  main .news-item-cover {
    width: 100%;
    height: 160px;
  }
  main .news-featured-cover {
    min-height: 200px;
  }
  main .tab-nav {
    flex-wrap: wrap;
    gap: 0;
  }
  main .tab-item {
    padding: 10px 14px;
    font-size: 14px;
  }
  main .news-featured-body {
    padding: 24px;
  }
  main .news-featured-title {
    font-size: 20px;
  }
  main .section {
    padding: 64px 0;
  }
  main .banner .banner-subtitle {
    width: 90%;
  }
}
