/* News Page Specific Styles */
.news-hero {
    margin: 10px;
}
/* Featured News */
.featured-news {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.featured-main {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-main:hover {
    border: 1px solid #000;
}

.featured-main-image {
  height: 350px;
  background: linear-gradient(135deg, var(--nfl-blue), #1e5090);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}

.featured-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-main-content {
  padding: 25px;
}


.featured-main-content .news-tag {
  background: var(--nfl-red);
  color: white;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.featured-main-content h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--nfl-dark);
  margin: 15px 0;
  line-height: 1.2;
}

.featured-main-content p {
  color: var(--nfl-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: var(--nfl-gray);
}

.news-author {
  font-weight: 600;
  color: var(--nfl-dark);
}

.featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.featured-sidebar-card {
  background: white;
  border-radius: 4px;
  border: 1px solid transparent;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 120px 1fr;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.featured-sidebar-card:hover {
    border: 1px solid #000;
}

.featured-sidebar-image {
  height: 100%;
  background: var(--nfl-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.featured-sidebar-content {
  padding: 15px;
}

.featured-sidebar-content .news-tag {
  background: var(--nfl-red);
  color: white;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 700;
}

.featured-sidebar-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--nfl-dark);
  margin: 8px 0;
  line-height: 1.3;
}

.featured-sidebar-content .news-time {
  font-size: 11px;
  color: var(--nfl-gray);
}

/* News Grid */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.news-page-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-page-card:hover {
    border: 1px solid #000;
}

.news-page-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--nfl-blue), #1e5090);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  position: relative;
  overflow: hidden;
}

.news-page-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}



.news-page-card-content {
  padding: 20px;
}

.news-page-card-content .news-tag {
  background: var(--nfl-red);
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
}

.news-page-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--nfl-dark);
  margin: 12px 0;
  line-height: 1.3;
}

.news-page-card-content p {
  color: var(--nfl-gray);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.news-page-card-content .news-time {
  font-size: 12px;
  color: var(--nfl-gray);
}

/* Load More */
.load-more {
  text-align: center;
  margin: 40px 0;
}

.load-more-btn {
  background: var(--nfl-blue);
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.load-more-btn:hover {
  background-color: #012754;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-news {
    grid-template-columns: 1fr;
  }

  .news-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-page-grid {
    grid-template-columns: 1fr;
  }

  .featured-sidebar-card {
    grid-template-columns: 100px 1fr;
  }
}
