.page-latest-news-exclusive-interviews {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark grey for readability on light backgrounds */
}

.page-latest-news-exclusive-interviews .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-latest-news-exclusive-interviews .hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-latest-news-exclusive-interviews .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-latest-news-exclusive-interviews .hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-latest-news-exclusive-interviews .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1em;
  cursor: pointer;
  border: none;
}

.page-latest-news-exclusive-interviews .btn-primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Deep blue */
  margin-right: 15px;
}

.page-latest-news-exclusive-interviews .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-latest-news-exclusive-interviews .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-latest-news-exclusive-interviews .btn-secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

.page-latest-news-exclusive-interviews .interviews-overview,
.page-latest-news-exclusive-interviews .interview-detail-section,
.page-latest-news-exclusive-interviews .cta-section {
  padding: 60px 0;
}

.page-latest-news-exclusive-interviews .section-title,
.page-latest-news-exclusive-interviews .interview-detail-title,
.page-latest-news-exclusive-interviews .cta-title {
  font-size: 2.5em;
  color: #003366; /* Deep blue */
  text-align: center;
  margin-bottom: 30px;
}

.page-latest-news-exclusive-interviews .section-description,
.page-latest-news-exclusive-interviews .cta-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-latest-news-exclusive-interviews .interview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-latest-news-exclusive-interviews .interview-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-latest-news-exclusive-interviews .interview-card:hover {
  transform: translateY(-5px);
}

.page-latest-news-exclusive-interviews .interview-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-latest-news-exclusive-interviews .interview-card-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-latest-news-exclusive-interviews .interview-card-excerpt {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-latest-news-exclusive-interviews .interview-detail-section {
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.page-latest-news-exclusive-interviews .interview-detail-section:nth-of-type(even) {
  background-color: #e6eef5; /* Light blue tint for alternating sections */
}

.page-latest-news-exclusive-interviews .interview-content p {
  margin-bottom: 1.2em;
  font-size: 1.1em;
  color: #444444;
  line-height: 1.8;
}

.page-latest-news-exclusive-interviews .interview-content strong {
  color: #003366;
}

.page-latest-news-exclusive-interviews .interview-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-latest-news-exclusive-interviews .cta-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-latest-news-exclusive-interviews .cta-section {
  background-color: #003366; /* Deep blue background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-latest-news-exclusive-interviews .cta-title {
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-latest-news-exclusive-interviews .cta-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-latest-news-exclusive-interviews .hero-title {
    font-size: 2.5em;
  }

  .page-latest-news-exclusive-interviews .hero-subtitle {
    font-size: 1.2em;
  }

  .page-latest-news-exclusive-interviews .section-title,
  .page-latest-news-exclusive-interviews .interview-detail-title,
  .page-latest-news-exclusive-interviews .cta-title {
    font-size: 2em;
  }

  .page-latest-news-exclusive-interviews .interview-grid {
    grid-template-columns: 1fr;
  }

  .page-latest-news-exclusive-interviews .btn {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-latest-news-exclusive-interviews .hero-title {
    font-size: 2em;
  }

  .page-latest-news-exclusive-interviews .hero-subtitle {
    font-size: 1em;
  }

  .page-latest-news-exclusive-interviews .btn-primary {
    margin-right: 0;
  }
}