.papertrail-cta-banner {
  background: #030213;
  padding: 64px 24px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      #00001f 0%,
      #0a0a4f 20%,
      #2b7fff 50%,
      #0a0a4f 80%,
      #00001f 100%
    );
  }

  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      #00001f 0%,
      #0a0a4f 20%,
      #615fff 50%,
      #0a0a4f 80%,
      #00001f 100%
    );
  }

  .content-columns {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 64px;
    gap: 48px;
  }

  .content-left {
    flex: 1;
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      margin: 0;
      color: #c9d8d8;
      font-family: "Roboto", sans-serif;
      font-size: 24px;
      line-height: 36px;
      letter-spacing: 0;
    }
  }

  .content-right {
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      height: 44px;
      padding: 12px 16px 12px 24px;
      border: 4px solid #ff6200;
      border-radius: 999px;
      background: transparent;
      color: #fff;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 24px;
      text-transform: capitalize;
      text-decoration: none;
      transition: all 0.3s ease;

      &:link,
      &:visited {
        background: #111;
        border-color: #ff6200;
        color: #fff;
      }

      &:hover {
        background: #111;
        border-color: #ff6200;
        box-shadow:
          0 6px 8px #ff620080,
          0 12px 20px #ff620059;
        transform: translateY(-2px);
      }

      &:active {
        background: #ff6200;
        border-color: #ff6200;
        color: #111;
        box-shadow: none;
        transform: translateY(1px);

        svg path {
          fill: #111;
          color: #111;
        }
      }

      &:disabled,
      &.disabled,
      &[aria-disabled="true"] {
        background: #555;
        border-color: #555;
        color: #0000008c;
        cursor: not-allowed;
        pointer-events: none;
        box-shadow: none;

        svg path {
          fill: #0000008c;
          color: #0000008c;
        }
      }
    }
  }
}
@media (max-width: 1024px) {
  .papertrail-cta-banner {
    background: #030213;
  }
}

@media (max-width: 639px) {
  .papertrail-cta-banner {
    padding: 48px 24px;
    .content-columns {
      flex-direction: column;
      padding: 0;
      align-items: flex-start;
    }
  }
}

@media (max-width: 400px) {
  .papertrail-cta-banner {
    .content-left :is(p, h1, h2, h3, h4, h5, h6) {
      font-size: 20px;
      line-height: 30px;
    }
  }
}
