/* 容器适配：增加版块呼吸感 */
.storytelling-gallery {
  padding: 120px 80px; /* 大量的间距，这是高级感的来源 */
  background-color: #f8f8f8; /* 极浅的灰色底，比纯白更冷峻，符合先锋风 */
}

/* 核心布局：不对称艺术陈列 */
.asymmetrical {
  display: flex; /* 左右布局 */
  align-items: center; /* 垂直居中 */
  gap: 60px; /* 左右间距 */
  position: relative;
}

/* 图片适配：主体偏左，留白偏右 */
.image-wrapper {
  flex: 1; /* 图片占据剩余空间 */
  overflow: hidden; /* 防止图片溢出，增加精致感 */
}

.image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(10%); /* 微弱的去色，增加电影感 */
}

.asymmetrical:hover .image-wrapper img {
  transform: scale(1.02); /* 极细微的缩放，优雅而内敛 */
}

/* 文字信息布局 */
.info-overlay {
  flex: 0 0 40%; /* 文字占据固定宽度 */
  text-align: left;
}

/* 文字排版建议 */
.product-title {
  font-family: 'Times New Roman', Times, serif; /* 使用经典衬线字体库 */
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #1a1a1a;
  font-weight: 300;
}

.product-description {
  font-family: 'Inter', sans-serif; /* 使用现代无衬线字体库 */
  font-size: 0.9rem;
  color: #666; /* 使用中灰以弱化信息传递 */
  margin-top: 15px;
}

.view-link {
  display: inline-block;
  margin-top: 25px;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 6px; /* 特有的奢侈品排版细节 */
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .storytelling-gallery {
    padding: 80px 20px; /* 移动端减小间距 */
  }

  .asymmetrical {
    flex-direction: column; /* 手机端转为单列 */
    align-items: flex-start;
    gap: 30px;
  }

  .info-overlay {
    flex: 0 0 100%; /* 文字占据全宽 */
    margin-top: 15px;
  }

  .product-title {
    font-size: 1.4rem;
  }
}

/*品牌分割线*/
.editorial-divider {
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.divider-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: #333;
  max-width: 600px;
  line-height: 1.5;
}

.divider-line {
  width: 50px;
  height: 1px;
  background-color: #000;
  margin-top: 30px;
}

/*品牌分割动效*/
.editorial-divider {
  animation: fadeIn 1.5s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/*2大1小*/

/* 容器设置：保持高级留白 */
.curated-gallery {
  padding: 150px 8% 100px 8%; /* 超大上下间距，给予呼吸感 */
  background-color: #f8f8f8; /* 极浅米灰色底 */
}

/* 核心布局：CSS Grid 实现不对称错位 */
.gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* 左侧占 1 份，右侧占 1.2 份，形成轻微不对称 */
  gap: 60px; /* 大量的间距 */
  align-items: start; /* 顶部对齐，形成错落感 */
}

/* 左侧两个图片的布局 */
.gallery-left {
  display: flex;
  flex-direction: column;
  gap: 60px; /* 左侧垂直方向的间距 */
}

/* 通用项设置：包含 Hover 效果 */
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #fff; /* 为图片增加一个干净的底色容器 */
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4; /* 强制肖像比例，秀场感基石 */
  object-fit: cover; /* 确保图片不变形 */
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(10%); /* 保持冷峻感 */
}

.gallery-item:hover img {
  transform: scale(1.02); /* 极细微的缩放 */
}

/* 右侧大图设置：可以略微向下偏移，增加灵动感 */
.item-large {
  position: relative;
  top: 40px; /* 这一步非常重要！右侧大图略微向下偏移，打破顶部死板的对齐线 */
}

/* 文字排版：继承之前的极简风格 */
.item-info {
  padding: 25px 0 10px 0;
  text-align: left;
}

.gallery-item h3 {
  font-family: 'Playfair Display', serif; /* 衬线体标题 */
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #1a1a1a;
  font-weight: 300;
}

.gallery-item p {
  font-family: 'Inter', sans-serif; /* 无衬线体正文 */
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* 右侧大图的 CTA 设置 */
.large-info {
  margin-top: 30px;
}

.large-info .view-link {
  display: inline-block;
  margin-top: 25px;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  color: #000;
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

/* 移动端适配：强制变垂直排列 */
@media screen and (max-width: 900px) {
  .curated-gallery {
    padding: 80px 20px;
  }
  .gallery-wrapper {
    grid-template-columns: 1fr; /* 手机端转为单列 */
    gap: 40px;
  }
  .item-large {
    top: 0; /* 手机端恢复原位 */
  }
  .gallery-left {
    gap: 40px;
  }
}




/* 强制容器内图片比例统一，防止撑破布局 */
.gallery-item img, 
.item-large img {
  display: block;
  width: 100% !important;
  height: 100% !important; /* 强制填满容器 */
  object-fit: cover !important; /* 核心：裁剪多余部分以填满盒子 */
  aspect-ratio: 4 / 5 !important; /* 核心：强制所有图片为 4:5 比例 */
  filter: grayscale(10%);
}

/* 确保父容器不被撑破 */
.gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  min-width: 0; /* 防止子元素溢出 */
}