.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  font-size: 1.4rem;
}

.socials__link {
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.socials--share {
  flex-direction: column;
}

@media (max-width: 1024px) {
  .socials--share {
    flex-direction: row;
  }
}

.socials--share .socials__link {
  color: white;
  background-color: var(--color-primary);
  transition: background-color 0.2s;
}

.socials--share .socials__link:hover {
  background-color: #133dba;
}

.socials--follow {
  flex-direction: row;
}

.socials--follow .socials__link {
  color: var(--color-primary);
  border: thin solid var(--color-primary);
  transition:
    background-color 0.2s,
    color 0.2s;
}

.socials--follow .socials__link:hover {
  background-color: var(--color-primary);
  color: white;
}

.socials--footer.socials--follow .socials__link {
  color: var(--color-footer);
  background-color: var(--color-secondary);
  border: 0;
  width: 3.2rem;
}

.socials--footer.socials--follow .socials__link:hover {
  background-color: var(--color-footer);
  color: var(--color-secondary);
}
