/*
 * Small additions on top of the original theme stylesheets, needed only
 * because this is now a plain static build (no WordPress/PHP behind it).
 */

/* Placeholder thumbnails: keep them from overflowing their containers,
   since the original used WordPress-generated image sizes. */
img.wp-img,
img.img-small,
img.img-hard,
img.img-in,
img.img-insmall,
img.preview {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* Category tab panels: default to hidden unless explicitly shown by
   custom.js (mirrors the inline "display:none" the original theme used). */
#SectionA .widget-content > div[id="fetch"] {
	display: none;
}
#SectionA .widget-content > div[id="fetch"].acctive {
	display: block;
}

/* Mobile nav: collapsed by default until custom.js toggles it. */
.slicknav_hidden {
	display: none;
}
