.linksy {
  margin: var(--xl-gap) auto;
  padding: 0 var(--xs-gap);
}

.linksy__wrap {
  max-width: var(--xs-width);
  margin: 0 auto;
}

.linksy__headline {
  text-align: center;
}

.linksy__item {
  display: block;
  border-top: 1px solid var(--aloe);
  padding: 20px 0;
  &:hover {
    color: var(--ocean-dark);
  }
}

.linksy__item__headline {
  font: var(--grande);
  margin: 0;
}

.linksy__item__body {
  font: var(--petit);
}

.linksy__item__body p {
  margin: 0;
}

.linksy__item__link {
  font: var(--demi);
  cusor: pointer;
  font-weight: 500;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: .3s ease-in-out;
  width: 45px;
  height: 45px;
  text-align: center;
}

.linksy__item__link::after {
  content: '';
  display: block;
  height: .75rem;
  width: 1.25rem;
  background-color: currentColor;
  transition: clip-path, width, 0.25s;
  clip-path: var(--short-arrow);
}

@media (max-width: 500px) {
  .linksy__item {
    display: grid;
    grid-template-columns: 7fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 501px) {
  .linksy__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .linksy__item:hover .linksy__item__link {
    background-color: var(--ocean);
    color: var(--white);
  }
}

@media (max-width: 501px) {
  .linksy__item__link {
    background-color: var(--ocean);
    color: var(--white);
    box-sizing: border-box;
    margin: 10px 0 0 0;
  }
}

.linksy__text {
  text-indent: -999rem;
}