.product-powered {
  .container {

    .product-powered-left {
      flex: 1;
      margin-bottom: 100px;

      h1 {
        margin: 0 0 24px;
        font-size: var(--fs-5xl);
        line-height: 80%;
      }

      .text {
        margin-bottom: 50px;
      }
    }

    .product-powered-sub {
      margin-bottom: 200px;

      @media (max-width: 1024px) {
        margin-bottom: 100px;
      }

      .sub-title {
        @media (max-width: 1024px) {
          padding: 24px 24px 0 24px;
          border-radius: 5px 5px 0 0;
          overflow: hidden;
          border: 1px solid var(--c-gray-900);
          margin-bottom: 0;
          border-bottom: none;
        }
      }

      h2 {
        font-weight: 700;
        font-size: 75px;
        line-height: 100%;
        letter-spacing: -2px;
        margin-top: 0;
        margin-bottom: 24px;

        @media (max-width: 1024px) {
          font-size: 55px;
          letter-spacing: -2px;
        }
      }

      .text {
        width: 50%;

        @media (max-width: 1024px) {
          width: auto;
        }
      }

      .product-powered-sub-content {
        display: grid;
        grid-template-columns: 400px 290px 1fr;
        gap: 64px;
        align-items: center;
        justify-content: flex-start;

        @media (max-width: 1024px) {
          grid-template-columns: 1fr;
          gap: 16px;
        }

        figure {
          width: 100%;
          height: auto;
          aspect-ratio: 4/2.3;
          border-radius: 5px;
          overflow: hidden;
          border: 1px solid var(--c-gray-900);

          @media (max-width: 1024px) {
            border-radius: 0 0 5px 5px;
          }

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }

        .info-cards {
          .info-card {
            padding: 12px 16px;
            border: 1px solid var(--c-gray-900);
            border-radius: 5px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 16px;
            max-width: fit-content;
            font-family: var(--ff-fibbl);
            font-weight: 400;
            font-size: 20px;
            line-height: 100%;
            letter-spacing: -0.4px;
            text-transform: uppercase;
            margin-bottom: 16px;

            @media (max-width: 1024px) {
              width: 100%;
              max-width: none;
            }

            span {
              line-height: 100%;
            }

            figure {
              width: 32px;
              height: 32px;
              border: none;
              border-radius: 0;

              img {
                width: 100%;
                height: 100%;
                object-fit: contain;
              }
            }

            &.small {
              font-size: 16px;
            }
          }
        }
      }
    }

    .cta {
      @media (max-width: 1024px) {
        display: none;
      }
    }

    &.wider {
      width: 1300px;

      @media (max-width: 1366px) {
        width: 1120px;
      }

      @media (max-width: 1280px) {
        width: 1005px;
      }

      @media (max-width: 1024px) {
        width: auto;
      }

      .product-powered-sub {
        .product-powered-sub-content {
          grid-template-columns: 400px 500px 1fr;

          @media (max-width: 1366px) {
            grid-template-columns: 350px 400px 1fr;
            gap: 40px;
          }

          @media (max-width: 1024px) {
            grid-template-columns: 1fr;
            gap: 16px;
          }
        }
      }
    }
  }
}