.ssb-buttons {
    margin-top: 2em;
    display: flex;
    gap: 0.8em;
    flex-wrap: wrap;
}
.ssb-buttons a {
  display: inline-block;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, box-shadow 0.6s ease;
  border-radius: 8px;
}
.ssb-buttons a svg {
    width: 100%;
    height: auto;
    fill: currentColor;
    transition: fill 0.3s ease;
}
.ssb-buttons a:hover svg {
    fill: #0077b6;
}
.ssb-buttons a:hover {
  transform: scale(1.25);
  box-shadow: 8px 8px 12px rgba(0,0,0,0.2);
}