/* ==========================================================================
   4CARE Truly Blessed Foundation — design system
   Brand palette carried over from the original site's stylesheet.
   ========================================================================== */

:root {
	--fc-primary: #e03c33;
	--fc-primary-dark: #b92f27;
	--fc-accent: #fdc221;
	--fc-accent-dark: #f6a61d;
	--fc-orange: #f27234;
	--fc-dark: #2a283e;
	--fc-nav: #424155;
	--fc-body: #818090;
	--fc-bg: #eef4f8;
	--fc-white: #ffffff;
	--fc-border: #e6e6e6;
	--fc-radius: 10px;
	--fc-radius-lg: 16px;
	--fc-shadow: 0 12px 30px rgba(42, 40, 62, 0.08);
	--fc-shadow-hover: 0 18px 44px rgba(42, 40, 62, 0.14);
	--fc-transition: 0.35s ease;
	--fc-section-y: clamp(3.5rem, 7vw, 6.5rem);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

body {
	color: var(--fc-body);
}

h1, h2, h3, h4, h5, h6,
.entry-title {
	color: var(--fc-dark);
	line-height: 1.25;
}

a {
	transition: color var(--fc-transition);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

/* Keep the logo small enough that the whole menu stays on one line. */
.site-header .custom-logo-link img,
.ast-site-identity .custom-logo-link img {
	max-width: 78px;
	height: auto;
}

.ast-site-title-wrap .site-title,
.ast-site-title-wrap .site-title a {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.25;
}

/* Keep the whole primary menu, Donate pill included, on a single row. */
.ast-desktop .main-header-menu,
.ast-desktop .main-header-menu > .menu-item {
	flex-wrap: nowrap;
}

.ast-desktop .main-header-menu > .menu-item > .menu-link {
	padding-inline: 0.7rem;
	font-size: 0.95rem;
	white-space: nowrap;
}

.ast-desktop .main-header-menu .fc-nav-donate > .menu-link {
	padding-inline: 1.35rem;
}

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

.fc-btn,
.wp-block-button.is-style-fc-primary .wp-block-button__link,
.wp-block-button__link.fc-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 2rem;
	border: 2px solid var(--fc-primary);
	border-radius: 50px;
	background: var(--fc-primary);
	color: var(--fc-white);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	transition: all var(--fc-transition);
}

.fc-btn:hover,
.fc-btn:focus,
.wp-block-button.is-style-fc-primary .wp-block-button__link:hover,
.wp-block-button__link.fc-btn:hover {
	background: var(--fc-primary-dark);
	border-color: var(--fc-primary-dark);
	color: var(--fc-white);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(224, 60, 51, 0.3);
}

.fc-btn--outline,
.wp-block-button.is-style-fc-outline .wp-block-button__link {
	background: transparent;
	color: var(--fc-primary);
	border: 2px solid var(--fc-primary);
	border-radius: 50px;
	padding: 0.95rem 2rem;
	font-weight: 600;
	transition: all var(--fc-transition);
}

.fc-btn--outline:hover,
.wp-block-button.is-style-fc-outline .wp-block-button__link:hover {
	background: var(--fc-primary);
	color: var(--fc-white);
}

.fc-btn--light,
.wp-block-button.is-style-fc-light .wp-block-button__link {
	background: var(--fc-white);
	color: var(--fc-primary);
	border: 2px solid var(--fc-white);
	border-radius: 50px;
	padding: 0.95rem 2rem;
	font-weight: 600;
}

.fc-btn--light:hover,
.wp-block-button.is-style-fc-light .wp-block-button__link:hover {
	background: var(--fc-accent);
	border-color: var(--fc-accent);
	color: var(--fc-dark);
}

.fc-btn--sm {
	padding: 0.6rem 1.4rem;
	font-size: 0.9rem;
}

/* Astra underlines links inside the content area; buttons and card titles
   should not inherit that. */
.entry-content a.fc-btn,
.entry-content .fc-btn,
.entry-content .fc-campaign-card__title a,
.entry-content .fc-event__title a,
.entry-content .fc-contact-card a,
.entry-content .wp-block-button__link,
.fc-campaign-card__title a,
.fc-event__title a,
.fc-contact-card a,
.wp-block-button__link {
	text-decoration: none;
}

.entry-content .fc-campaign-card__title a:hover,
.entry-content .fc-event__title a:hover,
.entry-content .fc-contact-card a:hover {
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Fundraising goal card (sits beside the events list)
   -------------------------------------------------------------------------- */

.fc-goal-card {
	padding: 2.25rem;
	border-radius: var(--fc-radius-lg);
	background: var(--fc-dark);
	color: rgba(255, 255, 255, 0.78);
}

.fc-goal-card h3,
.fc-goal-card h2 {
	color: var(--fc-white);
	margin-top: 0;
}

.fc-goal-card p {
	color: rgba(255, 255, 255, 0.78);
}

.fc-goal-card .fc-progress {
	background: rgba(255, 255, 255, 0.15);
	height: 0.75rem;
}

.fc-goal-card .fc-progress__legend {
	color: rgba(255, 255, 255, 0.78);
}

.fc-goal-card .fc-progress__legend strong {
	color: var(--fc-white);
}

/* Highlight the "Donate Now" item in the primary nav. */
.main-header-menu .fc-nav-donate > .menu-link,
.ast-desktop .main-header-menu .fc-nav-donate > .menu-link {
	background: var(--fc-primary);
	color: var(--fc-white) !important;
	border-radius: 50px;
	padding-inline: 1.5rem;
	margin-inline-start: 0.75rem;
	transition: background var(--fc-transition);
}

.main-header-menu .fc-nav-donate > .menu-link:hover {
	background: var(--fc-primary-dark);
}

/* --------------------------------------------------------------------------
   Section scaffolding

   The landing pages use Astra's full-width container (set per page via the
   ast-site-content-layout meta), so the banded sections already span the
   viewport. Each section just adds its own gutter; the constrained block
   layout inside caps the content at theme.json's 1200px contentSize and
   centres it. No 100vw breakout, so no scrollbar-width overflow on mobile.
   -------------------------------------------------------------------------- */

body {
	overflow-x: clip;
}

.fc-hero,
.fc-page-hero,
.fc-section {
	max-width: none;
	padding-inline: 1.25rem;
}

@media (min-width: 768px) {
	.fc-hero,
	.fc-page-hero,
	.fc-section {
		padding-inline: 2rem;
	}
}

.fc-section {
	padding-block: var(--fc-section-y);
}

.fc-section--tint {
	background: var(--fc-bg);
}

.fc-section--dark {
	background: var(--fc-dark);
}

.fc-section--dark h1,
.fc-section--dark h2,
.fc-section--dark h3,
.fc-section--dark p {
	color: var(--fc-white);
}

.fc-eyebrow {
	display: inline-block;
	margin-bottom: 0.75rem;
	color: var(--fc-primary);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fc-section-title {
	margin: 0 0 1rem;
	font-size: clamp(1.9rem, 3.6vw, 2.75rem);
	font-weight: 700;
}

.fc-section-intro {
	max-width: 46rem;
	margin-inline: auto;
	font-size: 1.05rem;
}

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

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.fc-hero {
	position: relative;
	padding-block: clamp(4rem, 9vw, 7.5rem);
	background: linear-gradient(120deg, #2a283e 0%, #3c3a56 55%, #5a2b34 100%);
	color: var(--fc-white);
	overflow: hidden;
}

.fc-hero::after {
	content: "";
	position: absolute;
	inset-block-start: -20%;
	inset-inline-end: -10%;
	width: 40rem;
	height: 40rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(224, 60, 51, 0.35) 0%, transparent 65%);
	pointer-events: none;
}

.fc-hero > * {
	position: relative;
	z-index: 1;
}

.fc-hero__eyebrow {
	color: var(--fc-accent);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.9rem;
}

/*
 * WordPress' constrained layout centres any child narrower than the content
 * size, using !important. The hero copy is left-aligned, so it has to opt out
 * with the same weight.
 */
.fc-hero__title,
.fc-hero__text {
	margin-inline: 0 auto !important;
}

.fc-hero__title {
	max-width: 20ch;
	margin-block: 0.75rem 1.25rem;
	color: var(--fc-white);
	font-size: clamp(2.25rem, 5.5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
}

.fc-hero__title em {
	color: var(--fc-accent);
	font-style: normal;
}

.fc-hero__text {
	max-width: 44rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.1rem;
	line-height: 1.75;
}

.fc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Inner page banner */
.fc-page-hero {
	padding-block: clamp(3rem, 6vw, 5rem);
	background: linear-gradient(120deg, #2a283e 0%, #3c3a56 100%);
	color: var(--fc-white);
	text-align: center;
}

.fc-page-hero h1 {
	color: var(--fc-white);
	margin: 0;
}

/* --------------------------------------------------------------------------
   Donation category cards
   -------------------------------------------------------------------------- */

.fc-cause-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 1.75rem;
}

.fc-cause {
	padding: 2.5rem 1.75rem;
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-lg);
	background: var(--fc-white);
	text-align: center;
	transition: all var(--fc-transition);
}

.fc-cause:hover {
	border-color: transparent;
	box-shadow: var(--fc-shadow-hover);
	transform: translateY(-6px);
}

.fc-cause__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	margin-bottom: 1.25rem;
	border-radius: 50%;
	background: var(--fc-bg);
	transition: background var(--fc-transition);
}

.fc-cause:hover .fc-cause__icon {
	background: rgba(224, 60, 51, 0.12);
}

/* The icon markup is a core image block, which carries an inline width. */
.fc-cause__icon img,
figure.fc-cause__icon img {
	width: 2.5rem !important;
	height: auto;
}

.fc-cause h3 {
	margin: 0 0 0.6rem;
	font-size: 1.2rem;
}

.fc-cause p {
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Two-column media / text
   -------------------------------------------------------------------------- */

.fc-split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.fc-split__media img {
	width: 100%;
	height: auto;
	border-radius: var(--fc-radius-lg);
}

.fc-list {
	margin: 1.5rem 0;
	padding: 0;
	list-style: none;
}

.fc-list li {
	position: relative;
	margin-bottom: 0.85rem;
	padding-inline-start: 2rem;
}

.fc-list li::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	inset-block-start: 0.35em;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 50%;
	background: var(--fc-primary);
	box-shadow: inset 0 0 0 3px var(--fc-white);
}

/* --------------------------------------------------------------------------
   Campaign cards
   -------------------------------------------------------------------------- */

.fc-campaign-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
	gap: 2rem;
}

.fc-campaign-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--fc-radius-lg);
	background: var(--fc-white);
	box-shadow: var(--fc-shadow);
	overflow: hidden;
	transition: all var(--fc-transition);
}

.fc-campaign-card:hover {
	box-shadow: var(--fc-shadow-hover);
	transform: translateY(-6px);
}

.fc-campaign-card__media {
	position: relative;
	aspect-ratio: 10 / 7;
	overflow: hidden;
}

.fc-campaign-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.fc-campaign-card:hover .fc-campaign-card__media img {
	transform: scale(1.07);
}

.fc-campaign-card__tag {
	position: absolute;
	inset-block-start: 1rem;
	inset-inline-start: 1rem;
	padding: 0.35rem 0.9rem;
	border-radius: 50px;
	background: var(--fc-primary);
	color: var(--fc-white);
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.fc-campaign-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.6rem;
}

.fc-campaign-card__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.6rem;
	color: var(--fc-primary);
	font-size: 0.85rem;
	font-weight: 600;
}

.fc-campaign-card__title {
	margin: 0 0 0.6rem;
	font-size: 1.25rem;
}

.fc-campaign-card__title a {
	color: var(--fc-dark);
	text-decoration: none;
}

.fc-campaign-card__title a:hover {
	color: var(--fc-primary);
}

.fc-campaign-card__excerpt {
	flex: 1;
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
}

.fc-campaign-card .fc-btn {
	align-self: flex-start;
}

/* Progress bar */
.fc-progress {
	height: 0.55rem;
	margin-bottom: 0.6rem;
	border-radius: 50px;
	background: var(--fc-bg);
	overflow: hidden;
}

.fc-progress__bar {
	height: 100%;
	border-radius: 50px;
	background: linear-gradient(90deg, var(--fc-primary), var(--fc-orange));
}

.fc-progress__legend {
	display: flex;
	justify-content: space-between;
	margin: 0 0 1.25rem;
	font-size: 0.85rem;
}

.fc-progress__legend strong {
	color: var(--fc-dark);
}

/* --------------------------------------------------------------------------
   Impact counters
   -------------------------------------------------------------------------- */

.fc-counters {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
	gap: 2rem;
	text-align: center;
}

.fc-counter img {
	width: 3rem;
	height: auto;
	margin-bottom: 0.85rem;
	filter: brightness(0) invert(1);
}

.fc-counter__value,
.fc-counter__suffix {
	color: var(--fc-white);
	font-size: clamp(2rem, 4vw, 2.9rem);
	font-weight: 800;
	line-height: 1;
}

.fc-counter__label {
	margin: 0.5rem 0 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Events
   -------------------------------------------------------------------------- */

.fc-event-list {
	display: grid;
	gap: 1.5rem;
}

.fc-event {
	display: flex;
	gap: 1.5rem;
	padding: 1.5rem;
	border-radius: var(--fc-radius-lg);
	background: var(--fc-white);
	box-shadow: var(--fc-shadow);
	transition: box-shadow var(--fc-transition);
}

.fc-event:hover {
	box-shadow: var(--fc-shadow-hover);
}

.fc-event__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 5rem;
	height: 5rem;
	border-radius: var(--fc-radius);
	background: var(--fc-primary);
	color: var(--fc-white);
}

.fc-event__day {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1;
}

.fc-event__month {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.fc-event__title {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
}

.fc-event__title a {
	color: var(--fc-dark);
	text-decoration: none;
}

.fc-event__title a:hover {
	color: var(--fc-primary);
}

.fc-event__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin: 0 0 0.5rem;
	font-size: 0.88rem;
}

.fc-event__meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.fc-event__excerpt {
	margin: 0;
	font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.fc-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
	gap: 1rem;
}

.fc-gallery figure,
.fc-gallery .fc-gallery__item {
	position: relative;
	margin: 0;
	border-radius: var(--fc-radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.fc-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.fc-gallery figure:hover img,
.fc-gallery .fc-gallery__item:hover img {
	transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.fc-contact-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
	gap: 1.75rem;
}

.fc-contact-card {
	padding: 2.25rem 1.75rem;
	border-radius: var(--fc-radius-lg);
	background: var(--fc-white);
	box-shadow: var(--fc-shadow);
	text-align: center;
}

.fc-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.25rem;
	height: 4.25rem;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: var(--fc-bg);
}

.fc-contact-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
}

.fc-contact-card p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.8;
}

.fc-contact-card a {
	color: var(--fc-body);
	text-decoration: none;
}

.fc-contact-card a:hover {
	color: var(--fc-primary);
}

/* Contact Form 7 */
.wpcf7 .fc-form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 1rem;
}

.wpcf7 label {
	display: block;
	margin-bottom: 1rem;
	color: var(--fc-dark);
	font-weight: 600;
	font-size: 0.95rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	margin-top: 0.4rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	background: var(--fc-white);
	color: var(--fc-dark);
	font-weight: 400;
	font-size: 1rem;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	border-color: var(--fc-primary);
	outline: 2px solid rgba(224, 60, 51, 0.18);
	outline-offset: 1px;
}

.wpcf7 input[type="submit"] {
	padding: 0.95rem 2.5rem;
	border: 0;
	border-radius: 50px;
	background: var(--fc-primary);
	color: var(--fc-white);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background var(--fc-transition);
}

.wpcf7 input[type="submit"]:hover {
	background: var(--fc-primary-dark);
}

.fc-form-wrap {
	padding: clamp(1.75rem, 4vw, 3rem);
	border-radius: var(--fc-radius-lg);
	background: var(--fc-white);
	box-shadow: var(--fc-shadow);
}

/* --------------------------------------------------------------------------
   FAQ (core details block)
   -------------------------------------------------------------------------- */

.fc-faq .wp-block-details {
	margin-bottom: 1rem;
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	background: var(--fc-white);
}

.fc-faq .wp-block-details summary {
	color: var(--fc-dark);
	font-weight: 600;
	cursor: pointer;
}

.fc-faq .wp-block-details[open] summary {
	margin-bottom: 0.75rem;
	color: var(--fc-primary);
}

/* --------------------------------------------------------------------------
   Call to action strip
   -------------------------------------------------------------------------- */

.fc-cta {
	padding: clamp(2.5rem, 6vw, 4.5rem);
	border-radius: var(--fc-radius-lg);
	background: linear-gradient(120deg, var(--fc-primary) 0%, var(--fc-orange) 100%);
	color: var(--fc-white);
	text-align: center;
}

.fc-cta h2,
.fc-cta p {
	color: var(--fc-white);
}

.fc-cta p {
	max-width: 40rem;
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
   GiveWP touch-ups
   -------------------------------------------------------------------------- */

.give-form-wrap {
	border-radius: var(--fc-radius-lg);
	background: var(--fc-white);
	box-shadow: var(--fc-shadow);
	padding: 1.5rem;
}

form.give-form .give-btn,
.give-btn {
	border-radius: 50px !important;
	background: var(--fc-primary) !important;
	border-color: var(--fc-primary) !important;
	color: var(--fc-white) !important;
	font-weight: 600;
}

form.give-form .give-btn:hover,
.give-btn:hover {
	background: var(--fc-primary-dark) !important;
	border-color: var(--fc-primary-dark) !important;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

/*
 * Astra's footer colour settings live behind the customizer's responsive
 * option shape, so the palette is pinned here to guarantee the dark footer.
 */
.site-footer,
.site-primary-footer-wrap,
.site-above-footer-wrap {
	background-color: var(--fc-dark);
	color: rgba(255, 255, 255, 0.72);
}

.site-below-footer-wrap {
	background-color: #211f31;
	color: rgba(255, 255, 255, 0.6);
}

.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer .widget-title {
	color: var(--fc-white);
	margin-bottom: 1rem;
}

.site-footer p,
.site-footer li {
	color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	overflow-wrap: anywhere;
}

.site-footer a:hover,
.site-footer a:focus {
	color: var(--fc-primary);
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer li {
	margin-bottom: 0.5rem;
}

.site-footer .wp-block-social-links {
	margin-top: 1.25rem;
	gap: 0.5rem;
}

.site-footer .wp-block-social-link {
	background-color: rgba(255, 255, 255, 0.12);
	transition: background-color var(--fc-transition), transform var(--fc-transition);
}

.site-footer .wp-block-social-link:hover {
	background-color: var(--fc-primary);
	transform: translateY(-3px);
}

.site-footer .fc-footer-brand img {
	max-width: 9rem;
	height: auto;
	margin-bottom: 1rem;
}

.fc-social {
	display: flex;
	gap: 0.6rem;
	margin-top: 1rem;
	padding: 0;
	list-style: none;
}

.fc-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--fc-white);
	transition: all var(--fc-transition);
}

.fc-social a:hover {
	background: var(--fc-primary);
	transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Floating WhatsApp button
   -------------------------------------------------------------------------- */

.fc-whatsapp {
	position: fixed;
	inset-block-end: 1.5rem;
	inset-inline-end: 1.5rem;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.4rem;
	height: 3.4rem;
	border-radius: 50%;
	background: #25d366;
	color: var(--fc-white);
	box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
	transition: transform var(--fc-transition);
}

.fc-whatsapp:hover {
	color: var(--fc-white);
	transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Motion / responsive
   -------------------------------------------------------------------------- */

@media (max-width: 544px) {
	.fc-event {
		flex-direction: column;
	}

	.fc-hero__actions .fc-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
