/** Shopify CDN: Minification failed

Line 15:16 Unexpected "{"
Line 15:25 Expected ":"
Line 15:32 Unexpected "{"
Line 65:18 Unexpected "{"
Line 65:27 Expected ":"
Line 65:34 Unexpected "{"

**/


/* CSS from section stylesheet tags */
/* 打穿到浏览器左边 */
.cw-full-bleed-{{ section.id }} {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* 外层容器背景 */
.cw-frame-section {
  background: #ffffff;
}

/* 左对齐到 1600px 容器左边 */
.cw-frame-alignment--left {
  margin-left: calc(50% - (var(--theme-max-width) / 2)) !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* 居中 / 右对齐保留 */
.cw-frame-alignment--center {
  margin: 0 auto !important;
}
.cw-frame-alignment--right {
  margin: 0 0 0 auto !important;
}

/* ===== 关键：真正内容的二次内缩 ===== */
/* 你觉得还没齐的话，就改这里的 5.2rem 一个地方就行 */
.cw-inner-content {
  --cw-content-left-gap: 5.2rem;  /* ← 改这个数就能微调到跟上面一条线 */
  padding: 2.5rem 1.2rem 3rem;
  padding-left: var(--cw-content-left-gap);
}

@media (max-width: 1600px) {
  /* 屏幕 < 1600 时，外层回到主题边距 */
  .cw-frame-alignment--left {
    margin-left: var(--page-width-padding, 4.8rem) !important;
  }
  .cw-inner-content {
    /* 内层跟着用主题边距，这样不会太贴边 */
    padding-left: var(--page-width-padding, 4.8rem);
  }
}

@media (max-width: 749px) {
  .cw-full-bleed-{{ section.id }} {
    width: 100vw;
    margin-left: -50vw;
  }
  .cw-frame-alignment--left {
    margin-left: 1rem !important;
  }
  .cw-inner-content {
    padding: 2rem 1rem 2.5rem;
  }
}

/* ---------------------------------------------------- */
/* 以下为你的原始样式，保持不变 */
/* ---------------------------------------------------- */

.cw-frame-section__heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4F3D01;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.cw-tight-title {
  margin: 0;
  line-height: 1.1;
}
.cw-tight-text {
  margin: 0.25rem 0 0 0;
  line-height: 1.45;
  color: #4F3D01;
}

.frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.frame .text-wrapper {
  font-family: "REM-SemiBold", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #4F3D01;
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.frame .text-wrapper a {
  color: inherit;
  text-decoration: inherit;
}
.frame .ready-to-turn-heads {
  font-family: "Inter-Regular", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #4F3D01;
}
.frame .div {
  gap: 10px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.frame .div-wrapper {
  padding: 2px 8px;
  background-color: #F3F1EA;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}
.frame .text-wrapper-2 {
  font-family: "Inter-Regular", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: #4F3D01;
  white-space: nowrap;
}

/* 分页 */
.cw-pagination {
  margin-top: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #4F3D01;
  font-size: 0.95rem;
}
.cw-page-arrow {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #dddddd;
  background-color: #ffffff;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  font-weight: bold;
}
.cw-page-arrow.cw-disabled {
  opacity: 0.4;
  pointer-events: none;
}