.editors-hero {
    background-image:
      linear-gradient(180deg, rgba(183, 228, 160, 0.55) 0%, rgba(183, 228, 160, 0.8) 60%, var(--bg-deep) 100%),
      linear-gradient(#b7e4a0, #b7e4a0);
  }
  
  .editors-hero .show-title { color: var(--bg-deep); text-shadow: none; }
  .editors-hero .home-subtitle { color: #244a17; }
  
  .editors-page-section {
    background: #d9d9d9;
    padding: 4rem 1.5rem;
  }
  
  .editor-grid {
    max-width: 70rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .editor-card {
    aspect-ratio: 3 / 4;
    background: #fff;
    border: 2px dashed #aaa;
    border-radius: 14px;
  }
  
  @media (max-width: 900px) {
    .editor-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 480px) {
    .editor-grid { grid-template-columns: 1fr; }
  }

  .editor-card.filled {
    border: none;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    aspect-ratio: auto;
    text-align: center;
  }
  
  .editor-card.filled img,
  .editor-card-placeholder-pic {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
    margin-bottom: 0.75rem;
  }
  
  .editor-card.filled h3 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
    color: var(--bg-deep);
  }
  
  .editor-card.filled p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
  }