/*  */
/* contacts-data */
/*  */
.contacts-data {
  .contacts-data__item {
    display: flex;
    gap: 1rem;
    & ~ & {
      margin-top: 1rem;
    }
  }
  .contacts-data__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background: var(--light-gray-bg);
    color: var(--gray-sec);
    flex-shrink: 0;
  }
  .contacts-data__value {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--black);
    margin: auto 0;
  }
  @media (width <= 768px) {
    .contacts-data__item {
      & ~ & {
        margin-top: 0.5rem;
      }
    }
    .contacts-data__ico {
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 2.75rem;
      svg {
        width: 1.5rem;
        height: 1.5rem;
      }
    }
    .contacts-data__value {
      font-size: 0.875rem;
      line-height: 1.2;
    }
  }
}

/*  */
/* piers */
/*  */
.piers {
  .piers__item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
    margin-top: 2rem;
  }
  .piers__map {
    height: 320px;
    border-radius: 1.5rem;
    background-color: var(--light-gray-bg);
    .yamap {
      width: 100%;
      height: 100%;
    }
  }
  .piers__name {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--black);
  }
  .piers__address {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--black);
    .piers-address__ico {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      flex-shrink: 0;
      border-radius: 2rem;
      background: var(--orange);
      color: #fff;
      svg {
        width: 1.5rem;
        height: 1.5rem;
      }
    }
    span {
      margin: auto 0;
    }
  }
  @media (width <= 768px) {
    .piers__item {
      grid-template-columns: minmax(0, 1fr);
      gap: 1rem;
      margin-top: 1.5rem;
    }
    .piers__map {
      height: 230px;
    }
    .piers__name {
      font-size: 1.25rem;
    }
  }
}
