.thieffry-site-menu {
  position: relative;
}

.thieffry-site-menu.main-menu {
  color: inherit;
}

.thieffry-site-menu.footer-menu {
  color: white;
  background-color: black;
}

.thieffry-site-menu-burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.thieffry-site-menu-items {
  display: flex;
  flex-direction: row;
  justify-items: flex-end;
  gap: 1rem;
}

.thieffry-site-menu-item {
  white-space: nowrap;
}

/*
@media (max-width: 768px) {
  .thieffry-site-menu-burger {
    display: block;
  }

  .thieffry-site-menu-items {
    flex-direction: column;
    gap: unset;
  }

  .thieffry-site-menu-items {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .thieffry-site-menu-items.active {
    display: flex;
  }
}
*/