/* Start custom CSS for wp-widget-text, class: .elementor-element-3651b44 */.blog-container {
  font-family: "Noto Sans TC", "Helvetica Neue", sans-serif;
  max-width: 860px;
  margin: 0 auto;         /* 頂部空白移除 */
  color: #333;
  background: #fff !important;
  padding: 0 30px 40px;   /* 上方 padding 改為 0 */
  line-height: 1.8;
}

/* 🔹 移除 h1 樣式，讓 Elementor 控制大標題外觀 */
/* （h1 原設定已刪除） */

h2 {
  color: #264c8e;
  border-bottom: 2px solid #e6e9ef;
  padding-bottom: 6px;
  margin-top: 40px;
}

h3 {
  color: #3a4b63;
  margin-top: 20px;
}

.author {
  color: #777;
  margin-bottom: 20px;
}

blockquote {
  background: #f2f5f9;
  border-left: 5px solid #90a4c3;
  padding: 15px 20px;
  font-style: italic;
  margin: 20px 0;
}

ul, ol {
  margin-left: 20px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table th {
  background: #eaf0f7;
  color: #1b3b6f;
  padding: 10px;
  text-align: left;
}

table td {
  border: 1px solid #dee3eb;
  padding: 10px;
}

/* ✅ CTA 按鈕區間距調整 */
.cta {
  text-align: center;
  margin: 32px 0 24px 0;   /* 上 32px，下 24px */
}

.cta-btn {
  background: #1b3b6f;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #2a568f;
  transform: translateY(-2px);
}

/* ✅ FAQ 展開/收合樣式修正 */
.faq details {
  border: 1px solid #d1d8e0;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 14px 18px;
  background: #f8f9fb;
  transition: all 0.3s ease;
}

.faq summary {
  font-weight: 600;
  color: #1b3b6f;
  cursor: pointer;
  position: relative;
  list-style: none;
}

.faq summary::marker,
.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "＋";
  position: absolute;
  right: 0;
  color: #3d6fb4;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  content: "－";
}

.faq details[open] {
  background: #eef3f8;
  border-color: #b6c6db;
}

.faq details p,
.faq details > *:not(summary) {
  margin-top: 10px;
  color: #444;
}/* End custom CSS */