.blogs-author-section {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.author-banner {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-color: #95B1B0;
}

.author-profile {
  max-width: 800px;
  margin: -80px auto 40px;
  position: relative;
  padding: 0 20px;
}

.author-avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.author-name {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.author-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.articles-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 50px;
}

.articles-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 30px;
}

.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.article-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: row;
  height: 200px;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-image {
  width: 200px;
  flex-shrink: 0;
  height: 100%;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #666;
}

.article-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #999;
  margin-top: auto;
}

.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.pagination-info {
  font-size: 0.9rem;
  color: #666;
}

.load-more-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.load-more-btn:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .author-banner {
    height: 180px;
  }

  .author-profile {
    margin-top: -60px;
  }

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

  .article-card {
    flex-direction: column;
    height: auto;
  }
  
  .article-image {
    width: 100%;
    height: 180px;
  }
  
  .article-content {
    padding: 16px;
  }
  
  .author-name {
    font-size: 1.5rem;
  }
  
  .author-bio {
    font-size: 0.95rem;
  }
  
  .articles-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .article-title {
    font-size: 1.1rem;
  }

  .article-excerpt {
    font-size: 0.9rem;
  }
} 