/* Педагогоческий коллектив */

 .teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px 30px;
    align-items: start;
  }

  .teacher-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid #e0e7ff;
    overflow: hidden;
  }

  .teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.25);
    border-color: #6366f1;
  }

  .teacher-photo {
    position: relative;
    width: 100%;
    padding-top: 133%;
    overflow: hidden;
    background: #ffffff;
  }

  .teacher-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .teacher-card:hover .teacher-photo img {
    transform: scale(1.08);
  }

  .teacher-info {
    padding: 20px 18px;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .teacher-position {
    font-size: 13px;
    color: #6366f1;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .teacher-name {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
  }

  .teacher-category {
    display: inline-block;
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    align-self: flex-start;
  }

  .teacher-credo {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    font-style: italic;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
  }

  @media (max-width: 768px) {
    .teachers-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 15px;
      padding: 20px 10px;
    }
    
    .teacher-card {
      border-width: 1.5px;
    }
    
    .teacher-info {
      padding: 12px 10px;
    }
    
    .teacher-name {
      font-size: 15px;
    }
    
    .teacher-position {
      font-size: 11px;
    }
    
    .teacher-category {
      font-size: 11px;
      padding: 4px 10px;
    }

    .teacher-credo {
      font-size: 12px;
    }
  }

