/* How It's Made page — extracted from opjoys.cn_html/pages/how-its-made.html inline <style> */

*, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #111;
      line-height: 1.6;
    }

    /* Banner 整体容器 */
    .banner {
      position: relative;
      background: #ff467f url(//youtooz.com/cdn/shop/t/8/assets/page-how-its-made-header-mast.jpg?v=142681230054749202291637191556) no-repeat bottom left;
      background-size: cover;
      padding: 180px 40px 140px;
      text-align: center;
      overflow: hidden;
    }
    @media (max-width: 768px) {
      .banner {
        padding: 120px 20px 100px;
      }
    }

    .banner-left {
      position: absolute;
      left: 40px;
      top: 40px;
      z-index: 2;
    }
    @media (max-width: 768px) {
      .banner-left {
        left: 20px;
        top: 30px;
      }
    }

    .logo {
      font-family: 'Luckiest Guy', Helvetica, system-ui, sans-serif;
      font-size: 42px;
      color: #fff;
    }

    .subtitle {
      font-size: 13px;
      color: #ff467f;
      background-color: #fff;
      padding: 4px 10px;
      border-radius: 4px;
      display: inline-block;
      margin-top: 4px;
      font-weight: 600;
    }

    .banner h1 {
      font-family: 'Luckiest Guy', Helvetica, system-ui, sans-serif;
      font-size: 88px;
      line-height: 88px;
      color: #fff;
      margin: 20px 0 20px;
      text-transform: uppercase;
    }
    @media (max-width: 768px) {
      .banner h1 {
        font-size: 46px;
        line-height: 46px;
      }
    }

    .banner-description {
      font-size: 24px;
      line-height: 36px;
      color: #fff;
      max-width: 840px;
      margin: 0 auto 40px;
    }
    @media (max-width: 768px) {
      .banner-description {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 30px;
      }
    }

    .lets-start-button {
      display: inline-flex;
      align-items: center;
      background: #fff;
      color: #000;
      padding: 15px 20px;
      border-radius: 99px;
      font-weight: 600;
      font-size: 16px;
      line-height: 19px;
      cursor: pointer;
    }
    .lets-start-button:hover {
      background: #000;
      color: #fff;
    }
    .lets-start-button svg {
      margin-left: 5px;
    }

    .banner::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 80px;
      background: #ffffff;
      clip-path: ellipse(70% 100% at 50% 100%);
    }

    /* 正文区域 */
    .content-wrapper {
      position: relative;
      margin-top: -60px;
      z-index: 1;
    }
    @media (max-width: 768px) {
      .content-wrapper {
        margin-top: -40px;
      }
    }

    .container {
      max-width: 1340px;
      margin: 0 auto;
      padding: 0 30px;
    }
    @media (max-width: 800px) {
      .container {
        padding: 0 20px;
      }
    }

    /* 分割线容器（左侧粉色线） */
    .timeline-wrapper {
      position: relative;
      padding-left: 60px;
    }
    @media (max-width: 800px) {
      .timeline-wrapper {
        padding-left: 50px;
      }
    }

    .timeline-line {
      position: absolute;
      left: 0;
      top: 0;
      width: 6px;
      height: 100%;
      background: #ff467f;
    }

    /* v1.0.51：timeline-dot 与 timeline-line 对齐
     * 原因：.timeline-wrapper 有 padding-left:60px，让 .MakingOf-connector-section
     *       从 wrapper 的 x=60 开始；.timeline-line 在 wrapper 的 x=0（center=3），
     *       原 dot left:-15px → dot center=63，与 line center=3 错开 60px。
     * 修复：把 dot 的 left 改成 -75px（= -15 - 60），让 dot 跨过 wrapper 的左 padding，
     *       正好骑在 line 上（dot center = -57+18 = -39 不对…重新算：
     *       connector-section 起始 x=60；dot left=-75 → dot 起始 x=-15 → center=-15+18=3 ✓
     */
    .timeline-dot {
      position: absolute;
      left: -75px;
      width: 36px;
      height: 36px;
      background: #fff;
      border: 6px solid #ff467f;
      border-radius: 50%;
    }
    @media (max-width: 800px) {
      .timeline-dot {
        left: -62px;
        width: 30px;
        height: 30px;
      }
    }

    .MakingOf-connector-section {
      position: relative;
      padding: 115px 0 0;
    }
    @media (max-width: 800px) {
      .MakingOf-connector-section {
        padding-top: 65px;
      }
    }

    .MakingOf-connector-section--last .timeline-line {
      height: 115px;
    }
    @media (max-width: 800px) {
      .MakingOf-connector-section--last .timeline-line {
        height: 80px;
      }
    }

    .MakingOf-masonry-layout {
      display: flex;
      margin-left: -30px;
      margin-bottom: -30px;
    }
    .MakingOf-masonry-layout_column {
      width: 50%;
      padding-left: 30px;
    }
    @media (max-width: 1000px) {
      .MakingOf-masonry-layout {
        flex-direction: column;
        margin-left: 0;
      }
      .MakingOf-masonry-layout_column {
        width: auto;
        padding-left: 0;
      }
    }

    @media (max-width: 1000px) {
      .MakingOf-masonry-layout_column:nth-child(1) > .MakingOf-masonry-layout_column_item:nth-child(odd) { order: 1; }
      .MakingOf-masonry-layout_column:nth-child(1) > .MakingOf-masonry-layout_column_item:nth-child(even) { order: 3; }
      .MakingOf-masonry-layout_column:nth-child(2) > .MakingOf-masonry-layout_column_item:nth-child(odd) { order: 2; }
      .MakingOf-masonry-layout_column:nth-child(2) > .MakingOf-masonry-layout_column_item:nth-child(even) { order: 4; }
    }

    .MakingOf-masonry-layout_column_item {
      margin-bottom: 30px;
    }

    .MakingOf-section-head {
      margin-bottom: 20px;
    }

    .MakingOf-section-heading {
      font-family: 'Luckiest Guy', Helvetica, system-ui, sans-serif;
      font-size: 42px;
      line-height: 33px;
      text-transform: uppercase;
      color: #000000;
      margin-bottom: 10px;
    }
    @media (max-width: 700px) {
      .MakingOf-section-heading {
        font-size: 32px;
        line-height: 32px;
      }
    }

    .MakingOf-section-badge {
      font-weight: 900;
      font-size: 14px;
      line-height: 16px;
      text-transform: uppercase;
      color: #FFFFFF;
      padding: 10px 20px;
      border-radius: 99px;
      background: #ff467f;
      display: inline-flex;
    }

    .MakingOf-text {
      font-weight: 500;
      font-size: 18px;
      line-height: 36px;
      color: #000000;
    }
    @media (max-width: 700px) {
      .MakingOf-text {
        font-size: 16px;
        line-height: 32px;
      }
    }

    .MakingOf-media-box {
      border: 1px solid #DBDBDB;
      border-radius: 10px;
      overflow: hidden;
    }

    .MakingOf-media-box_media img {
      width: 100%;
      height: auto;
      display: block;
    }

    .MakingOf-media-box_caption {
      border-top: 1px solid #DBDBDB;
      font-weight: 500;
      font-size: 18px;
      line-height: 26px;
      text-align: center;
      color: #000000;
      padding: 10px 15px;
    }
    @media (max-width: 700px) {
      .MakingOf-media-box_caption {
        font-size: 14px;
      }
    }

    .MakingOf-stat-box {
      border: 1px solid #DBDBDB;
      border-radius: 10px;
      padding: 60px 30px;
    }

    .MakingOf-stat-box_heading {
      font-family: 'Luckiest Guy', Helvetica, system-ui, sans-serif;
      font-size: 60px;
      line-height: 60px;
      text-align: center;
      text-transform: uppercase;
      color: #ff467f;
      margin-bottom: 8px;
    }

    .MakingOf-stat-box_text {
      font-weight: 500;
      font-size: 24px;
      line-height: 36px;
      text-align: center;
      color: #000000;
    }

    .MakingOf-stat-box_text--compact {
      font-size: 18px;
      line-height: 36px;
    }

    @media (max-width: 700px) {
      .MakingOf-stat-box {
        padding: 40px 15px;
      }
      .MakingOf-stat-box_heading {
        font-size: 42px;
        line-height: 42px;
      }
      .MakingOf-stat-box_text {
        font-size: 16px;
        line-height: 24px;
      }
    }

    .MakingOf-footer-image-positioning {
      padding: 60px 0 100px 0;
    }

    .MakingOf-full-width-media {
      border-radius: 10px;
      overflow: hidden;
      padding: 100px 40px;
      background: #ff467f no-repeat top center;
      background-size: 100% auto;
    }
    @media (max-width: 800px) {
      .MakingOf-full-width-media {
        padding: 70px 30px;
      }
    }
    @media (max-width: 500px) {
      .MakingOf-full-width-media {
        padding: 50px 20px;
      }
    }

    .MakingOf-full-width-media-heading {
      font-family: 'Luckiest Guy', Helvetica, system-ui, sans-serif;
      font-size: 42px;
      line-height: 42px;
      text-transform: uppercase;
      color: #FFFFFF;
    }
    @media (max-width: 700px) {
      .MakingOf-full-width-media-heading {
        font-size: 32px;
        line-height: 32px;
      }
    }

    .MakingOf-full-width-media-text {
      font-size: 18px;
      line-height: 36px;
      color: #FFFFFF;
      margin-top: 30px;
    }
    @media (max-width: 700px) {
      .MakingOf-full-width-media-text {
        font-size: 16px;
        line-height: 32px;
      }
    }