.speaker-card {
  width: 100%;
  max-width: 248px;
  padding: 24px;
  background-color: transparent;
  transition: background-color 0.3s ease-out;

  @include sm {
    max-width: 345px;
  }

  &:hover {
    background-color: $background-blue;
  }

  &:last-child {
    margin-right: 0;
  }

  &__wrapper {
    width: 100%;
    height: 100%;
  }

  &__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  &__image {
    @include image-aspect-ratio(100%, 110%);
  }

  &__info {
    margin-top: 32px;
    flex-grow: 1;
  }

  &__label {
    font-size: 1.4rem;
    line-height: 1.8rem;
    letter-spacing: 0.01rem;
    color: $secondary-color;
    font-weight: 700;
    margin: 0 0 8px;
  }

  &__name {
    margin: 0 0 8px;
    font-size: 2.1rem;
    line-height: 2.5rem;
    color: $primary-color;
    font-weight: 700;
  }

  &__job {
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: 0.02rem;
    color: $primary-color;
    font-weight: 400;
  }

  &__actions {
    width: 100%;
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  &__social-container {
    display: flex;
    align-items: center;
  }

  &__share-icon {
    margin-left: 20px;
    line-height: 0;

    svg {
      width: 15px;
      height: 15px;
    }
  }
}
