/* === INTERVIEWS PAGE STYLES === */
.interview-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Title */
.interview-page h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
}

.interview-page p.subheading {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #666;
}

/* Grid */
.interview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.interview-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.interview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.interview-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.interview-card h3 {
  font-size: 1.2rem;
  margin: 15px 0 5px;
  color: #222;
}

.interview-card p {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.interview-card a {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 18px;
  background: linear-gradient(90deg, #f4c430, #e6a600);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.interview-card a:hover {
  background: linear-gradient(90deg, #e6a600, #f4c430);
}

/* === SINGLE INTERVIEW PAGE STYLES === */
.single-interview {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.single-interview .banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.single-interview .banner img {
  width: 100%;
  height: 500px;
  position: relative;
}

.single-interview h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}

.single-interview h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #555;
  text-align: center;
}

.single-interview .content {
  margin-bottom: 30px;
  color: #444;
}

.single-interview .media {
  margin: 30px 0;
  text-align: center;
}

.single-interview .media iframe,
.single-interview .media audio {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}

.share {
  text-align: center;
  margin: 40px 0 20px;
}

.share a {
  display: inline-block;
  margin: 0 8px;
  padding: 10px 16px;
  border-radius: 30px;
  background: linear-gradient(90deg, #f4c430, #e6a600);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.share a:hover {
  background: linear-gradient(90deg, #e6a600, #f4c430);
}

.related {
  margin-top: 50px;
}

.related h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.related-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-6px);
}

.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-card h4 {
  font-size: 1rem;
  margin: 12px 0;
  color: #222;
}

.related-card a {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 14px;
  background: #f4c430;
  color: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.related-card a:hover {
  background: #e6a600;
}
