
    /* =========================================================
      AUTHOR — photo + socials
    ========================================================= */
    .authorPhoto{
      width: 100%;
      max-width: 520px;
      margin-left: auto;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--soft);
      overflow: hidden;
      box-shadow:
        0 1px 2px rgba(0,0,0,.04),
        0 12px 32px rgba(0,0,0,.06);
    }

    .authorPhoto img{
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      aspect-ratio: 4 / 3;
    }

    .socialRow{
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .socialLink{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #fff;
      color: #243041;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .socialLink:hover{
      transform: translateY(-2px);
      opacity: .95;
    }

    .textLink{
      color: #243041;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 2px;
    }
    .textLink:hover{opacity:.9}
