.authors-list-page .page-title-section {
  background: #f8f9fa;
  padding: 60px 20px;
  margin: 0;
}
.authors-list-page .elementor-container {
  max-width: 1400px;
  margin: 0 auto;
}

.authors-list-page .page-header {
  text-align: center;
}

.authors-list-page .title-h1 {
  font-size: 48px;
  font-weight: 700;
  color: #171514;
  margin-bottom: 24px;
  line-height: 1.2;
}

.authors-list-page .indy-heading-sub {
  font-size: 20px;
  color: #4b6074;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.authors-list-page .elementor-section {
  padding: 80px 20px 80px 20px;
}

.authors-list-page .authors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: stretch;
}

.authors-list-page .author-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0px 4px 20px rgba(109, 135, 159, 0.12);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(109, 135, 159, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease forwards;
}

.authors-list-page .author-avatar {
  margin-bottom: 24px;
}

.authors-list-page .author-avatar img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  border: 3px solid #f8f9fa;
}

.authors-list-page .author-name {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.authors-list-page .author-name a {
  text-decoration: none;
  color: #171514;
  transition: color 0.3s ease;
}

.authors-list-page .author-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.authors-list-page .author-bio {
  color: #4b6074;
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 15px;
  flex: 1;
}

.authors-list-page .author-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 12px;
}

.authors-list-page .posts-count {
  color: #171514;
  font-size: 14px;
  font-weight: 500;
}

.authors-list-page .author-meta .separator {
  color: #d1d5db;
}

.authors-list-page .author-meta a {
  color: #0077b5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.authors-list-page .btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #fa5d89 0%, #e35072 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  margin-top: auto;
}

.authors-list-page .author-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 16px 2px rgba(109, 135, 159, 0.15);
}

.authors-list-page .author-card:hover .author-name a {
  color: #fa5d89 !important;
}

.authors-list-page .author-card:hover .btn {
  background: linear-gradient(135deg, #e35072 0%, #d1456a 100%) !important;
  transform: translateY(-1px);
}

.authors-list-page .btn:hover {
  box-shadow: 0 4px 12px rgba(250, 93, 137, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Délais d'animation pour les cartes */
.authors-list-page .author-card:nth-child(1) {
  animation-delay: 0.1s;
}
.authors-list-page .author-card:nth-child(2) {
  animation-delay: 0.2s;
}
.authors-list-page .author-card:nth-child(3) {
  animation-delay: 0.3s;
}
.authors-list-page .author-card:nth-child(4) {
  animation-delay: 0.4s;
}
.authors-list-page .author-card:nth-child(5) {
  animation-delay: 0.5s;
}
.authors-list-page .author-card:nth-child(6) {
  animation-delay: 0.6s;
}
.authors-list-page .author-card:nth-child(7) {
  animation-delay: 0.7s;
}
.authors-list-page .author-card:nth-child(8) {
  animation-delay: 0.8s;
}

.authors-list-page .author-card,
.authors-list-page .author-card *,
.authors-list-page .btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESPONSIVE */
@media (min-width: 1200px) {
  .authors-list-page .authors-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
  }

  .elementor-container {
    max-width: 1400px !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .authors-list-page .authors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .elementor-container {
    max-width: 1200px !important;
  }
}

@media (max-width: 991px) and (min-width: 769px) {
  .authors-list-page .authors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .elementor-section {
    padding: 60px 20px !important;
  }

  .page-title-section {
    padding: 50px 20px !important;
  }

  .page-header h1 {
    font-size: 40px !important;
  }

  .page-header p {
    font-size: 18px !important;
  }
}

@media (max-width: 768px) {
  .authors-list-page .authors-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .elementor-section {
    padding: 60px 16px !important;
  }

  .page-title-section {
    padding: 40px 16px !important;
  }

  .page-header h1 {
    font-size: 32px !important;
    margin-bottom: 16px !important;
  }

  .page-header p {
    font-size: 16px !important;
  }

  .authors-list-page .author-card {
    padding: 28px 24px !important;
  }

  .authors-list-page .author-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 480px) {
  .elementor-section {
    padding: 50px 12px !important;
  }

  .page-title-section {
    padding: 32px 12px !important;
  }

  .page-header h1 {
    font-size: 28px !important;
  }

  .authors-list-page .author-card {
    margin: 0 -5px;
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }
}
