// ==========================================================================
// c-sm-icons Component
// Shared social media icon list (footer, social media wall, etc.)
// ==========================================================================

.c-sm-icons {
  &__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: $spacer;
  }

  &__item {
    margin: 0;
  }

  &__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 0;
    border-radius: 50%;
    background-color: $color-accent;
    color: $white;
    text-decoration: none;
    line-height: 1;
    transition:
      background-color 0.2s ease,
      transform 0.2s ease;

    &:hover,
    &:focus-visible {
      background-color: $secondary-tonsteinrot;
      transform: scale(1.05);
      color: $white;
    }
    @include media-breakpoint-up(xxl) {
      padding: 0.875rem;
    }
  }

  &__icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;

    &.material-symbols-outlined {
      font-size: 18px;
      line-height: 1;
    }
    @include media-breakpoint-up(xxl) {
      width: 24px;
      height: 24px;
      &.material-symbols-outlined {
        font-size: 22px;
      }
    }
  }
}
