/* Disable avatar rotation on hover */
img[alt]:hover {
  animation: none !important;
}

/* Show full summary text instead of truncating */
.not-prose.truncate {
  white-space: normal !important;
  overflow: visible !important;
}
/* Theme-aware images: hide/show based on .dark class */
.dark .themed-img-light { display: none; }
.dark .themed-img-dark { display: block; }
.themed-img-dark { display: none; }
.themed-img-light { display: block; }

/* Social icon backgrounds (replaces inline style= attributes) */
.social-rss { --url: url(/icons/rss.svg); }
