/* =============================================
   TARJETAS DE EMPLEADOS - ESTILOS CSS SIN TAILWIND
   ============================================= */

/* Grid de tarjetas */
.empleados-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .empleados-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .empleados-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   TARJETA DE EMPLEADO
   ============================================= */

.empleado-card {
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
  border-radius: 0.75rem;
}

.empleado-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Tarjeta que ocupa 2 columnas en tablet y 1 en desktop */
.empleado-card-wide {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .empleado-card-wide {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .empleado-card-wide {
    grid-column: span 1;
  }
}

/* Contenido superior de la tarjeta */
.empleado-card-body {
  padding: 2rem;
  flex: 1;
}

/* Cargo del empleado */
.empleado-card-cargo {
  color: #0044a5;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Nombre del empleado */
.empleado-card-nombre {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: #1A1A1A;
}

/* Descripción */
.empleado-card-descripcion {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.625;
  margin: 0;
}

/* Pie de la tarjeta */
.empleado-card-footer {
  padding: 0 2rem 2rem 2rem;
  padding-top: 1rem;
  border-top: 1px solid #f9fafb;
  background-color: rgba(249, 250, 251, 0.5);
}

/* Botón de contacto */
.empleado-card-button {
  display: inline-block;
  border: 1px solid #1A1A1A;
  color: #1A1A1A;
  padding: 0.625rem 1.5rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border-radius: 0.75rem;
  width: 100%;
}

.empleado-card-button:hover {
  background-color: #0044a5;
  border-color: #0044a5;
  color: #ffffff;
}

.empleado-card-button:focus {
  outline: 2px solid #0044a5;
  outline-offset: 2px;
}

/* =============================================
   UTILIDADES ADICIONALES
   ============================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}