.author-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 12px 60px 12px;
  }
  
  .author-header {
    display: flex;
    align-items: center;
    background: #181b22;
    border-radius: 18px;
    padding: 30px 28px;
    margin-bottom: 38px;
    gap: 32px;
    box-shadow: 0 2px 14px rgba(20,20,40,0.07);
  }
  
  .author-avatar img {
    border-radius: 50%;
    background: #23242b;
    border: 3px solid #ffcc32;
    width: 92px;
    height: 92px;
  }
  
  .author-info {
    flex: 1;
  }
  
  .author-title {
    color: #fff;
    font-family: 'gigabold', sans-serif;
    font-size: 2.0rem;
    margin-bottom: 12px;
  }
  
  .author-bio {
    color: #e2e2e8;
    font-size: 1.1em;
  }
  
  .author-articles-title {
    color: #ffe47a;
    font-size: 1.2em;
    margin-bottom: 19px;
    font-family: 'gigabold', sans-serif;
  }
  
  .author-articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px,1fr));
    gap: 30px;
  }
  
  .author-article {
    background: #181b22;
    border-radius: 14px;
    box-shadow: 0 2px 12px #1c1e2725;
    transition: box-shadow .15s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  
  .author-article-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }
  
  .author-article-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #23242b;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .author-article-thumb img, .author-article-thumb .no-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .author-article-content {
    padding: 18px 16px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .author-article-title {
    color: #fff;
    font-size: 1.07em;
    margin-top:0px;
    margin-bottom: 9px;
  }
  
  .author-article-date {
    color: #ffe17a;
    font-size: 0.99em;
    margin-bottom: 7px;
    display: block;
  }
  
  .author-article-excerpt {
    color: #e2e2e8;
    font-size: 1em;
    margin-top: 3px;
  }
  
  .author-article:hover {
    box-shadow: 0 6px 22px #0007;
  }
  
  .pagination {
    margin: 42px auto 0 auto;
    display: flex;
    gap: 7px;
    justify-content: center;
  }
  .pagination .page-numbers {
    background: #23242b;
    color: #ffe47a;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.03em;
    transition: background .15s, color .15s;
  }
  .pagination .page-numbers.current,
  .pagination .page-numbers:hover {
    background: #FFCC32;
    color: #181b22;
  }
  .no-articles {
    color: #ccc;
    text-align: center;
    margin-top: 40px;
    font-size: 1.18em;
  }
  
  @media (max-width: 700px) {
    .author-main { padding: 10px 3vw 24px 3vw; }
    .author-header { flex-direction: column; gap: 18px; padding: 16px 9px; }
    .author-title { font-size: 1.3em; }
    .author-articles-list { grid-template-columns: 1fr; gap: 16px; }
  }
  