/**
 * Quwa Growth Frontend Styles
 *
 * @package Quwa_Growth
 */

/* ==========================================================================
   Honeypot Field - Hidden from users, visible to bots
   ========================================================================== */

/**
 * Honeypot container - multiple layers of hiding to ensure users never see it
 * while bots parsing CSS might still find and fill the field.
 */
.qg-hp-field {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

/**
 * Honeypot input - additional hiding for the input itself.
 */
.qg-hp-field input,
.qg-hp-field label {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	border: 0 !important;
	clip: rect(0, 0, 0, 0) !important;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.qg-form,
.quwa-growth-form {
	position: relative;
}

.qg-form input[type="email"],
.qg-form input[type="text"],
.quwa-growth-form input[type="email"],
.quwa-growth-form input[type="text"] {
	box-sizing: border-box;
}

.qg-form button[type="submit"],
.quwa-growth-form button[type="submit"] {
	cursor: pointer;
}

.qg-form button[type="submit"]:disabled,
.quwa-growth-form button[type="submit"]:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

/* ==========================================================================
   Success/Error Messages
   ========================================================================== */

.qg-success-message {
	display: none;
	padding: 1rem;
	margin-top: 1rem;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 4px;
	color: #155724;
	text-align: center;
}

.qg-error-message {
	display: none;
	padding: 1rem;
	margin-top: 1rem;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	color: #721c24;
	text-align: center;
}

/* ==========================================================================
   Loading States
   ========================================================================== */

.qg-loading {
	position: relative;
	pointer-events: none;
}

.qg-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid #f3f3f3;
	border-top-color: #3498db;
	border-radius: 50%;
	animation: qg-spin 0.8s linear infinite;
}

@keyframes qg-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* ==========================================================================
   Campaign Containers
   ========================================================================== */

.qg-campaign {
	position: relative;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	box-sizing: border-box;
}

.qg-campaign *,
.qg-campaign *::before,
.qg-campaign *::after {
	box-sizing: border-box;
}

.qg-campaign--hidden {
	display: none !important;
}

.qg-campaign-content {
	position: relative;
	padding: 24px;
}

/* ==========================================================================
   Close Button
   ========================================================================== */

.qg-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	padding: 0;
	margin: 0;
	background: transparent;
	border: none;
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	color: #666;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.2s, color 0.2s;
}

.qg-close:hover {
	background-color: rgba(0, 0, 0, 0.1);
	color: #333;
}

.qg-close:focus {
	outline: 2px solid #3498db;
	outline-offset: 2px;
}

/* ==========================================================================
   Campaign Content Elements
   ========================================================================== */

.qg-headline {
	margin: 0 0 12px;
	padding: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	color: inherit;
}

.qg-body {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.6;
	color: inherit;
	opacity: 0.9;
}

.qg-image {
	margin: 0 0 16px;
	text-align: center;
}

.qg-image img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

/* ==========================================================================
   Campaign Forms
   ========================================================================== */

.qg-campaign .qg-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.qg-campaign .qg-form input[type="email"] {
	flex: 1 1 200px;
	min-width: 200px;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1.4;
	background: #fff;
	color: #333;
}

.qg-campaign .qg-form input[type="email"]:focus {
	border-color: #3498db;
	outline: none;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.qg-campaign .qg-button {
	flex: 0 0 auto;
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	background-color: #3498db;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.1s;
}

.qg-campaign .qg-button:hover {
	background-color: #2980b9;
}

.qg-campaign .qg-button:active {
	transform: scale(0.98);
}

/* ==========================================================================
   Overlay
   ========================================================================== */

.qg-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 99998;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.qg-overlay.qg-active {
	opacity: 1;
}

.qg-overlay.qg-closing {
	opacity: 0;
}

/* ==========================================================================
   Modal Campaign
   ========================================================================== */

.qg-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	z-index: 99999;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.qg-modal.qg-active {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.qg-modal.qg-closing {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.9);
}

.qg-modal .qg-form {
	flex-direction: column;
}

.qg-modal .qg-form input[type="email"] {
	width: 100%;
	flex: none;
}

.qg-modal .qg-button {
	width: 100%;
}

/* ==========================================================================
   Slide-in Campaign
   ========================================================================== */

.qg-slidein {
	position: fixed;
	max-width: 360px;
	width: 90%;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	z-index: 99997;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Bottom Right (default) */
.qg-slidein-bottom-right {
	bottom: 20px;
	right: 20px;
	transform: translateX(100%);
}

.qg-slidein-bottom-right.qg-active {
	opacity: 1;
	transform: translateX(0);
}

.qg-slidein-bottom-right.qg-closing {
	opacity: 0;
	transform: translateX(100%);
}

/* Bottom Left */
.qg-slidein-bottom-left {
	bottom: 20px;
	left: 20px;
	transform: translateX(-100%);
}

.qg-slidein-bottom-left.qg-active {
	opacity: 1;
	transform: translateX(0);
}

.qg-slidein-bottom-left.qg-closing {
	opacity: 0;
	transform: translateX(-100%);
}

/* Top Right */
.qg-slidein-top-right {
	top: 20px;
	right: 20px;
	transform: translateX(100%);
}

.qg-slidein-top-right.qg-active {
	opacity: 1;
	transform: translateX(0);
}

.qg-slidein-top-right.qg-closing {
	opacity: 0;
	transform: translateX(100%);
}

/* Top Left */
.qg-slidein-top-left {
	top: 20px;
	left: 20px;
	transform: translateX(-100%);
}

.qg-slidein-top-left.qg-active {
	opacity: 1;
	transform: translateX(0);
}

.qg-slidein-top-left.qg-closing {
	opacity: 0;
	transform: translateX(-100%);
}

.qg-slidein .qg-form {
	flex-direction: column;
}

.qg-slidein .qg-form input[type="email"] {
	width: 100%;
	flex: none;
}

.qg-slidein .qg-button {
	width: 100%;
}

/* ==========================================================================
   Banner Campaign
   ========================================================================== */

.qg-banner {
	position: relative;
	width: 100%;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 99990;
	opacity: 0;
	transform: translateY(-100%);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.qg-banner.qg-active {
	opacity: 1;
	transform: translateY(0);
}

.qg-banner.qg-closing {
	opacity: 0;
	transform: translateY(-100%);
}

.qg-banner-top {
	transform: translateY(-100%);
}

.qg-banner-bottom {
	transform: translateY(100%);
}

.qg-banner-bottom.qg-closing {
	transform: translateY(100%);
}

.qg-banner .qg-campaign-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 16px 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.qg-banner .qg-headline {
	margin: 0;
	font-size: 18px;
}

.qg-banner .qg-body {
	margin: 0;
	font-size: 14px;
}

.qg-banner .qg-form {
	flex-wrap: nowrap;
}

.qg-banner .qg-form input[type="email"] {
	min-width: 250px;
}

.qg-banner .qg-close {
	position: static;
	flex-shrink: 0;
}

/* ==========================================================================
   Floatbar (Sticky Bar) Campaign
   ========================================================================== */

.qg-floatbar {
	position: fixed;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 99995;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.qg-floatbar-bottom {
	bottom: 0;
	transform: translateY(100%);
}

.qg-floatbar-bottom.qg-active {
	opacity: 1;
	transform: translateY(0);
}

.qg-floatbar-bottom.qg-closing {
	opacity: 0;
	transform: translateY(100%);
}

.qg-floatbar-top {
	top: 0;
	transform: translateY(-100%);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qg-floatbar-top.qg-active {
	opacity: 1;
	transform: translateY(0);
}

.qg-floatbar-top.qg-closing {
	opacity: 0;
	transform: translateY(-100%);
}

.qg-floatbar .qg-campaign-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 12px 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.qg-floatbar .qg-headline {
	margin: 0;
	font-size: 16px;
}

.qg-floatbar .qg-body {
	margin: 0;
	font-size: 14px;
}

.qg-floatbar .qg-form {
	flex-wrap: nowrap;
}

.qg-floatbar .qg-form input[type="email"] {
	min-width: 200px;
	padding: 10px 14px;
}

.qg-floatbar .qg-button {
	padding: 10px 20px;
}

.qg-floatbar .qg-close {
	position: static;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	font-size: 20px;
}

/* ==========================================================================
   Inline Campaign
   ========================================================================== */

.qg-inline {
	margin: 24px 0;
	padding: 24px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
}

.qg-inline .qg-campaign-content {
	padding: 0;
}

.qg-inline .qg-close {
	display: none;
}

.qg-inline .qg-form {
	flex-direction: row;
}

.qg-inline .qg-form input[type="email"] {
	flex: 1 1 auto;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
	.qg-modal {
		width: 95%;
		max-height: 85vh;
	}

	.qg-slidein {
		width: 95%;
		max-width: none;
		left: 2.5%;
		right: 2.5%;
	}

	.qg-slidein-bottom-right,
	.qg-slidein-bottom-left {
		left: 2.5%;
		right: 2.5%;
		transform: translateY(100%);
	}

	.qg-slidein-bottom-right.qg-active,
	.qg-slidein-bottom-left.qg-active {
		transform: translateY(0);
	}

	.qg-slidein-bottom-right.qg-closing,
	.qg-slidein-bottom-left.qg-closing {
		transform: translateY(100%);
	}

	.qg-slidein-top-right,
	.qg-slidein-top-left {
		left: 2.5%;
		right: 2.5%;
		transform: translateY(-100%);
	}

	.qg-slidein-top-right.qg-active,
	.qg-slidein-top-left.qg-active {
		transform: translateY(0);
	}

	.qg-slidein-top-right.qg-closing,
	.qg-slidein-top-left.qg-closing {
		transform: translateY(-100%);
	}

	.qg-banner .qg-campaign-content,
	.qg-floatbar .qg-campaign-content {
		flex-direction: column;
		text-align: center;
		padding: 16px;
	}

	.qg-banner .qg-form,
	.qg-floatbar .qg-form {
		flex-direction: column;
		width: 100%;
	}

	.qg-banner .qg-form input[type="email"],
	.qg-floatbar .qg-form input[type="email"] {
		min-width: auto;
		width: 100%;
	}

	.qg-banner .qg-button,
	.qg-floatbar .qg-button {
		width: 100%;
	}

	.qg-inline .qg-form {
		flex-direction: column;
	}

	.qg-inline .qg-form input[type="email"],
	.qg-inline .qg-button {
		width: 100%;
	}
}

/* ==========================================================================
   Inline Campaign (PHP-injected wrapper)
   ========================================================================== */

.qg-inline-campaign {
	margin: 30px 0;
	clear: both;
}

.qg-inline-campaign::before,
.qg-inline-campaign::after {
	content: '';
	display: table;
	clear: both;
}

.qg-inline-campaign .qg-campaign-content {
	padding: 24px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
}

.qg-inline-campaign .qg-close {
	display: none;
}

/* ==========================================================================
   Toast Campaigns
   ========================================================================== */

.qg-toast {
	position: fixed;
	z-index: 99996;
	max-width: 350px;
	width: 90%;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.qg-toast-bottom-right {
	bottom: 20px;
	right: 20px;
}

.qg-toast-bottom-left {
	bottom: 20px;
	left: 20px;
}

.qg-toast-top-right {
	top: 20px;
	right: 20px;
	transform: translateY(-20px);
}

.qg-toast-top-left {
	top: 20px;
	left: 20px;
	transform: translateY(-20px);
}

.qg-toast.qg-active {
	opacity: 1;
	transform: translateY(0);
}

.qg-toast.qg-closing {
	opacity: 0;
	transform: translateY(20px);
}

.qg-toast-top-right.qg-closing,
.qg-toast-top-left.qg-closing {
	transform: translateY(-20px);
}

.qg-toast .qg-campaign-content {
	padding: 16px 20px;
}

.qg-toast .qg-headline {
	margin: 0 0 8px;
	font-size: 16px;
	padding-right: 24px;
}

.qg-toast .qg-body {
	margin: 0;
	font-size: 14px;
}

.qg-toast .qg-close {
	top: 8px;
	right: 8px;
	width: 24px;
	height: 24px;
	font-size: 18px;
}

/* ==========================================================================
   Modal Body Lock
   ========================================================================== */

body.qg-modal-open {
	overflow: hidden;
}

/* ==========================================================================
   Alternative Modal Style (combined overlay + content)
   ========================================================================== */

.qg-campaign.qg-modal-active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity 0.3s ease;
	padding: 20px;
}

.qg-campaign.qg-modal-active.qg-visible {
	opacity: 1;
}

.qg-campaign.qg-modal-active > * {
	transform: scale(0.9) translateY(20px);
	transition: transform 0.3s ease;
}

.qg-campaign.qg-modal-active.qg-visible > * {
	transform: scale(1) translateY(0);
}

/* ==========================================================================
   Alternative Slide-in Selectors
   ========================================================================== */

.qg-campaign[class*="qg-slidein-"] {
	position: fixed;
	z-index: 99997;
	max-width: 400px;
	width: 90%;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	transform: translateX(120%);
	transition: transform 0.4s ease, opacity 0.3s ease;
}

.qg-campaign[class*="qg-slidein-"].qg-slidein-bottom-left,
.qg-campaign[class*="qg-slidein-"].qg-slidein-top-left {
	transform: translateX(-120%);
}

.qg-campaign[class*="qg-slidein-"].qg-visible {
	transform: translateX(0);
}

/* ==========================================================================
   Alternative Banner Selectors
   ========================================================================== */

.qg-campaign[class*="qg-banner-"] {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 99990;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(-100%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.qg-campaign.qg-banner-top {
	top: 0;
}

.qg-campaign.qg-banner-bottom {
	top: auto;
	bottom: 0;
	transform: translateY(100%);
}

.qg-campaign[class*="qg-banner-"].qg-visible {
	transform: translateY(0);
}

/* ==========================================================================
   Alternative Sticky Bar Selectors
   ========================================================================== */

.qg-campaign[class*="qg-sticky-"] {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 99995;
	background: #fff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(-100%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.qg-campaign.qg-sticky-top {
	top: 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qg-campaign.qg-sticky-bottom {
	top: auto;
	bottom: 0;
	transform: translateY(100%);
}

.qg-campaign[class*="qg-sticky-"].qg-visible {
	transform: translateY(0);
}

/* ==========================================================================
   Alternative Toast Selectors
   ========================================================================== */

.qg-campaign[class*="qg-toast-"] {
	position: fixed;
	z-index: 99996;
	max-width: 350px;
	width: 90%;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.qg-campaign.qg-toast-bottom-right {
	bottom: 20px;
	right: 20px;
}

.qg-campaign.qg-toast-bottom-left {
	bottom: 20px;
	left: 20px;
}

.qg-campaign.qg-toast-top-right {
	top: 20px;
	right: 20px;
	transform: translateY(-20px);
}

.qg-campaign.qg-toast-top-left {
	top: 20px;
	left: 20px;
	transform: translateY(-20px);
}

.qg-campaign[class*="qg-toast-"].qg-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   Dismiss Button Variants
   ========================================================================== */

.qg-dismiss,
[data-qg-close] {
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.qg-dismiss:hover,
[data-qg-close]:hover {
	opacity: 0.7;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

/* Screen reader only - for accessible labels */
.qg-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Focus visible for keyboard navigation */
.qg-form *:focus-visible,
.quwa-growth-form *:focus-visible {
	outline: 2px solid #3498db;
	outline-offset: 2px;
}

/* ==========================================================================
   Print Styles - Hide all campaigns
   ========================================================================== */

@media print {
	.qg-campaign,
	.qg-overlay,
	.qg-inline-campaign {
		display: none !important;
	}
}

/* ==========================================================================
   Paywall Styles - Content truncation with fade effect
   ========================================================================== */

/**
 * Paywall wrapper - ensures full width.
 */
.qg-paywall-wrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.qg-paywall-wrapper *,
.qg-paywall-wrapper *::before,
.qg-paywall-wrapper *::after {
	box-sizing: inherit;
}

/**
 * Paywall content container.
 */
.qg-paywall-content {
	position: relative;
	width: 100%;
}

/**
 * Visible content before the paywall.
 */
.qg-paywall-visible,
.qg-paywall-visible-content {
	position: relative;
	width: 100%;
}

/**
 * Fade overlay that covers the bottom of visible content.
 * Creates a smooth transition from content to paywall CTA.
 */
.qg-paywall-fade {
	position: relative;
	height: 150px;
	margin-top: -150px;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.8) 50%,
		rgba(255, 255, 255, 1) 100%
	);
	pointer-events: none;
	z-index: 1;
}

/**
 * Paywall CTA container.
 * Positioned above the fade to overlap slightly.
 */
.qg-paywall-cta {
	position: relative;
	z-index: 10;
	margin-top: -30px;
	padding-top: 20px;
	width: 100%;
}

/**
 * Inline campaign inside paywall CTA - ensure full width.
 */
.qg-paywall-cta .qg-inline-campaign,
.qg-paywall-cta .qg-campaign {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.qg-paywall-cta .qg-campaign-inner,
.qg-paywall-cta .qg-campaign-content {
	width: 100%;
}

/**
 * Paywall campaign marker class.
 */
.qg-paywall-campaign {
	width: 100%;
}

/* Dark mode support - theme classes only (not system preference) */
/* NOTE: We intentionally do NOT use @media (prefers-color-scheme: dark) here
   because that follows the OS preference, not the website's actual theme.
   A user with OS dark mode viewing a light-themed site would get wrong colors. */
.dark .qg-paywall-fade,
.dark-mode .qg-paywall-fade,
.theme-dark .qg-paywall-fade,
[data-theme="dark"] .qg-paywall-fade,
body.dark .qg-paywall-fade,
html.dark .qg-paywall-fade {
	background: linear-gradient(
		to bottom,
		rgba(30, 30, 30, 0) 0%,
		rgba(30, 30, 30, 0.8) 50%,
		rgba(30, 30, 30, 1) 100%
	);
}

/* Customizable fade color via CSS variable */
.qg-paywall-fade {
	--qg-paywall-bg: #ffffff;
}

.qg-paywall-fade[style*="--qg-paywall-bg"] {
	background: linear-gradient(
		to bottom,
		transparent 0%,
		var(--qg-paywall-bg) 100%
	);
}
