.block-linkedin {
  background-color: var(--color-primary--2);
  padding: 4rem 0 2rem 0;
}

.block-linkedin__title {
  font-size: var(--heading-size-l);
  line-height: 110%;
  margin-bottom: 1rem;
}

.block-linkedin__title p {
  margin: 0;
}

.block-linkedin__text {
  margin-bottom: 3rem;
  max-width: 700px;
}

.block-linkedin__link {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.block-linkedin__link a {
  font-weight: 700;
  color: var(--color-neutral--1);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .25s ease, text-decoration-color .25s ease;
}

.block-linkedin__link a:hover {
  color: var(--color-secondary--1);
  text-decoration-color: var(--color-secondary--1);
}

.block-linkedin__link a::before {
  text-decoration: none;
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  background-image: url('../../images/linkedin/logo-linkedin.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

@media (min-width: 1000px) {
 
}