/*
 * iWebAndSEO theme — utilities layer
 * Small helpers and print styles.
 */

/* ---------- Alignment ---------- */

.text-center {
	text-align: center;
}

.alignleft {
	float: left;
	margin: 0.5rem 1.25rem 0.5rem 0;
}

.alignright {
	float: right;
	margin: 0.5rem 0 0.5rem 1.25rem;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.alignwide {
	width: min(100%, 1200px);
	margin-inline: auto;
}

.alignfull {
	width: 100vw;
	margin-inline: calc(50% - 50vw);
	max-width: 100vw;
}

/* ---------- Text ---------- */

.has-small-font-size {
	font-size: 0.875rem;
}

.has-large-font-size {
	font-size: 1.25rem;
}

/* ---------- Spacing ---------- */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- WordPress core classes ---------- */

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 0.875rem;
	color: var(--text-muted);
	text-align: center;
	margin-top: 0.5rem;
}

.sticky .card {
	border-color: var(--brand);
	box-shadow: 0 0 0 1px var(--brand), var(--shadow-sm);
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 1rem;
}

.gallery-item {
	margin: 0;
}

.gallery-item img {
	border-radius: var(--radius-sm);
}

.gallery-caption {
	font-size: 0.8125rem;
	color: var(--text-muted);
	text-align: center;
	margin-top: 0.4rem;
}

/* ---------- Print ---------- */

@media print {
	.site-header,
	.site-footer,
	.nav-panel,
	.cta-section,
	.btn,
	.social-links,
	.pagination,
	.comments-area,
	.toc {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
		display: block;
	}

	a {
		color: #000;
	}

	.entry-content pre {
		background: #f4f4f4;
		color: #000;
	}
}