/* ============================================================
   radish-base.css — 共用元件（全 radish 頁面共載）
   目前:共用 footer（三頁連動,改一處全站生效）
   ============================================================ */
.radish-footer {
  --red:var(--wp--preset--color--palette-color-1, #e84043);
  --sage:var(--wp--preset--color--palette-color-5, #c7e2bd);
  background:var(--red);
  color:#fff;
  font-family:"Noto Sans TC","Noto Sans JP","PingFang TC","Microsoft JhengHei",sans-serif;
  /* point 2:site-footer padding 40 0 0 0 */
  padding:40px 0 0 0;
  position:relative;
  z-index:2;
  overflow:visible;
}
.radish-footer *,.radish-footer *::before,.radish-footer *::after { box-sizing:border-box; }
.radish-footer__inner {
  width:min(1290px, 100% - 40px);
  margin-inline:auto;
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,auto);   /* 電腦版 1×3 */
  justify-content:start;
  column-gap:clamp(24px,5vw,80px);
  align-items:start;
  min-height:150px;
  /* point 2:電腦版/平板 padding-bottom 40 */
  padding-bottom:40px;
}
.radish-footer__col { position:relative; z-index:1; display:flex; flex-direction:column; gap:12px; }
.radish-footer__title {
  color:#fff; font-size:clamp(17px,1.5vw,20px); font-weight:900; letter-spacing:.16em;
  padding-left:14px; border-left:4px solid var(--sage); margin:0;
}
.radish-footer__col ul { list-style:none; margin:0; padding:0 0 0 14px; display:flex; flex-direction:column; gap:12px; }
.radish-footer__col a { color:rgba(255,255,255,.85); font-size:clamp(15px,1.2vw,17px); letter-spacing:.04em; text-decoration:none; transition:.2s; }
.radish-footer__col a:hover { color:#fff; }
.radish-footer__brand { position:absolute; right:0; bottom:0; z-index:0; width:min(44%,560px); pointer-events:none; }
.radish-footer__brand img { width:100%; display:block; }

/* 手機 ≤689.98:footer 維持 1×3、logo 80% 靜態、與欄位間距 20px */
@media (max-width:689.98px) {
  /* P2:三欄填滿整個寬度 + 文字置中,不再留右側空白 */
  .radish-footer__inner { grid-template-columns:1fr 1fr 1.4fr; gap:20px 10px; min-height:0; padding-bottom:0; text-align:center; }
  /* P1:標題改 inline-block,綠色左條隨文字一起水平置中;12px gap 由 __col flex 統一控制 */
  .radish-footer__col { align-items:center; }
  .radish-footer__title { display:inline-block; white-space:nowrap; letter-spacing:.06em; font-size:16px; padding-left:9px; border-left:3px solid var(--sage); margin-bottom:0; }
  .radish-footer__col ul { padding-left:0; }
  .radish-footer__col a { font-size:13px; letter-spacing:0; }
  /* brand logo 水平置中 */
  .radish-footer__brand { position:static; width:80%; grid-column:1/-1; margin-top:0; justify-self:center; }
  /* P9:版權手機兩行、水平置中 */
  .rf-cr-sep { display:none; }
  .rf-cr-a, .rf-cr-b { display:block; }
}
