.authors-page-title {
  text-align: center;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.authors-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Horizontal Author Card */
.author-card-horizontal {
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  transition: all 0.3s ease;
}

.author-card-horizontal:hover {
  background-color: #ffffff17;
}

/* Left Section - Avatar & Name */
.author-card-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.author-card-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.author-card-position {
  font-size: 14px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

/* Center Section - Bio */
.author-card-center {
  flex: 1;
  min-width: 0;
}

.author-card-bio {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/* Right Section - Button */
.author-card-right {
  flex-shrink: 0;
}

.author-card-btn {
  display: inline-block;
  padding: 14px 32px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.author-card-btn:hover {
  background: #ffff;
  color: #000;
  border-color: #fff;
  transform: translateX(5px);
}

.no-authors {
  text-align: center;
  color: #64748b;
  font-size: 18px;
  padding: 60px 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .author-card-horizontal {
    padding: 35px;
    gap: 30px;
  }

}

@media (max-width: 1024px) {
  .authors-page-title {
    font-size: 40px;
    margin-bottom: 50px;
  }

  .author-card-horizontal {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px;
  }
  .author-card-left {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
  }


  .author-card-right {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .authors-page-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .authors-list {
    gap: 20px;
  }

  .author-card-horizontal {
    padding: 25px;
    gap: 20px;
  }

  .author-card-left {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
  }

  .author-card-avatar {
    width: 70px;
    height: 70px;
  }

  .author-card-name {
    font-size: 20px;
  }

  .author-card-bio {
    font-size: 14px;
  }

  .author-card-btn {
    padding: 12px 28px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .authors-page-container {
    padding: 30px 15px;
  }

  .authors-page-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .author-card-horizontal {
    padding: 20px;
  }

  .author-card-left {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .author-card-avatar {
    width: 60px;
    height: 60px;
  }

  .author-card-name {
    font-size: 18px;
  }

  .author-card-position {
    font-size: 13px;
  }

  .author-card-bio {
    font-size: 13px;
    text-align: center;
  }
}
