/* =============================
   General Author Page (general-author.css)
   ============================= */
/* =============================
   Author Archive Page Styling
   ============================= */
   .author-archive {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(145deg, #001f3f, #003566, #0077b6);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    color: #fff;
    box-sizing: border-box;
  }
  
  .author-archive__header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  
  .author-archive__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00d4ff;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
    flex-shrink: 0;
  }
  .author-archive__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .author-archive__info h1 {
    font-size: 2.2rem;
    color: #00d4ff;
    margin: 0;
  }
  .author-archive__info p {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
  }
  
  /* Grid layout for posts */
  .chronicle-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  /* Blog card styling */
  .blog-card {
    display: flex;
    flex-direction: column;
    background: #002b5b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #fff;
  }
  
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  }
  
  .blog-card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
  }
  .blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .blog-card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }
  .blog-card__date {
    font-size: 0.875rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
  }
  .blog-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
  }
  .blog-card__excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
  }
  
  /* Responsive Tweaks */
  @media (max-width: 600px) {
    .author-archive__header {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .author-archive__avatar {
      margin-bottom: 1rem;
    }
  }
  
  