/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 04 2026 | 12:54:14 */
/* По умолчанию скрываем */
summary {
  display: none;
}

/* Показываем только на мобильных */
@media (max-width: 767px) {
  summary {
    display: block;
  }
}