/* ============================================
   NOR GROUP - GLOBAL STYLES
   Inspired by BII.co.uk design language
   Color palette: White + Dark Green
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --green-darkest: #0a2e1a;
  --green-dark:    #0e3d22;
  --green-mid:     #145a30;
  --green-primary: #1a7340;
  --green-accent:  #2d9e5c;
  --green-light:   #4bbf7a;
  --green-pale:    #d4ede0;
  --green-ghost:   #f0f9f4;

  --white:         #ffffff;
  --off-white:     #f7f9f8;
  --gray-100:      #eef2ef;
  --gray-200:      #dde6e1;
  --gray-400:      #8fa898;
  --gray-600:      #4a5e52;
  --gray-800:      #1e2d25;

  --red-accent:    #c0392b;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-width: 1280px;
  --section-pad: 6rem 2rem;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background:
    radial-gradient(circle at 10% 8%, rgba(75, 191, 122, 0.10) 0%, transparent 35%),
    radial-gradient(circle at 90% 25%, rgba(45, 158, 92, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 30% 65%, rgba(75, 191, 122, 0.07) 0%, transparent 30%),
    radial-gradient(circle at 85% 88%, rgba(45, 158, 92, 0.09) 0%, transparent 35%),
    var(--white);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Site-wide dot grid texture — sits above body, below sections with their own bg */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(10, 46, 26, 0.10) 1px, transparent 1.5px);
  background-size: 28px 28px;
}

/* Make sure page content sits above the texture */
.navbar,
main,
section,
footer,
.services-hero,
.overview-band,
.section,
.modules-section { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--green-darkest);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }

p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; }

/* ---- LAYOUT UTILITIES ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-pad);
}

.section--dark {
  background: var(--green-darkest);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: var(--green-pale);
}

.section--tint {
  background: var(--green-ghost);
}

.section--mid {
  background: var(--green-mid);
  color: var(--white);
}

.section--mid h2,
.section--mid h3 {
  color: var(--white);
}

.section--mid p { color: var(--green-pale); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--green-darkest);
}

.btn--outline-dark {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}

.btn--outline-dark:hover {
  background: var(--green-primary);
  color: var(--white);
}

.btn--arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.btn--arrow:hover::after {
  transform: translateX(4px);
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-accent);
}

.section--dark .section-label,
.section--mid .section-label {
  color: var(--green-light);
  border-color: var(--green-light);
}

/* ---- DIVIDER ---- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--green-accent);
  margin: 1.5rem 0;
}

/* ---- GRID SYSTEMS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ---- CARD ---- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(10,46,26,0.1);
  transform: translateY(-3px);
  border-color: var(--green-pale);
}

.card--green {
  background: var(--green-dark);
  border-color: var(--green-mid);
  color: var(--white);
}

.card--green h3, .card--green h4 {
  color: var(--white);
}

.card--green p { color: var(--green-pale); }

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.card__number {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ---- STAT BLOCKS ---- */
.stat-block {
  text-align: center;
  padding: 2rem;
}

.stat-block__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-block__label {
  font-size: 0.85rem;
  color: var(--green-pale);
  letter-spacing: 0.04em;
}

/* ---- LISTS ---- */
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a7340'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 00-1.414 0L8 12.586 4.707 9.293a1 1 0 00-1.414 1.414l4 4a1 1 0 001.414 0l8-8a1 1 0 000-1.414z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.section--dark .check-list li { color: var(--green-pale); }
.section--mid .check-list li { color: var(--green-pale); }

/* Bright text for check-lists inside dark inline-styled blocks (about page holding co, etc) */
[style*="background:var(--green-darkest)"] .check-list li,
[style*="background: var(--green-darkest)"] .check-list li {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}
[style*="background:var(--green-darkest)"] .check-list li::before,
[style*="background: var(--green-darkest)"] .check-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2356d485'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 00-1.414 0L8 12.586 4.707 9.293a1 1 0 00-1.414 1.414l4 4a1 1 0 001.414 0l8-8a1 1 0 000-1.414z'/%3E%3C/svg%3E");
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.25rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fadeup {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.animate-fadein {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(10, 46, 26, 0.08);
}

.navbar__inner { position: relative; z-index: 1; }

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  height: 48px;
  width: auto;
  display: block;
}

.navbar__logo img {
  height: 48px;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--green-primary);
  background: var(--green-ghost);
}

.navbar__cta {
  background: var(--green-accent);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 2px;
  transition: var(--transition);
  margin-left: 0.75rem;
}

.navbar__cta:hover {
  background: var(--green-light);
  color: var(--green-darkest);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-darkest);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Hamburger → X */
.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 2rem 2rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 12px 32px -8px rgba(10, 46, 26, 0.15);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .navbar__cta { margin-left: 0; margin-top: 0.5rem; }
}

/* ============================================
   NAVBAR MEGA MENU
   ============================================ */
.navbar__item {
  position: relative;
  display: inline-flex;
}

.navbar__link--has-mega {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
}

.navbar__chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.navbar__item.is-open .navbar__chevron,
.navbar__item:hover .navbar__chevron {
  transform: rotate(180deg);
}

.navbar__mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(960px, calc(100vw - 4rem));
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--green-accent);
  box-shadow: 0 24px 60px -10px rgba(10, 46, 26, 0.18);
  padding: 2rem 2.25rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 110;
}

.navbar__item:hover .navbar__mega,
.navbar__item.is-open .navbar__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Bridge so cursor can travel from link to panel without losing hover */
.navbar__mega::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.mega__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.mega__col h6 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.mega__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mega__list a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--gray-800);
  text-decoration: none;
  padding: 0.4rem 0.55rem;
  border-radius: 3px;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1.3;
}

.mega__list a:hover {
  background: var(--green-ghost);
  color: var(--green-primary);
}

.mega__list a .mega__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.mega__list a:hover .mega__dot {
  opacity: 1;
  transform: scale(1.3);
}

.mega__badge {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--green-pale);
  color: var(--green-primary);
  padding: 2px 7px;
  border-radius: 100px;
}

.mega__footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.mega__footer-text {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin: 0;
}

.mega__footer-text strong { color: var(--green-primary); font-weight: 700; }

.mega__footer-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.mega__footer-link:hover {
  gap: 0.6rem;
}

@media (max-width: 900px) {
  /* In mobile menu, the mega becomes an inline accordion */
  .navbar__item {
    display: block;
    width: 100%;
  }

  .navbar__link--has-mega {
    width: 100%;
    justify-content: space-between;
    color: var(--gray-800);
    padding: 0.5rem 0.9rem;
    border-radius: 2px;
  }

  .navbar__link--has-mega:hover {
    color: var(--green-primary);
    background: var(--green-ghost);
  }

  .navbar__mega {
    position: static;
    transform: none;
    width: 100%;
    background: var(--green-ghost);
    border: none;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0.5rem;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  }

  .navbar__item.is-open .navbar__mega {
    max-height: 1200px;
    opacity: 1;
    visibility: visible;
    padding: 1rem 0.5rem;
    transform: none;
  }

  /* Disable hover on mobile — only click toggles */
  .navbar__item:hover .navbar__mega {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
  }

  .navbar__item.is-open:hover .navbar__mega,
  .navbar__item.is-open .navbar__mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 1200px;
  }

  .mega__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mega__col h6 {
    color: var(--green-primary);
    border-color: var(--gray-200);
  }

  .mega__list a {
    color: var(--gray-800);
  }

  .mega__list a:hover {
    background: var(--white);
    color: var(--green-primary);
  }

  .mega__footer {
    border-color: var(--gray-200);
  }

  .mega__footer-text { color: var(--gray-600); }
  .mega__footer-text strong { color: var(--green-primary); }
  .mega__footer-link { color: var(--green-primary); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-darkest);
  color: var(--white);
  padding: 5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand {}
.footer__logo { height: 52px; margin-bottom: 1.25rem; }
.footer__tagline { font-size: 0.9rem; color: var(--green-pale); line-height: 1.65; max-width: 280px; }

.footer__col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--green-pale);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--green-light); }

.footer__address {
  font-size: 0.88rem;
  color: var(--green-pale);
  line-height: 1.9;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__bottom-links a:hover { color: var(--green-pale); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   SVG ICON WRAPPERS
   ============================================ */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svg-icon svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.navbar__search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: var(--transition);
  border-radius: 4px;
}

.navbar__search-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--gray-800);
  transition: var(--transition);
}

.navbar__search-btn:hover svg {
  stroke: var(--green-primary);
}

.navbar__search-btn:hover {
  background: var(--green-ghost);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 46, 26, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  width: 100%;
  max-width: 640px;
  padding: 0 2rem;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-overlay__inner {
  transform: translateY(0);
}

.search-overlay__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.search-overlay__close svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.search-overlay__close:hover svg {
  stroke: var(--white);
  transform: rotate(90deg);
}

.search-overlay__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
  display: block;
}

.search-overlay__input-wrap {
  position: relative;
}

.search-overlay__input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  padding: 0.75rem 0;
  outline: none;
  transition: border-color var(--transition);
}

.search-overlay__input::placeholder {
  color: rgba(255,255,255,0.25);
}

.search-overlay__input:focus {
  border-color: var(--green-accent);
}

.search-overlay__results {
  margin-top: 2rem;
}

.search-result-item {
  display: block;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.search-result-item:hover {
  padding-left: 1rem;
  background: rgba(255,255,255,0.03);
}

.search-result-item__title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.search-result-item__desc {
  color: var(--green-pale);
  font-size: 0.85rem;
}

.search-overlay__empty {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}
