/* ==========================================================================
   Grace Alerts — main stylesheet (mobile-first)
   Design tokens (--ga-*) are injected by inc/enqueue.php from the
   Customizer palette, contrast-checked for WCAG AA.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Base + reset-lite
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001s !important;
		transition-duration: 0.001s !important;
	}
}

body {
	margin: 0;
	background: var(--ga-bg);
	color: var(--ga-text);
	font-family: var(--ga-font-body);
	font-size: 1rem;
	line-height: 1.65;
	overflow-x: hidden; /* belt-and-braces: never allow horizontal scroll */
}

img,
svg,
video,
audio {
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--ga-font-heading);
	line-height: 1.2;
	color: var(--ga-text);
	margin: 0 0 0.6em;
	overflow-wrap: break-word;
}

h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

p,
ul,
ol {
	margin: 0 0 1.1em;
}

a {
	color: var(--ga-link);
	text-decoration: underline;
	text-underline-offset: 2px;
}

a:hover {
	text-decoration: none;
}

:focus-visible {
	outline: 3px solid var(--ga-secondary);
	outline-offset: 2px;
	border-radius: 2px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal;
}

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999;
	background: var(--ga-primary);
	color: var(--ga-on-primary);
	padding: 0.75rem 1.25rem;
	border-radius: 0 0 8px 0;
}

.skip-link:focus {
	left: 0;
	top: 0;
	clip: auto;
	clip-path: none;
	width: auto;
	height: auto;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.ga-container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 1rem;
}

.ga-container--narrow {
	max-width: 800px;
}

.ga-main {
	min-height: 55vh;
}

.ga-section {
	padding: 3rem 0;
}

.ga-section--tint {
	background: var(--ga-surface);
}

.ga-section__title {
	text-align: center;
	margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   Buttons (≥44px touch targets)
   -------------------------------------------------------------------------- */
.ga-btn {
	display: inline-block;
	min-height: 44px;
	padding: 0.7rem 1.4rem;
	border: 2px solid transparent;
	border-radius: 999px;
	font-family: var(--ga-font-body);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ga-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.ga-btn--lg {
	padding: 0.9rem 1.9rem;
	font-size: 1.05rem;
}

.ga-btn--primary {
	background: var(--ga-primary);
	color: var(--ga-on-primary);
}

.ga-btn--primary:hover {
	color: var(--ga-on-primary);
}

.ga-btn--secondary {
	background: var(--ga-secondary);
	color: var(--ga-on-secondary);
}

.ga-btn--secondary:hover {
	color: var(--ga-on-secondary);
}

.ga-btn--ghost {
	background: transparent;
	border-color: var(--ga-primary);
	color: var(--ga-primary);
}

.ga-btn--ghost-light {
	background: transparent;
	border-color: var(--ga-on-primary);
	color: var(--ga-on-primary);
}

.ga-btn--ghost-light:hover {
	color: var(--ga-on-primary);
}

/* --------------------------------------------------------------------------
   Header + navigation
   -------------------------------------------------------------------------- */
.ga-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--ga-primary);
	color: var(--ga-on-primary);
	transition: box-shadow 0.2s ease;
}

.ga-header.is-scrolled {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.ga-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 64px;
	padding-block: 0.4rem;
}

.ga-branding {
	display: flex;
	align-items: center;
	min-width: 0;
}

.ga-branding a {
	text-decoration: none;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	max-height: 56px;
	width: auto;
}

.ga-branding__text {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--ga-on-primary);
}

.ga-branding__mark {
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
}

.ga-branding__name {
	font-family: var(--ga-font-heading);
	font-weight: 700;
	font-size: 1.3rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Hamburger */
.ga-nav-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 48px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 2px solid var(--ga-on-primary);
	border-radius: 8px;
	cursor: pointer;
}

.ga-nav-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--ga-on-primary);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.ga-nav-toggle[aria-expanded="true"] .ga-nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.ga-nav-toggle[aria-expanded="true"] .ga-nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.ga-nav-toggle[aria-expanded="true"] .ga-nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.ga-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--ga-primary);
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.ga-nav.is-open {
	display: block;
}

.ga-nav__list {
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
}

.ga-nav__list li {
	margin: 0;
}

.ga-nav__list a {
	display: block;
	padding: 0.85rem 1.25rem;
	color: var(--ga-on-primary);
	font-weight: 500;
	text-decoration: none;
}

.ga-nav__list a:hover,
.ga-nav__list .current-menu-item > a,
.ga-nav__list .current_page_item > a {
	background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
	.ga-nav-toggle {
		display: none;
	}

	.ga-nav {
		display: block;
		position: static;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.ga-nav__list {
		display: flex;
		align-items: center;
		gap: 0.25rem;
		padding: 0;
	}

	.ga-nav__list a {
		padding: 0.6rem 0.9rem;
		border-radius: 999px;
	}
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.ga-hero {
	background: linear-gradient(160deg, var(--ga-primary) 0%, var(--ga-primary) 55%, rgba(0, 0, 0, 0.25) 140%), var(--ga-primary);
	color: var(--ga-on-primary);
	text-align: center;
	padding: 3.5rem 0 4rem;
}

.ga-hero__title {
	color: var(--ga-on-primary);
	margin-bottom: 0.35rem;
}

.ga-hero__tagline {
	font-family: var(--ga-font-heading);
	font-size: clamp(1.05rem, 2.6vw, 1.35rem);
	color: var(--ga-secondary);
	margin-bottom: 1rem;
}

.ga-hero__lead {
	max-width: 640px;
	margin: 0 auto 1.75rem;
	font-size: 1.06rem;
	opacity: 0.95;
}

.ga-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.ga-hero__microcopy {
	font-size: 0.9rem;
	opacity: 0.9;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Benefits
   -------------------------------------------------------------------------- */
.ga-benefits {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.ga-benefit {
	background: var(--ga-bg);
	border: 1px solid var(--ga-border);
	border-radius: 14px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ga-benefit__icon {
	display: inline-block;
	font-size: 1.7rem;
	margin-bottom: 0.5rem;
}

.ga-benefit h3 {
	margin-bottom: 0.4rem;
}

.ga-benefit p {
	margin: 0;
	color: var(--ga-muted);
}

@media (min-width: 480px) {
	.ga-benefits {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.ga-benefits {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* --------------------------------------------------------------------------
   Pricing card
   -------------------------------------------------------------------------- */
.ga-pricing-card {
	max-width: 460px;
	margin: 0 auto;
	background: var(--ga-bg);
	border: 2px solid var(--ga-primary);
	border-radius: 18px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ga-pricing-card__name {
	margin-bottom: 0.5rem;
}

.ga-pricing-card__price {
	margin-bottom: 0.25rem;
}

.ga-pricing-card__amount {
	font-family: var(--ga-font-heading);
	font-size: 3rem;
	font-weight: 700;
	color: var(--ga-primary);
}

.ga-pricing-card__interval {
	display: block;
	font-size: 1rem;
	color: var(--ga-muted);
}

.ga-pricing-card__terms {
	font-size: 0.92rem;
	color: var(--ga-muted);
	margin-bottom: 1rem;
}

.ga-pricing-card__list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
	text-align: left;
}

.ga-pricing-card__list li {
	padding: 0.45rem 0 0.45rem 1.7rem;
	position: relative;
	border-bottom: 1px dashed var(--ga-border);
}

.ga-pricing-card__list li:last-child {
	border-bottom: 0;
}

.ga-pricing-card__list li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: var(--ga-success);
	font-weight: 700;
}

.ga-pricing-card__action {
	margin-bottom: 1rem;
}

.ga-pricing-card__action .ga-btn {
	width: 100%;
}

.ga-pricing-card__disclosure {
	font-size: 0.85rem;
	color: var(--ga-muted);
	margin-bottom: 0.6rem;
}

/* Trust line (used site-wide) */
.ga-trust-line {
	font-size: 0.9rem;
	color: var(--ga-muted);
	margin: 0.5rem 0 0;
}

.ga-trust-lock {
	display: inline-block;
	transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */
.ga-steps {
	list-style: none;
	counter-reset: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.ga-step {
	background: var(--ga-surface);
	border: 1px solid var(--ga-border);
	border-radius: 14px;
	padding: 1.5rem;
	text-align: center;
}

.ga-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ga-secondary);
	color: var(--ga-on-secondary);
	font-weight: 700;
	font-size: 1.15rem;
	margin-bottom: 0.75rem;
}

.ga-step p {
	margin: 0;
	color: var(--ga-muted);
}

@media (min-width: 768px) {
	.ga-steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.ga-faq {
	background: var(--ga-bg);
	border: 1px solid var(--ga-border);
	border-radius: 12px;
	margin-bottom: 0.9rem;
	overflow: hidden;
}

.ga-faq summary {
	list-style: none;
	cursor: pointer;
	padding: 1rem 3rem 1rem 1.25rem;
	font-weight: 600;
	position: relative;
	min-height: 44px;
}

.ga-faq summary::-webkit-details-marker {
	display: none;
}

.ga-faq summary::after {
	content: "+";
	position: absolute;
	right: 1.1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	color: var(--ga-primary);
}

.ga-faq[open] summary::after {
	content: "–";
}

.ga-faq p {
	padding: 0 1.25rem 1.1rem;
	margin: 0;
	color: var(--ga-muted);
}

/* --------------------------------------------------------------------------
   Trust row
   -------------------------------------------------------------------------- */
.ga-trust-row {
	border-top: 1px solid var(--ga-border);
	border-bottom: 1px solid var(--ga-border);
	padding: 1rem 0;
	background: var(--ga-bg);
}

.ga-trust-row__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	text-align: center;
	font-size: 0.92rem;
	color: var(--ga-muted);
}

@media (min-width: 768px) {
	.ga-trust-row__inner {
		flex-direction: row;
		justify-content: center;
		gap: 1.75rem;
	}
}

/* --------------------------------------------------------------------------
   Closing CTA
   -------------------------------------------------------------------------- */
.ga-cta {
	background: var(--ga-primary);
	color: var(--ga-on-primary);
	text-align: center;
	padding: 3.25rem 0;
}

.ga-cta__title {
	color: var(--ga-on-primary);
}

.ga-cta__lead {
	max-width: 560px;
	margin: 0 auto 1.5rem;
	opacity: 0.95;
}

.ga-cta__microcopy {
	max-width: 640px;
	margin: 1rem auto 0;
	font-size: 0.85rem;
	opacity: 0.85;
}

.ga-cta__microcopy a {
	color: var(--ga-on-primary);
}

/* --------------------------------------------------------------------------
   Mobile sticky subscribe bar (front page, small screens)
   -------------------------------------------------------------------------- */
.ga-sticky-cta {
	display: none;
}

@media (max-width: 767px) {
	.ga-front .ga-sticky-cta {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 90;
		padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
		background: rgba(255, 255, 255, 0.96);
		border-top: 1px solid var(--ga-border);
		box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.1);
	}

	.ga-sticky-cta__btn {
		display: block;
		width: 100%;
	}

	body.ga-front {
		padding-bottom: 76px;
	}
}

/* --------------------------------------------------------------------------
   Disclosure notice (reusable)
   -------------------------------------------------------------------------- */
.ga-disclosure {
	background: var(--ga-surface);
	border-left: 4px solid var(--ga-secondary);
	border-radius: 8px;
	padding: 0.9rem 1.1rem;
	margin: 1rem 0;
	font-size: 0.92rem;
	color: var(--ga-text);
}

.ga-disclosure p {
	margin: 0;
}

/* Generic notice used by the theme (e.g. admin hint on contact page) */
.ga-notice {
	border-radius: 8px;
	padding: 0.9rem 1.1rem;
	margin: 1rem 0;
	font-size: 0.95rem;
}

.ga-notice--info {
	background: var(--ga-surface);
	border-left: 4px solid var(--ga-info);
}

/* --------------------------------------------------------------------------
   Pages / entry content
   -------------------------------------------------------------------------- */
.ga-page {
	padding: 2.5rem 0 1.5rem;
}

.ga-page__header {
	margin-bottom: 1.25rem;
}

.ga-page__meta {
	color: var(--ga-muted);
	font-size: 0.92rem;
}

.ga-entry h2 {
	margin-top: 1.6em;
}

.ga-entry ul,
.ga-entry ol {
	padding-left: 1.4rem;
}

.ga-legal {
	font-size: 0.98rem;
}

.ga-legal__related {
	padding: 0 0 2.5rem;
	color: var(--ga-muted);
}

.ga-page-cta {
	padding: 0 0 3rem;
}

.ga-archive-item {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--ga-border);
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.ga-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-bottom: 3rem;
}

@media (min-width: 1024px) {
	.ga-contact-grid {
		grid-template-columns: 1.4fr 1fr;
		align-items: start;
	}
}

.ga-contact-card {
	background: var(--ga-surface);
	border: 1px solid var(--ga-border);
	border-radius: 14px;
	padding: 1.5rem;
}

.ga-contact-card p {
	margin-bottom: 0.9rem;
	overflow-wrap: break-word;
}

.ga-contact-card__response {
	color: var(--ga-muted);
	font-size: 0.92rem;
	margin-bottom: 0;
}

.ga-contact-fallback {
	background: var(--ga-surface);
	border: 1px solid var(--ga-border);
	border-radius: 14px;
	padding: 1.5rem;
}

/* --------------------------------------------------------------------------
   Forms (theme-wide) + WPForms styling to match the theme
   -------------------------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
select,
textarea,
.ga-wpforms .wpforms-field input[type="text"],
.ga-wpforms .wpforms-field input[type="email"],
.ga-wpforms .wpforms-field input[type="tel"],
.ga-wpforms .wpforms-field select,
.ga-wpforms .wpforms-field textarea {
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	padding: 0.6rem 0.85rem;
	border: 1.5px solid var(--ga-border);
	border-radius: 8px;
	background: var(--ga-bg);
	color: var(--ga-text);
	font-family: var(--ga-font-body);
	font-size: 1rem;
	line-height: 1.4;
}

textarea {
	min-height: 130px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--ga-primary);
	outline: 3px solid rgba(30, 58, 138, 0.18);
	outline-offset: 0;
}

label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.ga-wpforms .wpforms-field {
	margin-bottom: 1.1rem;
}

.ga-wpforms .wpforms-field-label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: var(--ga-text);
}

.ga-wpforms .wpforms-field-sublabel {
	color: var(--ga-muted);
	font-size: 0.85rem;
}

.ga-wpforms .wpforms-submit,
.ga-wpforms button[type="submit"] {
	display: inline-block;
	min-height: 46px;
	padding: 0.7rem 1.6rem;
	background: var(--ga-primary);
	color: var(--ga-on-primary);
	border: 0;
	border-radius: 999px;
	font-family: var(--ga-font-body);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ga-wpforms .wpforms-submit:hover,
.ga-wpforms button[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.ga-wpforms .wpforms-error,
.ga-wpforms label.wpforms-error {
	color: var(--ga-error);
	font-weight: 500;
	font-size: 0.88rem;
}

.ga-wpforms .wpforms-confirmation-container-full {
	background: #ECFDF5;
	border: 1px solid var(--ga-success);
	border-radius: 10px;
	padding: 1rem 1.2rem;
	color: var(--ga-text);
}

/* Search form */
.ga-search {
	margin: 1.5rem 0;
}

.ga-search__label {
	margin-bottom: 0.4rem;
}

.ga-search__row {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.ga-search__input {
	flex: 1 1 220px;
}

/* --------------------------------------------------------------------------
   Members gate + account panel
   -------------------------------------------------------------------------- */
.ga-members-gate {
	background: var(--ga-surface);
	border: 2px dashed var(--ga-primary);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	margin: 1.5rem 0;
}

.ga-members-gate__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.ga-members-gate__note {
	font-size: 0.85rem;
	color: var(--ga-muted);
	margin: 1rem 0 0;
}

.ga-members-content {
	margin: 1rem 0;
}

.ga-account-panel {
	background: var(--ga-surface);
	border: 1px solid var(--ga-border);
	border-radius: 14px;
	padding: 1.4rem;
	margin: 1.25rem 0;
}

.ga-account-panel__hint {
	color: var(--ga-muted);
	font-size: 0.9rem;
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
.ga-404 {
	padding: 3rem 0 4rem;
	text-align: center;
}

.ga-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin: 1.5rem 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.ga-footer {
	background: var(--ga-primary);
	color: var(--ga-on-primary);
	padding: 2.75rem 0 1.5rem;
	margin-top: 3rem;
}

.ga-front .ga-footer,
.woocommerce-checkout .ga-footer {
	margin-top: 0;
}

.ga-footer a {
	color: var(--ga-on-primary);
}

.ga-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	padding-bottom: 1.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

@media (min-width: 768px) {
	.ga-footer__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.ga-footer__heading {
	font-size: 1.05rem;
	color: var(--ga-on-primary);
	margin-bottom: 0.65rem;
}

.ga-footer__tagline {
	color: var(--ga-secondary);
	font-family: var(--ga-font-heading);
	margin-bottom: 0.6rem;
}

.ga-footer__trust {
	font-size: 0.92rem;
	opacity: 0.95;
}

.ga-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ga-footer__menu li {
	margin-bottom: 0.15rem;
}

.ga-footer__menu a {
	display: inline-block;
	padding: 0.3rem 0;
	min-height: 32px;
	text-decoration: none;
}

.ga-footer__menu a:hover {
	text-decoration: underline;
}

.ga-footer__contact p {
	margin-bottom: 0.4rem;
	font-style: normal;
	overflow-wrap: break-word;
}

address.ga-footer__contact {
	font-style: normal;
}

.ga-footer__legal {
	padding-top: 1.25rem;
	text-align: center;
	font-size: 0.9rem;
	opacity: 0.95;
}

.ga-footer__legal p {
	margin-bottom: 0.4rem;
}

/* --------------------------------------------------------------------------
   Larger-screen rhythm
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
	.ga-section {
		padding: 4rem 0;
	}

	.ga-hero {
		padding: 5rem 0 5.5rem;
	}
}

@media (min-width: 1280px) {
	.ga-container {
		padding-inline: 1.5rem;
	}
}
