/* ------------------------------------------------------------------ */
/* StratopEdge theme overrides — native WordPress components only:     */
/* mobile menu, forms, FAQ accordion, notices, skip link.              */
/* Design tokens (colors, radius, shadows) reused from                 */
/* tailwind-compiled.css so this file introduces no new palette.       */
/* ------------------------------------------------------------------ */

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--color-primary, #1f2a44);
	color: #fff;
	padding: 0.75rem 1.25rem;
}
.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* Mobile menu ------------------------------------------------------- */
#stratopedge-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--color-foreground, #1f2a44);
}
@media (max-width: 767px) {
	#stratopedge-menu-toggle {
		display: inline-flex;
	}
}
.stratopedge-mobile-menu {
	border-top: 1px solid var(--color-border, #e5e7eb);
	background: var(--color-background, #fff);
}
.stratopedge-mobile-menu[hidden] {
	display: none;
}

/* Forms --------------------------------------------------------------*/
.stratopedge-input,
.stratopedge-select {
	display: flex;
	height: 2.5rem;
	width: 100%;
	border-radius: 0.375rem;
	border: 1px solid var(--color-input, #d1d5db);
	background: transparent;
	padding: 0.4rem 0.75rem;
	font-size: 0.925rem;
	line-height: 1.4;
	color: inherit;
}
textarea.stratopedge-input {
	height: auto;
}
.stratopedge-input:focus,
.stratopedge-select:focus {
	outline: none;
	box-shadow: 0 0 0 1px var(--color-ring, #1f2a44);
}
.stratopedge-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.stratopedge-notice {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	border-radius: 0.375rem;
	padding: 0.85rem 1rem;
	font-size: 0.875rem;
	margin-bottom: 1.25rem;
}
.stratopedge-notice-success {
	background: color-mix(in oklab, var(--color-teal, #0f766e) 12%, transparent);
	color: var(--color-teal, #0f766e);
	border: 1px solid color-mix(in oklab, var(--color-teal, #0f766e) 35%, transparent);
}
.stratopedge-notice-error {
	background: color-mix(in oklab, var(--color-destructive, #b91c1c) 10%, transparent);
	color: var(--color-destructive, #b91c1c);
	border: 1px solid color-mix(in oklab, var(--color-destructive, #b91c1c) 35%, transparent);
}

/* FAQ accordion (native <details>/<summary>, no JS required) -------- */
.stratopedge-faq summary {
	outline: none;
}
.stratopedge-faq summary::-webkit-details-marker {
	display: none;
}
.stratopedge-faq[open] summary svg {
	transform: rotate(180deg);
}
.stratopedge-faq svg {
	transition: transform 0.2s ease;
}

/* Article prose (blog posts) ----------------------------------------*/
.article-prose h2 {
	margin-top: 2.25rem;
	margin-bottom: 0.75rem;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.3;
}
.article-prose p {
	margin-top: 0;
	margin-bottom: 1.1rem;
	line-height: 1.75;
	color: var(--color-muted-foreground, #6b7280);
}
.article-prose ul,
.article-prose ol {
	margin: 0 0 1.1rem 1.25rem;
	line-height: 1.75;
	color: var(--color-muted-foreground, #6b7280);
}
.article-prose li {
	margin-bottom: 0.4rem;
}
.article-prose a {
	color: var(--color-primary, #1f2a44);
	text-decoration: underline;
}

.prose-stratopedge h2 {
	font-size: 1.375rem;
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}
.prose-stratopedge p {
	margin-bottom: 1rem;
}
.prose-stratopedge ul {
	margin: 0 0 1rem 1.25rem;
}

/* Small utility used by the WP comment form to blend in --------------*/
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"],
#respond textarea {
	display: flex;
	width: 100%;
	border-radius: 0.375rem;
	border: 1px solid var(--color-input, #d1d5db);
	background: transparent;
	padding: 0.5rem 0.75rem;
	font-size: 0.925rem;
	margin-bottom: 0.75rem;
}
#respond .form-submit input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.375rem;
	background: var(--color-primary, #1f2a44);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border: 0;
	cursor: pointer;
}

.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;
}
