.footer {
  background: linear-gradient(253deg, rgba(242, 148, 38, 0.1) 0%, rgba(209, 43, 79, 0.1) 58.99%, rgba(120, 61, 128, 0.1) 98.31%);
}
.footer--container {
  max-width: 1124px;
  margin: auto;
  padding: 32px 24px;
}
.footer {
  /* =========================================================
     MAIN
     ========================================================= */
}
.footer--main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer {
  /* =========================================================
     LOGO
     ========================================================= */
}
.footer--logo {
  width: 100%;
}
.footer--logo img {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 330px;
  height: auto;
}
.footer {
  /* =========================================================
     CONTENT
     ========================================================= */
}
.footer--content {
  margin-top: 16px;
  max-width: 402px;
}
.footer--content p {
  text-align: center;
  color: var(--violet);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer--content p strong {
  font-weight: 700;
}
.footer {
  /* =========================================================
     CTA
     ========================================================= */
}
.footer--cta .btn {
  display: inline-flex;
}
.footer {
  /* =========================================================
     BOTTOM
     ========================================================= */
}
.footer--bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--violet-clair);
}
.footer--bottom p {
  text-align: center;
  color: var(--violet);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer--bottom a {
  color: inherit;
  text-decoration: none;
}
.footer--bottom a:hover {
  text-decoration: underline;
}
.footer {
  /* =========================================================
     DESKTOP
     ========================================================= */
}
@media screen and (min-width: 1024px) {
  .footer--container {
    padding: 35px 0 25px;
  }
  .footer--main {
    display: grid;
    grid-template-columns: minmax(450px, 1.2fr) minmax(280px, 0.8fr);
    grid-template-areas: "logo content" "logo cta";
    align-items: center;
    column-gap: 64px;
    row-gap: 16px;
  }
  .footer--logo {
    grid-area: logo;
  }
  .footer--logo img {
    width: 100%;
    max-width: 668px;
    margin: 0;
  }
  .footer--content {
    grid-area: content;
    align-self: end;
  }
  .footer--content p {
    text-align: left;
    font-size: 16px;
  }
  .footer--cta {
    grid-area: cta;
    justify-self: start;
    align-self: start;
    white-space: nowrap;
  }
  .footer--bottom p {
    font-size: 16px;
  }
}
