/* Start custom CSS for text-editor, class: .elementor-element-21db06cf *//* === 文章架構 === */
.ek-article {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.85;
  color: #333;
  max-width: 860px;
  margin: 0 auto;
  padding: 10px 15px;
}

.ek-article p {
  margin-bottom: 1.2em;
  font-size: 16.5px;
}

.ek-article h3 {
  color: #004c97;
  border-left: 4px solid #004c97;
  padding-left: 10px;
  margin: 35px 0 20px;
  font-size: 1.5em;
  font-weight: 700;
}

.ek-article ul {
  padding-left: 25px;
  margin-bottom: 1.2em;
}

.ek-image {
  display: block;
  max-width: 85%;
  margin: 25px auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* === FAQ 區塊 === */
.ek-faq-section {
  border-top: 1px solid #e6e6e6;
  margin: 40px 0;
  padding-top: 10px;
}

.ek-faq-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.ek-faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
}

.ek-faq-item > summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: 600;
  color: #333;
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.ek-faq-item > summary::-webkit-details-marker {
  display: none;
}

.ek-faq-item > summary::after {
  content: "▸";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
  color: #666;
}

.ek-faq-item[open] > summary {
  color: #000;
  font-weight: 650;
}

.ek-faq-item[open] > summary::after {
  transform: translateY(-50%) rotate(90deg);
  color: #0072ce;
}

.ek-faq-answer p {
  margin: 6px 0 8px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
}

/* === 重溫區 === */
.ek-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.ek-gallery a {
  text-align: center;
  text-decoration: none;
  color: #222;
  transition: 0.3s ease;
}

.ek-gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.ek-gallery a:hover img {
  transform: scale(1.05);
}

/* === CTA === */
.ek-footer-cta {
  text-align: center;
  background: #eef6ff;
  border-radius: 10px;
  padding: 30px 25px;
  margin: 50px 0 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ek-footer-cta p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #003366;
}

.ek-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  border-radius: 40px;
  background: #0072ce;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.ek-btn:hover {
  background: #004c97;
  transform: translateY(-2px);
}

/* === RWD === */
@media (max-width: 768px) {
  .ek-article {
    padding: 5px 10px;
  }
  .ek-image {
    max-width: 100%;
  }
  .ek-gallery {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .ek-faq-title {
    font-size: 1.3em;
  }
  .ek-btn {
    width: 100%;
  }
}/* End custom CSS */