/*
Theme Name: Crossroads Template
Theme URI: https://internetoutreachexperts.com/templates/crossroads/
Author: Internet Outreach Experts
Author URI: https://internetoutreachexperts.com
Description: Confident dark with electric coral. Built for non-denominational, contemporary-worship churches that want a serious aesthetic without losing warmth. Sermon-as-hero homepage, Connect Groups grid, give band, photo bands.
Version: 1.0.0
License: Proprietary — IOE customer use only
Text Domain: crossroads-template
*/

/*
 * THE CROSSROADS — contemporary evangelical / non-denominational
 * Aesthetic: Confident dark. Electric coral accent.
 */

:root {
	--ink: #0e0e10;
	--ink-deep: #050507;
	--ink-soft: #1a1a1d;
	--surface: #17171a;
	--border: #2a2a2f;
	--coral: #ff5b4f;
	--coral-deep: #e04535;
	--coral-glow: rgba(255, 91, 79, 0.15);
	--cream: #f6f4ef;
	--cream-soft: #ede9e0;
	--sand: #c8c1b3;
	--sand-muted: #8a8377;

	--font-display: 'Cabinet Grotesk', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-body:    'Manrope', -apple-system, sans-serif;
	--font-mono:    'JetBrains Mono', ui-monospace, monospace;

	--page-max: 1320px;
	--gutter: clamp(1.25rem, 4vw, 3rem);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--cream);
	background: var(--ink);
	background-image:
		radial-gradient(ellipse 900px 600px at 15% 0%, rgba(255, 91, 79, 0.08), transparent 50%),
		radial-gradient(ellipse 700px 400px at 100% 100%, rgba(255, 91, 79, 0.05), transparent 50%);
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: var(--coral); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--coral-deep); }
::selection { background: var(--coral); color: var(--ink); }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.02em;
	color: var(--cream);
	margin: 0 0 .3em;
}
h1 { font-size: clamp(3.2rem, 2rem + 6vw, 8rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 1.4rem + 3.5vw, 4.5rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }

h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--coral); }

p { margin: 0 0 1em; max-width: 60ch; }
p.lead { font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem); line-height: 1.5; color: var(--sand); font-weight: 400; max-width: 44ch; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 0.78rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--coral);
}
.eyebrow::before {
	content: '';
	width: 24px; height: 1.5px;
	background: var(--coral);
}
.eyebrow.solo::before { display: none; }

/* ========== LAYOUT ========== */
.wrap { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(4rem, 3rem + 5vw, 7rem) 0; }
.section-tight { padding: clamp(2.5rem, 2rem + 3vw, 4.5rem) 0; }

/* ========== BUTTONS ========== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	padding: 1em 1.75em;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: -0.005em;
	background: var(--coral);
	color: var(--ink);
	border: 0;
	border-radius: 100px;
	text-decoration: none;
	transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s;
	cursor: pointer;
	position: relative;
}
.btn:hover { background: var(--coral-deep); color: var(--ink); transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(255, 91, 79, 0.6); }
.btn .caret { display: inline-block; transition: transform .2s var(--ease); font-weight: 900; }
.btn:hover .caret { transform: translateX(3px); }

.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--surface); border-color: var(--cream); color: var(--cream); box-shadow: none; }

.btn-lg { padding: 1.15em 2em; font-size: 1rem; }
.btn-sm { padding: .75em 1.3em; font-size: 0.85rem; }

/* ========== HEADER ========== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(14, 14, 16, 0.72);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
}
.header-inner {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 1rem var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	color: var(--cream);
	text-decoration: none;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}
.brand:hover { color: var(--cream); }
.brand-mark {
	position: relative;
	width: 28px; height: 28px;
	display: grid; place-items: center;
}
.brand-mark::before,
.brand-mark::after {
	content: '';
	position: absolute;
	background: var(--coral);
}
.brand-mark::before { width: 100%; height: 2.5px; transform: rotate(35deg); }
.brand-mark::after { width: 100%; height: 2.5px; transform: rotate(-35deg); }

.primary-menu { display: flex; gap: .5rem; align-items: center; }
.primary-menu a {
	display: inline-block;
	padding: .5rem .9rem;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.94rem;
	color: var(--sand);
	border-radius: 6px;
	transition: color .15s var(--ease), background .15s var(--ease);
}
.primary-menu a:hover { color: var(--cream); background: var(--surface); }
.primary-menu a.current { color: var(--cream); }
.primary-menu a.current::after {
	content: '';
	display: block;
	height: 2px;
	width: 100%;
	background: var(--coral);
	margin-top: 2px;
}

.nav-cta { margin-left: .75rem; }

.menu-toggle {
	display: none;
	width: 40px; height: 40px;
	border: 1px solid var(--border);
	border-radius: 6px;
	color: var(--cream);
	align-items: center; justify-content: center;
}

@media (max-width: 880px) {
	.header-inner { flex-wrap: wrap; }
	.menu-toggle { display: inline-flex; }
	.primary-menu {
		order: 3; width: 100%;
		flex-direction: column; align-items: stretch;
		padding-top: 1rem;
		margin-top: 1rem;
		border-top: 1px solid var(--border);
		display: none;
	}
	.primary-menu.is-open { display: flex; }
	.primary-menu a { padding: .75rem 0; border-bottom: 1px solid var(--border); border-radius: 0; }
	.primary-menu a.current::after { display: none; }
	.nav-cta { display: none; }
}

/* ========== HERO ========== */
.hero {
	position: relative;
	padding: clamp(4rem, 3rem + 6vw, 9rem) 0 clamp(3rem, 2rem + 5vw, 7rem);
	overflow: hidden;
}
/* Animated background gradient — simulates video */
.hero-video-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(circle at 30% 30%, rgba(255,91,79,0.3), transparent 55%),
				radial-gradient(circle at 70% 70%, rgba(160,40,30,0.25), transparent 55%),
				var(--ink);
	animation: crossroads-pulse 12s ease-in-out infinite alternate;
	opacity: 0.85;
}
.hero-video-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' seed='9'/><feColorMatrix values='0 0 0 0 0.04  0 0 0 0 0.04  0 0 0 0 0.06  0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
	opacity: 0.6;
	mix-blend-mode: overlay;
}
@keyframes crossroads-pulse {
	0%   { transform: scale(1) rotate(0deg); }
	100% { transform: scale(1.05) rotate(2deg); }
}

.hero-inner {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 0 var(--gutter);
	position: relative;
	z-index: 1;
}
.hero h1 {
	margin: 1.25rem 0 1.5rem;
	max-width: 14ch;
}
.hero h1 em { display: inline; }
.hero-lead {
	max-width: 40ch;
	font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
	color: var(--sand);
	line-height: 1.5;
	font-weight: 400;
	margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Live pill */
.live-pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .45rem .9rem;
	background: rgba(255, 91, 79, 0.12);
	border: 1px solid rgba(255, 91, 79, 0.3);
	border-radius: 100px;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--coral);
}
.live-pill::before {
	content: '';
	width: 8px; height: 8px;
	background: var(--coral);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.3); }
}

/* Hero meta bottom */
.hero-meta {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}
@media (min-width: 680px) { .hero-meta { grid-template-columns: repeat(3, auto); align-items: center; } }
.hero-meta-item { display: flex; flex-direction: column; gap: .25rem; }
.hero-meta-label {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--sand-muted);
}
.hero-meta-value {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--cream);
}

/* ========== WATCH CARD ========== */
.watch-section {
	background: var(--ink-soft);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.watch-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
@media (min-width: 820px) { .watch-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.watch-thumb {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, var(--ink-soft), var(--ink-deep));
	border: 1px solid var(--border);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.watch-thumb:hover { transform: translateY(-3px); border-color: var(--coral); }
.watch-thumb::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 30% 50%, rgba(255, 91, 79, 0.25), transparent 60%),
		linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
}
.watch-play {
	width: 72px; height: 72px;
	background: var(--coral);
	border-radius: 50%;
	display: grid; place-items: center;
	color: var(--ink);
	position: relative;
	z-index: 2;
	transition: transform .3s var(--ease);
	box-shadow: 0 10px 40px rgba(255, 91, 79, 0.4);
}
.watch-thumb:hover .watch-play { transform: scale(1.1); }
.watch-body .eyebrow { margin-bottom: 1rem; }
.watch-body h2 { margin-bottom: 1rem; }
.watch-body p { color: var(--sand); margin-bottom: 1.75rem; }

/* ========== CARDS ========== */
.card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 720px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	transition: border-color .3s var(--ease), transform .3s var(--ease);
	overflow: hidden;
}
.card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, var(--coral-glow), transparent 70%);
	opacity: 0;
	transition: opacity .3s var(--ease);
	pointer-events: none;
}
.card:hover { border-color: var(--coral); transform: translateY(-3px); }
.card:hover::after { opacity: 1; }

.card-num {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--sand-muted);
	letter-spacing: 0.1em;
}
.card h3 { margin: 0; color: var(--cream); font-size: 1.4rem; }
.card p { margin: 0; color: var(--sand); font-size: 0.95rem; line-height: 1.55; }
.card-link {
	margin-top: auto;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--coral);
	letter-spacing: 0.02em;
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding-top: .5rem;
}
.card-link::after { content: '→'; transition: transform .2s var(--ease); }
.card:hover .card-link::after { transform: translateX(3px); }

/* ========== NEXT STEPS ========== */
.steps-panel {
	background: linear-gradient(135deg, rgba(255, 91, 79, 0.06), transparent 60%), var(--surface);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: clamp(2rem, 1.5rem + 2vw, 3.5rem);
	max-width: 1100px;
	margin: 0 auto;
}
.steps-header {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 780px) { .steps-header { grid-template-columns: 1fr 1fr; align-items: end; } }
.steps-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	counter-reset: step;
}
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step {
	padding: 1.75rem 1.25rem;
	background: var(--ink-soft);
	border: 1px solid var(--border);
	border-radius: 12px;
	counter-increment: step;
	position: relative;
}
.step::before {
	content: counter(step, decimal-leading-zero);
	display: block;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	color: var(--coral);
	margin-bottom: 1rem;
}
.step h4 { margin: 0 0 .4rem; color: var(--cream); }
.step p { margin: 0; font-size: 0.9rem; color: var(--sand); line-height: 1.55; max-width: 100%; }

/* ========== EVENTS ========== */
.events-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 720px) { .events-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .events-row { grid-template-columns: repeat(4, 1fr); } }
.event-tile {
	padding: 1.5rem 1.25rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: .75rem;
	transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.event-tile:hover { border-color: var(--coral); transform: translateY(-2px); }
.event-date {
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	color: var(--coral);
	text-transform: uppercase;
}
.event-tile h4 { margin: 0; color: var(--cream); font-size: 1.1rem; font-weight: 700; }
.event-tile p { margin: 0; color: var(--sand); font-size: 0.9rem; max-width: 100%; }

/* ========== GIVE BAND ========== */
.give-band {
	background: var(--coral);
	color: var(--ink);
	padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
	position: relative;
	overflow: hidden;
}
.give-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(135deg, transparent 30%, rgba(0,0,0,0.15) 70%);
}
.give-band > * { position: relative; z-index: 1; }
.give-band h2 { color: var(--ink); max-width: 14ch; }
.give-band h2 em { color: rgba(14,14,16,0.55); font-style: italic; font-weight: 400; }
.give-band p { color: rgba(14,14,16,0.85); max-width: 48ch; margin-bottom: 2rem; }
.give-band .btn { background: var(--ink); color: var(--cream); }
.give-band .btn:hover { background: var(--ink-deep); color: var(--cream); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5); }

/* ========== FOOTER ========== */
.site-footer {
	background: var(--ink-deep);
	color: var(--sand);
	padding: clamp(3rem, 2rem + 3vw, 5rem) 0 1.5rem;
	border-top: 1px solid var(--border);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); } }
.footer-brand .brand { color: var(--cream); font-size: 1.5rem; }
.footer-brand p {
	color: var(--sand);
	max-width: 34ch;
	margin-top: 1rem;
	font-size: 0.95rem;
}
.footer-col h5 {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--coral);
	margin: 0 0 1rem;
	font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { color: var(--sand); font-size: 0.95rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
	margin-top: 3rem;
	padding: 1.5rem var(--gutter) 0;
	max-width: var(--page-max);
	margin-left: auto; margin-right: auto;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sand-muted);
}

/* ========== PAGE BANNER ========== */
.page-banner {
	padding: clamp(4rem, 3rem + 4vw, 7rem) 0 clamp(2rem, 1.5rem + 2vw, 3rem);
	position: relative;
	overflow: hidden;
}
.page-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 800px 500px at 30% 0%, rgba(255, 91, 79, 0.08), transparent 60%);
	pointer-events: none;
}
.page-banner-inner { position: relative; max-width: var(--page-max); margin: 0 auto; padding: 0 var(--gutter); }
.page-banner h1 { margin: 1rem 0 1rem; max-width: 18ch; }
.page-banner .lead { max-width: 54ch; }

.prose {
	max-width: 640px;
	margin: 0 auto;
	padding: clamp(2rem, 1.5rem + 3vw, 4rem) var(--gutter);
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--sand);
}
.prose p { margin: 0 0 1.2em; max-width: 100%; }
.prose p strong { color: var(--cream); }
.prose h2 { margin: 2.25em 0 .5em; color: var(--cream); }
.prose h3 { margin: 1.75em 0 .4em; color: var(--cream); }
.prose ul, .prose ol { padding-left: 1.25em; margin: 1em 0 1.5em; }
.prose ul li::marker { color: var(--coral); }
.prose ul li { margin-bottom: .4em; }

/* ========== MOTION ========== */
@media (prefers-reduced-motion: no-preference) {
	.hero > * > *:nth-child(1) { animation: c-rise 0.8s var(--ease) both; }
	.hero > * > *:nth-child(2) { animation: c-rise 0.8s 0.1s var(--ease) both; }
	.hero > * > *:nth-child(3) { animation: c-rise 0.8s 0.2s var(--ease) both; }
	.hero > * > *:nth-child(4) { animation: c-rise 0.8s 0.3s var(--ease) both; }
	.hero > * > *:nth-child(5) { animation: c-rise 0.8s 0.4s var(--ease) both; }
}
@keyframes c-rise {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: none; }
}

/* ========== PHOTO COMPONENTS ========== */

/* Hero photo behind text — layers the photo under a dark gradient overlay for legibility,
   plus a coral radial accent that ties to the brand color. Photo URL via inline CSS var. */
.hero-video-bg.hero-video-bg--photo {
	background:
		radial-gradient(circle at 25% 35%, rgba(255,91,79,0.22), transparent 55%),
		linear-gradient(110deg, rgba(14,14,16,0.88) 0%, rgba(14,14,16,0.55) 55%, rgba(14,14,16,0.35) 100%),
		var(--hero-photo) center / cover,
		var(--ink);
}

/* Watch thumbnail variant with a real sermon-stage photo (also via inline var) */
.watch-thumb.watch-thumb--photo {
	background:
		linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%),
		var(--watch-photo) center / cover,
		var(--ink-deep);
}
.watch-thumb.watch-thumb--photo::before {
	/* Soften the existing coral glow overlay so it doesn't compete with the photo */
	background-image:
		radial-gradient(circle at 30% 50%, rgba(255, 91, 79, 0.15), transparent 60%);
}

/* Full-width photo band — capped height with centered crop. */
.photo-band {
	width: 100%;
	display: block;
	margin: 0;
	background: var(--ink);
	overflow: hidden;
}
.photo-band img {
	width: 100%;
	height: auto;
	display: block;
	max-height: clamp(280px, 32vw, 540px);
	object-fit: cover;
	object-position: center;
}

/* Inset photo inside body content */
.photo-inset {
	margin: 2.5rem auto;
	border-radius: 12px;
	overflow: hidden;
	max-width: 880px;
	border: 1px solid var(--border);
}
.photo-inset img {
	width: 100%;
	height: auto;
	display: block;
}

/* Pastor portrait — circle with photo */
.pastor-photo {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid var(--border);
	margin: 0 auto;
}
.pastor-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 28%;
	display: block;
}

/* Give-band secondary button — readable ghost variant.
   The base .give-band .btn rule paints all buttons solid black; without this
   override a .btn-ghost inside .give-band ends up black-on-black. */
.give-band .btn.cr-give-secondary {
	background: transparent;
	color: var(--ink);
	border: 1.5px solid rgba(14, 14, 16, 0.45);
}
.give-band .btn.cr-give-secondary:hover {
	background: rgba(14, 14, 16, 0.12);
	color: var(--ink);
	border-color: var(--ink);
	box-shadow: none;
}
