/* Mobile */
body {
  background: var(--color-background) no-repeat center bottom/cover fixed
    url("BG-Gradient.webp");
  padding: var(--padding-mobile);
}

.logo {
  position: absolute;
  height: 30px;
}

.info {
  padding-top: 20svh;
  width: fit-content;
}

/* Spacing between blocks equal to line-height */
.info__section {
  margin-bottom: 19px;
}

/* Add spacing inside contact block */
.info__section--contact address {
  margin-top: 38px;
}

.info__section--nav {
  margin-top: 50px; /* Collapses with margin-bottom of section before */
  display: flex;
  justify-content: space-between;
}

.info__text,
.info__header {
  font: var(--font-16);
  line-height: 19px;
}

.info__section--contact .info__header {
  display: none;
}

.info__section--nav .info__header {
  /* text-transform: uppercase; */
  font: var(--font-9-bold);
}

/* Desktop */
@media screen and (min-width: 992px) {
  html {
    height: 100%; /* Necessary for 100% body height */
  }

  body {
    height: 100%;
    padding: var(--padding-desktop);
  }

  .logo {
    height: 42px;
  }

  .info {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template: auto auto / repeat(4, 1fr);
    align-content: space-between; /* Push bottom row to bottom of page */
    row-gap: 25px;
  }

  .info__section.info__section--contact {
    grid-row: 1; /* Necessary because of overwrite below */
    grid-column: 1 / -1;
  }

  .info__section {
    grid-row: 2;
    margin: 0; /* Reset mobile styles */
  }

  .info__section.info__section--nav {
    grid-column: 4;
    display: flex;
    flex-direction: column;
    margin-bottom: 3px;
  }

  .info__header {
    /* text-transform: uppercase; */
    font: var(--font-19-bold);
  }

  .info__section--contact .info__header {
    display: unset; /* Reset mobile styles */
    font: var(--font-32-bold);
    font-variation-settings: "wdth" 115;
    letter-spacing: -0.03em;
  }

  .info__section--nav .info__header {
    font: var(--font-10-bold);
  }

  .info__text {
    margin-top: 10px;
    line-height: 19px;
  }

  .info__section--contact .info__text {
    margin-top: 40px;
    font: var(--font-32);
    letter-spacing: -0.03em;
    line-height: 40px;
  }

  .info__section--contact address.info__text {
    margin-top: 80px;
  }
}
