/* Estilos para el listado de técnicos (tecnicos.html) */

.grid-tech {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.tech-card {
  text-align: center;
  padding: 25px 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tech-card:hover {
  border-color: var(--primary, #1a7f5a);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.tech-card h3 {
  margin: 8px 0 6px;
  font-size: 1.05rem;
}

.tech-zone {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.tech-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
}

.tech-phone:hover {
  text-decoration: underline;
}

.tech-phone-na {
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
}