/* Scoped styles only for the blog list "Leer más" button */
.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 0;
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  background-color: #0d6efd; /* blue background */
  box-shadow: 0 6px 18px rgba(13,110,253,0.12);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}
.btn-readmore:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13,110,253,0.18);
  background-color: #0747c8;
}
.btn-readmore:focus{ outline: 3px solid rgba(13,110,253,0.18); outline-offset: 2px; }
.btn-readmore .icon { display:inline-flex; width:18px; height:18px; align-items:center; justify-content:center; color: inherit; }

/* Dark theme variant */
html[data-bs-theme="dark"] .btn-readmore {
  background-color: #ffec3d;
  color: #111;
  box-shadow: 0 6px 18px rgba(0,0,0,0.32);
}
html[data-bs-theme="dark"] .btn-readmore:hover{ background-color: #ffe21a; box-shadow: 0 10px 30px rgba(0,0,0,0.42); }
@media (prefers-reduced-motion: reduce){ .btn-readmore { transition: none; transform: none !important; } }
