/* Writages custom design helpers (used alongside Tailwind utility classes) */

.glass-nav {
	backdrop-filter: blur(12px);
	background-color: rgba(255, 255, 255, 0.85);
}

.gradient-bg {
	background: radial-gradient(circle at top right, rgba(255, 140, 0, 0.05), transparent),
				radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.05), transparent);
}

details[open] summary span.expand-icon {
	transform: rotate(180deg);
}

.no-scrollbar::-webkit-scrollbar {
	display: none;
}

.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* Make sure WordPress admin bar doesn't overlap the fixed nav */
.admin-bar .wr-nav {
	top: 32px;
}
@media screen and (max-width: 600px) {
	.admin-bar .wr-nav {
		top: 46px;
	}
}

/* Inner page prose content (from the_content) */
.wr-prose h2 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2.25rem; margin-bottom: 1rem; color: var(--wr-on-surface, #191c1d); }
.wr-prose h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.5rem; margin-bottom: 0.75rem; }
.wr-prose p { line-height: 1.75; color: #475569; margin-bottom: 1.25rem; }
.wr-prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; color: #475569; }
.wr-prose a { color: var(--wr-primary, #FF8C00); font-weight: 600; }
.wr-prose img { border-radius: 1.5rem; }
