.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 17px;
  border-left: 1px solid rgba(213, 190, 255, .4);
}

.header-social a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(211, 177, 255, .52);
  border-radius: 50%;
  background: rgba(150, 96, 224, .16);
  box-shadow: 0 0 10px rgba(171, 107, 255, .32), inset 0 0 8px rgba(207, 174, 255, .12);
  color: #fbf6ff;
  text-decoration: none;
  opacity: 1;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.header-social a:hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: #e9d9ff;
  background: rgba(177, 116, 255, .36);
  box-shadow: 0 0 17px rgba(190, 127, 255, .75), inset 0 0 9px rgba(245, 233, 255, .25);
}

.header-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 800px) {
  .header-right {
    margin-left: auto;
  }

  .header-social {
    display: none;
  }
}
