/* Autoren-Seite Styles */
.authors-hero {
  padding: 150px 0 80px;
  background-color: var(--background-alt);
  text-align: center;
}

.authors-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.authors-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

.authors-grid {
  padding: 80px 0;
}

.author-card {
  background-color: var(--background-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 40px;
  margin-bottom: 60px;
  transition: var(--transition);
}

.author-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.author-header {
  display: flex;
  margin-bottom: 30px;
}

.author-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.author-title {
  display: block;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 15px;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--background-alt);
  border-radius: 50%;
  color: var(--text-color);
  transition: var(--transition);
}

.author-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.author-bio {
  margin-bottom: 30px;
  line-height: 1.8;
}

.author-bio p {
  margin-bottom: 15px;
}

.author-specialties {
  margin-bottom: 30px;
}

.author-specialties h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.author-specialties ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.author-specialties li {
  background-color: var(--background-alt);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.author-articles h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.author-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.author-article {
  background-color: var(--background-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.author-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.author-article img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.author-article h4 {
  padding: 15px;
  font-size: 1rem;
  color: var(--text-color);
  transition: var(--transition);
}

.author-article:hover h4 {
  color: var(--primary-color);
}

.join-team {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.join-team-content {
  max-width: 700px;
  margin: 0 auto;
}

.join-team h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.join-team p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.join-team .btn {
  background-color: white;
  color: var(--primary-color);
}

.join-team .btn:hover {
  background-color: var(--background-alt);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .author-header {
    flex-direction: column;
    text-align: center;
  }

  .author-image {
    margin: 0 auto 20px;
  }

  .author-social {
    justify-content: center;
  }

  .author-specialties ul {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .author-articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .authors-hero h1 {
    font-size: 2.2rem;
  }

  .author-card {
    padding: 20px;
  }

  .author-info h2 {
    font-size: 1.8rem;
  }
}
