.bloq-footer {
  color: white;
  position: relative;
  padding-top: clamp(85px, 8vw, 172px);

  &::before {
    content: '';
    position: absolute;
    width: 100%;
    height: clamp(140px, 10vw, 172px);
    top: 0;
    left: 0;
    background-image: url('/themes/responsibletrekking/images/footer-responsible.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
  }
}

.field-bloq-ft-logo {
  margin-bottom: 20px;

  img {
    width: 250px;
    height: auto;
  }
}

.footer-content {
  background-color: var(--brand);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;

  a {
    color: white;
  }
}

.foo-content {
  display: grid;
  grid-template-columns: 1fr;
}

.foo-item {
  --font-stext: 14px;
  > .field__item {
    font-size: var(--font-stext);
    margin-bottom: 6px;
  }

  > .field__items {
    font-size: var(--font-stext);
    .field__item {
      margin-bottom: 10px;
    }
  }

  a {
    line-height: 1.6;
  }
}

.foo-title {
  color: var(--light);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
  text-transform: capitalize;
  border-bottom: 1px solid var(--light);
}

.field-bloq-ft-contact-links {
  > .field__item {
    margin-bottom: 10px;
  }

  a {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  svg {
    width: 20px;
    height: 20px;
  }

  path {
    fill: var(--accent);
  }
}

.field-bloq-ft-social-media {
  display: flex;
  gap: 10px;
  margin-top: 20px;

  a {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    &:hover {
      background: var(--light);
    }
  }

  svg {
    width: 20px;
    height: 20px;
  }

  path {
    fill: var(--darked);
  }
}

@media (width >= 1024px) {
  .foo-content {
    grid-template-columns: 25% repeat(4, 1fr);

    gap: 50px;
  }
}
