/* ===========================================================
   Newsletter — shared component
   Rendered on every page, so it must not depend on gr-home.css.
   Everything is namespaced under .gr-news and carries its own
   tokens, which keeps it out of Shoptimizer's way.
   =========================================================== */

.gr-news {
	--gr-ink: #201A1C;
	--gr-ink-45: #8C8385;
	--gr-rose: #B75563;
	--gr-blush: #F3E4E2;
	--gr-blush-deep: #E4C6C4;
	--gr-gold: #B08D57;
	--gr-radius: 2px;

	background: var(--gr-blush);
	border-top: 1px solid var(--gr-blush-deep);
	color: var(--gr-ink);
	font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.gr-news__wrap {
	max-width: 1320px;
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 48px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 80px);
	align-items: start;
	padding-block: clamp(48px, 5vw, 84px);
}

.gr-news__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: .6875rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gr-gold);
}

.gr-news__eyebrow::before {
	content: "";
	width: 32px;
	height: 1px;
	background: currentColor;
}

.gr-news h2 {
	margin: 16px 0 0;
	max-width: 15ch;
	font-weight: 600;
	font-size: clamp(1.75rem, 2.8vw, 2.5rem);
	line-height: 1.12;
	letter-spacing: -.018em;
	color: var(--gr-ink);
	text-wrap: balance;
}

.gr-news__lede {
	margin: 16px 0 0;
	color: #5A4749;
	max-width: 44ch;
	font-size: 1rem;
	line-height: 1.65;
}

.gr-news__form {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 0;
}

.gr-news__form input[type="email"] {
	flex: 1 1 280px;
	height: 52px;
	padding: 0 18px;
	border: 1px solid var(--gr-blush-deep);
	background: #fff;
	border-radius: var(--gr-radius);
	font: inherit;
	font-size: .9375rem;
	color: var(--gr-ink);
}

.gr-news__form input[type="email"]::placeholder { color: var(--gr-ink-45); }
.gr-news__form input[type="email"]:focus { outline: none; border-color: var(--gr-gold); }

.gr-news__btn {
	height: 52px;
	padding: 0 28px;
	border: 1px solid var(--gr-ink);
	background: var(--gr-ink);
	color: #fff;
	border-radius: var(--gr-radius);
	font: inherit;
	font-weight: 500;
	font-size: .75rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color .18s ease;
}

.gr-news__btn:hover { background: #000; }
.gr-news__btn:focus-visible { outline: 2px solid var(--gr-gold); outline-offset: 3px; }

.gr-news__consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-top: 18px;
	font-size: .8125rem;
	line-height: 1.55;
	color: #6A5658;
	max-width: 52ch;
	cursor: pointer;
}

.gr-news__consent input {
	flex: none;
	width: 16px;
	height: 16px;
	margin-top: 3px;
	accent-color: var(--gr-rose);
}

.gr-news__consent a { color: inherit; border-bottom: 1px solid currentColor; text-decoration: none; }

.gr-news__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

@media (max-width: 1024px) {
	.gr-news__wrap { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.gr-news__btn { transition: none; }
}
