.attoriHero{
    padding: 40px 0 10px;
  }
  
  .attoriTitle{
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    margin-bottom: 18px;
  }
  
  .attoriIntro{
    max-width: 720px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
  }
  
  .attoriGrid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }
  
  .attoreCard{
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--bg);
    display: grid;
    grid-template-columns: 240px 1fr;
    overflow: hidden;
    min-height: 240px;
  }
  
  .attoreFoto{
    background:
      linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.3)),
      var(--img) center/cover no-repeat;
    min-height: 100%;
  }
  
  .attoreBody{
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .attoreBody h2{
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 18px;
  }
  
  .attoreWorks{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    color: var(--muted);
    max-width: 900px;
  }
  
  .attoreWorks div{
    padding-left: 10px;
    border-left: 2px solid var(--accent);
    line-height: 1.7;
  }
  
  @media (max-width: 900px){
    .attoreCard{
      grid-template-columns: 1fr;
    }
  
    .attoreFoto{
      height: 280px;
    }
  }
  
  @media (max-width: 640px){
    .attoriHero{
      padding: 32px 0 8px;
    }
  
    .attoreBody{
      padding: 20px 18px;
    }
  
    .attoreBody h2{
      font-size: 28px;
      margin-bottom: 14px;
    }
  
    .attoreWorks{
      font-size: 15px;
      gap: 8px;
    }
  
    .attoreFoto{
      height: 220px;
    }
  }