.social-media {
    padding: 48px 0;
    text-align: center;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}

.social-icon {
    position: relative;
    width: 192px;
    aspect-ratio: 0.86;
    display: inline-block;
}

@media screen and (max-width: 480px) {
  .social-icon {
    width: 150px;
  }
}

.social-icon-background {
    width: 180px;
    aspect-ratio: 1.134;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center 106px;
}

.social-icon-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}