/*
 * Static utility stylesheet — stand-in for a real Tailwind production build.
 *
 * This file exists because the theme previously loaded Tailwind's Play CDN
 * (cdn.tailwindcss.com) with no tailwind.config, which (a) is explicitly
 * unsupported for production by Tailwind Labs, (b) is render-blocking, and
 * (c) generated NO CSS at all for this theme's custom brand classes
 * (text-primary, bg-primary, text-accent, text-brandRed) since those color
 * names don't exist in Tailwind's default palette.
 *
 * This file hand-reproduces only the utility classes this theme's templates
 * currently use, INCLUDING the real brand color values from tailwind.config.js.
 * It is a correct, working fix — but unlike a real Tailwind build, it will
 * NOT automatically pick up new classes if templates change. See the header
 * comment in tailwind-src.css for the command to generate a complete,
 * automatically-purged production build once you have npm/registry access.
 */

/* ---------- Base ---------- */
*, ::before, ::after { box-sizing: border-box; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ---------- Brand colors (tailwind.config.js palette) ---------- */
.text-primary { color: #111318; }
.bg-primary { background-color: #111318; }
.text-secondary { color: #4d483e; }
.text-accent { color: #d2b784; }
.text-brandRed { color: #921a32; }
.hover\:text-brandRed:hover { color: #921a32; }
.focus\:text-brandRed:focus { color: #921a32; }
.bg-white { background-color: #ffffff; }
.focus\:bg-white:focus { background-color: #ffffff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }

/* Arbitrary hex values used directly in markup */
.bg-\[\#111318\] { background-color: #111318; }
.bg-\[\#921a32\] { background-color: #921a32; }
.hover\:bg-\[\#921a32\]:hover { background-color: #921a32; }
.bg-\[\#fdfcf7\] { background-color: #fdfcf7; }
.text-\[\#921a32\] { color: #921a32; }
.hover\:text-\[\#921a32\]:hover { color: #921a32; }
.text-\[\#fdfcf7\] { color: #fdfcf7; }
.text-\[10px\] { font-size: 10px; line-height: 1.4; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.ring-\[\#921a32\] { --tw-ring-color: #921a32; box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-\[\#921a32\]:focus { --tw-ring-color: #921a32; box-shadow: 0 0 0 2px var(--tw-ring-color); }
.border-\[\#921a32\]\/10 { border-color: rgba(146, 26, 50, 0.10); }
.border-\[\#921a32\]\/5 { border-color: rgba(146, 26, 50, 0.05); }
.z-\[100\] { z-index: 100; }
.focus\:z-\[100\]:focus { z-index: 100; }

/* ---------- Display ---------- */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* ---------- Flex / grid ---------- */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

/* ---------- Gap / space ---------- */
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }

/* ---------- Spacing ---------- */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.focus\:p-4:focus { padding: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.-ml-2 { margin-left: -0.5rem; }

/* ---------- Sizing ---------- */
.w-full { width: 100%; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.h-20 { height: 5rem; }
.h-64 { height: 16rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-md { max-width: 28rem; }
.object-cover { object-fit: cover; }

/* ---------- Position ---------- */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-2 { top: 0.5rem; }
.focus\:top-2:focus { top: 0.5rem; }
.top-20 { top: 5rem; }
.left-0 { left: 0; }
.left-2 { left: 0.5rem; }
.focus\:left-2:focus { left: 0.5rem; }
.focus\:absolute:focus { position: absolute; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }

/* ---------- Typography ---------- */
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* ---------- Borders / radius / shadow ---------- */
.border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.rounded-sm { border-radius: 0.125rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.focus\:shadow-md:focus { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }

/* ---------- Transitions / focus ---------- */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.ring-2 { --tw-ring-color: rgba(59, 130, 246, 0.5); box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-2:focus { --tw-ring-color: rgba(59, 130, 246, 0.5); box-shadow: 0 0 0 2px var(--tw-ring-color); }

/* ---------- Accessibility utilities ---------- */
.sr-only,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
.not-sr-only:focus,
.focus\:not-sr-only:focus {
	position: static;
	width: auto;
	height: auto;
	padding: 0;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

/* =========================================================
   Responsive variants (mobile-first: sm 640px / md 768px / lg 1024px)
   ========================================================= */
@media (min-width: 640px) {
	.sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
	.md\:flex { display: flex; }
	.md\:hidden { display: none; }
	.md\:inline { display: inline; }
	.md\:flex-row { flex-direction: row; }
	.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
	.md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
	.md\:text-8xl { font-size: 6rem; line-height: 1; }
	.md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
	.md\:text-left { text-align: left; }
}

@media (min-width: 1024px) {
	.lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
	.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ==========================================================================
   Utility classes added for the Header / Footer / Home / About / FAQs /
   Contact templates and the WooCommerce product card, extending the
   original hand-authored build above with the same "only what's actually
   used" approach. Regenerate a real purged build with the Tailwind CLI
   (see the note in functions.php) once you have npm registry access.
   ========================================================================== */

.\!bg-\[\#f3eedf\] { background-color: #f3eedf !important; }
.\!duration-300 { transition-duration: 300ms !important; }
.\!flex { display: flex !important; }
.\!font-bold { font-weight: 700 !important; }
.\!gap-2 { gap: 0.5rem !important; }
.\!items-center { align-items: center !important; }
.\!justify-center { justify-content: center !important; }
.\!py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.\!rounded-lg { border-radius: 0.5rem !important; }
.\!text-\[10px\] { color: 10px !important; }
.\!text-primary { color: #111318 !important; }
.\!tracking-wider { letter-spacing: 0.05em !important; }
.\!transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.\!uppercase { text-transform: uppercase !important; }
.-right-0\.5 { right: -0.125rem; }
.-rotate-45 { transform: rotate(-45deg); }
.-top-0\.5 { top: -0.125rem; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.bg-\[\#111318\] { background-color: #111318; }
.bg-\[\#111318\]\/90 { background-color: rgba(17, 19, 24, 0.9); }
.bg-\[\#1c1e24\] { background-color: #1c1e24; }
.bg-\[\#fdfcf7\] { background-color: #fdfcf7; }
.bg-accent { background-color: #d2b784; }
.bg-brandCream { background-color: #fdfcf7; }
.bg-brandCream\/30 { background-color: rgba(253, 252, 247, 0.3); }
.bg-brandGreen { background-color: #114232; }
.bg-brandGreen\/10 { background-color: rgba(17, 66, 50, 0.1); }
.bg-brandRed { background-color: #921a32; }
.bg-brandRed\/10 { background-color: rgba(146, 26, 50, 0.1); }
.bg-brandRed\/20 { background-color: rgba(146, 26, 50, 0.2); }
.bg-transparent { background-color: transparent; }
.border-\[\#e3dac9\] { border-color: #e3dac9; }
.border-accent\/20 { border-color: rgba(210, 183, 132, 0.2); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-brandCream { border-color: #fdfcf7; }
.border-brandGreen { border-color: #114232; }
.border-brandRed { border-color: #921a32; }
.border-brandRed\/10 { border-color: rgba(146, 26, 50, 0.1); }
.border-brandRed\/20 { border-color: rgba(146, 26, 50, 0.2); }
.border-brandRed\/30 { border-color: rgba(146, 26, 50, 0.3); }
.border-brandRed\/40 { border-color: rgba(146, 26, 50, 0.4); }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-800 { border-color: #1f2937; }
.border-transparent { border-color: transparent; }
.bottom-8 { bottom: 2rem; }
.col-span-1 { grid-column: span 1 / span 1; }
.cursor-pointer { cursor: pointer; }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07)) drop-shadow(0 2px 2px rgba(0,0,0,0.06)); }
.focus\:border-accent:focus { border-color: #d2b784; }
.focus\:ring-1:focus { box-shadow: var(--novelty-ring-shadow, 0 0 0 1px rgba(210,183,132,0.5)); }
.focus\:ring-accent:focus { --novelty-ring-shadow: 0 0 0 1px #d2b784; }
.font-light { font-weight: 300; }
.gap-1 { gap: 0.25rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-2 { gap: 0.5rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-10 { row-gap: 2.5rem; }
.group:hover .group-hover\:text-brandRed { color: #921a32; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-80 { height: 20rem; }
.h-\[350px\] { height: 350px; }
.h-\[500px\] { height: 500px; }
.hover\:\!bg-accent:hover { background-color: #d2b784 !important; }
.hover\:bg-\[\#f3eedf\]:hover { background-color: #f3eedf; }
.hover\:bg-accent:hover { background-color: #d2b784; }
.hover\:bg-brandCream\/10:hover { background-color: rgba(253, 252, 247, 0.1); }
.hover\:bg-brandGreen:hover { background-color: #114232; }
.hover\:bg-brandRed:hover { background-color: #921a32; }
.hover\:bg-emerald-800:hover { background-color: #065f46; }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:border-accent:hover { border-color: #d2b784; }
.hover\:border-brandGreen:hover { border-color: #114232; }
.hover\:border-brandRed:hover { border-color: #921a32; }
.hover\:text-white:hover { color: #ffffff; }
.inline-flex { display: inline-flex; }
.items-baseline { align-items: baseline; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.leading-8 { line-height: 2rem; }
.leading-tight { line-height: 1.25; }
.left-3 { left: 0.75rem; }
.left-8 { left: 2rem; }
@media (min-width: 1024px) { .lg\:col-span-5 { grid-column: span 5 / span 5; } }
@media (min-width: 1024px) { .lg\:col-span-6 { grid-column: span 6 / span 6; } }
@media (min-width: 1024px) { .lg\:col-span-7 { grid-column: span 7 / span 7; } }
@media (min-width: 1024px) { .lg\:flex { display: flex; } }
@media (min-width: 1024px) { .lg\:gap-12 { gap: 3rem; } }
@media (min-width: 1024px) { .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .lg\:items-center { align-items: center; } }
@media (min-width: 1024px) { .lg\:max-w-md { max-width: 28rem; } }
@media (min-width: 1024px) { .lg\:max-w-none { max-width: none; } }
@media (min-width: 1024px) { .lg\:mt-0 { margin-top: 0px; } }
@media (min-width: 1024px) { .lg\:mx-0 { margin-left: 0px; margin-right: 0px; } }
@media (min-width: 1024px) { .lg\:pb-32 { padding-bottom: 8rem; } }
@media (min-width: 1024px) { .lg\:pt-24 { padding-top: 6rem; } }
.lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
@media (min-width: 1024px) { .lg\:text-5xl { font-size: 3rem; line-height: 1; } }
@media (min-width: 1024px) { .lg\:text-left { text-align: left; } }
@media (min-width: 1024px) { .lg\:w-64 { width: 16rem; } }
.line-clamp-1 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.max-w-5xl { max-width: 64rem; }
.max-w-xl { max-width: 36rem; }
.max-w-xs { max-width: 20rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-5 { margin-bottom: 1.25rem; }
@media (min-width: 768px) { .md\:col-span-1 { grid-column: span 1 / span 1; } }
@media (min-width: 768px) { .md\:gap-8 { gap: 2rem; } }
@media (min-width: 768px) { .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 768px) { .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 768px) { .md\:max-w-2xl { max-width: 42rem; } }
@media (min-width: 768px) { .md\:mt-5 { margin-top: 1.25rem; } }
@media (min-width: 768px) { .md\:mx-auto { margin-left: auto; margin-right: auto; } }
@media (min-width: 768px) { .md\:p-8 { padding: 2rem; } }
@media (min-width: 768px) { .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; } }
@media (min-width: 768px) { .md\:text-6xl { font-size: 3.75rem; line-height: 1; } }
@media (min-width: 768px) { .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; } }
.ml-2 { margin-left: 0.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-6 { padding: 1.5rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-4 { padding-left: 1rem; }
.pr-10 { padding-right: 2.5rem; }
.pt-16 { padding-top: 4rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.right-3 { right: 0.75rem; }
.rotate-45 { transform: rotate(45deg); }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
@media (min-width: 640px) { .sm\:block { display: block; } }
@media (min-width: 640px) { .sm\:flex-row { flex-direction: row; } }
@media (min-width: 640px) { .sm\:gap-x-8 { column-gap: 2rem; } }
@media (min-width: 640px) { .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 640px) { .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 640px) { .sm\:hidden { display: none; } }
@media (min-width: 640px) { .sm\:max-w-lg { max-width: 32rem; } }
@media (min-width: 640px) { .sm\:max-w-xl { max-width: 36rem; } }
@media (min-width: 640px) { .sm\:mt-5 { margin-top: 1.25rem; } }
@media (min-width: 640px) { .sm\:mx-auto { margin-left: auto; margin-right: auto; } }
@media (min-width: 640px) { .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; } }
@media (min-width: 640px) { .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; } }
@media (min-width: 640px) { .sm\:text-5xl { font-size: 3rem; line-height: 1; } }
@media (min-width: 640px) { .sm\:text-base { font-size: 1rem; line-height: 1.5rem; } }
@media (min-width: 640px) { .sm\:text-center { text-align: center; } }
@media (min-width: 640px) { .sm\:w-auto { width: auto; } }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-brandCream { color: #fdfcf7; }
.text-brandGreen { color: #114232; }
.text-gray-500 { color: #6b7280; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-white { color: #ffffff; }
.top-1\/2 { top: 50%; }
.top-3 { top: 0.75rem; }
.transform { transform: var(--tw-transform, none); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-48 { width: 12rem; }
.w-auto { width: auto; }
@media (min-width: 1280px) { .xl\:gap-x-8 { column-gap: 2rem; } }
@media (min-width: 1280px) { .xl\:text-6xl { font-size: 3.75rem; line-height: 1; } }