/* Author Page Styles */

/* 저자 프로필 헤더 */
.author-profile-header {
  padding: 24px 28px;
  margin-bottom: 50px;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  /* 기본 파스텔 그라디언트 - 인라인 스타일로 덮어씌워짐 */
  background: linear-gradient(135deg, hsl(210, 35%, 90%) 0%, hsl(340, 35%, 90%) 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

/* 배경 패턴 효과 - 더 부드러운 효과 */
.author-profile-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.author-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}

.author-bio {
  font-size: 15px;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.author-bio p {
  margin-bottom: 8px;
}

.author-bio p:last-child {
  margin-bottom: 0;
}

.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.author-link {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  font-size: 13px;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.author-link:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #1f2937;
}

.author-stats {
  font-size: 13px;
  color: #4b5563;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.3px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .author-profile-header {
    padding: 18px 18px;
    margin-bottom: 40px;
  }
  
  .author-profile-header::before {
    width: 200px;
    height: 200px;
    transform: translate(50px, -50px);
  }
  
  .author-name {
    font-size: 26px;
  }
  
  .author-bio {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .author-links {
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .author-link {
    font-size: 12px;
    padding: 5px 10px;
  }
  
  .author-stats {
    font-size: 12px;
    padding-top: 8px;
  }
}

/* 포스트 목록 컨테이너 */
.posts-list {
  padding: 16px 0 24px 0;
}

/* 페이지네이션 */
.pagination-wrapper {
  margin: 40px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.pagination-btn {
  padding: 10px 20px;
  text-decoration: none;
  color: #24292e;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  background-color: #fff;
  display: inline-block;
}

a.pagination-btn:hover {
  background-color: #f6f8fa;
  border-color: #d1d5da;
  text-decoration: none;
}

.pagination-btn.disabled {
  color: #959da5;
  cursor: not-allowed;
  opacity: 0.4;
  background-color: #f6f8fa;
}

.page-info {
  font-size: 14px;
  color: #586069;
  font-weight: 500;
}