/* ==========================================================================
   0. MATERIAL SYMBOLS OUTLINED (Self-contained WebFont Definition)
   ========================================================================== */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  src: url('../fonts/material-symbols-outlined.woff2') format('woff2'),
       url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v372/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsI.woff2) format('woff2');
  font-display: swap;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga';
}

/**
 * Wikimedia Small Projects (Wiki SP) - Landing Page Styles
 * Pure Vanilla CSS - Zero External Dependencies
 * Based on wikisp-landing/DESIGN.md
 */

/* ==========================================================================
   1. DESIGN TOKENS & CSS VARIABLES
   ========================================================================== */
:root {
  /* Wikimedia Triad & Brand Colors */
  --color-primary: #004d75;
  --color-primary-container: #006699;
  --color-on-primary: #ffffff;
  --color-primary-fixed: #cce5ff;
  --color-primary-fixed-dim: #90cdff;
  --color-on-primary-fixed: #001e31;
  --color-on-primary-fixed-variant: #004b72;
  --color-brand-blue-hover: #00527c;
  --color-brand-blue-subtle: #ebf4f9;

  --color-secondary: #0d6d2b;
  --color-secondary-container: #9ef7a4;
  --color-on-secondary: #ffffff;
  --color-secondary-fixed: #9ef7a4;
  --color-secondary-fixed-dim: #82da8a;
  --color-on-secondary-fixed: #002107;
  --color-on-secondary-fixed-variant: #00531d;
  --color-brand-green-subtle: #edf7f0;

  --color-tertiary: #970000;
  --color-tertiary-container: #bb2215;
  --color-on-tertiary: #ffffff;
  --color-tertiary-fixed: #ffdad4;
  --color-tertiary-fixed-dim: #ffb4a8;
  --color-on-tertiary-fixed: #410000;
  --color-on-tertiary-fixed-variant: #930000;
  --color-brand-red-subtle: #fdf2f2;

  /* Surfaces & Backgrounds */
  --color-background: #faf9fa;
  --color-surface: #faf9fa;
  --color-surface-base: #f8f9fa;
  --color-surface-card: #ffffff;
  --color-surface-bright: #faf9fa;
  --color-surface-dim: #dbdadb;
  --color-surface-variant: #e3e2e3;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-low: #f5f3f4;
  --color-surface-container: #efedee;
  --color-surface-container-high: #e9e8e9;
  --color-surface-container-highest: #e3e2e3;

  /* Text, Outlines & Borders */
  --color-on-surface: #1b1c1d;
  --color-on-surface-variant: #40484f;
  --color-outline: #707880;
  --color-outline-variant: #c0c7d0;
  --color-border-subtle: #eaecf0;
  --color-border-strong: #c8ccd1;

  /* Typography */
  --font-family-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --gutter: 1.5rem;
  --gutter-mobile: 1rem;

  /* Border Radii */
  --radius-sm: 0.25rem;
  --radius-DEFAULT: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-DEFAULT: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-header: 0 1px 8px rgba(0, 0, 0, 0.04);
  --shadow-footer: 0 -1px 8px rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--color-surface-base);
  color: var(--color-on-surface);
  font-family: var(--font-family-body);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-family-display);
}

p {
  margin: 0;
}

p + p {
  margin-top: 0 !important;
}

.footer-legal-text p {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-legal-text p + p {
  margin-top: 0.375rem !important;
}

.footer-partner-img {
  height: 2.7rem !important;
  width: auto !important;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* ==========================================================================
   3. LAYOUT & SIZING UTILITIES
   ========================================================================== */
.max-w-7xl { max-width: 80rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.w-auto { width: auto; }

.w-1\.5 { width: 0.375rem; }
.h-1\.5 { height: 0.375rem; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-9 { width: 2.25rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.w-72 { width: 18rem; }
.h-72 { height: 18rem; }
.w-80 { width: 20rem; }
.h-80 { height: 20rem; }
.w-96 { width: 24rem; }
.h-96 { height: 24rem; }
.h-48 { height: 12rem; }

/* Display & Flex */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.landing-header-nav { display: none; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

/* Gaps */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.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-12 { gap: 3rem; }
.gap-space-xs { gap: var(--space-xs); }
.gap-space-sm { gap: var(--space-sm); }
.gap-space-md { gap: var(--space-md); }
.gap-space-lg { gap: var(--space-lg); }
.gap-space-xl { gap: var(--space-xl); }
.gap-gutter { gap: var(--gutter); }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { inset: 0; }
.inset-8 { inset: 2rem; }
.-top-2 { top: -0.5rem; }
.-bottom-3 { bottom: -0.75rem; }
.-top-24 { top: -6rem; }
.left-6 { left: 1.5rem; }
.left-12 { left: 3rem; }
.right-10 { right: 2.5rem; }
.-right-4 { right: -1rem; }
.top-1\/2 { top: 50%; }
.top-4 { top: 1rem; }
.left-4 { left: 1rem; }
.z-50 { z-index: 50; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Padding & Margin */
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.p-2\.5 { padding: 0.625rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-space-lg { padding: var(--space-lg); }
.px-space-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-space-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.py-space-xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-space-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.pb-1 { padding-bottom: 0.25rem; }
.pb-space-lg { padding-bottom: var(--space-lg); }
.pt-16 { padding-top: 4rem; }
.pt-space-xs { padding-top: var(--space-xs); }
.pt-space-sm { padding-top: var(--space-sm); }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-space-lg { padding-top: var(--space-lg); }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-space-xl { margin-top: var(--space-xl); }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

/* ==========================================================================
   4. TYPOGRAPHY & TEXT STYLES
   ========================================================================== */
.font-display-hero, .text-display-hero {
  font-family: var(--font-family-display);
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .font-display-hero, .text-display-hero {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
  }
}

.font-headline-lg, .text-headline-lg {
  font-family: var(--font-family-display);
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .font-headline-lg, .text-headline-lg {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 0em;
  }
}

.font-headline-md, .text-headline-md {
  font-family: var(--font-family-display);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.font-headline-sm, .text-headline-sm {
  font-family: var(--font-family-display);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.font-metric-stat, .text-metric-stat {
  font-family: var(--font-family-display);
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
}

.font-body-lg, .text-body-lg {
  font-family: var(--font-family-body);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.font-body-md, .text-body-md {
  font-family: var(--font-family-body);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.font-body-sm, .text-body-sm {
  font-family: var(--font-family-body);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.font-label-md, .text-label-md {
  font-family: var(--font-family-body);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.font-label-sm, .text-label-sm {
  font-family: var(--font-family-body);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.text-\[11px\] { font-size: 11px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[24px\] { font-size: 24px; }
.text-\[26px\] { font-size: 26px; }
.text-\[28px\] { font-size: 28px; }
.text-\[30px\] { font-size: 30px; }
.text-\[32px\] { font-size: 32px; }
.text-\[48px\] { font-size: 48px; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tighter { letter-spacing: -0.05em; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-5 { line-height: 1.25rem; }
.leading-relaxed { line-height: 1.625; }
.underline { text-decoration: underline; }
.text-balance { text-wrap: balance; }

/* Colors */
.text-primary { color: var(--color-primary-container); }
.text-secondary { color: var(--color-secondary); }
.text-tertiary { color: var(--color-tertiary); }
.text-on-surface { color: var(--color-on-surface); }
.text-on-surface-variant { color: var(--color-on-surface-variant); }
.text-outline { color: var(--color-outline); }
.text-on-primary { color: var(--color-on-primary); }
.text-on-tertiary { color: var(--color-on-tertiary); }
.text-white { color: #ffffff; }

.bg-primary { background-color: var(--color-primary); }
.bg-primary-container { background-color: var(--color-primary-container); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-tertiary { background-color: var(--color-tertiary); }
.bg-surface-base { background-color: var(--color-surface-base); }
.bg-surface-card { background-color: var(--color-surface-card); }
.bg-surface-card\/90 { background-color: rgba(255, 255, 255, 0.92); }
.bg-surface-container-lowest { background-color: var(--color-surface-container-lowest); }
.bg-surface-container-low { background-color: var(--color-surface-container-low); }
.bg-surface-container { background-color: var(--color-surface-container); }
.bg-brand-blue-subtle { background-color: var(--color-brand-blue-subtle); }
.bg-brand-green-subtle { background-color: var(--color-brand-green-subtle); }
.bg-brand-red-subtle { background-color: var(--color-brand-red-subtle); }
.bg-white { background-color: #ffffff; }
.bg-\[\#229ED9\] { background-color: #229ed9; }

.border-0 { border-width: 0; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-primary { border-color: var(--color-primary-container); }

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-\[0_1px_8px_rgba\(0\,0\,0\,0\.04\)\] { box-shadow: var(--shadow-header); }
.shadow-\[0_1px_4px_rgba\(0\,0\,0\,0\.05\)\] { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); }
.shadow-\[0_-1px_8px_rgba\(0\,0\,0\,0\.03\)\] { box-shadow: var(--shadow-footer); }

.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }

/* Gradients */
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, rgba(235, 244, 249, 0.55), #ffffff 50%, var(--color-surface-base) 100%);
}
.from-brand-blue-subtle\/50 {
  --tw-gradient-from: rgba(235, 244, 249, 0.5);
}
.via-surface-card {
  --tw-gradient-via: #ffffff;
}
.to-surface-base {
  --tw-gradient-to: var(--color-surface-base);
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--color-brand-blue-subtle), #ffffff 50%, var(--color-brand-green-subtle));
}
.from-brand-blue-subtle {
  --tw-gradient-from: var(--color-brand-blue-subtle);
}
.from-brand-red-subtle {
  --tw-gradient-from: var(--color-brand-red-subtle);
}
.via-white {
  --tw-gradient-via: #ffffff;
}
.to-brand-green-subtle {
  --tw-gradient-to: var(--color-brand-green-subtle);
}
.to-brand-blue-subtle {
  --tw-gradient-to: var(--color-brand-blue-subtle);
}
.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--color-brand-blue-subtle), #ffffff, var(--color-brand-green-subtle));
}

/* Card 2 News banner gradient */
article:nth-child(2) .bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--color-brand-red-subtle), #ffffff 50%, var(--color-brand-blue-subtle));
}

/* Auras & Blurs */
.blur-3xl { filter: blur(64px); }
.blur-2xl { filter: blur(40px); }
.bg-primary\/5 { background-color: rgba(0, 102, 153, 0.05); }
.bg-secondary\/5 { background-color: rgba(13, 109, 43, 0.05); }

/* Transitions */
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-all { transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Interactive & Hover */
.hover\:bg-brand-blue-hover:hover { background-color: var(--color-brand-blue-hover); }
.hover\:bg-brand-blue-subtle:hover { background-color: var(--color-brand-blue-subtle); }
.hover\:bg-brand-green-subtle:hover { background-color: var(--color-brand-green-subtle); }
.hover\:bg-tertiary-container:hover { background-color: var(--color-tertiary-container); }
.hover\:bg-primary-container:hover { background-color: var(--color-primary-container); }
.hover\:bg-white:hover { background-color: #ffffff; }

.hover\:text-primary:hover { color: var(--color-primary-container); }
.hover\:text-brand-blue-hover:hover { color: var(--color-brand-blue-hover); }
.hover\:text-on-surface:hover { color: var(--color-on-surface); }
.hover\:text-on-primary:hover { color: var(--color-on-primary); }
.hover\:opacity-90:hover { opacity: 0.9; }

.hover\:shadow:hover { box-shadow: var(--shadow-DEFAULT); }
.hover\:shadow-md:hover { box-shadow: var(--shadow-md); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }

.hover\:-translate-y-1:hover { transform: translateY(-4px); }
.hover\:translate-x-1:hover { transform: translateX(4px); }
.hover\:translate-y-1:hover { transform: translateY(4px); }
.hover\:scale-105:hover { transform: scale(1.05); }

.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(4px); }
.group:hover .group-hover\:text-primary { color: var(--color-primary-container); }

/* Keyframe animations */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.92); }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

.-rotate-45 { transform: rotate(-45deg); }
::-webkit-scrollbar { display: none; }

/* ==========================================================================
   5. RESPONSIVE BREAKPOINTS (sm, md, lg)
   ========================================================================== */
@media (min-width: 640px) {
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:w-auto { width: auto; }
  .sm\:w-88 { width: 22rem; }
  .sm\:h-88 { height: 22rem; }
  .sm\:w-24 { width: 6rem; }
  .sm\:h-24 { height: 6rem; }
  .sm\:text-\[54px\] { font-size: 54px; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex !important; visibility: visible !important; opacity: 1 !important; }
  .landing-header-nav { display: flex !important; visibility: visible !important; opacity: 1 !important; }
  .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\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:text-left { text-align: left; }
}

@media (min-width: 1024px) {
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:p-12 { padding: 3rem; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
}


.shadow-\[0_1px_8px_rgba\(0\,0\,0\,0\.04\)\] { box-shadow: var(--shadow-header); }
.shadow-\[0_1px_4px_rgba\(0\,0\,0\,0\.05\)\] { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); }
.shadow-\[0_-1px_8px_rgba\(0\,0\,0\,0\.03\)\] { box-shadow: var(--shadow-footer); }
