:root {
    --gold: #D4AF37;
    --dark: #121826;
    --jade: #E8E6E1;
    --mystic-dark: #121826;
    --mystic-dark-alt: #1A202C;
    --mystic-gold: #D4AF37;
    --mystic-gold-dim: rgba(212,175,55,0.15);
    --mystic-blue: #2A5F8A;
    --mystic-red: #9B2226;
    --mystic-jade: #E8E6E1;
    --mystic-jade-70: rgba(232,230,225,0.7);
    --mystic-jade-50: rgba(232,230,225,0.5);
    --mystic-light: #F8F5F0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--dark);
    color: var(--jade);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
input, button { font: inherit; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px rgba(212,175,55,0.3); }
    50% { box-shadow: 0 0 30px rgba(212,175,55,0.6); }
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGold {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: floatSlow 8s ease-in-out infinite; }
.animate-glow { animation: glow 3s ease-in-out infinite; }
.animate-fade-in { animation: fadeIn 0.8s ease-out forwards; }
.animate-spin-slow { animation: spin 30s linear infinite; }
.animate-bounce { animation: bounce 1s infinite; }
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-animate.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}
.cloud-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='cloud' width='400' height='400' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 200 Q 100 150 200 200 T 400 200' fill='none' stroke='rgba(212,175,55,0.05)' stroke-width='2'/%3E%3Cpath d='M0 250 Q 100 200 200 250 T 400 250' fill='none' stroke='rgba(212,175,55,0.03)' stroke-width='2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23cloud)'/%3E%3C/svg%3E");
}
.text-shadow-gold {
    text-shadow: 0 0 10px rgba(212,175,55,0.5);
}
.reel-hover {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.reel-hover:hover {
    transform: translateY(-8px);
}
.bg-gradient-card {
    background: linear-gradient(to top, #121826 0%, rgba(18,24,38,0.8) 50%, transparent 100%);
}
.bg-mystic-gradient {
    background: linear-gradient(180deg, #121826 0%, #1A202C 100%);
}
.scroll-hide::-webkit-scrollbar { display: none; }
.scroll-hide { -ms-overflow-style: none; scrollbar-width: none; }
.tool-card {
    position: relative;
    overflow: hidden;
}
.tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(212,175,55,0.4) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}
.tool-card:hover::before {
    opacity: 1;
}
.tools-scroll > * {
    scroll-snap-align: start;
}
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}
.stagger-children.animate-fade-in > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-fade-in > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-fade-in > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-fade-in > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-fade-in > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-fade-in > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.tab-active {
    color: #D4AF37;
    border-bottom: 2px solid #D4AF37;
}
#quote-carousel .fade-out { opacity: 0; }
#quote-carousel .fade-in  { opacity: 1; }
.hero-search-wrapper .pagefind-ui { width: 100%; }
.hero-search-wrapper .pagefind-ui form { position: relative; }
.hero-search-wrapper .pagefind-ui .pagefind-ui__search-input {
    height: 52px !important;
    font-size: 15px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(212,175,55,0.3) !important;
    background: rgba(18,24,38,0.6) !important;
    backdrop-filter: blur(8px) !important;
    color: #E8E6E1 !important;
    padding: 0 48px 0 50px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    transition: border-color 0.25s, box-shadow 0.25s !important;
    width: 100% !important;
    box-shadow: none !important;
    outline: none !important;
}
.hero-search-wrapper .pagefind-ui .pagefind-ui__search-input::placeholder {
    color: rgba(232,230,225,0.4) !important;
}
.hero-search-wrapper .pagefind-ui .pagefind-ui__search-input:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15) !important;
}
.hero-search-wrapper .pagefind-ui .pagefind-ui__search-clear,
.hero-search-wrapper .pagefind-ui button[type="submit"] {
    display: none !important;
}
.hero-search-wrapper .pagefind-ui .pagefind-ui__results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #1A202C;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.15);
    max-height: 420px;
    overflow-y: auto;
    z-index: 100;
    padding: 0;
}
.hero-search-wrapper .pagefind-ui .pagefind-ui__results::-webkit-scrollbar { width: 5px; }
.hero-search-wrapper .pagefind-ui .pagefind-ui__results::-webkit-scrollbar-track { background: transparent; }
.hero-search-wrapper .pagefind-ui .pagefind-ui__results::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 3px; }
.hero-search-wrapper .pagefind-ui .pagefind-ui__result {
    padding: 14px 20px !important;
    border-bottom: 1px solid rgba(212,175,55,0.08) !important;
    transition: background 0.2s !important;
}
.hero-search-wrapper .pagefind-ui .pagefind-ui__result:last-child { border-bottom: none !important; }
.hero-search-wrapper .pagefind-ui .pagefind-ui__result:hover { background: rgba(212,175,55,0.05) !important; }
.hero-search-wrapper .pagefind-ui .pagefind-ui__result-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #D4AF37 !important;
    margin-bottom: 3px !important;
}
.hero-search-wrapper .pagefind-ui .pagefind-ui__result-excerpt {
    font-size: 13px !important;
    color: rgba(232,230,225,0.6) !important;
    line-height: 1.5 !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    max-height: none !important;
}
.hero-search-wrapper .pagefind-ui .pagefind-ui__result-link {
    text-decoration: none !important;
    color: inherit !important;
}
.hero-search-wrapper .pagefind-ui .pagefind-ui__result { overflow: visible !important; max-height: none !important; }
.hero-search-wrapper .pagefind-ui .pagefind-ui__result-inner { overflow: visible !important; max-height: none !important; }
.hero-search-wrapper .pagefind-ui .pagefind-ui__message {
    padding: 24px 20px !important;
    text-align: center;
    color: rgba(232,230,225,0.5) !important;
    font-size: 13px !important;
    border: none !important;
}
.hero-search-wrapper .pagefind-ui mark {
    background: rgba(212,175,55,0.25) !important;
    color: #D4AF37 !important;
    padding: 0 2px !important;
    border-radius: 2px !important;
}
.hero-search-wrapper::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(18,24,38,0.5);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.hero-search-wrapper.has-results::after {
    opacity: 1;
    pointer-events: auto;
}
#mobileMenu {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.container { width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.block { display: block; }
.hidden { display: none; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.shrink-0 { flex-shrink: 0; }
.top-0 { top: 0; }
.top-1\/2 { top: 50%; }
.top-1\/4 { top: 25%; }
.top-full { top: 100%; }
.right-0 { right: 0; }
.right-10 { right: 2.5rem; }
.bottom-0 { bottom: 0; }
.bottom-10 { bottom: 2.5rem; }
.bottom-20 { bottom: 5rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.left-5 { left: 1.25rem; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-40 { width: 10rem; }
.w-px { width: 1px; }
.h-full { height: 100%; }
.h-2\/3 { height: 66.666667%; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-80 { height: 20rem; }
.min-h-screen { min-height: 100vh; }
.max-w-sm { max-width: 24rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.min-w-\[220px\] { min-width: 220px; }
.p-3 { padding: 0.75rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pb-0\.5 { padding-bottom: 0.125rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.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; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-serif { font-family: 'Noto Serif SC', 'Georgia', serif; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.whitespace-nowrap { white-space: nowrap; }
.text-white { color: #fff; }
.text-mystic-dark { color: #121826; }
.text-mystic-gold { color: #D4AF37; }
.text-mystic-jade { color: #E8E6E1; }
.text-mystic-jade\/40 { color: rgba(232,230,225,0.4); }
.text-mystic-jade\/50 { color: rgba(232,230,225,0.5); }
.text-mystic-jade\/60 { color: rgba(232,230,225,0.6); }
.text-mystic-jade\/70 { color: rgba(232,230,225,0.7); }
.text-mystic-jade\/80 { color: rgba(232,230,225,0.8); }
.bg-mystic-dark { background-color: #121826; }
.bg-mystic-dark\/30 { background-color: rgba(18,24,38,0.3); }
.bg-mystic-dark\/40 { background-color: rgba(18,24,38,0.4); }
.bg-mystic-dark\/50 { background-color: rgba(18,24,38,0.5); }
.bg-mystic-dark\/80 { background-color: rgba(18,24,38,0.8); }
.bg-mystic-dark\/90 { background-color: rgba(18,24,38,0.9); }
.bg-mystic-dark\/95 { background-color: rgba(18,24,38,0.95); }
.bg-mystic-dark-alt { background-color: #1A202C; }
.bg-mystic-dark-alt\/50 { background-color: rgba(26,32,44,0.5); }
.bg-mystic-gold { background-color: #D4AF37; }
.bg-mystic-gold\/5 { background-color: rgba(212,175,55,0.05); }
.bg-mystic-gold\/10 { background-color: rgba(212,175,55,0.1); }
.bg-mystic-gold\/20 { background-color: rgba(212,175,55,0.2); }
.border-mystic-gold { border-color: #D4AF37; }
.border-mystic-gold\/10 { border-color: rgba(212,175,55,0.1); }
.border-mystic-gold\/20 { border-color: rgba(212,175,55,0.2); }
.border-mystic-gold\/30 { border-color: rgba(212,175,55,0.3); }
.border-mystic-gold\/40 { border-color: rgba(212,175,55,0.4); }
.from-mystic-dark { --tw-gradient-from: #121826; }
.from-transparent { --tw-gradient-from: transparent; }
.to-transparent { --tw-gradient-to: transparent; }
.via-mystic-gold\/20 { --tw-gradient-via: rgba(212,175,55,0.2); }
.via-mystic-blue\/30 { --tw-gradient-via: rgba(42,95,138,0.3); }
.placeholder-mystic-jade\/40::placeholder { color: rgba(232,230,225,0.4); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-y { border-top-width: 1px; border-top-style: solid; border-bottom-width: 1px; border-bottom-style: solid; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-full { border-radius: 9999px; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.opacity-0 { opacity: 0; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.blur-3xl { filter: blur(64px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)); }
.translate-x-full { --tw-translate-x: 100%; transform: translateX(100%); }
.-translate-y-1\/2 { --tw-translate-y: -50%; transform: translateY(-50%); }
.-translate-x-1\/2 { --tw-translate-x: -50%; transform: translateX(-50%); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-700 { transition-duration: 700ms; }
.hover\:bg-mystic-gold:hover { background-color: #D4AF37; }
.hover\:bg-mystic-gold\/5:hover { background-color: rgba(212,175,55,0.05); }
.hover\:bg-mystic-gold\/10:hover { background-color: rgba(212,175,55,0.1); }
.hover\:bg-mystic-gold\/20:hover { background-color: rgba(212,175,55,0.2); }
.hover\:bg-mystic-gold\/90:hover { background-color: rgba(212,175,55,0.9); }
.hover\:text-mystic-gold:hover { color: #D4AF37; }
.hover\:gap-2:hover { gap: 0.5rem; }
.hover\:gap-3:hover { gap: 0.75rem; }
.focus\:border-mystic-gold:focus { border-color: #D4AF37; }
.focus\:outline-none:focus { outline: none; }
.group {  }
.group-hover\:opacity-100:hover { opacity: 1; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:visible { visibility: visible; }
.group:hover .group-hover\:text-mystic-gold { color: #D4AF37; }
.group:hover .group-hover\:bg-mystic-gold\/10 { background-color: rgba(212,175,55,0.1); }
.group:hover .group-hover\:bg-mystic-gold\/20 { background-color: rgba(212,175,55,0.2); }
.group:hover .group-hover\:gap-3 { gap: 0.75rem; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.invisible { visibility: hidden; }
.visible { visibility: visible; }
.object-cover { object-fit: cover; }
.pointer-events-none { pointer-events: none; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}
@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:items-start { align-items: flex-start; }
    .md\:mt-0 { margin-top: 0; }
    .md\:order-1 { order: 1; }
    .md\:order-2 { order: 2; }
    .md\:text-right { text-align: right; }
    .md\:w-1\/2 { width: 50%; }
}
@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:h-56 { height: 14rem; }
    .lg\:w-56 { width: 14rem; }
    .lg\:hidden { display: none; }
    .lg\:right-20 { right: 5rem; }
    .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}
@media (min-width: 1280px) {
    .xl\:flex { display: flex; }
    .xl\:hidden { display: none; }
    .xl\:inline-flex { display: inline-flex; }
}