/**
 * NidoVoix Theme — Custom Styles
 *
 * Screenshot frames, video styling, and utility classes.
 */

/* Screenshot frame styling */
.nidovoix-screenshot-frame img {
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(31, 31, 31, 0.1);
}

.nidovoix-screenshot-card {
	box-shadow: 0 2px 12px rgba(31, 31, 31, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nidovoix-screenshot-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(31, 31, 31, 0.1);
}

/* Video styling */
.nidovoix-video video {
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(31, 31, 31, 0.1);
	width: 100%;
	max-width: 100%;
}

.nidovoix-video figcaption {
	text-align: center;
	color: #6B6B6B;
	font-size: 0.875rem;
	margin-top: 0.75rem;
}

/* Compliance badge utility */
.nidovoix-badge {
	display: inline-block;
	background: #D4F1F4;
	color: #1A8E99;
	padding: 8px 18px;
	border-radius: 24px;
	font-size: 0.875rem;
	font-weight: 600;
}

.nidovoix-badge--highlight {
	background: #EF7B2C;
	color: #ffffff;
}

/* Full-width layout — prevent WP from boxing header/footer/body */

/* Remove any root padding WP adds to the site wrapper */
.wp-site-blocks {
	padding-left: 0 !important;
	padding-right: 0 !important;
	max-width: none !important;
}

/* Prevent header/footer template parts from being constrained by parent layout */
header.wp-block-template-part,
footer.wp-block-template-part {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: 100%;
}

/* Prevent main content wrapper from being width-constrained at the template level */
main.wp-block-group {
	max-width: none !important;
}

/* Responsive adjustments */
@media (max-width: 600px) {
	.wp-block-columns {
		flex-direction: column;
	}

	.nidovoix-screenshot-card {
		margin-bottom: 1rem;
	}
}
