/* 內頁 + 全站 footer（與首頁一致）｜大字體易讀 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans TC', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #12233b;
  background: #fffaf3;
}

/* --- 導覽 logo --- */
.front-nav .brand-mark {
  display: none !important;
}

.front-nav .brand-icon {
  display: block !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

.front-nav .brand-text strong {
  font-size: 17px;
}

.front-nav .brand-text small {
  font-size: 10px;
}

/* --- Footer（與首頁相同） --- */
.peace-footer {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0;
  background: #18231f !important;
  color: #fff;
  overflow: hidden;
}

.peace-footer::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(233, 95, 54, 0.16);
  pointer-events: none;
}

.peace-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 32px;
}

.peace-footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(140px, 1fr));
  gap: 28px;
  align-items: start;
}

.peace-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
  text-decoration: none;
}

.peace-footer-brand .brand-mark {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: conic-gradient(from 200deg, #e76542, #f3b334, #36b7b7, #1768ff, #e76542);
  flex-shrink: 0;
}

.peace-footer-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 900;
  font-size: 18px;
}

.peace-footer-brand .brand-text small {
  font-size: 11px;
  opacity: 0.75;
  margin-top: 4px;
  letter-spacing: 0.12em;
}

.peace-footer-intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
}

.peace-footer-col strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  color: #fff;
}

.peace-footer-col a,
.peace-footer-col p {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.peace-footer-col a:hover {
  color: #fff;
}

/* Footer 版型見 peace-footer.css */

/* --- 內頁文章 --- */
main {
  padding-top: 108px !important;
  padding-bottom: 48px;
}

.page-hero h1 {
  font-size: clamp(32px, 6vw, 48px) !important;
  line-height: 1.2 !important;
}

.page-hero p,
.article-body p {
  font-size: 18px !important;
  line-height: 1.85 !important;
}

.article-body h2 {
  font-size: 26px !important;
}

.article-meta span {
  font-size: 15px !important;
}

@media (max-width: 900px) {
  .peace-footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 19px;
  }

  .peace-footer-main {
    grid-template-columns: 1fr;
  }

  .peace-footer-inner {
    padding-bottom: 100px;
  }
}
