/* Mobile fixes for the CookieAdmin consent banner (wp-content/plugins/cookieadmin).
   The plugin has no settings screen for this, and its own mobile rule at
   max-width:480px sets every .cookieadmin_btn to width:100%, which stacks
   Accept/Reject/Customize as separate full-width rows and lets the banner's
   text + 3 stacked buttons balloon to a large share of the viewport height.
   Kept here (not edited in the plugin) so a plugin update can't wipe it —
   loaded after assets/css/consent.css, see inc/enqueue.php. */

@media (max-width: 767px) {
	.cookieadmin_law_container,
	.cookieadmin_box {
		max-height: 45vh;
		overflow-y: auto;
	}

	.cookieadmin_consent_inside {
		padding: 12px;
	}

	.cookieadmin_notice_group {
		gap: 8px;
	}

	#cookieadmin_notice_title {
		font-size: 12px;
	}

	.cookieadmin_notice_con {
		font-size: 11.5px;
		line-height: 1.4;
	}

	.cookieadmin_consent_inside .cookieadmin_btn {
		width: auto;
		flex: 1 1 auto;
		min-width: 45%;
		margin: 4px;
	}
}
