/* COLLECTIVE. Design System
   Based on brand guidelines
   ================================ */

:root {
  /* COLLECTIVE. Brand Colors */
  --black: #000000;
  --white: #FFFFFF;
  --grey: #EBEBE9;
  --lime: #E5F608;           /* Disruptive Lime - primary accent */
  --lime-60: rgba(229, 246, 8, 0.6);
  --lime-30: rgba(229, 246, 8, 0.3);
  --lime-10: rgba(229, 246, 8, 0.1);
  --lilac: #C5B6F1;          /* Lively Lilac - secondary accent */
  --lilac-60: rgba(197, 182, 241, 0.6);
  --lilac-30: rgba(197, 182, 241, 0.3);
  --lilac-10: rgba(197, 182, 241, 0.1);

  /* UI Colors */
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 255, 255, 0.15);

  /* Borders & Radius */
  --card-radius: 20px;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--lime) 0%, var(--lilac) 100%);
  --gradient-lime: linear-gradient(135deg, var(--lime) 0%, #c4d406 100%);
  --gradient-lilac: linear-gradient(135deg, var(--lilac) 0%, #9b87e0 100%);

  /* Spacing - Named */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Spacing - Numeric (for page templates) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  /* Surfaces */
  --surface: rgba(255, 255, 255, 0.03);
  --surface-elevated: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);

  /* Radius aliases */
  --radius-base: 12px;
  --radius-card: 20px;

  /* Typography */
  --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;

  /* Typography aliases (for page templates) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 100px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent horizontal scroll/swipe gestures */
  overscroll-behavior-x: none;
  /* Allow vertical scrolling only */
  touch-action: pan-y pinch-zoom;
}

main {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Global link colours */
a {
  color: var(--lilac);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:visited {
  color: var(--lilac);
}

a:hover {
  color: var(--lime);
}

/* Animated noise background */
.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.02;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Gradient orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  pointer-events: none;
  animation: float 25s ease-in-out infinite;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: var(--lime);
  top: -300px;
  right: -200px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--lilac);
  bottom: -150px;
  left: -150px;
  animation-delay: -12s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--lime);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(40px, -40px) rotate(5deg); }
  50% { transform: translate(-30px, 30px) rotate(-5deg); }
  75% { transform: translate(30px, 40px) rotate(3deg); }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
  padding: var(--space-4) var(--space-5);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: none;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width, padding, border-radius;
}

.nav.scrolled {
  top: 12px;
  width: auto;
  max-width: calc(100% - 32px);
  padding: var(--space-2) var(--space-3);
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: var(--space-4);
}

.nav.scrolled .nav-container {
  gap: var(--space-3);
}

.nav__logo,
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img,
.nav-logo img {
  height: 28px;
  width: auto;
  transition: height 0.3s ease;
}

.nav.scrolled .nav-logo img {
  height: 22px;
}

.nav__links,
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
  transition: gap 0.3s ease;
}

.nav.scrolled .nav-links {
  gap: var(--space-3);
}

.nav__link,
.nav-link {
  color: var(--lilac);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
  padding: var(--space-1) 0;
}

.nav.scrolled .nav-link {
  font-size: 0.8rem;
}

.nav__link::after,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: var(--transition-smooth);
}

.nav__link:hover,
.nav-link:hover {
  color: var(--lime);
}

.nav__link:hover::after,
.nav-link:hover::after {
  width: 100%;
}

.nav__link--active,
.nav-link.active {
  color: var(--lime);
}

.nav__link--active::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--lime);
  color: var(--black);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav.scrolled .nav-cta {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.nav-cta:hover {
  background: var(--white);
  transform: scale(1.02);
}

.nav-cta::after {
  display: none;
}

@media (max-width: 900px) {
  .nav-cta {
    display: none;
  }
}

/* Mobile menu */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__toggle svg {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .nav {
    padding: var(--space-3) var(--space-4);
  }

  .nav.scrolled {
    top: 8px;
    left: 8px;
    right: 8px;
    transform: none;
    width: auto;
    max-width: none;
    padding: var(--space-2) var(--space-3);
  }

  .nav-container {
    gap: var(--space-2);
  }

  .nav-links {
    gap: var(--space-3);
  }

  .nav.scrolled .nav-links {
    gap: var(--space-2);
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .nav.scrolled .nav-link {
    font-size: 0.75rem;
  }

  .nav__toggle {
    display: block;
  }

  /* Fix mobile nav - use correct class names */
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-actions {
    gap: var(--space-2);
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1600px;
}

/* Sections */
.section {
  padding: var(--space-4xl) 0;
}

.section--hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
}

.section--dark {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__title {
  font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.section__subtitle {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(var(--font-size-4xl), 10vw, var(--font-size-6xl)); }
h2 { font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl)); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

.text-highlight {
  color: var(--lime);
}

.text-highlight-lilac {
  color: var(--lilac);
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  /* Safari fixes */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

/* Ensure link buttons override default link colors */
a.btn,
a.btn:link,
a.btn:visited {
  text-decoration: none;
}

.btn--primary,
.btn-primary,
a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
button.btn-primary {
  background: var(--lime);
  color: var(--black) !important;
}

.btn--primary:hover,
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--lime-30);
  color: var(--black) !important;
}

.btn--secondary,
.btn-secondary,
a.btn-secondary,
a.btn-secondary:link,
a.btn-secondary:visited {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
}

.btn--secondary:hover,
.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--lime);
  color: var(--lime);
}

.btn--outline {
  background: transparent;
  color: var(--lime);
  border: 1px solid var(--lime);
}

.btn--outline:hover {
  background: var(--lime);
  color: var(--black);
}

.btn--small {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-sm);
}

.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--font-size-lg);
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card__content {
  padding: var(--space-xl);
}

.card__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--lime);
  color: var(--black);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--lilac {
  background: var(--lilac);
}

.badge--grey {
  background: var(--grey);
}

.badge--outline {
  background: transparent;
  border: 1px solid var(--lime);
  color: var(--lime);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Loading states */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl);
  color: var(--text-secondary);
}

.loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: var(--space-md);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Empty state */
.empty {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--text-muted);
}

.empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  opacity: 0.5;
}

/* Footer - REMOVED OLD BEM STYLES - using hyphenated classes only */

/* Card aliases (hyphenated) for page templates */
.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: var(--space-lg);
}

.card-meta {
  font-size: var(--text-sm);
  color: var(--lime);
  margin-bottom: var(--space-2);
}

.card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.card-description {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-hover {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-hover:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

/* Footer element styles - matching homepage */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem;
}

/* Footer content grid */
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .logo-img,
.footer-brand .footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 300px;
  text-align: left;
}

/* Footer quick action buttons */
.footer-quick-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  transition: all 150ms ease;
  background: var(--lime);
  color: var(--black);
}

.footer-btn:hover {
  background: #c4d406;
}

.footer-btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.footer-btn--outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: transparent;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.built-by {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.built-by a {
  color: var(--lime);
  text-decoration: none;
}

.built-by a:hover {
  text-decoration: underline;
}

/* Footer links columns */
.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--lilac);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--lime);
}

/* Footer column variant (for non-ul structure) */
.footer-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: var(--lilac);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--lime);
}

/* Footer bottom section */
.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom .built-by a {
  color: var(--lime);
  text-decoration: none;
}

/* Social links - circular button style */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--black);
}

/* Footer responsive styles */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
    text-align: center;
  }

  .footer-quick-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom-left {
    align-items: center;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Footer Legal */
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
