.centered-captions {
  .container {
    h2 {
      margin: 0 0 0.4em;
      font-size: var(--fs-3xl);
      font-weight: 700;
      text-align: center;
      line-height: 90%;
      letter-spacing: -2.25px;

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

    .text {
      max-width: 570px;
      margin: 0 auto 40px;
      text-align: center;
    }

    .boxed-title {
      margin-bottom: 40px;
    }

    .pricing-package_title_wrap {
      justify-content: center;
      margin-bottom: 80px;

      @media (max-width: 1024px) {
        margin-bottom: 40px;
        padding: 0;
      }

      .pricing-package_title {
        h3 {
          display: block;
          text-align: center;

          span {
            color: var(--c-primary-200);
          }

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

    .info-card {
      display: flex;
      margin: 0 auto 16px;
      padding: 12px 16px;
      border: 1px solid var(--c-gray-900);
      border-radius: 5px;
      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;

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

      span {
        line-height: 100%;
      }

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

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

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

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