﻿/* micro estilos de blog */
.rating .star {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.rating .fa-solid.fa-star {
  color: #f5c518;
}
.rating .fa-regular.fa-star {
  color: #d3d3d3;
}

/* tarjetas y pager */
.pagination a {
  text-decoration: none;
}
/* Limitar preview de excerpt en cards */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* FA regular fallback (por si usas FA6) */
.fa-regular.fa-star {
  color: #d4d4d8;
}
.fa-solid.fa-star {
  color: #f5c518;
}

