/* =========================
   LineMini Page
========================= */

.line-mini-page {
  background: #f7f7f7;
}

/* =========================
   Hero（上半部分）
========================= */
.line-mini-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.line-mini-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f2d57;
  margin: 0 0 20px;
  position: relative;
}

.line-mini-title::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  background: #b08d2f;
  margin: 18px auto 0;
  border-radius: 999px;
}

.line-mini-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* =========================
   Content（shortcode 外框）
========================= */
.line-mini-content {
  padding: 30px 0 100px;
}

.line-mini-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* =========================
   表單區內部優化（Line Form）
========================= */

/* ===== 綠色Header區（重點） ===== */
.lmcf-header {
  color: #fff;
}

.lmcf-header .lmcf-title {
  color: #fff;
  font-weight: 700;
}

.lmcf-header .lmcf-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.lmcf-header p,
.lmcf-header h1,
.lmcf-header h2,
.lmcf-header h3 {
  color: #fff;
}

/* ===== 表單標題 ===== */
.line-mini-form-wrap h2,
.line-mini-form-wrap h3 {
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f2d57;
}

/* ===== 段落 ===== */
.line-mini-form-wrap p {
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== 表單欄位 ===== */
.line-mini-form-wrap input,
.line-mini-form-wrap textarea,
.line-mini-form-wrap select {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* focus效果 */
.line-mini-form-wrap input:focus,
.line-mini-form-wrap textarea:focus {
  border-color: #b08d2f;
  outline: none;
}

/* label */
.line-mini-form-wrap label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* =========================
   RWD
========================= */
@media (max-width: 1024px) {
  .line-mini-title {
    font-size: 44px;
  }

  .line-mini-form-wrap {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .line-mini-hero {
    padding: 56px 0 28px;
  }

  .line-mini-title {
    font-size: 34px;
  }

  .line-mini-lead {
    font-size: 16px;
  }

  .line-mini-content {
    padding: 20px 0 72px;
  }

  .line-mini-form-wrap {
    border-radius: 16px;
    padding: 20px;
  }
}