/* BLOG - Evitar que se corte el texto */
.post-text {
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  display: block !important;           /* Importante */
  line-height: 1.65 !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Si usas Tailwind line-clamp, desactívalo */
.line-clamp-2,
.line-clamp-3 {
  display: block !important;
  -webkit-line-clamp: unset !important;
}

/* BLOG - Texto más pequeño */
.post-text,
.blog-entry p,
.terminal-log p {
  font-size: 1.0rem !important;        /* ← Más pequeño */
  line-height: 1.7 !important;
  color: #d1d5db;
}
