/*
 * MaturePride.com homepage styles (auto-loaded on MaturePride Home template).
 * Site-wide overrides can still be pasted from demos/maturepride/maturepride-customizer.css.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

:root {
	--mp-navy: #0b1120;
	--mp-navy-light: #111827;
	--mp-navy-mid: #1e293b;
	--mp-orange: #f59e0b;
	--mp-orange-dark: #d97706;
	--mp-orange-bright: #f97316;
	--mp-blue: #3b82f6;
	--mp-blue-bright: #38bdf8;
	--mp-purple: #9333ea;
	--mp-purple-dark: #7c3aed;
	--mp-green: #22c55e;
	--mp-pink: #ec4899;
	--mp-gray-50: #f8fafc;
	--mp-gray-100: #f1f5f9;
	--mp-gray-200: #e2e8f0;
	--mp-gray-500: #64748b;
	--mp-gray-700: #334155;
	--mp-gray-900: #0f172a;
	--mp-white: #ffffff;
	--mp-container-radius: 0;
	--mp-button-radius: 30px;
	--mp-font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--mp-font-heading: 'Montserrat', 'Inter', sans-serif;
	--mp-font-size-base: 16px;
	--mp-line-height: 1.6;
	--mp-hero-bg: url('https://yoursite.com/wp-content/themes/comunityq/assets/images/maturepride/hero.jpg');
}

/* --------------------------------------------------------------------------
   Global typography
   -------------------------------------------------------------------------- */

body,
body .mpmp-wrap,
body .mpmp-container {
	font-family: var(--mp-font-body);
	font-size: var(--mp-font-size-base);
	line-height: var(--mp-line-height);
	color: var(--mp-gray-900);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.cq-section-title,
.mp-home-section-title {
	font-family: var(--mp-font-heading);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--mp-gray-900);
}

a {
	color: var(--mp-blue);
	transition: color 0.2s ease;
}

a:hover {
	color: var(--mp-orange);
}

/* --------------------------------------------------------------------------
   Shape: square containers, pill buttons
   -------------------------------------------------------------------------- */

.card,
.dropdown-menu,
.modal-content,
.list-group-item,
.form-control,
.form-select,
.input-group-text,
.alert,
.wp-block-group,
.cq-widget,
.mpmp-wrap,
.mpmp-container,
.mpmp-card,
.mpmp-inbox,
.mp-home-feature,
.mp-home-plan,
.mp-home-spotlight,
.mp-home-spotlight-media {
	border-radius: var(--mp-container-radius) !important;
}

.btn,
button,
input[type="submit"],
input[type="button"],
.wp-block-button__link,
.cq-header-cta .btn,
.mp-btn,
.mp-home-plan-btn,
.mpmp-btn {
	border-radius: var(--mp-button-radius) !important;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn-primary,
.mp-btn-primary,
.mpmp-btn-primary {
	background-color: var(--mp-orange) !important;
	border-color: var(--mp-orange) !important;
	color: var(--mp-white) !important;
	font-weight: 600;
	padding: 0.65rem 1.75rem;
}

.btn-primary:hover,
.mp-btn-primary:hover {
	background-color: var(--mp-orange-dark) !important;
	border-color: var(--mp-orange-dark) !important;
	color: var(--mp-white) !important;
}

.btn-outline-primary,
.mp-btn-outline-primary {
	background: transparent !important;
	border: 2px solid var(--mp-blue) !important;
	color: var(--mp-blue) !important;
	font-weight: 600;
	padding: 0.65rem 1.75rem;
}

.btn-outline-primary:hover,
.mp-btn-outline-primary:hover {
	background: var(--mp-blue) !important;
	color: var(--mp-white) !important;
}

.btn-outline-light,
.mp-btn-outline-light {
	background: transparent !important;
	border: 2px solid rgba(255, 255, 255, 0.85) !important;
	color: var(--mp-white) !important;
	font-weight: 600;
}

.btn-outline-light:hover,
.mp-btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	color: var(--mp-white) !important;
}

.mp-btn-secondary {
	background: var(--mp-gray-700) !important;
	border-color: var(--mp-gray-700) !important;
	color: var(--mp-white) !important;
}

/* --------------------------------------------------------------------------
   Header & footer
   -------------------------------------------------------------------------- */

.cq-site-header,
.cq-header-surface {
	background-color: var(--mp-navy) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cq-site-header .navbar-brand,
.cq-site-header .site-title,
.cq-site-header .site-title a {
	color: var(--mp-white) !important;
	font-family: var(--mp-font-heading);
	font-weight: 800;
}

.cq-site-header .navbar-nav .nav-link,
.cq-site-header .cq-header-nav .nav-link {
	color: var(--mp-gray-200) !important;
	font-weight: 500;
}

.cq-site-header .navbar-nav .nav-link:hover,
.cq-site-header .cq-header-nav .nav-link:hover,
.cq-site-header .navbar-nav .current-menu-item > .nav-link,
.cq-site-header .navbar-nav .current_page_item > .nav-link {
	color: var(--mp-orange) !important;
}

.cq-header-cta .btn {
	background: var(--mp-orange-bright) !important;
	border-color: var(--mp-orange-bright) !important;
	color: var(--mp-white) !important;
	font-weight: 600;
}

.cq-site-footer {
	background-color: var(--mp-navy) !important;
	color: var(--mp-gray-200);
	border-top: none;
}

.cq-site-footer a {
	color: var(--mp-gray-200);
}

.cq-site-footer a:hover {
	color: var(--mp-orange);
}

.cq-site-footer .widget-title,
.cq-site-footer h2,
.cq-site-footer h3,
.cq-site-footer h4 {
	color: var(--mp-white);
	font-family: var(--mp-font-heading);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cq-site-footer .cq-footer-copyright {
	color: var(--mp-gray-500);
	font-size: 0.875rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   Page layout
   -------------------------------------------------------------------------- */

.cq-hide-page-title .entry-header,
.cq-hide-page-title .page-header,
.mp-home-page .entry-header {
	display: none;
}

.mp-home-page .site-main,
.mp-home-page .content-area,
.mp-home-page .entry-content,
.mp-home-page #main-content,
.mp-home-page .mp-home-main {
	padding: 0;
	margin: 0;
	max-width: 100%;
	width: 100%;
}

/* ==========================================================================
   HOMEPAGE
   ========================================================================== */

.mp-home {
	overflow-x: hidden;
}

/* Hero */

.mp-home-hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	padding: 5rem 0 6rem;
	overflow: hidden;
	background: var(--mp-navy);
}

.mp-home-hero-carousel,
.mp-home-hero-carousel .carousel-inner,
.mp-home-hero-carousel .carousel-item {
	position: absolute;
	inset: 0;
	height: 100%;
}

.mp-home-hero-carousel .carousel-item {
	min-height: 100%;
}

.mp-home-hero-slide {
	width: 100%;
	height: 100%;
	min-height: 520px;
	background-color: var(--mp-navy);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.mp-home-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		105deg,
		rgba(11, 17, 32, 0.92) 0%,
		rgba(11, 17, 32, 0.75) 45%,
		rgba(11, 17, 32, 0.35) 100%
	);
	pointer-events: none;
}

.mp-home-hero-indicators {
	display: none;
}

.mp-home-hero-inner {
	position: relative;
	z-index: 2;
}

.mp-home-hero-title {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.25rem;
	color: var(--mp-white);
}

.mp-home-hero-connect { color: var(--mp-white); }
.mp-home-hero-belong { color: var(--mp-orange-bright); }
.mp-home-hero-thrive { color: var(--mp-blue-bright); }

.mp-home-hero-lead {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.88);
	max-width: 520px;
	margin-bottom: 2rem;
	line-height: 1.7;
}

.mp-home-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Features bar */

.mp-home-features {
	margin-top: -3rem;
	position: relative;
	z-index: 2;
	padding-bottom: 0;
}

.mp-home-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--mp-navy-mid);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-home-feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.75rem 1.5rem;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--mp-white);
}

.mp-home-feature:last-child {
	border-right: none;
}

.mp-home-feature-icon {
	flex-shrink: 0;
	font-size: 1.5rem;
	line-height: 1;
}

.mp-home-feature-icon--blue { color: var(--mp-blue-bright); }
.mp-home-feature-icon--gold { color: var(--mp-orange); }
.mp-home-feature-icon--green { color: var(--mp-green); }
.mp-home-feature-icon--purple { color: var(--mp-purple); }

.mp-home-feature-title {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
	color: var(--mp-white);
}

.mp-home-feature-text {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	line-height: 1.5;
}

/* Membership plans */

.mp-home-plans {
	background: var(--mp-gray-100);
	padding: 4rem 0;
}

.mp-home-plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
}

.mp-home-plan {
	background: var(--mp-white);
	border: 1px solid var(--mp-gray-200);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.mp-home-plan-header {
	padding: 1.5rem 1.5rem 1rem;
	text-align: center;
	border-bottom: 3px solid transparent;
}

.mp-home-plan--free .mp-home-plan-header { border-bottom-color: var(--mp-gray-500); }
.mp-home-plan--orange .mp-home-plan-header { border-bottom-color: var(--mp-orange); }
.mp-home-plan--blue .mp-home-plan-header { border-bottom-color: var(--mp-blue); }
.mp-home-plan--purple .mp-home-plan-header { border-bottom-color: var(--mp-purple); }

.mp-home-plan-icon {
	display: block;
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.mp-home-plan--free .mp-home-plan-icon { color: var(--mp-gray-500); }
.mp-home-plan--orange .mp-home-plan-icon { color: var(--mp-orange); }
.mp-home-plan--blue .mp-home-plan-icon { color: var(--mp-blue); }
.mp-home-plan--purple .mp-home-plan-icon { color: var(--mp-purple); }

.mp-home-plan-name {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.mp-home-plan-price {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--mp-gray-900);
	margin: 0;
}

.mp-home-plan-price small {
	display: block;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--mp-gray-500);
	margin-top: 0.25rem;
}

.mp-home-plan-badge {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--mp-purple);
	color: var(--mp-white);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.35rem 0.75rem;
	border-radius: var(--mp-button-radius) !important;
}

.mp-home-plan-body {
	padding: 1.25rem 1.5rem;
	flex: 1;
}

.mp-home-plan-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mp-home-plan-features li {
	padding: 0.4rem 0;
	font-size: 0.875rem;
	color: var(--mp-gray-700);
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.mp-home-plan-features li::before {
	content: '✓';
	color: var(--mp-green);
	font-weight: 700;
	flex-shrink: 0;
}

.mp-home-plan-footer {
	padding: 1.25rem 1.5rem 1.5rem;
}

.mp-home-plan-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 0.75rem 1rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
}

.mp-home-plan--free .mp-home-plan-btn {
	background: var(--mp-gray-700);
	color: var(--mp-white);
}

.mp-home-plan--orange .mp-home-plan-btn {
	background: var(--mp-orange);
	color: var(--mp-white);
}

.mp-home-plan--blue .mp-home-plan-btn {
	background: var(--mp-blue);
	color: var(--mp-white);
}

.mp-home-plan--purple .mp-home-plan-btn {
	background: var(--mp-purple);
	color: var(--mp-white);
}

.mp-home-plan-btn:hover {
	opacity: 0.9;
	color: var(--mp-white);
}

/* How it works */

.mp-home-how {
	background: var(--mp-navy);
	color: var(--mp-white);
	padding: 4rem 0;
}

.mp-home-how-head {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2.5rem;
}

.mp-home-how-head .mp-home-section-title {
	color: var(--mp-white);
	margin-bottom: 0.75rem;
}

.mp-home-how-lead {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.0625rem;
	line-height: 1.65;
}

.mp-home-how-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	counter-reset: mp-how;
}

.mp-home-how-step {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-home-how-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--mp-orange);
	color: var(--mp-white);
	font-family: var(--mp-font-heading);
	font-weight: 800;
	font-size: 1.125rem;
	flex-shrink: 0;
}

.mp-home-how-step-title {
	font-size: 1.0625rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--mp-white);
}

.mp-home-how-step-text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
}

.mp-home-how-cta {
	text-align: center;
	margin: 2.5rem 0 0;
}

/* Comparison + spotlight */

.mp-home-body {
	padding: 4rem 0;
	background: var(--mp-white);
}

.mp-home-section-title {
	font-size: 1.75rem;
	margin: 0 0 1.5rem;
}

.mp-home-compare {
	margin-bottom: 4rem;
}

.mp-home-compare-head {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 2.5rem;
}

.mp-home-compare-head .mp-home-section-title {
	margin-bottom: 0.75rem;
}

.mp-home-compare-lead {
	margin: 0;
	font-size: 1.0625rem;
	color: var(--mp-gray-500);
	line-height: 1.65;
}

.mp-home-compare-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}

.mp-home-compare-col {
	padding: 2rem 1.75rem;
	border: 1px solid var(--mp-gray-200);
	background: var(--mp-white);
}

.mp-home-compare-col--others {
	background: var(--mp-gray-50);
}

.mp-home-compare-col--pride {
	background: linear-gradient(180deg, #fffbeb 0%, var(--mp-white) 100%);
	border-color: rgba(245, 158, 11, 0.35);
	box-shadow: 0 8px 32px rgba(245, 158, 11, 0.08);
}

.mp-home-compare-col-title {
	font-size: 1.25rem;
	margin: 0 0 1.25rem;
	padding-bottom: 0.875rem;
	border-bottom: 2px solid var(--mp-gray-200);
}

.mp-home-compare-col--others .mp-home-compare-col-title {
	color: var(--mp-gray-700);
	border-bottom-color: var(--mp-gray-200);
}

.mp-home-compare-col--pride .mp-home-compare-col-title {
	color: var(--mp-navy);
	border-bottom-color: var(--mp-orange);
}

.mp-home-compare-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.875rem;
}

.mp-home-compare-list li {
	position: relative;
	padding-left: 1.75rem;
	font-size: 0.96875rem;
	line-height: 1.55;
	color: var(--mp-gray-700);
}

.mp-home-compare-col--others .mp-home-compare-list li::before {
	content: '✕';
	position: absolute;
	left: 0;
	top: 0.05em;
	font-weight: 700;
	color: #94a3b8;
}

.mp-home-compare-col--pride .mp-home-compare-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0.05em;
	font-weight: 700;
	color: var(--mp-orange-dark);
}

.mp-home-compare-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.875rem;
	margin: 2.5rem 0 0;
}

/* FAQ + spotlight */

.mp-home-faq-spotlight-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2rem;
	align-items: start;
}

.mp-home-faq-wrap .mp-home-section-title,
.mp-home-spotlight-wrap .mp-home-section-title {
	margin-bottom: 1rem;
}

.mp-home-faq {
	border: 1px solid var(--mp-gray-200);
	background: var(--mp-white);
}

.mp-home-faq-item {
	border-bottom: 1px solid var(--mp-gray-200);
}

.mp-home-faq-item:last-child {
	border-bottom: none;
}

.mp-home-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	font-family: var(--mp-font-heading);
	font-size: 0.96875rem;
	font-weight: 700;
	color: var(--mp-gray-900);
	cursor: pointer;
	list-style: none;
}

.mp-home-faq-question::-webkit-details-marker {
	display: none;
}

.mp-home-faq-question::after {
	content: '+';
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--mp-orange);
	flex-shrink: 0;
	line-height: 1;
}

.mp-home-faq-item[open] .mp-home-faq-question::after {
	content: '−';
}

.mp-home-faq-question:hover {
	color: var(--mp-orange-dark);
}

.mp-home-faq-answer {
	padding: 0 1.25rem 1.125rem;
}

.mp-home-faq-answer p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--mp-gray-700);
}

/* Community spotlight */

.mp-home-spotlight-wrap {
	margin-top: 0;
}

.mp-home-spotlight {
	background: var(--mp-white);
	border: 1px solid var(--mp-gray-200);
	padding: 1.25rem;
}

.mp-home-spotlight-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding-bottom: 1.25rem;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid var(--mp-gray-200);
}

.mp-home-spotlight-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.mp-home-spotlight-media {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	background-color: var(--mp-gray-200);
	background-size: cover;
	background-position: center;
}

.mp-home-spotlight-title {
	font-size: 0.9375rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
}

.mp-home-spotlight-excerpt {
	font-size: 0.8125rem;
	color: var(--mp-gray-500);
	margin: 0 0 0.5rem;
	line-height: 1.5;
}

.mp-home-spotlight-link {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--mp-blue);
	text-decoration: none;
}

.mp-home-spotlight-link:hover {
	color: var(--mp-orange);
}

/* Trust & safety */

.mp-home-trust {
	padding: 4rem 0;
	background: var(--mp-gray-50);
	border-top: 1px solid var(--mp-gray-200);
}

.mp-home-trust-head {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 2.5rem;
}

.mp-home-trust-head .mp-home-section-title {
	margin-bottom: 0.75rem;
}

.mp-home-trust-lead {
	margin: 0;
	font-size: 1.0625rem;
	color: var(--mp-gray-500);
	line-height: 1.65;
}

.mp-home-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.mp-home-trust-item {
	padding: 1.5rem 1.25rem;
	background: var(--mp-white);
	border: 1px solid var(--mp-gray-200);
}

.mp-home-trust-icon {
	display: block;
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
	line-height: 1;
}

.mp-home-trust-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--mp-gray-900);
}

.mp-home-trust-text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--mp-gray-700);
}

/* Promo bar */

.mp-home-promo {
	background: linear-gradient(90deg, var(--mp-pink) 0%, var(--mp-purple) 35%, var(--mp-blue) 65%, var(--mp-orange-bright) 100%);
	padding: 1.25rem 0;
	color: var(--mp-white);
}

.mp-home-promo-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.mp-home-promo-copy {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1rem;
}

.mp-home-promo-copy strong {
	display: block;
	font-size: 1.125rem;
	font-family: var(--mp-font-heading);
}

.mp-home-promo-icon {
	font-size: 1.5rem;
}

.mp-home-promo-code {
	display: block;
	margin-top: 0.25rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

/* Override the heading-style ".mp-home-promo-copy strong" rule above, which
   otherwise also matches this "Free3" <strong> and forces it block/18px,
   splitting "Use code:" and "Free3" onto separate lines. */
.mp-home-promo-code strong {
	display: inline;
	font-size: inherit;
	font-family: inherit;
}

.mp-btn-promo {
	background: var(--mp-white) !important;
	color: var(--mp-purple-dark) !important;
	border: none !important;
	font-weight: 700;
	padding: 0.65rem 1.5rem;
}

.mp-btn-promo:hover {
	background: var(--mp-gray-100) !important;
	color: var(--mp-purple-dark) !important;
}

/* --------------------------------------------------------------------------
   Page-content sidebars
   -------------------------------------------------------------------------- */

.cq-page-sidebar .widget {
	margin-bottom: 1.25rem;
}

.cq-page-sidebar .cq-cta-widget,
.cq-page-sidebar .card {
	border: 1px solid var(--mp-gray-200);
	box-shadow: none;
}

.cq-page-sidebar .widget-title {
	font-family: var(--mp-font-heading);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.cq-page-sidebar .cq-feature-boxes .card {
	background: var(--mp-gray-50);
}

.cq-page-sidebar .cq-feature-boxes .col-md-4 {
	width: 100%;
	max-width: 100%;
	flex: 0 0 100%;
}

.cq-has-page-sidebar .mpmp-container {
	max-width: 100%;
}

/* --------------------------------------------------------------------------
   CommunityQ plugin polish
   -------------------------------------------------------------------------- */

.mpmp-wrap {
	--mpmp-primary: var(--mp-orange);
	--mpmp-secondary: var(--mp-blue);
	--mpmp-radius: 0;
	--mpmp-btn-radius: 30px;
}

.mpmp-form input[type="text"],
.mpmp-form input[type="email"],
.mpmp-form input[type="password"],
.mpmp-form textarea,
.mpmp-form select {
	border-radius: var(--mp-container-radius) !important;
	border-color: var(--mp-gray-200);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
	.mp-home-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mp-home-feature:nth-child(2n) {
		border-right: none;
	}

	.mp-home-plans-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mp-home-compare-grid {
		grid-template-columns: 1fr;
	}

	.mp-home-how-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.mp-home-faq-spotlight-grid {
		grid-template-columns: 1fr;
	}

	.mp-home-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575.98px) {
	.mp-home-hero {
		min-height: 420px;
		padding: 3.5rem 0 5rem;
	}

	/* Smaller overlap pull on narrow phones, where the hero title/lead/buttons
	   wrap across more lines and eat into the bottom padding buffer that the
	   -3rem overlap (see .mp-home-features above) relies on. */
	.mp-home-features {
		margin-top: -1.5rem;
	}

	.mp-home-features-grid,
	.mp-home-plans-grid,
	.mp-home-how-steps,
	.mp-home-trust-grid {
		grid-template-columns: 1fr;
	}

	.mp-home-feature {
		border-right: none !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}

	.mp-home-feature:last-child {
		border-bottom: none;
	}

	.mp-home-compare-cta,
	.mp-home-promo-inner,
	.mp-home-hero-actions {
		flex-direction: column;
	}

	.mp-home-promo-inner {
		text-align: center;
	}

	.mp-home-hero-actions .btn {
		width: 100%;
		text-align: center;
	}
}
