.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .team-member {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .team-member h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0 0.25rem;
    font-weight: 700;
    color: #222;
  }
  
  .team-member p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
  }
  
  .read-more-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #800000;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: #a10000;
  }
  
  