 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

      :root {
        --white: #fff;
        --zw-alert-background-color: #d05416;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }
      a {
        text-decoration: none;
      }

      .alert {
        background-color: var(--zw-alert-background-color);
        color: var(--white);
        padding: 1rem;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 1rem;

        p {
          margin: 0;
        }
      }

      body {
        font-family: 'Inter', sans-serif;
        background: var(--white);
        display: flex;
        flex-direction: column;
        height: 100vh;
        margin: 0;
      }

      .content {
        padding: 2rem 2rem 2rem 3rem;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(2rem, 8vw, 6rem);
      }

      .widget-container {
        flex: 0 1 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
      }

      main {
        width: 400px;
        max-width: 100%;
      }

      aside {
        flex: 0 1 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
      }

      .heading {
        font-family: 'Object Sans', sans-serif;
        font-weight: 800;
        font-size: clamp(2rem, 3.5vw, 3.5rem);
        line-height: 1.2;
        max-width: 600px;
      }

      footer {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin: 0 auto 1rem;
        text-align: center;
      }

      .terms {
        flex: 1;
        margin: 0 clamp(1rem, 7vw, 3rem);
        white-space: nowrap;
        font-size: 0.8125rem;
      }

      @font-face {
        font-family: 'Object Sans';
        font-style: normal;
        font-weight: 800;
        src: url('https://www.zillowstatic.com/s3/constellation-website/public/shared/fonts/object-sans/latest/object-sans-heavy.woff2')
          format('woff2');
      }

      @media screen and (max-width: 875px) {
        .content {
          padding: 1rem;
          gap: 0;
        }

        .widget-container {
          flex: none;
        }

        aside {
          display: none;
        }
      }