/* Source: widgets/12.html — keep CSS identical to the HTML. */
.edge-ba7 {
  --edge-ba7-primary: #094a3c;
  --edge-ba7-secondary: #daa630;
  --edge-ba7-tertiary: #000000;
  --edge-ba7-muted: #5a5a5a;
  --edge-ba7-divider: rgba(9, 74, 60, 0.22);
  --edge-ba7-heading-font: "Plus Jakarta Sans", sans-serif;
  --edge-ba7-body-font: "Poppins", sans-serif;

  width: 100%;
  background: #f7f8f7;
  color: var(--edge-ba7-primary);
  font-family: var(--edge-ba7-body-font);
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
  border-top: 1px solid rgba(9, 74, 60, 0.08);
  border-bottom: 1px solid rgba(9, 74, 60, 0.08);
}

.edge-ba7 *,
.edge-ba7 *::before,
.edge-ba7 *::after {
  box-sizing: border-box;
}

.edge-ba7__inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.edge-ba7__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.edge-ba7__divider {
  display: inline-block;
  font-family: var(--edge-ba7-body-font);
  font-size: clamp(0.875rem, 1.4vw, 0.9375rem);
  font-weight: 400;
  line-height: 1;
  color: var(--edge-ba7-divider);
  user-select: none;
}

#edge-ba7 a.edge-ba7__link,
.edge-ba7 a.edge-ba7__link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--edge-ba7-heading-font) !important;
  font-size: clamp(0.875rem, 1.5vw, 0.96875rem) !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: var(--edge-ba7-primary) !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  padding: 0.375rem 0 !important;
  box-shadow: none !important;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

#edge-ba7 a.edge-ba7__link:visited,
.edge-ba7 a.edge-ba7__link:visited {
  color: var(--edge-ba7-primary) !important;
}

#edge-ba7 a.edge-ba7__link:hover,
#edge-ba7 a.edge-ba7__link:focus,
.edge-ba7 a.edge-ba7__link:hover,
.edge-ba7 a.edge-ba7__link:focus {
  color: var(--edge-ba7-secondary) !important;
  text-decoration: none !important;
}

#edge-ba7 a.edge-ba7__link--forward:hover,
#edge-ba7 a.edge-ba7__link--forward:focus,
.edge-ba7 a.edge-ba7__link--forward:hover,
.edge-ba7 a.edge-ba7__link--forward:focus {
  gap: 0.55rem;
}

#edge-ba7 a.edge-ba7__link--back:hover,
#edge-ba7 a.edge-ba7__link--back:focus,
.edge-ba7 a.edge-ba7__link--back:hover,
.edge-ba7 a.edge-ba7__link--back:focus {
  gap: 0.5rem;
}

#edge-ba7 a.edge-ba7__link:focus-visible,
.edge-ba7 a.edge-ba7__link:focus-visible {
  outline: 2px solid var(--edge-ba7-secondary) !important;
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 480px) {
  .edge-ba7__nav {
    flex-direction: column;
    gap: 0.875rem;
  }

  .edge-ba7__divider {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #edge-ba7 a.edge-ba7__link,
  .edge-ba7 a.edge-ba7__link {
    transition: color 0.2s ease;
  }
}
