/** Shopify CDN: Minification failed

Line 181:3 Expected "}" to go with "{"

**/
.joe-fp-track .block-row {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 36px 48px 0;
        gap: 24px;
    }

    .joe-max-box {
     background: #f5f5f7;
    
    .joe-tenniix-title1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: 0;
    color: #333336;
    text-align: center;
    font-family: Poppins;
    }
    .block-image {
        flex: 6;
        display: flex;
         justify-content: center;
         flex-shrink: 0;
    }
    .block-image  img{
        width:100%;
        height:auto;
        border-radius: 32px;
    }

    .block-content-svgs {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-bottom: 28px;
    }

    .block-content-svg {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    span.block-content-svg_logo {
    width: 24px;
    height: 24px;
}

    span.block-content-svg_text {
        color: rgba(51, 51, 54, 1);
        font-family: Poppins;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        text-align: right;
    }


    .block-content {
        flex: 4;
        color: #fff;
         flex-shrink: 0;
    }
    .block-content h3 {
        color: #333336;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 32px;
    font-family: Poppins;
    }
    .block-content-des {
        font-size: 16px;
    color: #1d1d1f;
    line-height: 24px;
    margin-bottom: 18px;
    font-weight: 400;
    font-family: Poppins;
    }
    .block-content-des a, .block-content-des strong {
        font-weight:normal;
        color: #fff;
    }
    

  @media screen and (max-width: 768px) {
      .block-row {
          flex-direction: column !important;
          margin: 20px 20px 0 20px;
      }
      .block-image {
          width: 100%;
      }
      .block-image img {
          height: auto;
          object-fit: cover;
      }
      .block-content {
          padding: 20px 0;
      }
      .block-content h3 {
          font-size: 24px;
          text-align: center;
      }
      .block-content-des {
          font-size: 16px;
          text-align: center;
      }
      /* ========== 移动端：横向轮播 + dots ========== */
        @media screen and (max-width: 768px) {
        .joe-fp-slider {
            position: relative;
            overflow: hidden;
        }
        .joe-fp-track {
            display: flex;
            transition: transform 0.4s ease;
            will-change: transform;
        }
        /* 每个 slide 占满一屏宽 */
        .joe-fp-track .block-row {
            flex: 0 0 100%;
            margin: 0;           
            gap: 24px;           
            flex-direction: column !important; /* 移动端内部依旧上下排，但整个 slide 横向切换 */
            padding: 0 18px;
        }

        .block-image { width: 100%; }
        .block-image img {
            height: auto;
            object-fit: cover;
            width: 100%;
            border-radius: 32px;
        }

        .block-content {
            padding: 0;
            text-align: left !important;
        }
        .block-content h3,
        .block-content-des {
            text-align: inherit; /* 继续受 alignment 控制 */
        }

        /* dots */
        .joe-fp-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        .joe-fp-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #e6e6e9;
            cursor: pointer;
            transition: opacity .2s ease, width .2s ease;
        }
        .joe-fp-dot.is-active {
            background: #86868b;
        }
        .joe-tenniix-title1 {
            padding: 0 18px;
            margin-bottom: 48px;
        }
        }

        /*桌面端依旧保留你原本的两列布局与样式 */
        @media screen and (min-width: 769px) {
        .joe-fp-track { transform: none !important; } /* 防止桌面端被 JS 残留的 transform 影响 */
        }

  }