/* SliTaz ARM — supplemental styles on top of slitaz-2026.css.
   Only the ARM-specific decorative download/info boxes; everything else
   (typography, header, nav, footer, dark mode) comes from slitaz-2026.css. */

.box-dl, .box-up, .box-rpi, .box-share {
	background-color: var(--white);
	background-repeat: no-repeat;
	background-position: 16px center;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	padding: 16px 16px 16px 60px;
	margin: 20px 0;
}
/* url() is resolved relative to THIS stylesheet (always at the web root as
   /arm.css), not the HTML page, so a single set of paths works everywhere —
   the rpi/ and codex/ pages need no override. */
.box-dl    { background-image: url("images/download.png"); }
.box-up    { background-image: url("images/generic.png"); }
.box-rpi   { background-image: url("images/raspberrypi.png"); }
.box-share { background-image: url("images/share.png"); }

/* Centered screenshot rows keep their inline margins; just cap width. */
.content img { max-width: 100%; height: auto; }
