body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.header {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: white;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  color: white;
  display: flex;
  align-items: center;
}
.header .logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.header .nav {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .nav li.act a {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.header .nav .nav-link {
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: block;
}
.header .nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  color: white;
}
.header .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}
.header .mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
  .header .container {
    padding: 0 15px;
  }
  .header .logo {
    font-size: 24px;
  }
  .header .logo img {
    height: 35px;
  }
  .header .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  .header .nav.active {
    display: flex;
  }
  .header .nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .nav li:last-child {
    border-bottom: none;
  }
  .header .nav .nav-link {
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 0;
  }
  .header .nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: none;
  }
  .header .mobile-menu-btn {
    display: block;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-description {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home .main-news-section .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 20px;
}
.home .featured-news-large, .home .side-news-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
}
.home .featured-news-large .news-image img, .home .side-news-item .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home .featured-news-large:hover .news-image img, .home .side-news-item:hover .news-image img {
  transform: scale(1.05);
}
.home .featured-news-large .news-content, .home .side-news-item .news-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.home .featured-news-large .news-title, .home .side-news-item .news-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
.home .featured-news-large .news-meta, .home .side-news-item .news-meta {
  font-size: 12px;
  opacity: 0.8;
}
.home .featured-news-large .news-meta span + span, .home .side-news-item .news-meta span + span {
  margin-left: 15px;
}
.home .featured-news-large .news-image {
  height: 520px;
}
.home .side-news-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home .side-news-item {
  flex: 1;
}
.home .side-news-item .news-title {
  font-size: 18px;
}
.home .side-news-item .news-image {
  height: 100%;
}
.home .trending-section {
  padding: 30px 0;
}
.home .trending-section .section-header {
  margin-bottom: 20px;
}
.home .trending-section .section-header .section-title {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
}
.home .trending-section .section-header .section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 100%;
  background: #ff4a48;
}
.home .trending-section .trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home .trending-section .trending-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.home .trending-section .trending-item .news-image {
  height: 250px;
}
.home .trending-section .trending-item .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .trending-section .trending-item .news-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.home .trending-section .trending-item .news-content .news-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.home .trending-section .trending-item .news-content .news-meta {
  font-size: 12px;
  opacity: 0.8;
}
.home .main-content-section .container {
  padding-top: 30px;
}
.home .content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.home .whats-new-section {
  margin-bottom: 30px;
}
.home .whats-new-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.home .whats-new-section .section-title {
  font-size: 20px;
  font-weight: bold;
}
.home .whats-new-section .view-all {
  font-size: 14px;
  color: #ff4a48;
}
.home .whats-new-section .featured-article-large {
  display: block;
  margin-bottom: 20px;
}
.home .whats-new-section .featured-article-large .news-image {
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}
.home .whats-new-section .featured-article-large .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .whats-new-section .featured-article-large .news-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.home .whats-new-section .featured-article-large .news-description {
  font-size: 15px;
  color: #777;
}
.home .whats-new-section .news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.home .whats-new-section .news-list .news-item {
  display: flex;
  gap: 15px;
  align-items: center;
}
.home .whats-new-section .news-list .news-image {
  width: 100px;
  height: 75px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.home .whats-new-section .news-list .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .whats-new-section .news-list .news-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.home .sidebar > * {
  margin-bottom: 30px;
}
.home .social-section .social-icons {
  display: flex;
  justify-content: space-around;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}
.home .social-section .social-icons .social-icon {
  font-size: 20px;
}
.home .stats-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}
.home .stats-section .stat-item {
  background: #fff;
  padding: 15px;
  text-align: center;
}
.home .stats-section .stat-item .stat-number {
  font-size: 18px;
  font-weight: bold;
}
.home .stats-section .stat-item .stat-label {
  font-size: 13px;
  color: #777;
}
.home .ad-section {
  background: linear-gradient(135deg, #4a90e2, #50e3c2);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}
.home .ad-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.home .ad-section .ad-button {
  background: #fff;
  color: #4a90e2;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: bold;
}
.home .recent-posts .widget-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.home .recent-posts .post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home .recent-posts .post-item {
  display: flex;
  gap: 15px;
  align-items: center;
}
.home .recent-posts .post-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.home .recent-posts .post-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.home .recent-posts .post-meta {
  font-size: 12px;
  color: #777;
}
.home .recommendation-section {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0;
}
.home .recommendation-section .section-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.home .recommendation-section .recommendation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: flex-start;
}
.home .recommendation-section .recommendation-item.large .news-image {
  height: 280px;
  margin-bottom: 15px;
}
.home .recommendation-section .recommendation-item.large .news-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
.home .recommendation-section .recommendation-item.large .news-description {
  color: #ccc;
}
.home .recommendation-section .recommendation-item.large .news-meta {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 15px;
}
.home .recommendation-section .recommendation-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.home .recommendation-section .recommendation-item.small {
  position: relative;
}
.home .recommendation-section .recommendation-item.small .news-image {
  height: 192px;
}
.home .recommendation-section .recommendation-item.small .news-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.home .recommendation-section .recommendation-item.small .news-title {
  font-size: 14px;
  font-weight: 500;
}
.home .recommendation-section .recommendation-item .news-image {
  border-radius: 8px;
  overflow: hidden;
}
.home .recommendation-section .recommendation-item .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-page {
  padding-top: 20px;
}

.list-page .news-grid-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0;
  padding-top: 0;
}

.news-item-grid {
  display: block;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.news-item-grid:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.news-item-grid .news-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.news-item-grid .news-content {
  padding: 15px;
}
.news-item-grid .news-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}
.news-item-grid .news-date {
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px !important;
  }
  .recommendation-grid {
    display: flex !important;
    flex-direction: column;
  }
  .trending-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .main-content-section .content-layout {
    display: flex;
    flex-direction: column;
  }
  .trending-grid {
    gap: 10px !important;
  }
  .whats-new-section .news-list .news-item {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .home .trending-grid,
  .home .recommendation-small-grid {
    grid-template-columns: 1fr;
  }
  .home .side-news-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .list-page .news-grid-list {
    grid-template-columns: 1fr;
  }
}
.detail-page {
  width: min(1200px, 100%);
  margin: 0 auto;
  min-height: calc(100vh - 70px);
  padding-bottom: 20px;
  padding-top: 20px;
}
.detail-page .detail-box .title {
  margin-top: 38px;
  margin-bottom: 20px;
  line-height: 23px;
  font-size: 20px;
  color: rgb(38, 40, 42);
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail-page .detail-box .source {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.detail-page .detail-box .source img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 18px;
}
.detail-page .detail-box .source .name-info .name {
  margin-bottom: 8px;
  color: rgb(38, 38, 38);
  font-size: 16px;
  line-height: 18px;
}
.detail-page .detail-box .source .name-info .time {
  font-size: 14px;
  line-height: 18px;
  color: rgb(140, 140, 140);
}

@media (max-width: 768px) {
  .detail-page {
    padding: 0 8px;
    margin: 8px auto;
    padding-top: 20px;
  }
  .detail-page .detail-box .title {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .detail-page .detail-box .source {
    margin-bottom: 10px;
  }
  .detail-page .detail-box .source img {
    margin-right: 10px;
  }
  .detail-page .detail-box .source .name-info .name {
    font-size: 16px;
  }
  .detail-page .content {
    word-break: break-all;
  }
}
@media (max-width: 768px) {
  .bread {
    margin-bottom: 20px;
    margin-left: 5px !important;
  }
}
.bread {
  display: flex;
  align-items: center;
  gap: 8px;
  left: 22px;
  font-size: 14px;
  line-height: 22px;
  width: min(1200px, 100%);
  margin: 0 auto;
  margin-bottom: 20px;
}
.bread .link {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.bread .link a {
  color: rgba(0, 0, 0, 0.45);
}
.bread .text {
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 20px;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: #ff4a48;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #999;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container ul li a.active {
  background: #ff4a48;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}

@media (max-width: 768px) {
  .pagination-container {
    margin-top: 15px;
    transform: scale(0.8);
  }
}
/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 40px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-links {
  text-align: center;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #bdc3c7;
}

.links-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.links-row a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.links-row a:hover {
  color: #ff4a48;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #34495e;
  font-size: 14px;
  color: #95a5a6;
  text-align: center;
}

/*# sourceMappingURL=index.css.map */
