@import url('https://cdn.jsdelivr.net/npm/bulma@1.0.1/css/bulma.min.css');
@import url("/assets/fonts-5faa1c90.css");

body {
  font-family: "Freight Sans", sans-serif;
  font-weight: 100;
  font-size: 1.375rem;
  background: #223243;
  background-image: linear-gradient(223deg, #374D65 0%, #223243 33%, #223243 63%, #223243 64%, #101A26 100%);
  color: #fff;
}

#container {
  width: 100vw;
  margin: 0 auto;
  max-width: 68rem;
  min-height: 100vh;
  display: flex;
  padding: 0 1rem;
  column-gap: 2rem;
}

main {
  flex: 8;
  padding: 3rem 0;
  max-width: 42rem;
}

aside {
  flex: 4;
  height: 100%;
  padding: 3rem 1rem 1rem 1rem;
  background-color: #29609A;
  border-radius: 0 0 0.25rem 0.25rem;
  font-size: 1.25rem;
  position: relative;

  p {
    margin: 0.5rem 0;
  }

  ul {
    margin: 1.5rem 0;
  }

  li svg {
    max-width: 16px;
    opacity: 0.5;
  }

  .cta-button {
    width: 100%;
    font-size: 1.125rem;
    font-weight: 600;
  }
}

h2 {
  font-size: 2rem;
  line-height: 2.625rem;
  font-weight: 100;
  font-style: italic;
}

h3 {
  font-weight: 600;
}

p {
  margin: 1.5rem 0;
}

.highlight {
  font-style: italic;
  font-weight: 500;
}

.bonus-cta {
  display: none;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 0.25rem;
  background-color: #29609A;
}

.signoff {
  margin-top: 4rem;
}

.avatars {
  display: flex;
  margin-bottom: 4rem;

  li {
    margin-left: -0.5rem;
  }
}

.avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.postscript {
  position: absolute;
  bottom: -3rem;
  left: 0;
  right: 0;
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  opacity: 0.7;

  a {
    color: white;
    border-bottom: 0.5px solid white;
  }

  &:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  #container {
    flex-direction: column;
    padding: 0.5rem 1rem;
  }

  main {
    padding: 0;
  }

  aside {
    border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
    padding: 1rem;

    h1 {
      display: none;
    }
  }

  .bonus-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
