.author-section {
  background: linear-gradient(135deg, #0c082b 0%, #182c4f 100%);
  padding: 160px 0 100px;
  position: relative;
}

.author-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.author-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.6);
}

.author-breadcrumbs__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-breadcrumbs__link:hover {
  color: #0096ff;
}

.author-breadcrumbs__link svg {
  color: rgba(255, 255, 255, 0.4);
}

.author-breadcrumbs__divider {
  color: rgba(255, 255, 255, 0.3);
}

.author-breadcrumbs__current {
  color: #0096ff;
  font-weight: 600;
}

.author-profile {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.author-profile__avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0, 150, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 150, 255, 0.2);
}

.author-profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-profile__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.author-profile__name {
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.author-profile__bio {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.author-profile__stats {
  display: flex;
  gap: 30px;
}

.author-profile__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-profile__stat-value {
  font-size: 32px;
  font-weight: 900;
  color: #0096ff;
  line-height: 1;
}

.author-profile__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-profile__contacts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.author-profile__contact {
  width: 44px;
  height: 44px;
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0096ff;
  transition: all 0.3s ease;
}

.author-profile__contact:hover {
  background: rgba(0, 150, 255, 0.2);
  border-color: #0096ff;
  transform: translateY(-2px);
}

.author-posts__title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 30px 0;
  line-height: 1.2;
}

.author-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.author-post-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.author-post-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 150, 255, 0.2);
  transform: translateY(-4px);
}

.author-post-card__image-wrapper {
  position: relative;
  overflow: hidden;
}

.author-post-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.author-post-card:hover .author-post-card__image {
  transform: scale(1.05);
}

.author-post-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(0, 150, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-post-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.author-post-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.author-post-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-post-card__title a:hover {
  color: #0096ff;
}

.author-post-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.author-post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-post-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.author-post-card__date svg {
  color: rgba(255, 255, 255, 0.4);
}

.author-post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0096ff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-post-card__link:hover {
  gap: 10px;
}

.author-posts__empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

/* Pagination */
.author-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.author-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.author-pagination li {
  margin: 0;
}

.author-pagination .page-numbers {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.author-pagination .page-numbers:hover {
  background: rgba(0, 150, 255, 0.1);
  border-color: rgba(0, 150, 255, 0.3);
  color: #ffffff;
}

.author-pagination .page-numbers.current {
  background: linear-gradient(135deg, #0096ff 0%, #00c3ff 100%);
  border-color: #0096ff;
  color: #ffffff;
}

.author-pagination .page-numbers.prev,
.author-pagination .page-numbers.next {
  width: auto;
  padding: 0 16px;
}

@media (max-width: 1024px) {
  .author-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-profile {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px;
  }

  .author-profile__avatar {
    margin: 0 auto;
  }

  .author-profile__stats {
    justify-content: center;
  }

  .author-profile__contacts {
    justify-content: center;
  }

  .author-profile__name {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .author-section {
    padding: 60px 0;
  }

  .author-profile {
    padding: 30px 24px;
    border-radius: 20px;
    margin-bottom: 40px;
  }

  .author-profile__avatar {
    width: 150px;
    height: 150px;
  }

  .author-profile__name {
    font-size: 28px;
  }

  .author-profile__bio {
    font-size: 14px;
  }

  .author-profile__stat-value {
    font-size: 28px;
  }

  .author-posts__title {
    font-size: 28px;
  }

  .author-posts__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .author-post-card__image {
    height: 180px;
  }

  .author-post-card__content {
    padding: 20px;
  }

  .author-post-card__title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .author-profile {
    padding: 24px 20px;
  }

  .author-profile__avatar {
    width: 120px;
    height: 120px;
  }

  .author-profile__name {
    font-size: 24px;
  }

  .author-posts__title {
    font-size: 24px;
  }

  .author-post-card__image {
    height: 160px;
  }

  .author-pagination .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}
