.paragraph--type--ept-sticky-menu {
  display: block;
  background: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}
.paragraph--type--ept-sticky-menu.is-sticky {
  z-index: 100;
}
.paragraph--type--ept-sticky-menu .field--name-field-ept-sticky-menu-links {
  display: flex;
  justify-content: flex-end;
}
.paragraph--type--ept-sticky-menu .ept-mobile-toggle {
  display: none;
}

.ept-paragraph--type--ept-sticky-menu-link a {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.ept-paragraph--type--ept-sticky-menu-link a.is-active {
  color: #fff;
  background: #0057B8;
  border-radius: 0.25rem;
}
.ept-paragraph--type--ept-sticky-menu-link a:focus {
  outline: none;
  outline-offset: 2px;
}
.ept-paragraph--type--ept-sticky-menu-link a .ept-mobile-toggle {
  cursor: pointer;
}

@media (max-width: 960px) {
  .paragraph--type--ept-sticky-menu .field--name-field-ept-sticky-menu-links {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 0;
  }
  .paragraph--type--ept-sticky-menu .ept-mobile-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    padding: 0;
    justify-content: flex-end;
  }
  .paragraph--type--ept-sticky-menu .ept-mobile-toggle__icon {
    border: 0.25rem solid transparent;
    border-top-color: currentColor;
    transition: transform 0.2s ease;
  }
  .paragraph--type--ept-sticky-menu .ept-mobile-toggle--open .ept-mobile-toggle__icon {
    transform: rotate(180deg);
  }

  .paragraph--type--ept-sticky-menu.is-expanded .field--name-field-ept-sticky-menu-links {
    display: flex;
  }
}