/********************************************
 * Hibachi W – Rentals Section
 * rentals.css (final aligned version)
 ********************************************/

/* 整个区域 */
.hw-rentals-section {
  padding: 40px 0 60px;
  background-color: #ffffff;
}

/* 中间内容最大宽度（与你全站 container 对齐） */
.hw-rentals-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 双列布局（小屏变单列） */
.hw-rentals-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ================= 左侧文案 ================= */

.hw-rentals-text-block {
  flex: 1 1 50%;
}

.hw-rentals-title {
  margin-bottom: 16px;
  text-align: left; /* 全站正文是居左 */
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 700;
}

.hw-rentals-subtitle {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.hw-rentals-paragraph {
  margin-bottom: 16px;
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 1.7;
  color: #222;
}

.hw-rentals-list {
  margin: 0 0 16px 1.2rem;
  padding: 0;
}

.hw-rentals-list li {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: clamp(15px, 1.7vw, 16px);
  color: #333;
}

/* ================= 右侧图片 + 文字 + CTA ================= */

.hw-rentals-block {
  flex: 1 1 50%;
  margin-top: 0;
  text-align: left;         /* 和左侧对齐 */
  max-width: 700px;         /* 控制宽度，与左侧段落宽度相当 */
  margin-left: 0;           /* 关键：对齐到左边 container */
}

/* 图片居中显示 */
.hw-rentals-image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hw-rentals-img {
  width: 100%;
  max-width: 1100px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.25),
      0 18px 40px rgba(0, 0, 0, 0.22);
}

/* 图片下方说明文字 */
.hw-rentals-image-info {
  text-align: center;
  margin-bottom: 20px;
}

.hw-rentals-image-info .accent {
  font-size: 22px;
  color: #ff4f00;
  font-weight: 600;
  margin: 0;
}

.hw-rentals-image-info .title {
  font-size: 26px;
  font-weight: 600;
  margin: 6px 0;
}

.hw-rentals-image-info .desc {
  font-size: 16px;
  color: #444;
  margin-top: 4px;
  line-height: 1.6;
}

/* CTA 按钮保持居中 */
.hw-rentals-cta {
  text-align: center;
  margin-top: 20px;
}

/* ================= 响应式 ================= */
@media (min-width: 992px) {

  .hw-rentals-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  /* 左右块互相对齐 */
  .hw-rentals-text-block {
    padding-right: 24px;
  }

  .hw-rentals-block {
    padding-left: 24px;
  }
}
