.elementor-3703 .elementor-element.elementor-element-79066c4{--display:flex;}/* Start custom CSS for wd_text_block, class: .elementor-element-10eba62 *//* 外層容器：不設背景色 */
.jf-blog-container {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 20px 10px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: left;
}

/* 獨立卡片樣式：無圓角、靠左對齊 */
.jf-blog-card {
  background-color: #ffffff;
  border-left: 6px solid #5A4275; /* 使用深紫作為卡片精神線 */
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  text-align: left;
}

/* 標題樣式 */
.jf-blog-main-title {
  color: #5A4275;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 20px 0;
  text-align: left;
}

.jf-blog-sub-title {
  color: #5A4275;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 18px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #D0C1EC; /* 主色亮紫底線 */
  text-align: left;
}

/* 內文樣式 */
.jf-blog-text {
  color: #333333;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px 0;
  text-align: left;
}
.jf-blog-text:last-child {
  margin-bottom: 0;
}

/* 重點標籤與連結 */
.jf-blog-highlight {
  color: #5A4275;
  font-weight: bold;
}

.jf-blog-link {
  color: #5A4275;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.jf-blog-link:hover {
  color: #D0C1EC;
}

/* 表格響應式包覆層 */
.jf-blog-table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  -webkit-overflow-scrolling: touch;
}

/* 表格樣式：無圓角、直角設計 */
.jf-blog-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
  min-width: 500px;
}

.jf-blog-table th {
  background-color: #D0C1EC; /* 主色亮紫 */
  color: #5A4275;
  font-weight: bold;
  padding: 12px 15px;
  border: 1px solid #b3a2d4;
}

.jf-blog-table td {
  padding: 12px 15px;
  border: 1px solid #EAEAEA;
  color: #444444;
  background-color: #ffffff;
}

.jf-blog-table tr:nth-child(even) td {
  background-color: #FDFBFF; /* 輕微交錯底色 */
}

.jf-blog-table td.jf-blog-td-group {
  background-color: #F5F1FD;
  font-weight: bold;
  color: #5A4275;
  border-right: 1px solid #D0C1EC;
}

/* CTA 特別卡片區塊 */
.jf-blog-cta-section {
  background-color: #F5F1FD; /* 改用極淺紫作底色區隔 */
  border-left: 6px solid #D0C1EC;
}

.jf-blog-cta-title {
  color: #5A4275;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 15px 0;
  text-align: left;
}

.jf-blog-inline-btn {
  color: #5A4275;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px dashed #5A4275;
}
.jf-blog-inline-btn:hover {
  color: #b3a2d4;
  border-bottom-color: #b3a2d4;
}

.jf-blog-cta-highlight {
  font-weight: bold;
  color: #5A4275;
  font-size: 17px;
  margin: 20px 0;
}

/* 按部群組與直角按鈕 */
.jf-blog-btn-group {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.jf-blog-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.jf-blog-btn-primary {
  background-color: #5A4275;
  color: #ffffff;
  border-color: #5A4275;
}
.jf-blog-btn-primary:hover {
  background-color: #453059;
  border-color: #453059;
}

.jf-blog-btn-secondary {
  background-color: transparent;
  color: #5A4275;
  border-color: #5A4275;
}
.jf-blog-btn-secondary:hover {
  background-color: #D0C1EC;
  color: #5A4275;
  border-color: #D0C1EC;
}

/* RWD 手機版優化：調整 padding 避免看起來太胖、太臃腫 */
@media screen and (max-width: 768px) {
  .jf-blog-container {
    padding: 10px 5px; /* 縮減最外層間距 */
  }
  
  .jf-blog-card {
    padding: 20px 15px; /* 大幅縮小手機版卡片內襯，精實視覺 */
    margin-bottom: 15px;
  }

  .jf-blog-main-title {
    font-size: 22px;
  }

  .jf-blog-sub-title {
    font-size: 18px;
  }

  .jf-blog-text {
    font-size: 15px;
    line-height: 1.65;
  }

  .jf-blog-btn-group {
    flex-direction: column; /* 按鈕在手機版改為寬度100%垂直排列 */
    gap: 10px;
  }

  .jf-blog-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
  }
}/* End custom CSS */