.elvtd-app-store-card {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 2em;
  box-shadow: 10px 10px 100px 0px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  margin-top: 40px;

  .app-store-card-inner {
    border-radius: 24px;
    display: flex;
    flex-direction: column;

    .app-store-content {
      display: flex;
      flex-direction: row;
      gap: 56px;
      align-items: center;
      .content-column {
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;

        .card-title {
          font-size: 2em;
          font-weight: 500;
          line-height: 1.2;
          margin: 0;
          letter-spacing: -0.05em;
          color: #000;
          text-align: left;
          p  {
            margin: 0;
          }
        }
        .card-description {
          font-size: 1.2em;
          font-weight: 400;
          line-height: 1;
          margin: 0;
          color: #000;
        }
        .store-badges {
          display: flex;
          flex-direction: row;
          gap: 16px;
          flex-wrap: nowrap;
          align-items: center;

          .store-badge {
            display: inline-block;
            transition: opacity 0.3s ease;

            img {
              max-height: 40px;
              max-width: 100%;
              display: block;
            }
          }
          
        }
        .card-subtext {
            font-size: 0.9em;
            font-weight: 400;
            line-height: 1;
            margin: 0;
            font-style: italic;
            letter-spacing: 0;
            color: #000;
          }
      }

      .image-column {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        flex: 1;
        .main-image {
          width: 100%;
          height: auto;
          object-fit: cover;
          border-radius: 16px;
        }
      }

      
    }
  }

  .button-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 24px;

        .btn-text-mobile {
          display: none;
          width: 100%;

          .default-button {
            width: 100%;
            text-align: center;
            min-width: 100%;
            display: flex;
            justify-content: center;
            gap: 8px;
          }
        }
      }
}

@media (max-width: 768px) {
  .elvtd-app-store-card {
    padding: 20px;

    .app-store-card-inner {
      gap: 24px;

    .app-store-content {
      flex-direction: column;
      gap: 24px;

      .content-column {
        gap: 16px;

        .card-title {
          font-size: 1.75em;
          text-align: center;
        }

        .card-description {
          font-size: 15px;
          text-align: center;
        }

        .card-subtext {
          text-align: center;
        }

        .store-badges {
          justify-content: center;
        }
      }
    }

  }

    .card-subtext {
      font-size: 12px;
    }

    .button-wrapper {
      margin-top: 0;
      .btn-text-desktop {
        display: none;
      }

      .btn-text-mobile {
        display: block;
      }
    }
  }
}
