/**
 * Instiku Gutenberg & Block Editor Stylesheet
 */

/* Align Wide & Align Full Breakout Layout */
.entry-content .alignwide {
	margin-left: calc(-1 * min(3rem, 5vw));
	margin-right: calc(-1 * min(3rem, 5vw));
	max-width: none;
}

.entry-content .alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	max-width: 100vw;
}

/* Code Blocks */
.wp-block-code, pre {
	background: #0f172a;
	color: #f8fafc;
	font-family: var(--font-mono);
	padding: 1.25rem 1.5rem;
	border-radius: var(--radius-md);
	overflow-x: auto;
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 2rem 0;
}

.wp-block-code code {
	background: none;
	color: inherit;
	padding: 0;
}

code {
	background: var(--bg-muted);
	color: #e11d48;
	padding: 0.2rem 0.4rem;
	border-radius: var(--radius-sm);
	font-family: var(--font-mono);
	font-size: 0.875em;
}

/* Image Galleries */
.wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin: 2rem 0;
}

.wp-block-gallery .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

/* Embeds */
.wp-block-embed {
	margin: 2rem 0;
}

.wp-block-embed iframe {
	max-width: 100%;
	border-radius: var(--radius-md);
}
