.icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--md {
  width: 1.375rem;
  height: 1.375rem;
}

.icon--lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon--brand {
  width: 14px;
  height: 14px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.icon-link:hover,
.icon-link:focus-visible {
  color: var(--accent);
  border-color: rgba(0, 185, 189, 0.45);
  background: rgba(0, 185, 189, 0.06);
  transform: translateY(-1px);
}

.icon-link--light {
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.icon-link--light:hover,
.icon-link--light:focus-visible {
  color: #fff;
  border-color: rgba(0, 185, 189, 0.55);
  background: rgba(0, 185, 189, 0.12);
}
