/*
 * wordpress.css — WordPress required-state styles ONLY.
 * Loaded last so it never overrides the theme's own design (assets/css/*).
 * Nothing here changes the visual design of the static pages.
 */

/* Alignments (classic editor / blocks) */
.alignleft {
	float: left;
	margin: 0.5em 1.5em 0.5em 0;
}
.alignright {
	float: right;
	margin: 0.5em 0 0.5em 1.5em;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.alignnone {
	margin: 0;
}

/* Captions */
.wp-caption {
	max-width: 100%;
}
.wp-caption-text,
.wp-caption .wp-caption-text {
	font-size: 0.9em;
	color: inherit;
	text-align: center;
	padding: 0.4em 0;
}

/* Gallery */
.gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}
.gallery-item {
	margin: 0;
}
.gallery-caption {
	font-size: 0.85em;
}

/* Sticky / bypostauthor / screen reader (theme compatibility flags) */
.sticky,
.bypostauthor {
	/* intentionally empty — present for WordPress semantics */
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* WP smileys should sit inline, not as block images */
img.wp-smiley,
img.emoji {
	display: inline;
	height: 1em;
	width: 1em;
	vertical-align: -0.1em;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
}

/* Post password form + comment form basics */
.post-password-form label,
.comment-form label {
	display: block;
	margin-bottom: 0.4em;
}

/* Honeypot field used by the inquiry form — hidden from real users */
.nsc-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Notice shown when the inquiry plugin is inactive */
.nsc-form-notice {
	background: #fff8e1;
	border: 1px solid #ffe08a;
	color: #7a5b00;
	padding: 0.6em 0.9em;
	border-radius: 4px;
	font-size: 0.92em;
}
