.card {
  background-color: #030213;
  width: 100%;
  padding: 128px 24px;
  .card__inner {
    background: linear-gradient(135deg, #1447E6 0%, #162456 100%);
    box-shadow: 0 25px 50px -12px #00000040;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    align-items: center;
    padding: 64px 48px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
  }

  .card__content {
    max-width: 520px;
    .card__title {
      margin: 0 0 16px;
      h1, h2, h3, h4, h5, h6, p {
        margin: 0;
        color: #FFF;
        font-family: "Roboto", sans-serif;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: 0;
      }
    }

    .pta-description {
      margin-bottom: 24px;

      p {
        color: #CBD5E1;
        font-family: "Roboto", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0;
      }
    }

    .pta-features {
      margin: 0 0 40px;
      padding: 0;
      list-style: none;

      display: flex;
      flex-direction: column;
      gap: 16px;

      .pta-feature {
        display: flex;
        align-items: center;
        gap: 12px;

        .pta-feature__icon {
          border-radius: 100px;
          background: #ffffff33;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 20px;
          height: 20px;

          svg {
            width: 12px;
            height: 9px;

            path {
              color: #fff;
              fill: #fff;
            }
          }
        }

        .pta-feature__text {
          color: #FFF;
          font-family: "Roboto", sans-serif;
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 32px;
          letter-spacing: 0;
        }
      }
    }

    .pta-cta-row {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;

      .pta-cta {
        .btn {
          border-radius: 999px;
          padding: 14px 28px;
          text-decoration: none;

          &.btn-primary {
            border-radius: 112px;
            border: 4px solid #FF6200;
            background: #111;
            color: #fff;
            font-size: 18px;
            display: flex;
            padding: 16px;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            line-height: 24px;
            gap: 8px;
            transition: all 0.25s ease;

            svg {
              path {
                fill: #fff;
                color: #fff;
                transition: all 0.25s ease;
              }
            }

            &:hover {
              transform: translateY(-2px);
              box-shadow: 0 10px 20px 0 #ff620066;
            }

            &: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;
              }
            }
          }

        }
      }

      .pta-cta-side-text {
        color: #dbeafe99;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0;
      }
    }
  }

  .card__media {
    display: flex;
    justify-content: center;
    align-items: center;

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    .pta-media-wistia,
    .pta-media-file {
      position: relative;
      width: 100%;
    }

    .pta-media-thumb {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      border-radius: 8px;
    }

    .pta-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);

      width: 72px;
      height: 72px;

      border: 0;
      border-radius: 50%;

      background: #000000bf;
      color: #fff;
      cursor: pointer;

      transition: all 0.2s ease;

      &:hover {
        background: #000000e6;
        transform: translate(-50%, -50%) scale(1.05);
      }
    }
  }
}
.card.padding-small{
  padding-top: 20px;
}
.card.padding-medium{
  padding-top: 40px;
}
.card.padding-large{
  padding-top: 60px;
}
@media (max-width: 1024px) {
  .card {
    padding: 64px 24px;
    .card__inner {
      flex-direction: column;
      gap: 64px 0;
    }

    .card__content {
      max-width: 100%;

      .pta-features {
        padding-left: 24px;
      }
    }
  }
}

@media (max-width: 639px) {
  .card {
    padding: 48px 24px;
    .card__inner {
      padding: 64px 24px;
      gap: 48px 0;

      .card__content {
        .card__title {
            h1, h2, h3, h4, h5, h6, p {
              font-size: 34px;
              line-height: 44px;
            }
          }
          .pta-description {
            p {
              font-size: 18px;
            }
          }
        }

      .pta-cta-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }
  }
}
