@layer component {
  .footer {
    --logo-color: var(--color-primary);

    background-color: var(--color-base-purple);
    color: #fff;
    font: var(--font-body-s-regular);
    letter-spacing: var(--letter-spacing-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 18px; 
  }

  .footer a {
    color: #fff;
  }

  .footer__inner {
    padding-block-start: clamp(2.625rem, 5.25vw, 3.125rem);
    padding-block-end: clamp(3rem, 5.5vw, 3.75rem);
    display: flex;
    flex-direction: row;
    gap: 60px;

    & strong {
      font-weight: 600;
      font-size: 16px;
      line-height: 21px;
    }
  }

  .footer__inner > div {
    width: 100%;
  }

  .footer__inner .footer__section__left {
    max-width: 400px;
  }

  .footer__section__right  .footer__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .footer__bottom > div {
    align-self: flex-end;
  }

  .footer__top .footer__content > div {
    display: flex;
    gap: 32px;
    flex-direction: column;
  }

  .footer__top .footer__section__right .footer__content > div {
    max-width: 360px;
  }

  .footer-menu,
  .footer-menu nav,
  .footer-menu nav ul {
    width: 100%;
  }

  .footer-menu nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    vertical-align: bottom;
    margin: 0;
  }

  .footer__section__right .region--footer-left .block--block-content .field--link {
    margin-bottom: 12px;

    & a {
      font-size: 16px;
      font-weight: 600;
      line-height: 16px;
      color: #fff;
      border-bottom: 2px solid #FFB151;
      text-decoration: none;
      padding-bottom: 2px;
    }

    & a:after {
      display: inline-block;
      content: "";
      width: 14px;
      height: 14px;
      background: url('../../images/arrow-right.svg') no-repeat;
      margin-left: 10px;
      vertical-align: middle;
    }
  }

  .privacy-options:after {
    display: inline-block;
    content: "";
    width: 26px;
    height: 14px;
    background: url('../../images/privacyoptions.svg') no-repeat;
    margin-left: 6px;
    vertical-align: middle;
  }
  
  .footer__copyright a {
    color: #FFB151;
  }
}