/* ========================================
   BLOG/NEWS PAGE STYLES - MODERN REDESIGN
   ======================================== */

/* ========== HEADER SECTION ========== */
.blog-header {
  padding: 120px 0 40px;
  text-align: center;
}

.blog-header h1 {
  font-size: 72px;
  margin-bottom: 30px;
  letter-spacing: 4px;
}

.blog-subtitle {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
  opacity: 0.9;
}

/* ========== FEATURED SOURCE BANNER ========== */
.featured-source-section {
  padding: 40px 0;
}

.featured-source-banner {
  background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 2px solid var(--gold);
  padding: 50px 60px;
  text-align: center;
  position: relative;
}

.source-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.source-badge-large i {
  font-size: 14px;
}

.featured-source-banner h2 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.featured-source-banner p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ========== NEWS FEED SECTION ========== */
.news-feed-section {
  padding: 80px 0 100px;
}

.news-feed-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-feed-header h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.feed-subtitle {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ========== MODERN NEWS GRID ========== */
.news-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-article {
  background: var(--dark-gray);
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-article:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.news-image {
  width: 100%;
  height: 280px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-article:hover .news-image img {
  transform: scale(1.08);
}

.news-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000 0%, rgba(212, 175, 55, 0.05) 100%);
}

.news-placeholder i {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
}

.news-source-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 10;
}

.news-content {
  padding: 35px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--dark-gray);
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.news-meta i {
  margin-right: 6px;
}

.news-title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-excerpt {
  font-size: 15px;
  color: var(--white);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.news-link:hover {
  gap: 12px;
}

.news-link i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

/* ========== LOADING MESSAGE ========== */
.loading-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 20px;
  color: var(--gold);
}

.loading-message i {
  font-size: 56px;
  margin-bottom: 25px;
}

.loading-message p {
  font-size: 16px;
  letter-spacing: 2px;
  opacity: 0.8;
  text-transform: uppercase;
}

/* ========== LOAD MORE BUTTON ========== */
.btn-load-more {
  padding: 18px 50px;
  font-size: 14px;
  letter-spacing: 3px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .blog-header {
    padding: 100px 0 30px;
  }

  .blog-header h1 {
    font-size: 48px;
  }

  .blog-subtitle {
    font-size: 16px;
  }

  .featured-source-banner {
    padding: 40px 30px;
  }

  .featured-source-banner h2 {
    font-size: 32px;
  }

  .featured-source-banner p {
    font-size: 15px;
  }

  .news-feed-header h2 {
    font-size: 36px;
  }

  .news-grid-modern {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .news-image {
    height: 240px;
  }

  .news-content {
    padding: 28px 25px;
  }

  .news-title {
    font-size: 20px;
  }

  .news-excerpt {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .blog-header h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .blog-subtitle {
    font-size: 15px;
  }

  .featured-source-banner {
    padding: 35px 25px;
  }

  .featured-source-banner h2 {
    font-size: 28px;
  }

  .news-feed-header h2 {
    font-size: 32px;
  }

  .news-image {
    height: 220px;
  }

  .news-content {
    padding: 25px 20px;
  }

  .news-title {
    font-size: 18px;
  }

  .news-placeholder i {
    font-size: 60px;
  }
}