/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/* ===========================================
=           Component Social block           =
=========================================== */
@layer sdc {
  .social-block {
    --color-icon-social: var(--color-black-main);
    display: flex;
    align-items: stretch;
    list-style: none;
  }
  .social-block__item {
    border-inline-end: solid 1px var(--color-grey-three);
  }
  .social-block__item:not(:first-child) {
    width: 3.125rem;
    height: 3.75rem;
  }
  .social-block__item--title {
    display: flex;
    align-items: center;
    padding-inline-end: 1.5rem;
    letter-spacing: -0.28px;
    text-transform: uppercase;
    color: var(--color-grey-one);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1rem;
  }
  .social-block__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: background-color 0.2s ease-out;
  }
  .social-block__link:hover {
    --color-icon-social: var(--color-white);
    background-color: var(--color-primary);
  }
  .social-block__link:hover svg path {
    transition: fill 0.2s ease-out;
  }
}
