.elementor-17295 .elementor-element.elementor-element-f59d827{--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-17295 .elementor-element.elementor-element-ea98ff7{font-weight:var( --e-global-typography-text-font-weight );}.elementor-17295 .elementor-element.elementor-element-9ccc3ce{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-ea98ff7 *//* 最外層包裹區塊：移除背景，避免與主頁面衝突 */
.bacc-analysis-wrapper {
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #e0e0e0;
  text-align: left !important; /* 確保完全靠左對齊 */
}

/* 獨立卡片樣式：無圓角、靠左對齊、暗色系底色 */
.bacc-analysis-card {
  box-sizing: border-box;
  background-color: #0c325a; /* 主色：深藍暗色系 */
  border-left: 5px solid #2797cc; /* 配色：亮藍邊框點綴 */
  border-radius: 0 !important; /* 嚴格去除圓角 */
  padding: 30px;
  margin-bottom: 25px;
  width: 100%;
  text-align: left !important;
}

/* 標題樣式 */
.bacc-analysis-main-title {
  font-size: 28px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left !important;
}

.bacc-analysis-sec-title {
  font-size: 22px;
  color: #2797cc; /* 配色 */
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(39, 151, 204, 0.3);
  padding-bottom: 8px;
  text-align: left !important;
}

.bacc-analysis-third-title {
  font-size: 18px;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: left !important;
}

/* 內文樣式 */
.bacc-analysis-text {
  font-size: 16px;
  line-height: 1.7;
  color: #d1d5db;
  margin-top: 0;
  margin-bottom: 16px;
  text-align: left !important;
}

.bacc-analysis-brand-text {
  font-weight: bold;
  font-size: 17px;
}

/* 內部連結樣式 */
.bacc-analysis-link {
  color: #2797cc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  border-bottom: 1px dashed #2797cc;
}

.bacc-analysis-link:hover {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

/* 列表樣式 */
.bacc-analysis-list {
  padding-left: 24px;
  margin-top: 0;
  margin-bottom: 16px;
  text-align: left !important;
}

.bacc-analysis-list li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #d1d5db;
  text-align: left !important;
}

.bacc-analysis-list ul {
  padding-left: 20px;
  margin-top: 8px;
}

/* 表格響應式外殼 */
.bacc-analysis-table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

/* 表格樣式 */
.bacc-analysis-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 15px;
  text-align: left !important;
}

.bacc-analysis-table th {
  background-color: #08223e;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 16px;
  border: 1px solid #1a426e;
  text-align: left !important;
}

.bacc-analysis-table td {
  padding: 12px 16px;
  border: 1px solid #1a426e;
  color: #d1d5db;
  background-color: rgba(12, 50, 90, 0.5);
  text-align: left !important;
}

.bacc-analysis-table tr:nth-child(even) td {
  background-color: rgba(8, 34, 62, 0.4);
}

/* CTA 區塊與按鈕 */
.bacc-analysis-cta-section {
  border-left: 5px solid #ffffff; /* 讓結論卡片更有視覺重心 */
}

.bacc-analysis-btn-container {
  margin-top: 25px;
  text-align: left !important;
}

.bacc-analysis-cta-btn {
  display: inline-block;
  background-color: #2797cc;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 30px;
  text-decoration: none !important;
  border-radius: 0 !important; /* 去除圓角 */
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(39, 151, 204, 0.3);
}

.bacc-analysis-cta-btn:hover {
  background-color: #1b7bb1;
  transform: translateY(-2px);
}

.bacc-analysis-cta-btn:active {
  transform: translateY(0);
}

/* RWD 手機版優化：調整內距與字體大小 */
@media screen and (max-width: 768px) {
  .bacc-analysis-card {
    padding: 20px 15px; /* 縮減 padding，使手機版畫面不肥胖、留白合適 */
    margin-bottom: 15px;
  }
  
  .bacc-analysis-main-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .bacc-analysis-sec-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .bacc-analysis-third-title {
    font-size: 16px;
  }

  .bacc-analysis-text, 
  .bacc-analysis-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  .bacc-analysis-table th, 
  .bacc-analysis-table td {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .bacc-analysis-cta-btn {
    display: block;
    font-size: 15px;
    padding: 12px 15px;
    text-align: center !important; /* 唯獨手機版按鈕內置中利於點擊，其餘文字依舊靠左 */
  }
}/* End custom CSS */