/* Echoes — theme-agnostic minimal CSS
   Let the theme control layout and paint. Keep responsive truncation only. */

/* Optional: small top margin for grids if theme doesn't add it */
.echo-grid { margin-top: 12px; }

/* Mobile truncation helpers (safe, optional) */
@media (max-width: 780px) {
  .echo-title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .echo-summary {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden !important;
    line-height: 1.65;
  }
}
