/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 120:0 Unexpected "<"

**/
<style>
  .video-collection-header.flex.justify-between.items-center.mb-6 {
    max-width: 1440px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
  }
  .fade-out-container {
    position: relative;
    height: 80px; /* 限制第二行显示高度 */
    overflow: hidden; /* 隐藏超出 80px 的内容 */
  }
  .fade-out {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* 覆盖整个 80px 区域 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none; /* 防止干扰点击 */
  }
  .video-hidden {
    display: none;
  }
  .toggle-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    cursor: pointer;
  }
  .card-container {
    position: relative; /* 确保子元素定位正确 */
  }
  .aspect-ratio, .card-content {
    position: relative; /* 确保内容定位 */
  }
  .video-collection-header.flex.justify-between\.items-center\.mb-6 {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: auto auto 60px;
    align-items: center;
  }
  h2.section-title {
    font-family: 'Poppins', sans-serif; 
    font-weight: 700;                   
    font-size: 44px;
    line-height: 52px;
    letter-spacing: 0.4px;
    color: #1A1A1A;
    margin-bottom:0;
    word-spacing: 4px;
  }
  span.items-count {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.5px;
    text-align: justify;
  }
  div#toggle-videos svg:hover {
    background: #f7f7f7;
  }

  /* 媒体查询调整，手机端使用 mobile_columns */
  @media (max-width: 767px) {
    .grid-layout {
      grid-template-columns: repeat({{ section.settings.mobile_columns | default: 1 }}, minmax(0, 1fr)) !important;
    }
    .page-width {
        padding: 0 24px;
    }
    .video-collection-header.flex.justify-between\.items-center\.mb-6 {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 24px;
    }
    h2.section-title {
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -1px;
        text-align: left;
        margin-bottom: 12px;
    }
    span.items-count {
        font-size: 13px;
        line-height: 13px;
        letter-spacing: 0px;
        text-align: justify;
    }
    span.tag {
        font-size: 13px;
        line-height: 13px;
        letter-spacing: 0px;
        opacity: 1;
        border-radius: 4px;
        padding-top: 7.5px;
        padding-right: 10px;
        padding-bottom: 7.5px;
        padding-left: 10px;
    }
    .card-content {
        padding: 16px;
    }
    .card-content-a-and-t p.title {
        font-family: Poppins;
        font-weight: 500;
        font-size: 15px;
        line-height: 21px;
        letter-spacing: 0px;
    }
  }
</style>