  .section {
    margin-bottom: 2rem;
  }

  .section h2 {
    margin: 1.2rem 0 0.4rem;
  }

  .section-subtitle {
    margin: 0.2rem 0 1rem;
    color: var(--pst-color-text-muted);
    font-weight: normal;
    font-size: 0.95rem;
  }

  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .card {
    width: 220px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--pst-color-border);
    border-radius: 12px;
    padding: 1rem;
    background-color: var(--pst-color-surface);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.08);
    text-align: center;
    font-size: 14px;
    color: var(--pst-color-text-base);
  }

  .card .profile-pic {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto 0.5rem auto;
  }

  .card small {
    color: var(--pst-color-text-muted);
    font-size: 12px;
  }

  .card a {
    display: inline-block;
  }

  .logo-img {
    width: 30px !important;
    height: 30px !important;
    vertical-align: middle;
    margin-right: 4px;
    object-fit: contain;
    border-radius: 0;
  }

  .btn-bio {
    border: 1px solid var(--pst-color-border);
    background: var(--pst-color-surface);
    color: var(--pst-color-text-base);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    cursor: pointer;
  }

  .btn-bio:hover {
    background: var(--pst-color-on-surface);
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding: 2rem;
    background: rgba(0,0,0,0.5);
    inset: 0;
  }

  .modal-content {
    background: var(--pst-color-surface);
    color: var(--pst-color-text-base);
    padding: 1rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 5% auto;
    border: 1px solid var(--pst-color-border);
  }

  .modal-content h3 {
    margin-top: 0;
  }

  .modal-close {
    float: right;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1rem;
  }

  .card .social-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .card .social-links a {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
  }

  .card .social-links img.icon-social {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
  }