/* =====================================================
   PNTV Africa – frontend.css
   Full clean version
   ===================================================== */

/* Shared section styles */
.home-section {
  padding: 3.5rem 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  position: relative;
  padding-left: 0.9rem;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--orange));
  border-radius: 2px;
}

.view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--transition);
}

.view-all:hover {
  color: var(--orange);
}

/* =====================================================
   HERO
   ===================================================== */
.home-hero {
  background: var(--gray-50);
  padding: 0.75rem 0 1.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.7fr 1fr;
    gap: 1.75rem;
  }
}

.hero-featured {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-dark);
  box-shadow: var(--shadow);
}

.hero-image-link {
  display: block;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-featured:hover .hero-image {
  transform: scale(1.03);
}

.hero-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(2, 31, 58, 0.95) 0%, rgba(2, 31, 58, 0.6) 60%, transparent 100%);
  color: var(--white);
}

.hero-category {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.hero-title a {
  color: var(--white);
}

.hero-title a:hover {
  color: var(--gold);
}

.hero-excerpt {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-meta time {
  font-size: 0.8rem;
  opacity: 0.75;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-side-item {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.hero-side-item:hover {
  box-shadow: var(--shadow-hover);
}

.hero-side-image-link {
  flex-shrink: 0;
}

.hero-side-image {
  width: 110px;
  height: 80px;
  object-fit: cover;
}

.hero-side-content {
  padding: 0.75rem 0.75rem 0.75rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-side-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.hero-side-title a:hover {
  color: var(--orange);
}

.hero-side-date {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* =====================================================
   TRENDING + LATEST (3-column)
   ===================================================== */
.trending-latest-section {
  padding: 0.75rem 0 2.5rem;
  background: var(--white);
}

.trending-latest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1100px) {
  .trending-latest-grid {
    grid-template-columns: 280px 1fr 300px;
    gap: 1.75rem;
    align-items: start;
  }
}

@media (min-width: 1400px) {
  .trending-latest-grid {
    grid-template-columns: 300px 1fr 320px;
    gap: 2rem;
  }
}

.section-header-sm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.section-title-sm {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-title-sm .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  display: inline-block;
}

.view-all-sm {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}

.view-all-sm:hover {
  color: var(--orange);
}

/* Left trending cards */
.trending-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trending-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trending-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.trending-image-link {
  display: block;
  overflow: hidden;
}

.trending-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trending-card:hover .trending-image {
  transform: scale(1.04);
}

.trending-content {
  padding: 0.9rem 1rem 1.1rem;
}

.trending-cat {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0.4rem;
}

.trending-cat .views {
  color: var(--gray-500);
  font-weight: 500;
  text-transform: none;
}

.trending-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
}

.trending-title a:hover {
  color: var(--orange);
}

.trending-author {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* Middle main trending */
.main-trending-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.main-trending-image-link {
  display: block;
  overflow: hidden;
}

.main-trending-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-trending-card:hover .main-trending-image {
  transform: scale(1.03);
}

.main-trending-content {
  padding: 1.25rem 1.35rem 1.5rem;
}

.main-trending-cat {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0.5rem;
}

.main-trending-cat .time {
  color: var(--gray-500);
  font-weight: 500;
  text-transform: none;
}

.main-trending-title {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.3;
  word-wrap: break-word;
}

.main-trending-title a:hover {
  color: var(--orange);
}

/* Right latest list */
.latest-list {
  display: flex;
  flex-direction: column;
}

.latest-list-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.latest-list-item:last-child {
  border-bottom: none;
}

.latest-list-cat {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0.35rem;
}

.latest-list-cat .time {
  color: var(--gray-500);
  font-weight: 500;
  text-transform: none;
}

.latest-list-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  word-wrap: break-word;
}

.latest-list-title a:hover {
  color: var(--orange);
}

@media (max-width: 1099px) {
  .trending-latest-grid {
    grid-template-columns: 1fr;
  }
  .main-trending-col {
    order: -1;
  }
  .trending-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .trending-cards {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TOP STORIES + COUNTY BRIEFS  (side by side)
   ===================================================== */
.top-county-section {
  background: var(--gray-50);
}

.top-county-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .top-county-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 2.5rem;
  }
}

/* ===== Top Stories – CARD style (different from County Briefs) ===== */
.top-stories-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top-story-card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.top-story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.top-story-rank {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.top-story-image-link {
  flex-shrink: 0;
  width: 110px;
  display: block;
  overflow: hidden;
}

.top-story-image {
  width: 100%;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.top-story-card:hover .top-story-image {
  transform: scale(1.05);
}

.top-story-body {
  padding: 0.9rem 1rem 0.9rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.top-story-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.35rem;
  word-wrap: break-word;
}

.top-story-title a:hover {
  color: var(--orange);
}

.top-story-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* County Briefs – keep as list (different from Top Stories) */
.county-briefs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.county-brief-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.county-brief-item:last-child {
  border-bottom: none;
}

.county-brief-title {
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.35rem;
  word-wrap: break-word;
}

.county-brief-title a:hover {
  color: var(--orange);
}

.county-brief-county {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  margin-right: 0.75rem;
}

.county-brief-date {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.view-all-small {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.view-all-small:hover {
  color: var(--orange);
}

/* =====================================================
   EDITOR'S PICK – 4 cards
   ===================================================== */
.editors-pick-section {
  background: var(--white);
}

.editors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .editors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .editors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
}

@media (min-width: 1200px) {
  .editors-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1440px) {
  .editors-grid {
    gap: 2rem;
  }
}

.editors-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.editors-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.editors-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.editors-card:hover .editors-image {
  transform: scale(1.04);
}

.editors-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.editors-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  word-wrap: break-word;
}

.editors-title a:hover {
  color: var(--orange);
}

.editors-excerpt {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.editors-meta {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* =====================================================
   CULTURE & ARTS
   ===================================================== */
.culture-section {
  background: var(--gray-50);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .culture-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.culture-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.culture-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.culture-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.culture-card:hover .culture-image {
  transform: scale(1.05);
}

.culture-content {
  padding: 1rem 1.1rem 1.2rem;
}

.culture-title {
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  word-wrap: break-word;
}

.culture-title a:hover {
  color: var(--orange);
}

.culture-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* =====================================================
   MULTIMEDIA
   ===================================================== */
.multimedia-section {
  background: var(--white);
}

.multimedia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .multimedia-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
  }
}

.video-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.video-mini-link {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.video-mini-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-mini-link:hover .video-mini-thumb {
  transform: scale(1.05);
}

.video-mini-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.video-mini-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  word-wrap: break-word;
}

.video-mini-title a:hover {
  color: var(--orange);
}

.video-mini-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a3a5c, #0a4a7a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    border-radius: 6px;
}
.video-mini-placeholder span {
    opacity: 0.7;
}

.podcast-mini-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.podcast-mini-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.podcast-mini-item:hover {
  background: var(--gray-100);
}

.podcast-mini-art {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.podcast-mini-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.2rem;
  word-wrap: break-word;
}

.podcast-mini-title a:hover {
  color: var(--orange);
}

.podcast-mini-episode {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* =====================================================
   PROGRAMMES
   ===================================================== */
.programmes-section {
  background: var(--gray-50);
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .programmes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .programmes-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.programme-card {
  background: var(--white);
  color: #ffffff !important;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
}

.programme-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.programme-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.programme-name {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 0.6rem 0.25rem;
  word-wrap: break-word;
}

.programme-name a:hover {
  color: var(--orange);
}

.programme-host {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  padding: 0 0.6rem 1rem;
}

/* =====================================================
   NEWSLETTER – fixed spacing & clean layout
   ===================================================== */
.newsletter-section {
  background: var(--gray-50);
  padding: 4rem 0;
}

.newsletter-cta {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(145deg, #021F3A 0%, #05305A 100%);
  border-radius: 18px;
  padding: 3rem 2.75rem;
  text-align: center;
  color: var(--white);
  box-shadow: 0 25px 50px rgba(2, 31, 58, 0.28);
  position: relative;
  overflow: hidden;
}

.newsletter-cta h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.newsletter-cta p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2.25rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Form container */
.newsletter-cta form,
.newsletter-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;                     /* proper vertical spacing */
  max-width: 380px;
  margin: 0 auto;
}

/* Label */
.newsletter-cta label,
.newsletter-section label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-align: left;
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
}

/* Email input */
.newsletter-cta input[type="email"],
.newsletter-section input[type="email"] {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.newsletter-cta input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-cta input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(255, 202, 38, 0.18);
}

/* Subscribe button */
.newsletter-cta button[type="submit"],
.newsletter-section button[type="submit"] {
  width: 100%;
  background: linear-gradient(135deg, #FF8C1A, #FFCA26);
  color: #021F3A;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.35);
  margin-top: 0.35rem;
}

.newsletter-cta button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 140, 26, 0.45);
}

/* Privacy text */
.newsletter-cta .newsletter-privacy,
.newsletter-section .newsletter-privacy,
.newsletter-cta p.small,
.newsletter-section .privacy-text {
  margin-top: 1.35rem;
  font-size: 0.82rem;
  opacity: 0.7;
  line-height: 1.5;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile */
@media (max-width: 600px) {
  .newsletter-cta {
    padding: 2.4rem 1.6rem;
    margin: 0 1rem;
  }

  .newsletter-cta h2 {
    font-size: 1.55rem;
  }
}

/* =====================================================
   Generic cards
   ===================================================== */
.article-card,
.featured-card,
.county-card,
.author-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.article-card:hover,
.featured-card:hover,
.county-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.article-card-image,
.featured-card-image,
.county-card-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.article-card:hover .article-card-image,
.featured-card:hover .featured-card-image {
  transform: scale(1.04);
}

.article-card-content,
.featured-card-content,
.county-card-content {
  padding: 1.15rem 1.25rem;
}

.article-card-category,
.featured-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.article-card-title,
.featured-card-title,
.county-card-title {
  font-weight: 700;
  line-height: 1.35;
  margin: 0.4rem 0 0.6rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-card-title a:hover,
.featured-card-title a:hover,
.county-card-title a:hover {
  color: var(--orange);
}

/* Readable titles on 4-column layouts */
@media (min-width: 1200px) {
  .latest-title,
  .editors-title {
    font-size: 1rem;
    line-height: 1.4;
  }
  .latest-content,
  .editors-content {
    padding: 1.1rem 1.15rem 1.25rem;
  }
}

@media (min-width: 1600px) {
  .latest-title,
  .editors-title {
    font-size: 1.05rem;
  }
}

/* =====================================================
   HOMEPAGE – NAVY CARD CONTENT
   ===================================================== */

/* -----------------------------------------------------
   TRENDING NEWS – small cards
   ----------------------------------------------------- */

.trending-card {
  background: var(--navy);
}

.trending-content {
  background: var(--navy);
}

.trending-title,
.trending-title a {
  color: var(--white) !important;
}

.trending-title a:hover {
  color: var(--white) !important;
}

.trending-cat {
  color: var(--gold) !important;
}

.trending-cat .views {
  color: rgba(255, 255, 255, 0.72) !important;
}

.trending-author {
  color: rgba(255, 255, 255, 0.72) !important;
}


/* -----------------------------------------------------
   MAIN TRENDING – large card
   ----------------------------------------------------- */

.main-trending-card {
  background: var(--navy);
}

.main-trending-content {
  background: var(--navy);
}

.main-trending-title,
.main-trending-title a {
  color: var(--white) !important;
}

.main-trending-title a:hover {
  color: var(--white) !important;
}

.main-trending-cat {
  color: var(--gold) !important;
}

.main-trending-cat .time {
  color: rgba(255, 255, 255, 0.72) !important;
}


/* -----------------------------------------------------
   TOP STORIES
   ----------------------------------------------------- */

/* Remove the old numbered badge completely */
.top-story-rank {
  display: none !important;
}

/* Navy title/content portion */
.top-story-card {
  background: var(--navy);
}

.top-story-body {
  background: var(--navy);
}

.top-story-title,
.top-story-title a {
  color: var(--white) !important;
}

.top-story-title a:hover {
  color: var(--white) !important;
}

.top-story-meta {
  color: rgba(255, 255, 255, 0.72) !important;
}


/* -----------------------------------------------------
   EDITOR'S PICK
   ----------------------------------------------------- */

.editors-card {
  background: var(--navy);
}

.editors-content {
  background: var(--navy);
}

.editors-title,
.editors-title a {
  color: var(--white) !important;
}

.editors-title a:hover {
  color: var(--white) !important;
}

.editors-excerpt {
  color: rgba(255, 255, 255, 0.84) !important;
}

.editors-meta {
  color: rgba(255, 255, 255, 0.68) !important;
}


/* -----------------------------------------------------
   CULTURE & ARTS
   ----------------------------------------------------- */

.culture-card {
  background: var(--navy);
}

.culture-content {
  background: var(--navy);
}

.culture-title,
.culture-title a {
  color: var(--white) !important;
}

.culture-title a:hover {
  color: var(--white) !important;
}

.culture-meta {
  color: rgba(255, 255, 255, 0.72) !important;
}