/* staff.css - Ajustes exclusivos para staff.php */

.banner {
  background-image: url('../img/clinica.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner h1 {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 40px;
  border-radius: 10px;
  font-size: 3rem;
}

/* Ajustes base para desktop */
.card-title {
  font-size: 1.4rem;
}

.card-subtitle {
  font-size: 1.1rem;
}

.card-text {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Imagen de las tarjetas */
.card-img-top {
  height: 350px; /* antes estaba 240px, ahora más alta */
  object-fit: cover;
}


/* 📱 Responsive para móviles */
@media (max-width: 576px) {
  .banner h1 {
    font-size: 2rem;
    padding: 15px 20px;
    text-align: center;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-subtitle {
    font-size: 1.05rem;
  }

  .card-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .card-body {
    padding: 16px;
  }

  .card-img-top {
    height: 250px;
  }

  .filter-wrapper select {
    font-size: 1rem;
    padding: 10px;
  }

  footer p,
  footer li,
  footer a {
    font-size: 0.9rem;
  }

  footer h6 {
    font-size: 1rem;
  }
}
