  .leader-card {
    display: flex;
    gap: 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    overflow: hidden;
  }
  .leader-img-wrap {
    flex-shrink: 0;
    width: 300px;
    min-height: 260px;
    overflow: hidden;
  }
  .leader-img-wrap img {
    width: 300px;
    height: 320px;
    object-fit: cover;
    display: block;
  }
  .leader-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background: #e9f0fc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b4d9a;
    font-size: 4rem;
  }
  .leader-info {
    flex-grow: 1;
    padding: 2rem 2.5rem;
  }
  .leader-info table {
    width: 100%;
    border-collapse: collapse;
  }
  .leader-info table td {
    padding: 10px 12px 10px 0;
    font-size: 1rem;
    color: #222;
    vertical-align: top;
    border-bottom: 1px solid #f0f0f0;
  }
  .leader-info table tr:last-child td { border-bottom: none; }
  .leader-info table td:first-child {
    font-weight: 700;
    width: 130px;
    color: #111;
    white-space: nowrap;
  }

  .info-block {
    background: #fff;
    padding: 2rem 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
  }
  .info-block-title {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  .info-block-content {
    font-size: 1rem;
    line-height: 1.9;
    color: #333;
  }

  .staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 1rem;
  }
  .staff-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .staff-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  .staff-card-body { padding: 1.2rem 1.5rem; }
  .staff-name { font-size: 1.05rem; font-weight: 700; color: #1b4d9a; margin-bottom: 4px; }
  .staff-position { font-size: 0.9rem; color: #666; margin-bottom: 10px; }
  .staff-contacts { font-size: 0.88rem; color: #555; display: flex; flex-direction: column; gap: 5px; }
  .staff-contacts span { display: flex; align-items: center; gap: 8px; }
  .staff-contacts i { color: #1b4d9a; width: 16px; }

  @media (max-width: 600px) {
    .leader-card { flex-direction: column; }
    .leader-img-wrap { width: 100%; height: 240px; }
  }