/* ==================== INTERVIEWS SECTION ==================== */

.interviews-section {
  padding: 80px 0;
  background: #fff; /* Fondo blanco para alternar con blog */
}

.interviews-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
}

/* Grid */
.interviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 50px; /* Añadido margin-bottom para espacio antes del botón */
}

/* Card */
.interview-card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, opacity .6s ease;
  opacity: 0;
  transform: translateY(12px);
}

.interview-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.interview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  border-color: #111;
}

/* Imagen */
.interview-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 15%; /* Ajusta este % */
  display: block;
}

/* Contenido */
.interview-content {
  padding: 22px;
}

.interview-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 8px 0 10px;
  color: #111;
}

.interview-content p {
  color: #444;
  margin: 0 0 14px;
  line-height: 1.6;
}

.interview-date {
  font-size: .85rem;
  color: #666;
}

/* Botón Ver Más */
.view-more-container {
  text-align: center;
  margin-top: 50px;
}

.view-more-btn {
  display: inline-block;
  padding: 18px 50px;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #000;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-more-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Empty state */
.no-interviews {
  text-align: center;
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.no-interviews h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}
.no-interviews p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .interviews-section { padding: 60px 0; }
  .interviews-section h2 { font-size: 2rem; margin-bottom: 32px; }
  .interviews-grid { 
    grid-template-columns: 1fr; 
    gap: 20px;
    margin-bottom: 40px;
  }
  .interview-content { padding: 20px; }
  .interview-content h3 { font-size: 1.2rem; }
  .interview-date { font-size: 0.8rem; }
  .view-more-btn {
    padding: 15px 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .interview-content { padding: 16px; }
  .interview-content h3 { font-size: 1.1rem; line-height: 1.35; }
  .interview-date { font-size: 11px; }
  .view-more-btn {
    padding: 14px 35px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
}