/** Shopify CDN: Minification failed

Line 900:16 Unexpected "{"
Line 900:25 Expected ":"
Line 901:16 Unexpected "{"
Line 901:25 Expected ":"
Line 907:16 Unexpected "{"
Line 907:25 Expected ":"
Line 908:16 Unexpected "{"
Line 908:25 Expected ":"

**/
/* ================================================================
----------------------------------------------------------------
This file ensures all custom B/W/G, readability, and structural 
styles override the conflicting base.css settings.
================================================================
*/

/* === Variables & Sizing (Overrides) === */
:root {
  --max: 1140px; /* Overrides 1600px max width for content container */
  --gap: 24px;
  --gap-sm: 16px;
  --brand-action-dark: #222; 
  --color-text-dark: #111;
  --color-text-light: #fff;
  --color-bg-light: #fff;
  --color-bg-subtle: #f9f9f9;
}

body {
    /* Set global font and size for high readability (Overrides 16px) */
    font-family: 'IBM Plex Sans', sans-serif !important; 
    color: var(--color-text-dark);
    font-size: 1.125rem; /* 18px */
    line-height: 1.7; 
}

/* Headings now use IBM Plex Sans (Overrides Serif from base.css) */
h1, h2, h3 {
    font-family: 'IBM Plex Sans', sans-serif !important;
    font-weight: 700; 
}

/* Base Utility Classes */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gap-sm);
  /* The .page-width class will still be 1600px, but our content is limited to 1140px */
}

/* Full-width colored band wrapper and vertical spacing */
.section-band {
    width: 100%;
    padding: 60px 0; /* Vertical padding is on the full-width color band */
}

/* Hero section specifically needs 0 padding on the band */
.section-band.hero-band {
    padding: 0;
}

/* Reset font size for elements that shouldn't inherit the larger body font size */
.btn, .btn-link, footer p, .logo-grid {
    font-size: 1rem;
    line-height: 1.5;
}


/* === Links and Images (B/W/G Enforcement) === */

/* Force link color to dark grey (Overrides teal from base.css) */
a {
    color: var(--brand-action-dark) !important;
    text-decoration: none;
    transition: opacity .2s ease;
}
a:hover { opacity: 0.8; }

/* Enforce 0.5 Black Rule Border for all images */
img {
    border: 1px solid rgba(0,0,0,0.5) !important; 
}

/* === Scoped Homepage Styles (#forsch-home-forsch-homepage) === */

#forsch-home-forsch-homepage {
    display: flex;
    flex-direction: column;
    gap: 0; 
}

/* Content area that sits inside the section-band */
#forsch-home-forsch-homepage .forsch-section {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gap); /* Removed vertical padding here */
  max-width: 1600px;
  box-sizing: border-box;
}

/* Grid consistency: Auto-fit ensures items wrap gracefully */
#forsch-home-forsch-homepage .content-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 32px;
}
.hero-section-content {
    position: relative;
}
.hero-section-content img {
    width: 100%;
    height: clamp(280px, 45vw, 520px);
    object-fit: cover;
    display: block;
}
.hero-content {
    position: absolute;
    inset: auto 0 0 0; 
    padding: 24px;
    color: var(--color-text-light);
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}
.hero-content p {
  max-width: 600px;
  font-size: 1.25rem; 
  line-height: 1.6;
  margin-bottom: 24px;
}

#forsch-home-forsch-homepage .card {
  background: var(--color-bg-light);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
  min-height: 250px; 
}
#forsch-home-forsch-homepage .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15); 
}

#forsch-home-forsch-homepage .card img {
  height: auto;
  object-fit: cover;
  max-height: 200px;
}

#forsch-home-forsch-homepage .card h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 16px;
  margin-top: 20px;
}
#forsch-home-forsch-homepage .card p {
  font-size: 1.125rem; 
  line-height: 1.7; 
  color: var(--color-text-dark);
  margin: 0 16px 16px;
  flex-grow: 1; 
}

#forsch-home-forsch-homepage .card .btn-link {
  margin: auto 16px 16px; 
  color: var(--brand-action-dark); 
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

#forsch-home-forsch-homepage .image-text-layout {
    display: grid;
    gap: 40px;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}

/* === Responsive Adjustments (Mobile Last) === */

@media (max-width: 900px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    #forsch-home-forsch-homepage .image-text-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        position: static;
        padding: 24px;
        background: none; 
        color: var(--color-text-dark); /* Ensure text is dark on white background */
    }
    .hero-section-content img {
        height: 300px; 
    }
}
/* ===========================================================
   Forsch Section Containers — Homepage Card System (v1)
   =========================================================== */

/* Page field: uniform grey background */
body {
  background-color: #f2f2f2;
}

/* NOTE: 1/4 inch = 0.25in = 24px (CSS inches are 96px/inch) */
.fd-section {
  padding: 0.25in; /* 24px from page edge to white container */
}

/* Inner white card */
.fd-container {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  padding: 0.25in; /* 24px from container edge to text/content */
}

/* Images get a 1pt black rule (≈1.33px) + subtle rounding */
.fd-container img {
  border: 1pt solid var(--black);
  border-radius: 4px;
}

/* Hero stays full width, no card treatment */
.forsch-hero {
  background-color: var(--white);
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* === Forsch.Container System v1 (homepage) === */
:root {
  --fd-page-bg: #f5f5f5;
  --fd-card-bg: #fff;
  --fd-text: #111;
  --fd-shadow: 0 4px 16px rgba(0,0,0,.08);
  --fd-radius: 8px;
  --fd-gap: 24px;
  --fd-max: 1140px;
}

/* Page background */
body.template-index,
body.index,
body.home {
  background: var(--fd-page-bg);
  color: var(--fd-text);
}

/* Generic section + container */
.fd-section {
  padding: 24px; /* 1/4" feel on desktop */
}
.fd-container {
  max-width: var(--fd-max);
  margin-inline: auto;
  background: var(--fd-card-bg);
  border-radius: var(--fd-radius);
  box-shadow: var(--fd-shadow);
  padding: 24px; /* inner padding before text */
}

/* Full bleed variant (no card) */
.fd-section--fullbleed .fd-container {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}


/* LOGOS (full bleed, tight) */
.fd-logos {
  padding-block: 16px; /* tight vertical padding */
}
.fd-logos__wrap {
  max-width: var(--fd-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  align-items: center;
}
.fd-logos__wrap img {
  max-height: 44px;
  width: auto;
  height: auto;
  margin: 0 auto;
  display: block;
  background: #fff;
  border: 1px solid #111; /* 1pt rule */
  border-radius: 4px;
  padding: 8px;
}

/* ABOUT: image + text */
.fd-about {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--fd-gap);
  align-items: center;
}
.fd-headshot-box {
  max-width: 360px;
  margin: 0 auto;
  border: 1px solid #111; /* 1pt rule */
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.fd-headshot-box img {
  display: block;
  width: 100%;
  height: auto;
}

/* Features cards grid */
.fd-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--fd-gap);
}
.fd-card {
  background: #fff;
  border-radius: var(--fd-radius);
  box-shadow: var(--fd-shadow);
  border: 1px solid #eaeaea;
}
.fd-card__body { padding: 24px; }

/* CTA block inside container */
.fd-cta {
  text-align: center;
}
.fd-cta a.forsch-btn { margin-top: 8px; }

/* Mobile tweaks */
@media (max-width: 768px) {
  .fd-section { padding: 16px; }
  .fd-container { padding: 16px; }
  .fd-about { grid-template-columns: 1fr; }
  .fd-logos__wrap { gap: 16px; }
  .fd-logos__wrap img { max-height: 36px; }
}

/* 🧱 Forsch Core Container Lock */
.fd-container {
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  padding: 1.5rem 1.75rem;
}

.fd-section {
  background: #f5f5f5;
  padding: 1rem 0;
}
/* === About Section (Final, Clean System) === */
.forsch-about {
  background-color: #f5f5f5;
  padding: 60px 0 80px;
}

.forsch-about__outer {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 3em 2em;
}

.forsch-about__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: center;
}

.forsch-about__image {
  flex: 1 1 320px;
  text-align: center;
}

.forsch-about__image img {
  width: 90%;
  max-width: 320px;
  border: 1px solid #000;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  object-fit: cover;
}

.forsch-about__text {
  flex: 2 1 480px;
  text-align: left;
  color: #222;
}

.forsch-about__text h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #111;
  margin-bottom: 1rem;
}

.forsch-about__text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1em;
}

@media (max-width: 900px) {
  .forsch-about__inner { flex-direction: column; text-align: center; }
  .forsch-about__text { text-align: center; }
  .forsch-about__image img { max-width: 260px; }
}
/* === Forsch About: Restore Side-by-Side Layout on Desktop === */
@media (min-width: 901px) {
  .forsch-about__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 2em;
  }

  .forsch-about__image {
    flex: 1 1 35%;
    max-width: 360px;
  }

  .forsch-about__text {
    flex: 1 1 60%;
    max-width: 640px;
  }
}
/* === Forsch About: Tighten Vertical Rhythm (v3) === */
.forsch-about {
  padding-top: 30px !important;
  padding-bottom: 24px !important;    /* less cushion at bottom */
  margin-top: -6px !important;
  margin-bottom: -10px !important;    /* pulls tighter into offers */
}

/* keep about container tidy */
.forsch-about__outer {
  padding: 1.8em 1.5em !important;
}

/* === Feature → CTA seam correction === */
.forsch-feature {
  padding-bottom: 24px !important;    /* trim interior space */
  margin-bottom: -20px !important;    /* closes gap before CTA */
}

.forsch-cta {
  margin-top: -18px !important;       /* lock seam to feature */
}

/* === Feature Section === */
.forsch-feature {
  background: var(--forsch-gray-bg, #f5f5f5); /* same page gray */
  padding: 80px 0;
}

.forsch-feature__outer {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  padding: 3rem 2rem;
}

.forsch-feature__title {
  font-family: var(--forsch-sans, 'IBM Plex Sans', sans-serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  margin-top: 0;
}
/* === Features Section (Core Engagements) === */
.forsch-feature {
  background: var(--forsch-gray, #f5f5f5);
  padding: 60px 0;
}

.forsch-feature__outer {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  padding: 2.5em 2em;
}

/* Headline alignment */
.forsch-feature__title {
  font-family: var(--forsch-sans, 'IBM Plex Sans', sans-serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  text-align: center;
  color: #111;
  margin-top: 0;
}

/* Grid layout inside */
.forsch-feature .forsch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

/* === Core Engagements / Feature Section – lock container + rhythm === */
:root { --forsch-gray-bg: #f5f5f5; } /* single source of gray */

/* Gray band behind the section (same tone everywhere) */
.forsch-feature {
  background-color: var(--forsch-gray-bg);
  padding-top: 60px;
  padding-bottom: 60px;
  margin: 0; /* no stray margins */
}

/* White card container centered to 1140px */
.forsch-feature > .forsch-feature__outer {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
}

/* Title + grid inside the card */
.forsch-feature__title {
  margin: 0;                       /* kill top gap */
  text-align: center;
  font-weight: 700;
  color: #111;
}

.forsch-feature .forsch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;                /* clean internal spacing */
}

/* The inner cards */
.forsch-feature .forsch-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.forsch-feature .forsch-card__body { padding: 2rem; }


/* Gentle seam control with neighbors to avoid “extra space” look */
.forsch-about + .forsch-feature { padding-top: 40px; }  /* reduce top a bit when following About */
.forsch-feature + .forsch-cta   { padding-top: 40px; }  /* same before CTA */
/* === Fine-tune vertical rhythm between major sections === */

/* Reduce gap between ABOUT → FEATURE by 50% */
.forsch-about + .forsch-feature {
  padding-top: 30px !important;  /* was 60px */
  margin-top: -20px;             /* gently tucks the gray under About */
}

/* === Feature → CTA spacing refinement === */
.forsch-feature + .forsch-cta {
  padding-top: 26px !important;  /* roughly one-third of original spacing */
  margin-top: -35px;             /* overlaps enough to close excess white */
}


/* === Forsch CTA (flattened two-layer structure) === */
.forsch-cta {
  background: var(--forsch-gray-bg, #f5f5f5);  /* gray band behind the card */
  padding-top: 32px !important;
  padding-bottom: 40px !important;
  margin: 0 !important;                       /* kills any leftover gap */
}

.forsch-cta__inner {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;                            /* only white box */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 1.6em 1.5em;
  text-align: center;
}



/* === Forsch Feature Section (Finalized Layout) === */

.forsch-feature {
  background: var(--forsch-gray-bg, #f5f5f5);
  padding: 60px 0;
}

.forsch-feature__outer {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  padding: 2.5em 2em;
}

.forsch-feature__title {
  text-align: center;
  margin: 0;
  font-family: var(--forsch-sans, 'IBM Plex Sans', sans-serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.forsch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.forsch-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.forsch-card__body {
  padding: 2em;
}

.forsch-feature__outer > div:last-child {
  text-align: center;
  margin-top: 2.5em;
}


/* Seam control: feature→cta */
.forsch-feature + .forsch-cta {
  margin-top: -40px;
  padding-top: 24px;
}


/* Keep cards equal height so buttons align */
.forsch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2em;
  align-items: stretch;
}
.forsch-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 2em;
}

/* Global CTA (below both cards) */
.forsch-feature__outer > div:last-child .forsch-btn {
  background: #111;
  color: #fff;
  padding: 0.8em 1.6em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.forsch-feature__outer > div:last-child .forsch-btn:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
/* === FORSCH.DESIGN BUTTON SYSTEM — v1.0 (Final Lock) === */
/* Unified brand system for black/white/gray hierarchy */

/* ---------- Base ---------- */
.forsch-btn,
.btn {
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  padding: 0.7em 1.4em;
  border: 1px solid transparent;
}

/* ---------- Primary (Global CTAs, Conversion) ---------- */
.forsch-btn--primary,
.btn-primary,
.forsch-feature__outer > div:last-child .forsch-btn,
.forsch-cta .forsch-btn {
  background-color: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.forsch-btn--primary:hover,
.btn-primary:hover,
.forsch-feature__outer > div:last-child .forsch-btn:hover,
.forsch-cta .forsch-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* ---------- Secondary (Card / Persona Buttons) ---------- */
.forsch-btn--secondary,
.btn-secondary,
.forsch-card .forsch-btn {
  background-color: transparent !important;
  color: #111 !important;
  border: 1px solid #ccc !important;
}
.forsch-btn--secondary:hover,
.btn-secondary:hover,
.forsch-card .forsch-btn:hover {
  background-color: #f5f5f5 !important;
  border-color: #999 !important;
  transform: translateY(-2px);
}

/* ---------- Hero Override (White buttons on dark background) ---------- */
.hero-content .btn-secondary,
.hero-content .forsch-btn--secondary {
  color: #fff !important;
  border-color: #fff !important;
}
.hero-content .btn-secondary:hover,
.hero-content .forsch-btn--secondary:hover {
  background-color: rgba(255,255,255,0.1) !important;
  transform: translateY(-2px);
}

/* ---------- Motion Reset for Touch ---------- */
@media (hover: none) {
  .forsch-btn:hover,
  .btn:hover {
    transform: none;
    box-shadow: none;
    filter: none;
  }
}

/* ---------- Section Seam Control (Feature → CTA) ---------- */
.forsch-feature + .forsch-cta {
  padding-top: 32px !important;
  margin-top: -40px;
  background-color: #f5f5f5;
}
/* === Forsch Header (Final Audit Pass) === */
.forsch-header-menu {
  background: #000;
  color: #fff;
  padding: 24px 40px;
}

.forsch-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
}

.forsch-header__logo img {
  height: auto;
  max-height: 48px;
  width: auto;
}

.forsch-header-menu__nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.forsch-header-menu__nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--forsch-sans, 'IBM Plex Sans', sans-serif);
  letter-spacing: 0.02em;
  transition: opacity .2s ease, color .2s ease;
}

.forsch-header-menu__nav a:hover {
  opacity: 0.8;
}

.forsch-header-menu__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.forsch-header-menu__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}

/* Mobile behavior */
@media (max-width: 900px) {
  .forsch-header__inner {
    flex-wrap: wrap;
  }

  .forsch-header-menu__nav ul {
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }

  .forsch-header-menu__toggle {
    display: flex;
  }
}

/* === Header Text Color Override (Fix dark-on-dark bug) === */
.forsch-header-menu,
.forsch-header-menu a,
.forsch-header-menu__nav a,
.forsch-header-menu__toggle span {
  color: #fff !important;
  fill: #fff !important;
}

.forsch-header-menu__nav a:hover {
  color: #ddd !important;
  opacity: 1 !important;
}
/* === Forsch Header — parity with footer === */
header.forsch-header-menu {
  background:#000;
  color:#fff;
}

header.forsch-header-menu a {
  color:#fff !important;
  text-decoration:none;
}

header.forsch-header-menu a:hover {
  color:#ddd !important;
}

header.forsch-header-menu .forsch-header__logo img {
  filter:brightness(1) contrast(1);
}
/* === Forsch Footer CTA Harmonization === */
#forsch-footer-{{ section.id }} .klaviyo-form-XHrfJA button,
#forsch-footer-{{ section.id }} .kl-private-reset-css-Xuajs2 {
  background:#000 !important;
  color:#fff !important;
  transition:background-color .2s ease;
}

#forsch-footer-{{ section.id }} .klaviyo-form-XHrfJA button:hover,
#forsch-footer-{{ section.id }} .kl-private-reset-css-Xuajs2:hover {
  background:#333 !important;
}
 /* === Forsch Footer Scoped Palette Lock === */
.forsch-footer p,
.forsch-footer li,
.forsch-footer a,
.forsch-footer span,
.forsch-footer .footer-copy {
  color: #fff !important;
}

.forsch-footer p {
  color: #ddd !important;
}

.forsch-footer a:hover {
  color: #aaa !important;
}
/* === Forsch Header: Visual Consistency Lock === */
.forsch-header-menu {
  background: #000 !important;
  color: #fff !important;
  font-family: 'IBM Plex Sans', sans-serif;
  border-bottom: 1px solid #111; /* Subtle seam for structure */
}

.forsch-header__logo img {
  filter: brightness(1.1) contrast(1.05);
  max-height: 64px;
  width: auto;
}

.forsch-header-menu__nav a {
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.1s ease;
}

.forsch-header-menu__nav a:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

/* Mobile consistency */
@media (max-width: 749px) {
  .forsch-header-menu__nav ul {
    background: #000;
    padding: 1em;
    border-radius: 6px;
  }
  .forsch-header-menu__nav a {
    display: block;
    padding: 0.5em 0;
    color: #fff !important;
  }
}
