.hero-tablon {
  height: 75vh;
  background: url('../images/hero/pexels-cottonbro-4068299.jpg') center/cover no-repeat;
  position: relative;
}
.hero-tablon .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.tablon-card {
  background: #fff;
  border-radius: 12px;
  transition: all .25s ease;
  height: 100%;
}

.tablon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tablon-type {
  font-size: 0.8rem;
}

.text-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fade-in {
  animation: fadeIn .7s ease-out;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to   {opacity: 1; transform: translateY(0);}
}

.tablon-type {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 6px;
    color: white;
}

/* COLORES POR TIPO */
.tipo-bando { background: #d9534f; }
.tipo-anuncio { background: #0275d8; }
.tipo-edicto { background: #6f42c1; }
.tipo-convocatoria { background: #5bc0de; }
.tipo-licitacion { background: #f0ad4e; }
.tipo-resoluciones { background: #20c997; }
.tipo-empleo { background: #198754; }
.tipo-subvencion { background: #8bc34a; }
.tipo-aviso { background: #ffc107; color: black; }
.tipo-urgente { background: #c82333; }
.tipo-reuniones { background: #0dcaf0; }
.tipo-asambleas { background: #6610f2; }
.tipo-temporales { background: #fd7e14; }
.tipo-exposiciones { background: #17a2b8; }
.tipo-baremacion { background: #198754; }
.tipo-concursos { background: #0d6efd; }
.tipo-otros { background: #6c757d; }
