.elementor-476 .elementor-element.elementor-element-e438e8f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-476 .elementor-element.elementor-element-f70dfd9{--display:flex;}.elementor-476 .elementor-element.elementor-element-ecdfc2a{--display:flex;}.elementor-476 .elementor-element.elementor-element-748e8a6{--display:flex;}.elementor-476 .elementor-element.elementor-element-afe8718{--display:flex;}.elementor-476 .elementor-element.elementor-element-6d5f163{--display:flex;}.elementor-476 .elementor-element.elementor-element-185889e{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-70c1245 *//* =========================================
   1. 基础容器
   ========================================= */
.oe-editorial-section {
  background-color: #080808;
  color: #e5e5e5;
  padding: 100px 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.oe-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 80px;
}

/* =========================================
   2. 左侧图片
   ========================================= */
.oe-visual-col {
  flex: 0 0 42%;
  position: relative;
}

.oe-image-wrapper {
  position: relative;
  z-index: 1;
}

.oe-main-img {
  width: 100%;
  height: auto;
  display: block;
  /* 稍微降低一点对比度，更有电影感 */
  filter: contrast(1.05) brightness(0.95); 
}

.oe-offset-border {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(197, 164, 126, 0.3);
  z-index: -1;
  transition: transform 0.6s ease;
}

.oe-editorial-section:hover .oe-offset-border {
  transform: translate(10px, -10px);
}

/* =========================================
   3. 右侧内容
   ========================================= */
.oe-content-col {
  flex: 1;
}

.oe-eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 20px;
}

.oe-headline {
  font-family: 'Playfair Display', serif; /* 确保你有衬线体 */
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 400;
  color: #fff;
}

.oe-text-gold {
  color: #d4af37;
  font-style: italic;
}

.oe-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 2px solid #d4af37;
}

.oe-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 0;
}

.oe-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.2), transparent);
  margin: 40px 0;
}

/* --- 杂志风格双栏 --- */
.oe-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 45px;
}

.oe-cap-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.oe-cap-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #999;
  margin: 0;
}

/* =========================================
   4. 按钮修复 (重点！)
   ========================================= */
.oe-actions {
  display: flex;
  align-items: center;
  gap: 30px; /* 两个按钮之间的距离 */
}

/* 主按钮 (金色背景) */
.oe-btn-primary {
  display: inline-flex; /* 修复：确保垂直居中 */
  align-items: center;
  justify-content: center;
  
  padding: 16px 36px; /* 加大一点点击区域 */
  background-color: #d4af37; /* 金色背景 */
  
  /* --- 关键修复：强制文字为黑色 --- */
  color: #000000 !important; 
  
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700; /* 加粗，防止淹没在背景里 */
  letter-spacing: 1px;
  line-height: 1; /* 防止行高导致文字偏上或偏下 */
  transition: all 0.3s ease;
  border: none; /* 去掉可能存在的边框 */
}

/* 悬停效果：变白底黑字 */
.oe-btn-primary:hover {
  background-color: #ffffff;
  color: #000000 !important;
  transform: translateY(-2px); /* 轻微上浮 */
}

/* 文字链接按钮 */
.oe-btn-text {
  display: inline-flex;
  align-items: center;
  color: #ffffff !important; /* 强制白色 */
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.3); /* 下划线 */
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.oe-btn-text .arrow {
  margin-left: 8px;
  font-size: 1.1em;
  transition: transform 0.3s;
}

.oe-btn-text:hover {
  border-color: #d4af37;
  color: #d4af37 !important;
}

.oe-btn-text:hover .arrow {
  transform: translateX(5px);
}

/* =========================================
   5. 移动端适配
   ========================================= */
@media (max-width: 1024px) {
  .oe-container {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
  }

  .oe-visual-col, .oe-content-col {
    flex: auto;
    width: 100%;
  }

  .oe-visual-col {
    max-width: 500px;
    margin: 0 auto;
  }

  .oe-headline {
    font-size: 2rem;
  }

  .oe-capabilities {
    grid-template-columns: 1fr; /* 手机上单栏 */
    gap: 30px;
  }
  
  .oe-actions {
    flex-direction: column; /* 手机上按钮垂直排列 */
    align-items: flex-start;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-db6647e *//* 实心金按钮 (修复文字看不见的问题) */
.oe-btn-solid {
  display: inline-block; 
  padding: 12px 30px; 
  background: #D4AF37; 
  
  /* 🔴 关键修复：强制文字变黑 */
  color: #000000 !important; 
  
  font-family: "Lato", sans-serif; 
  font-weight: 700; 
  text-transform: uppercase;
  text-decoration: none !important; /* 去掉下划线 */
  border: 1px solid #D4AF37; 
  transition: 0.3s; 
  font-size: 12px; 
  letter-spacing: 1px;
}

.oe-btn-solid:hover { 
  background: #fff; 
  border-color: #fff; 
  
  /* 悬停时：背景变白，文字变黑或金都可以，这里设为黑色保持对比度 */
  color: #000000 !important; 
  
  transform: translateY(-2px); 
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-00955c4 *//* 4. 按钮优化 (修复文字隐形问题) */
.oe-cta-btn {
  display: inline-block;
  padding: 18px 50px;
  background: #D4AF37;
  
  /* 🔴 核心修复：强制文字变黑 */
  color: #000000 !important;
  
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none !important; /* 去掉下划线 */
  border: 1px solid #D4AF37;
  /* 关键：去圆角 */
  border-radius: 0; 
  transition: all 0.3s ease;
}

.oe-cta-btn:hover {
  background: #fff; /* 悬停变白 */
  border-color: #fff;
  
  /* 🔴 悬停时确保文字依然是黑色 */
  color: #000000 !important;
  
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}/* End custom CSS */