/* ============================================
   Family Challenge – Landing page design
   Uses theme vars: --primary-color, --primary-darker, --primaryFont
   ============================================ */

.fc-landing {
	/* max-width: 1100px; */
	margin: 0 auto;
	padding: 0 1.25rem 3rem;
	font-family: var(--primaryFont, "Work Sans", sans-serif);
}

/* ===== PDF mockup layout: photo → title → explanation → subhead → challenge text → form → Q&A ===== */

/* ===== Design-match layout (dark neon mock) ===== */
.fc-landing--mockup {
	position: relative;
	color: #fff;
	padding: 0;
	background:
		radial-gradient(1200px 600px at 20% 10%, rgba(255, 80, 180, 0.25), transparent 60%),
		radial-gradient(900px 500px at 80% 40%, rgba(80, 190, 255, 0.22), transparent 65%),
		linear-gradient(180deg, #20124a 0%, #1a0f3d 35%, #120a2a 100%);
}

/* .fc-landing--mockup::before {
	content: '';
	position: absolute;
	inset: -1.25rem;
	border-radius: 16px;
	background:
		radial-gradient(1200px 600px at 20% 10%, rgba(255, 80, 180, 0.25), transparent 60%),
		radial-gradient(900px 500px at 80% 40%, rgba(80, 190, 255, 0.22), transparent 65%),
		linear-gradient(180deg, #20124a 0%, #1a0f3d 35%, #120a2a 100%);
	z-index: -1;
} */

.fc-fc-header {
	text-align: center;
	padding: 2.25rem 1.25rem 1.75rem;
}

.fc-fc-header__badge {
	display: inline-block;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	background: #883C3E;
	border: 0;
	padding: 10px 17px;
	border-radius: 7px;
	margin-bottom: 0.75rem;
	color: #ffd76a;
}

.fc-fc-header__title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.fc-fc-hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 1.25rem;
	align-items: stretch;
	padding: 0;
	position: relative;
}

.fc-fc-hero-grid:before {
	content: "";
	background: radial-gradient(1200px 600px at 20% 10%, rgba(255, 80, 180, 0.25), transparent 60%), radial-gradient(900px 500px at 80% 40%, rgba(80, 190, 255, 0.22), transparent 65%), linear-gradient(180deg, #20124a 0%, #1a0f3d 35%, #120a2a 100%);
	position: absolute;
	inset: 20px;
	z-index: 0;
	border-radius: 50px;
}

.fc-fc-hero-grid__image,
.fc-fc-hero-grid__panel {
	position: relative;
	z-index: 1;
}

.fc-fc-hero-grid__image {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.fc-fc-hero-grid__img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	min-height: 240px;
}

.fc-fc-hero-grid__video {
	position: relative;
	aspect-ratio: 16/9;
	background: #111;
}

.fc-fc-hero-grid__video .fc-video-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fc-fc-hero-grid__video .fc-video-iframe-wrap {
	position: absolute;
	inset: 0;
}

.fc-fc-hero-grid__video .fc-video-embed {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.fc-fc-hero-grid__panel {
	padding: 25px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.fc-fc-hero-grid__panel-title {
	margin: 0 0 0.55rem;
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1.15;
	color: #ffd76a;
}

.fc-fc-hero-grid__panel-text {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	max-width: 390px;
}

.fc-fc-hero-grid__panel-text p {
	margin: 0 0 0.6rem;
}

.fc-fc-hero-grid__panel-text p:last-child {
	margin-bottom: 0;
}
.missionSection {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.fc-fc-mission {
	border-radius: 16px;
	padding: 30px 50px;
	background: transparent;
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	backdrop-filter: blur(1px);
	box-shadow: 0 0 4px 2px rgba(0, 234, 255, 0.3), 
		0 0 8px 3px rgba(33, 150, 255, 0.3), 
		0 0 12px 4px rgba(85, 51, 255, 0.3), 
		0 0 16px 5px rgba(123, 47, 255, 0.3), 
		0 0 20px 6px rgba(0, 221, 255, 0.3);
}

.fc-fc-mission:before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 16px;
	padding: 2px;
	mask: linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask-composite: exclude;
	background: linear-gradient(140deg,
			#00e5ff 0%, #2979ff 40%,
			#7c3aed 70%, #00cfff 100%);
	background: linear-gradient(130deg,
			#00eaff 0%,
			#2196ff 35%,
			#5533ff 60%,
			#7b2fff 75%,
			#3399ff 90%,
			#00ddff 100%);
	pointer-events: none;
}

.fc-fc-mission__title {
	text-align: center;
	margin: 0 0 5px;
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 700;
	color: #ffd76a;
}

.fc-fc-mission__box {}

.fc-fc-mission__subhead {
	text-align: center;
	font-weight: 700;
	margin: 0 0 0.65rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: 20px;
}

.fc-fc-mission__body {
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.9);
}

.fc-fc-mission__body ul {
	list-style: disc;
}

.fc-fc-mission__body ol {
	list-style: decimal;
}

.fc-fc-mission__body ul li::marker,
.fc-fc-mission__body ol li::marker {
	color: #ffd76a;
}

.fc-fc-mission__body ul,
.fc-fc-mission__body ol {
	padding-left: 1rem;
	margin-bottom: 1rem;
}


.fc-fc-mission__body li {
	margin: 0.25rem 0;
}

.fc-fc-mission__video {
	margin-top: 1rem;
	border-radius: 12px;
	overflow: hidden;
}

.fc-fc-form .fc-form {
	border-radius: 16px;
	/* background: #201C37; */
	background-image: radial-gradient(ellipse farthest-corner, #1A183F, #46215C);
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(10px);
	padding: 50px 80px;
}

.fc-form__checkboxes--top {
	margin: 0 0 1rem;
}

.fc-form__row--thirds {
	grid-template-columns: 1fr 1fr 1fr;
}

.fc-fc-form .fc-form .fc-field label {
	color: rgba(255, 255, 255, 0.85);
}

.fc-fc-form .fc-form__hint {
	margin: 0.25rem 0 0;
	font-size: 0.85rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.75);
}

.fc-submit {
	text-align: center;
}

.fc-submit__title {
	font-size: 22px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 0.75rem;
}

.fc-engagement-filters__actions .fc-btn--primary {
	color: #fff;
	border: 1px solid var(--primary-color);
	border-radius: 30px;
	padding: 8px 20px;
	text-align: center;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--primary-color);
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	-webkit-transition: 300ms all ease-in-out;
	-o-transition: 300ms all ease-in-out;
	transition: 300ms all ease-in-out;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: .5rem;
}

.fc-engagement-filters__actions .fc-btn--primary:hover {
	color: #000;
	background: transparent;
}

.fc-raffle-terms a {
	color: rgba(255, 255, 255, 0.8);
}

.fc-raffle-terms a:hover {
	color: #fff;
}

/* 1. Photo (update each month) */
.fc-mockup-photo,
.fc-hero-photo {
	margin: 0 -1.25rem 1.5rem;
	border-radius: 12px;
	overflow: hidden;
}

.fc-mockup-photo__img,
.fc-hero-photo__img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: top;
}

/* 2–3. Title + Explanation (update each month) */
.fc-mockup-hero,
.fc-hero {
	text-align: center;
	padding: 2.5rem 1.5rem 3rem;
	margin: 0 -1.25rem 2rem;
	background: linear-gradient(135deg, var(--primary-lighter, #cee9f9) 0%, var(--primary-light, #a7e0f9) 100%);
	border-radius: 12px;
}

.fc-mockup-hero:first-of-type {
	margin-top: 0;
}

.fc-mockup-hero__title,
.fc-hero__title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 0.75rem;
	line-height: 1.2;
}

.fc-mockup-hero__explanation,
.fc-hero__text.fc-hero__explanation {
	text-align: left;
	max-width: 100%;
	font-size: 1.05rem;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

.fc-mockup-hero__explanation p,
.fc-hero__explanation p {
	margin: 0 0 0.5rem;
}

.fc-mockup-hero__explanation p:last-child {
	margin-bottom: 0;
}

/* 4–5. Subhead + Challenge text (update each month) */
.fc-mockup-content__subhead,
.fc-challenge-content__subhead {
	font-size: 1.15rem;
	font-weight: 600;
	color: #333;
	margin: 0 0 0.75rem;
}

.fc-mockup-content__body,
.fc-challenge-content__body {
	font-size: 1rem;
	line-height: 1.65;
	color: #444;
}

.fc-mockup-content__body p {
	margin: 0 0 0.75rem;
}

.fc-mockup-content__video,
.fc-challenge-content__video {
	position: relative;
	aspect-ratio: 16/9;
	margin-top: 1.25rem;
	border-radius: 8px;
	overflow: hidden;
	background: #111;
}

.fc-mockup-content__video .fc-video-poster,
.fc-challenge-content__video .fc-video-poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fc-mockup-content__video .fc-video-iframe-wrap,
.fc-challenge-content__video .fc-video-iframe-wrap {
	position: absolute;
	inset: 0;
}

.fc-mockup-content__video .fc-video-embed,
.fc-challenge-content__video .fc-video-embed {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.fc-hero--single {
	margin-top: 0;
}

.fc-hero__inner {
	max-width: 560px;
	margin: 0 auto;
}

.fc-hero__badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--primary-darker, #0092cc);
	background: rgba(255, 255, 255, 0.9);
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}

.fc-hero__title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 0.75rem;
	line-height: 1.2;
}

.fc-hero__text {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

/* ----- Month selector ----- */
.fc-month-selector {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.fc-month-selector__label {
	font-weight: 600;
	color: #333;
}

.fc-month-selector .fc-month-picker {
	min-width: 180px;
	padding: 0.5rem 0.75rem;
	font-size: 1rem;
}

.fc-month-selector__current {
	font-size: 0.9rem;
	color: var(--primary-darker, #0092cc);
	font-weight: 500;
}

/* ----- Challenges grid (compact cards) ----- */
.fc-challenges-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.fc-card--clickable {
	cursor: pointer;
	margin-bottom: 0;
	padding: 0;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}

.fc-card--clickable:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.fc-card__preview {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	background: #e8e8e8;
	overflow: hidden;
}

.fc-card__thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fc-card__thumb-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary-lighter, #cee9f9), var(--primary-light, #a7e0f9));
}

.fc-card__play-icon {
	position: relative;
	width: 48px;
	height: 48px;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	display: block;
}

.fc-card__play-icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-30%, -50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 18px;
	border-color: transparent transparent transparent #fff;
}

.fc-card__view-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.5rem 0.75rem;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
}

.fc-card__meta {
	padding: 1rem 1.25rem;
}

.fc-card__month {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--primary-darker, #0092cc);
	margin: 0 0 0.25rem;
}


.fc-card__title-sm {
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.3;
}

.fc-challenge-detail-content {
	display: none;
}

/* ----- Modal popup ----- */
.fc-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s, visibility 0.25s;
}

.fc-modal--open {
	opacity: 1;
	visibility: visible;
}

.fc-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.fc-modal__box {
	position: relative;
	width: 100%;
	max-width: 640px;
	max-height: 90vh;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transform: scale(0.95);
	transition: transform 0.25s;
}

.fc-modal--open .fc-modal__box {
	transform: scale(1);
}

.fc-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: none;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.2s;
}

.fc-modal__close:hover {
	background: rgba(0, 0, 0, 0.8);
}

.fc-modal__body {
	overflow-y: auto;
	padding: 1.5rem 1.75rem 2rem;
	max-height: 90vh;
}

/* Show cloned detail content inside modal (override display:none) */
.fc-modal__body .fc-challenge-detail-content {
	display: block !important;
}

/* Popup content inside modal */
.fc-popup__inner {
	padding-right: 0.5rem;
}

.fc-popup__title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 0.35rem;
}

.fc-popup__month {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary-darker, #0092cc);
	margin: 0 0 1rem;
}

.fc-popup__video {
	margin: 1rem 0;
	border-radius: 8px;
	overflow: hidden;
}

.fc-popup__section {
	margin-top: 1.25rem;
}

.fc-popup__section h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 0.5rem;
}

.fc-popup__instructions {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #444;
}

.fc-popup__instructions p {
	margin: 0 0 0.5rem;
}

.fc-popup__raffle p {
	margin: 0;
	padding: 0.65rem 1rem;
	background: var(--primary-lighter, #cee9f9);
	border-radius: 8px;
	font-size: 0.95rem;
	color: #333;
}

/* Video inside modal: placeholder = poster until iframe loads; iframe overlays */
.fc-modal__body .fc-video-wrap,
.fc-modal__body .fc-popup__video {
	margin: 0.5rem 0 1rem;
}

.fc-modal__body .fc-video-placeholder {
	position: relative;
	aspect-ratio: 16/9;
	background: #111;
	border-radius: 8px;
	overflow: hidden;
}

.fc-modal__body .fc-video-poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fc-modal__body .fc-video-iframe-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.fc-modal__body .fc-video-iframe-wrap .fc-video-embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.fc-modal__body .videoBox__video .stream-player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.fc-modal__body .fc-video-wrap--hls .videoBox__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ----- Cards ----- */
.fc-card {
	
	/* background: #fff; */
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	padding: 2rem 1.75rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.06);

    max-width: 700px;
    margin-inline: auto;
}

.fc-card__header {
	margin-bottom: 1.25rem;
}

.fc-card__title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.35rem;
}

.fc-card__subtitle {
	font-size: 0.95rem;
	color: #666;
	margin: 0;
}

.fc-engagement-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.fc-engagement-header__text {
	flex: 1 1 auto;
}

.fc-engagement-header__actions {
	flex-shrink: 0;
}

.fc-month-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary-darker, #0092cc);
	margin: 0 0 0.5rem;
}

.fc-challenge-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 1.25rem;
}

/* Video: iframe embed */
.fc-video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin: 1.25rem 0;
	border-radius: 8px;
	background: #fff;
}

.fc-video-wrap .fc-video-embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* HLS + VideoJS (same as post_type=video): fill container so theme initVideoPlayers works */
.fc-video-wrap--hls.videoBox {
	padding-bottom: 56.25%;
	height: 0;
}

.fc-video-wrap--hls .videoBox__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.fc-video-wrap--hls .stream-player {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* Instructions */
.fc-instructions {
	margin: 1.25rem 0;
	font-size: 1rem;
	line-height: 1.65;
	color: #444;
}

.fc-instructions p {
	margin: 0 0 0.75rem;
}

.fc-instructions p:last-child {
	margin-bottom: 0;
}

/* Raffle prize */
.fc-raffle-prize {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-top: 1.25rem;
	padding: 0.65rem 1rem;
	background: var(--primary-lighter, #cee9f9);
	border-radius: 8px;
	font-size: 0.95rem;
	color: #333;
}

.fc-raffle-label {
	font-weight: 600;
	color: var(--primary-darker, #0092cc);
}

/* No challenge */
.fc-no-challenge {
	text-align: center;
}

.fc-no-challenge__text {
	margin: 0;
	font-size: 1.1rem;
	color: #666;
}

/* ----- Form ----- */
.fc-card--form .fc-card__header {
	margin-bottom: 1.5rem;
}

.fc-form .fc-field {
	margin-bottom: 1.25rem;
}

.fc-form .fc-field label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.4rem;
}

.fc-required {
	color: #c24;
}

/* Form: PDF mockup – pull-down + white text boxes (not blue) */
.fc-form.fc-form--single .fc-input,
.fc-form.fc-form--single .fc-select,
.fc-form .fc-input,
.fc-form .fc-select {
	width: 100%;
	max-width: 100%;
	padding: 0.65rem 0.9rem;
	font-size: 1rem;
	font-family: inherit;
	background: #fff !important;
	color: #1a1a1a;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
	-webkit-appearance: none;
	appearance: none;
}

.fc-form .fc-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	padding-right: 2rem;
}

.fc-form .fc-input:focus,
.fc-form .fc-select:focus {
	outline: none;
	border-color: var(--primary-color, #7AD5F9);
	box-shadow: 0 0 0 3px rgba(122, 213, 249, 0.25);
}

.fc-form .fc-input::placeholder {
	color: #999;
}

.fc-form__row {
	display: grid;
	gap: 1.25rem;
}

.fc-form__row--half {
	grid-template-columns: 1fr 1fr;
}

/* Challenge multiselect */
.fc-challenge-multiselect {
	margin-bottom: 1.25rem;
}

.fc-label--block {
	display: block;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.25rem;
}

.fc-field-desc {
	font-size: 0.9rem;
	color: #666;
	margin: 0 0 0.75rem;
}

.fc-challenge-checkboxes {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.fc-checkbox--challenge {
	padding: 0.5rem 0.75rem;
	background: #f8f9fa;
	border-radius: 6px;
	border: 1px solid #eee;
}

.fc-form__checkboxes {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 1.5rem 0;
}

.fc-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.45;
	color: #444;
}

.fc-checkbox input {
	margin-top: 0.25rem;
	width: 1.15rem;
	height: 1.15rem;
	accent-color: var(--primary-darker, #0092cc);
	flex-shrink: 0;
	display: none;
}

span.fc-checkbox__text {
	padding-left: 24px;
	position: relative;
	display: block;
}

span.fc-checkbox__text:before {
	content: '';
	width: 14px;
	height: 14px;
	border: 1px solid #ffd76a;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 4px;
}

span.fc-checkbox__text:after {
	content: "";
	position: absolute;
	width: 14px;
	height: 6px;
	border: solid #ffd76a;
	border-width: 0 0 2px 2px;
	top: 4px;
	left: 3px;
	display: inline-block;
	transform: rotate(-65deg);
	opacity: 0;
	transition: 0.2s ease-in-out all;
}

.fc-checkbox [type="checkbox"]:checked+span.fc-checkbox__text:after {
	opacity: 1;
	transform: rotate(-45deg);
}

.fc-checkbox__text {
	flex: 1;
	color: #fff;
}

.fc-recaptcha {
	margin: 1.25rem 0;
}

.fc-submit {
	margin-top: 1.5rem;
}

.fc-btn:disabled,
.fc-btn--loading {
	pointer-events: none;
	cursor: not-allowed;
}

.fc-btn--loading {
	opacity: 0.9;
	min-width: 10rem;
}

/* Raffle terms link – PDF: small under the button */
.fc-raffle-terms {
	margin: 0.75rem 0 0;
	font-size: 0.8rem;
	line-height: 1.4;
}

.fc-raffle-terms a {
	color: #555;
	text-decoration: underline;
}

.fc-raffle-terms a:hover {
	color: var(--primary-darker, #0092cc);
}

/* Mockup form section spacing */
.fc-mockup-form.fc-card--form .fc-card__title {
	margin-bottom: 0.35rem;
}

.fc-mockup-form.fc-card--form .fc-card__subtitle {
	margin-bottom: 1.25rem;
}

.fc-btn__spinner {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -0.15em;
	margin-right: 0.35em;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: fc-spin 0.7s linear infinite;
}

@keyframes fc-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ----- Q&A ----- */
.fc-qa .fc-card__title {
	margin-bottom: 0.75rem;
}

.fc-qa__item {
	border-bottom: 1px solid #eee;
	padding: 0.5rem 0;
}

.fc-qa__item:last-child {
	border-bottom: none;
}

.fc-qa__question {
	font-size: 1.1rem;
	line-height: 1.4;
	font-weight: 600;
	color: #fff;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.fc-qa__question-text {
	flex: 1;
}

.fc-qa__toggle-icon {
	margin-left: 0.5rem;
	font-size: 0.9rem;
	color: #777;
	transition: transform 0.2s;
}

.fc-qa__item.is-open .fc-qa__toggle-icon {
	transform: rotate(90deg);
}

.fc-qa__answer {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin: 0.4rem 0 0.75rem;
	display: none;
}

.fc-qa__item.is-open .fc-qa__answer {
	display: block;
}

.fc-qa__answer p {
	margin: 0 0 0.5rem;
	color: #fff;
}

.fc-qa__answer p:last-child {
	margin-bottom: 0;
}

/* ----- Engagement dashboard ----- */
.fc-engagement,
.fc-thankyou {
	max-width: 900px;
	margin: 0 auto;
}

.fc-card--dashboard {
	padding: 2rem 2rem 2.25rem;
}

.fc-engagement-filters {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
}

.fc-engagement-filters__group {
	display: flex;
	flex-direction: column;
	min-width: 180px;
}

.fc-engagement-filters__group label {
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--dashboard-body-copy);
	font-weight: 500;
}

.fc-engagement-stats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.fc-engagement-stats__hint {
	margin: 0;
	font-size: 0.9rem;
	color: #777;
}

.fc-total-label {
	margin: 0;
	font-size: 0.95rem;
	color: #333;
}

.fc-total-label strong {
	font-size: 1.25rem;
	margin-left: 0.25rem;
}

.fc-engagement-chart-wrap {
	margin: 1rem 0 1rem;
	height: 260px;
}

canvas#fc-engagement-chart {
	width: 100% !important;
	height: 100% !important;
}

.fc-engagement-bottom {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 0.5rem;
}

.fc-engagement-bottom__left {
	flex: 1 1 auto;
}

.fc-engagement-bottom__right {
	flex: 1 1 auto;
}

.fc-export-wrap {
	margin-top: 1.25rem;
	text-align: right;
}

.fc-btn--secondary {
	display: inline-block;
	text-decoration: none;
	padding: 0.6rem 1.3rem;
	background: #f3f4f6;
	color: #111827;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 500;
}

.fc-btn--secondary:hover {
	background: #e5e7eb;
	color: #111827;
}

/* ----- Thank you ----- */
.fc-thankyou {
	text-align: center;
	padding: 3rem 1.5rem;
}

.fc-thankyou h2 {
	font-size: 1.5rem;
	color: #1a1a1a;
	margin-bottom: 0.75rem;
}

.fc-thankyou p {
	color: #555;
	margin: 0;
}

/* ----- Homepage CTA ----- */
.fc-cta {
	margin: 0rem 0;
	padding: 3rem 1.5rem;
	background: linear-gradient(135deg, var(--primary-lighter, #cee9f9), var(--primary-light, #a7e0f9));
	border-radius: 10px;
	border: 1px solid rgba(0, 146, 204, 0.2);
}

.fc-cta h3 {
	margin: 0 0 0.4rem;
	font-size: 1.2rem;
}

.fc-cta p {
	margin: 0 0 1.2rem;
	font-size: 0.95rem;
	color: #444;
}

.fc-cta-btn {
	display: inline-block;
	padding: 0.6rem 1.25rem;
	background: var(--primary-darker, #0092cc);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	border-radius: 8px;
	transition: background 0.2s;
}

.fc-cta-btn:hover {
	background: var(--primary-darkest, #238bc4);
	color: #fff;
}


.fc-engagement-filters__group .fc-input,
.fc-engagement-filters__group .fc-select,
.fc-engagement-filters__group .fc-input:focus,
.fc-engagement-filters__group .fc-select:focus {
	padding: 5px 10px 5px 10px;
	border-radius: 10px;
	font-size: 14px;
	border: 1px solid var(--border-default);
	position: relative;
	line-height: 1.9;
	height: 36px;
	vertical-align: middle;
}

.fc-engagement-filters__group .fc-select {
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 17.3333L6.66667 12L7.72667 10.94L12 15.2133L16.2733 10.94L17.3333 12L12 17.3333Z' fill='black'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 3px center;
	background-size: 24px 24px;
	padding-right: 20px;
}

.home section.cardsection.videosUpdate.p-60.bg-darkGrey:has(.fc-cta) {
	padding-top: 0;
}

.fc-engagement-filters__actions {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	grid-column: span 2;
}

button.fc-btn.fc-btn--primary.btn-primary {
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 1.3rem;
}
.fc-submission-form__termsLink {
    text-align: center;
    padding-top: 40px;
}

.fc-submission-form__termsLink a {
    color: #fff;
}


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


@media (max-width: 1024px) { 
	.fc-fc-form .fc-form { 
		padding: 30px 25px;
	}
}
@media (max-width: 767px) {
	.fc-fc-hero-grid {
		padding: 10px;
	}
 

	.fc-fc-hero-grid:before {
		inset: 0;
		border-radius: 15px;
	}
	.fc-fc-form .fc-form {    
		padding: 30px 15px;
	}
 
}

@media (max-width: 640px) {
	.fc-hero {
		padding: 1.75rem 1rem 2rem;
		margin-bottom: 1.5rem;
	}

	.fc-card {
		padding: 1.5rem 1.25rem;
	}

	.fc-form__row--half {
		grid-template-columns: 1fr;
	}

	.fc-fc-hero-grid {
		grid-template-columns: 1fr;
	}

	.fc-form__row--thirds {
		grid-template-columns: 1fr;
	}

	.fc-engagement-filters {
		flex-direction: column;
		align-items: stretch;
	}

	.fc-engagement-filters__actions {
		margin-left: 0;
	}


}

@media (max-width: 480px) {
	.fc-hero__title {
		font-size: 1.5rem;
	}
	.fc-fc-form .fc-form .g-recaptcha iframe {
		transform: scale(0.8);
		transform-origin: left;
	}
}