/* =========================================================================
   Fecane UI — compiled utility layer
   A hand-compiled, 1:1 reproduction of every Tailwind utility class used by
   the original Lovable source (header, footer, layout + all Elementor widget
   markup). Breakpoints match Tailwind v4 defaults: sm 640, md 768, lg 1024.
   Everything is scoped under .fcf so it never collides with Elementor/admin.
   ========================================================================= */

/* ---- scoped base reset (low specificity via :where so utilities always win) ---- */
.fcf, .fcf *, .fcf *::before, .fcf *::after { box-sizing: border-box; }
.fcf { -webkit-font-smoothing: antialiased; }
.fcf :where(h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd,ol,ul) { margin: 0; }
.fcf :where(ol,ul) { padding: 0; list-style: none; }
.fcf :where(a) { color: inherit; text-decoration: none; }
.fcf :where(img,video,svg) { display: block; max-width: 100%; }
.fcf :where(img,video) { height: auto; }
.fcf :where(button) { font: inherit; color: inherit; background: none; border: 0; margin: 0; padding: 0; cursor: pointer; }
.fcf :where(input,select,textarea) { font: inherit; color: inherit; }
.fcf :where(svg) { flex: none; }
.fcf { font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--foreground); line-height: 1.5; }

/* ---- layout / display ---- */
.fcf .block { display: block; }
.fcf .inline-block { display: inline-block; }
.fcf .flex { display: flex; }
.fcf .inline-flex { display: inline-flex; }
.fcf .grid { display: grid; }
.fcf .hidden { display: none; }
.fcf .flex-col { flex-direction: column; }
.fcf .flex-col-reverse { flex-direction: column-reverse; }
.fcf .flex-wrap { flex-wrap: wrap; }
.fcf .flex-1 { flex: 1 1 0%; }
.fcf .flex-none { flex: none; }
.fcf .items-start { align-items: flex-start; }
.fcf .items-center { align-items: center; }
.fcf .items-end { align-items: flex-end; }
.fcf .items-baseline { align-items: baseline; }
.fcf .justify-center { justify-content: center; }
.fcf .justify-between { justify-content: space-between; }
.fcf .self-center { align-self: center; }
.fcf .place-items-center { place-items: center; }

/* ---- grids ---- */
.fcf .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ---- position ---- */
.fcf .relative { position: relative; }
.fcf .absolute { position: absolute; }
.fcf .sticky { position: sticky; }
.fcf .inset-0 { inset: 0; }
.fcf .top-0 { top: 0; }
.fcf .top-4 { top: 1rem; }
.fcf .left-4 { left: 1rem; }
.fcf .top-full { top: 100%; }
.fcf .left-1\/2 { left: 50%; }
.fcf .-left-\[42px\] { left: -42px; }
.fcf .z-50 { z-index: 50; }

/* ---- sizing: width ---- */
.fcf .w-full { width: 100%; }
.fcf .w-3 { width: 0.75rem; }
.fcf .w-3\.5 { width: 0.875rem; }
.fcf .w-4 { width: 1rem; }
.fcf .w-5 { width: 1.25rem; }
.fcf .w-6 { width: 1.5rem; }
.fcf .w-8 { width: 2rem; }
.fcf .w-10 { width: 2.5rem; }
.fcf .w-11 { width: 2.75rem; }
.fcf .w-12 { width: 3rem; }
.fcf .w-14 { width: 3.5rem; }
.fcf .w-16 { width: 4rem; }
.fcf .min-w-10 { min-width: 2.5rem; }
.fcf .w-\[min\(640px\2c 90vw\)\] { width: min(640px, 90vw); }

/* ---- sizing: height ---- */
.fcf .h-full { height: 100%; }
.fcf .h-px { height: 1px; }
.fcf .h-2 { height: 0.5rem; }
.fcf .h-3 { height: 0.75rem; }
.fcf .h-3\.5 { height: 0.875rem; }
.fcf .h-4 { height: 1rem; }
.fcf .h-5 { height: 1.25rem; }
.fcf .h-6 { height: 1.5rem; }
.fcf .h-8 { height: 2rem; }
.fcf .h-9 { height: 2.25rem; }
.fcf .h-10 { height: 2.5rem; }
.fcf .h-11 { height: 2.75rem; }
.fcf .h-12 { height: 3rem; }
.fcf .h-14 { height: 3.5rem; }
.fcf .h-16 { height: 4rem; }
.fcf .h-44 { height: 11rem; }
.fcf .h-52 { height: 13rem; }
.fcf .h-56 { height: 14rem; }
.fcf .h-\[520px\] { height: 520px; }

/* ---- min-height ---- */
.fcf .min-h-screen { min-height: 100vh; }
.fcf .min-h-\[360px\] { min-height: 360px; }
.fcf .min-h-\[400px\] { min-height: 400px; }
.fcf .min-h-\[420px\] { min-height: 420px; }
.fcf .min-h-\[640px\] { min-height: 640px; }
.fcf .max-h-\[calc\(100vh-5rem\)\] { max-height: calc(100vh - 5rem); }

/* ---- max-width ---- */
.fcf .max-w-sm { max-width: 24rem; }
.fcf .max-w-md { max-width: 28rem; }
.fcf .max-w-xl { max-width: 36rem; }
.fcf .max-w-2xl { max-width: 42rem; }
.fcf .max-w-3xl { max-width: 48rem; }
.fcf .max-w-4xl { max-width: 56rem; }
.fcf .max-w-5xl { max-width: 64rem; }
.fcf .max-w-6xl { max-width: 72rem; }
.fcf .max-w-7xl { max-width: 80rem; }

/* ---- margins ---- */
.fcf .mx-auto { margin-left: auto; margin-right: auto; }
.fcf .mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.fcf .mt-0\.5 { margin-top: 0.125rem; }
.fcf .mt-1 { margin-top: 0.25rem; }
.fcf .mt-2 { margin-top: 0.5rem; }
.fcf .mt-3 { margin-top: 0.75rem; }
.fcf .mt-4 { margin-top: 1rem; }
.fcf .mt-5 { margin-top: 1.25rem; }
.fcf .mt-6 { margin-top: 1.5rem; }
.fcf .mt-7 { margin-top: 1.75rem; }
.fcf .mt-8 { margin-top: 2rem; }
.fcf .mt-10 { margin-top: 2.5rem; }
.fcf .mt-12 { margin-top: 3rem; }
.fcf .mt-14 { margin-top: 3.5rem; }
.fcf .mt-16 { margin-top: 4rem; }
.fcf .mb-2 { margin-bottom: 0.5rem; }
.fcf .mb-3 { margin-bottom: 0.75rem; }
.fcf .mb-4 { margin-bottom: 1rem; }

/* ---- padding ---- */
.fcf .p-1 { padding: 0.25rem; }
.fcf .p-3 { padding: 0.75rem; }
.fcf .p-4 { padding: 1rem; }
.fcf .p-5 { padding: 1.25rem; }
.fcf .p-6 { padding: 1.5rem; }
.fcf .p-7 { padding: 1.75rem; }
.fcf .p-8 { padding: 2rem; }
.fcf .p-10 { padding: 2.5rem; }
.fcf .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.fcf .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.fcf .px-4 { padding-left: 1rem; padding-right: 1rem; }
.fcf .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.fcf .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.fcf .px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.fcf .px-8 { padding-left: 2rem; padding-right: 2rem; }
.fcf .px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.fcf .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.fcf .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.fcf .py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.fcf .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.fcf .py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.fcf .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.fcf .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.fcf .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.fcf .py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.fcf .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.fcf .py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.fcf .py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.fcf .py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.fcf .pt-3 { padding-top: 0.75rem; }
.fcf .pt-6 { padding-top: 1.5rem; }
.fcf .pb-3 { padding-bottom: 0.75rem; }
.fcf .pl-2 { padding-left: 0.5rem; }
.fcf .pl-6 { padding-left: 1.5rem; }
.fcf .pl-8 { padding-left: 2rem; }

/* ---- gap ---- */
.fcf .gap-1 { gap: 0.25rem; }
.fcf .gap-2 { gap: 0.5rem; }
.fcf .gap-3 { gap: 0.75rem; }
.fcf .gap-4 { gap: 1rem; }
.fcf .gap-5 { gap: 1.25rem; }
.fcf .gap-6 { gap: 1.5rem; }
.fcf .gap-8 { gap: 2rem; }
.fcf .gap-10 { gap: 2.5rem; }
.fcf .gap-12 { gap: 3rem; }

/* ---- space-between (column) ---- */
.fcf .space-y-1 > * + * { margin-top: 0.25rem; }
.fcf .space-y-2 > * + * { margin-top: 0.5rem; }
.fcf .space-y-2\.5 > * + * { margin-top: 0.625rem; }
.fcf .space-y-3 > * + * { margin-top: 0.75rem; }
.fcf .space-y-5 > * + * { margin-top: 1.25rem; }
.fcf .space-y-6 > * + * { margin-top: 1.5rem; }
.fcf .space-y-8 > * + * { margin-top: 2rem; }

/* ---- divide ---- */
.fcf .divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.fcf .divide-border > * + * { border-color: var(--border); }

/* ---- typography ---- */
.fcf .text-\[10px\] { font-size: 10px; line-height: 1.3; }
.fcf .text-\[11px\] { font-size: 11px; line-height: 1.3; }
.fcf .text-xs { font-size: 0.75rem; line-height: 1rem; }
.fcf .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.fcf .text-base { font-size: 1rem; line-height: 1.5rem; }
.fcf .text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.fcf .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.fcf .text-2xl { font-size: 1.5rem; line-height: 2rem; }
.fcf .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.fcf .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.fcf .text-5xl { font-size: 3rem; line-height: 1; }
.fcf .text-7xl { font-size: 4.5rem; line-height: 1; }
.fcf .font-medium { font-weight: 500; }
.fcf .font-semibold { font-weight: 600; }
.fcf .font-bold { font-weight: 700; }
.fcf .font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.fcf .uppercase { text-transform: uppercase; }
.fcf .capitalize { text-transform: capitalize; }
.fcf .italic { font-style: italic; }
.fcf .text-center { text-align: center; }
.fcf .text-left { text-align: left; }
.fcf .text-right { text-align: right; }
.fcf .leading-tight { line-height: 1.25; }
.fcf .leading-snug { line-height: 1.375; }
.fcf .leading-relaxed { line-height: 1.625; }
.fcf .leading-\[1\.05\] { line-height: 1.05; }
.fcf .tracking-tight { letter-spacing: -0.025em; }
.fcf .tracking-wide { letter-spacing: 0.025em; }
.fcf .tracking-wider { letter-spacing: 0.05em; }
.fcf .tracking-widest { letter-spacing: 0.1em; }
.fcf .tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.fcf .tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.fcf .list-disc { list-style: disc; }

/* ---- colors: text ---- */
.fcf .text-foreground { color: var(--foreground); }
.fcf .text-foreground\/85 { color: rgba(var(--foreground-rgb), 0.85); }
.fcf .text-foreground\/80 { color: rgba(var(--foreground-rgb), 0.8); }
.fcf .text-foreground\/70 { color: rgba(var(--foreground-rgb), 0.7); }
.fcf .text-foreground\/60 { color: rgba(var(--foreground-rgb), 0.6); }
.fcf .text-background { color: var(--background); }
.fcf .text-background\/80 { color: rgba(var(--background-rgb), 0.8); }
.fcf .text-background\/70 { color: rgba(var(--background-rgb), 0.7); }
.fcf .text-background\/60 { color: rgba(var(--background-rgb), 0.6); }
.fcf .text-primary { color: var(--primary); }
.fcf .text-primary-foreground { color: var(--primary-foreground); }
.fcf .text-primary-foreground\/90 { color: rgba(var(--primary-foreground-rgb), 0.9); }
.fcf .text-secondary { color: var(--secondary); }
.fcf .text-secondary-foreground { color: var(--secondary-foreground); }
.fcf .text-muted-foreground { color: var(--muted-foreground); }
.fcf .text-muted-foreground\/80 { color: rgba(var(--muted-foreground-rgb), 0.8); }
.fcf .text-whatsapp-foreground { color: var(--whatsapp-foreground); }

/* ---- colors: background ---- */
.fcf .bg-background { background-color: var(--background); }
.fcf .bg-background\/10 { background-color: rgba(var(--background-rgb), 0.1); }
.fcf .bg-card { background-color: var(--card); }
.fcf .bg-foreground { background-color: var(--foreground); }
.fcf .bg-muted { background-color: var(--muted); }
.fcf .bg-muted\/40 { background-color: rgba(var(--muted-rgb), 0.4); }
.fcf .bg-muted\/60 { background-color: rgba(var(--muted-rgb), 0.6); }
.fcf .bg-primary { background-color: var(--primary); }
.fcf .bg-primary-foreground { background-color: var(--primary-foreground); }
.fcf .bg-primary\/10 { background-color: rgba(var(--primary-rgb), 0.1); }
.fcf .bg-primary\/80 { background-color: rgba(var(--primary-rgb), 0.8); }
.fcf .bg-secondary { background-color: var(--secondary); }
.fcf .bg-whatsapp { background-color: var(--whatsapp); }
.fcf .bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }

/* ---- borders ---- */
.fcf .border { border-width: 1px; border-style: solid; border-color: var(--border); }
.fcf .border-0 { border-width: 0; }
.fcf .border-2 { border-width: 2px; border-style: solid; border-color: var(--border); }
.fcf .border-b { border-bottom-width: 1px; border-bottom-style: solid; border-color: var(--border); }
.fcf .border-t { border-top-width: 1px; border-top-style: solid; border-color: var(--border); }
.fcf .border-l-2 { border-left-width: 2px; border-left-style: solid; border-color: var(--border); }
.fcf .border-border { border-color: var(--border); }
.fcf .border-input { border-color: var(--input); }
.fcf .border-primary { border-color: var(--primary); }
.fcf .border-primary\/30 { border-color: rgba(var(--primary-rgb), 0.3); }
.fcf .border-background\/10 { border-color: rgba(var(--background-rgb), 0.1); }
.fcf .border-primary-foreground\/40 { border-color: rgba(var(--primary-foreground-rgb), 0.4); }
.fcf .border-primary-foreground\/50 { border-color: rgba(var(--primary-foreground-rgb), 0.5); }

/* ---- radius ---- */
.fcf .rounded-md { border-radius: var(--radius-md); }
.fcf .rounded-lg { border-radius: var(--radius-lg); }
.fcf .rounded-xl { border-radius: var(--radius-xl); }
.fcf .rounded-2xl { border-radius: var(--radius-2xl); }
.fcf .rounded-3xl { border-radius: var(--radius-3xl); }
.fcf .rounded-full { border-radius: 9999px; }

/* ---- effects ---- */
.fcf .shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.fcf .shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.fcf .shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.fcf .shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.fcf .shadow-\[var\(--shadow-warm\)\] { box-shadow: var(--shadow-warm); }
.fcf .opacity-0 { opacity: 0; }
.fcf .opacity-40 { opacity: 0.4; }
.fcf .opacity-60 { opacity: 0.6; }
.fcf .opacity-80 { opacity: 0.8; }
.fcf .opacity-90 { opacity: 0.9; }
.fcf .backdrop-blur { backdrop-filter: blur(8px); }
.fcf .\[filter\:contrast\(1\.05\)_saturate\(1\.1\)\] { filter: contrast(1.05) saturate(1.1); }

/* ---- visibility / overflow / object ---- */
.fcf .invisible { visibility: hidden; }
.fcf .overflow-hidden { overflow: hidden; }
.fcf .overflow-y-auto { overflow-y: auto; }
.fcf .object-cover { object-fit: cover; }
.fcf .aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.fcf .pointer-events-none { pointer-events: none; }
.fcf .cursor-pointer { cursor: pointer; }
.fcf .resize-none { resize: none; }
.fcf .outline-none { outline: 2px solid transparent; outline-offset: 2px; }

/* ---- transition / transform ---- */
.fcf .transition { transition: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter 0.15s cubic-bezier(0.4,0,0.2,1); transition-property: all; transition-duration: 0.15s; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.fcf .transition-colors { transition-property: color, background-color, border-color, fill, stroke; transition-duration: 0.15s; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.fcf .rotate-180 { transform: rotate(180deg); }
.fcf .-translate-x-1\/2 { transform: translateX(-50%); }

/* ---- focus / disabled / hover (non-group) ---- */
.fcf .focus\:border-primary:focus { border-color: var(--primary); }
.fcf .focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--ring-color, var(--ring)); }
.fcf .focus\:ring-primary\/20:focus { --ring-color: rgba(var(--primary-rgb), 0.2); }
.fcf .disabled\:opacity-40:disabled { opacity: 0.4; }

.fcf .hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.fcf .hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.fcf .hover\:opacity-90:hover { opacity: 0.9; }
.fcf .hover\:opacity-95:hover { opacity: 0.95; }
.fcf .hover\:opacity-100:hover { opacity: 1; }
.fcf .hover\:bg-muted:hover { background-color: var(--muted); }
.fcf .hover\:bg-accent:hover { background-color: var(--accent); }
.fcf .hover\:bg-primary:hover { background-color: var(--primary); }
.fcf .hover\:bg-primary-glow:hover { background-color: var(--primary-glow); }
.fcf .hover\:bg-primary\/90:hover { background-color: rgba(var(--primary-rgb), 0.9); }
.fcf .hover\:bg-background\/90:hover { background-color: rgba(var(--background-rgb), 0.9); }
.fcf .hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.fcf .hover\:border-primary\/40:hover { border-color: rgba(var(--primary-rgb), 0.4); }
.fcf .hover\:text-primary:hover { color: var(--primary); }
.fcf .hover\:text-background:hover { color: var(--background); }
.fcf .hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.fcf .hover\:shadow-\[var\(--shadow-warm\)\]:hover { box-shadow: var(--shadow-warm); }

/* ---- group hover / open ---- */
.fcf .group:hover .group-hover\:visible { visibility: visible; }
.fcf .group:hover .group-hover\:opacity-100 { opacity: 1; }
.fcf .group:hover .group-hover\:bg-primary { background-color: var(--primary); }
.fcf .group:hover .group-hover\:text-primary-foreground { color: var(--primary-foreground); }
.fcf .group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.fcf details[open] .group-open\:rotate-45 { transform: rotate(45deg); }
.fcf .\[\&_summary\:\:-webkit-details-marker\]\:hidden summary::-webkit-details-marker { display: none; }

/* ============================ RESPONSIVE ============================ */
@media (min-width: 640px) {
  .fcf .sm\:inline-flex { display: inline-flex; }
  .fcf .sm\:flex-row { flex-direction: row; }
  .fcf .sm\:justify-between { justify-content: space-between; }
  .fcf .sm\:justify-center { justify-content: center; }
  .fcf .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fcf .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fcf .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fcf .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .fcf .sm\:col-span-3 { grid-column: span 3 / span 3; }
}
@media (min-width: 768px) {
  .fcf .md\:block { display: block; }
  .fcf .md\:flex { display: flex; }
  .fcf .md\:grid { display: grid; }
  .fcf .md\:inline-flex { display: inline-flex; }
  .fcf .md\:flex-row { flex-direction: row; }
  .fcf .md\:items-center { align-items: center; }
  .fcf .md\:items-start { align-items: flex-start; }
  .fcf .md\:justify-end { justify-content: flex-end; }
  .fcf .md\:text-left { text-align: left; }
  .fcf .md\:p-10 { padding: 2.5rem; }
  .fcf .md\:p-12 { padding: 3rem; }
  .fcf .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fcf .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fcf .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fcf .md\:grid-cols-\[1\.2fr_1fr\] { grid-template-columns: 1.2fr 1fr; }
  .fcf .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .fcf .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .fcf .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .fcf .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .fcf .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
}
@media (min-width: 1024px) {
  .fcf .lg\:flex { display: flex; }
  .fcf .lg\:hidden { display: none; }
  .fcf .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fcf .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fcf .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .fcf .lg\:grid-cols-\[1\.1fr_1fr\] { grid-template-columns: 1.1fr 1fr; }
  .fcf .lg\:grid-cols-\[1\.6fr_1fr\] { grid-template-columns: 1.6fr 1fr; }
  .fcf .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .fcf .lg\:self-start { align-self: flex-start; }
  .fcf .lg\:sticky { position: sticky; }
  .fcf .lg\:top-28 { top: 7rem; }
}

/* --- Rich-text helpers for Elementor WYSIWYG content (.fcf-rte) and legal/prose pages (.fcf-prose) --- */
.fcf .fcf-rte > p + p{margin-top:1rem;}
.fcf .fcf-rte ul,.fcf .fcf-rte ol{margin-top:1rem;padding-left:1.5rem;}
.fcf .fcf-rte ul{list-style:disc;}
.fcf .fcf-rte ol{list-style:decimal;}
.fcf .fcf-rte li + li{margin-top:.35rem;}
.fcf .fcf-rte a{color:var(--primary);text-decoration:underline;}
.fcf .fcf-prose{max-width:48rem;margin-left:auto;margin-right:auto;color:var(--muted-foreground);line-height:1.75;}
.fcf .fcf-prose h2{margin-top:2.5rem;font-size:1.5rem;line-height:2rem;font-weight:700;color:var(--foreground);}
.fcf .fcf-prose h3{margin-top:2rem;font-size:1.25rem;line-height:1.75rem;font-weight:700;color:var(--foreground);}
.fcf .fcf-prose p{margin-top:1rem;}
.fcf .fcf-prose ul,.fcf .fcf-prose ol{margin-top:1rem;padding-left:1.5rem;}
.fcf .fcf-prose ul{list-style:disc;}
.fcf .fcf-prose ol{list-style:decimal;}
.fcf .fcf-prose li + li{margin-top:.4rem;}
.fcf .fcf-prose a{color:var(--primary);text-decoration:underline;}
.fcf .fcf-prose strong{color:var(--foreground);font-weight:700;}
