@import '_base.css'; #hero .hero-background{ background-image:url('../images/o-nas/o_nas_Main.webp'); }

/* TEAM STYLES */
.team-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0;
  }
  
  .team-member {
    border: 1px solid #EDEDED;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    padding-bottom: 20px;
  }
  
  .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background-color: #F0F7FD;
  }
  
  .team-member a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
  }
  
  .team-photo {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f0f0f0;
    border-radius: 50%; /* Optional: round photos */
    margin: 0 auto 1em auto;
    display: block;
  }
  
  .team-info {
    padding: 0 15px;
    text-align: center;
    color: #073F4D;
  }
  
  .team-info strong {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
  }
  
  /* Responsive styles for team grid */
  @media (max-width: 960px) {
    .team-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    
    .team-photo {
      height: 220px;
    }
  }
  
  @media (max-width: 600px) {
    .team-list {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    
    .team-photo {
      height: 200px;
    }
  }
  
  