/**
 * 對照 Scamadviser 首頁截圖：淺色幾何底紋、頂欄、白卡片搜尋、區塊與頁腳
 * 主色參考截圖與官網：#C8102E
 */
:root {
  --sa-brand-red: #0e766d;
  --sa-brand-red-hover: #0c625b;
  --sa-link-blue: #083062;
  --sa-text: #333333;
  --sa-text-muted: #5c5c5c;
  --sa-line: #e8eaed;
  --sa-bg-alt: #f8f9fa;
  --sa-footer-top: #333333;
  --sa-footer-bottom: #0e766d;
}

/* 淺色幾何紋（近似截圖背景） */
.sa-page-pattern {
  background-color: var(--sa-bg-alt);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 249, 250, 1) 40%, rgba(255, 255, 255, 0.95) 100%),
    repeating-linear-gradient(-12deg, transparent, transparent 24px, rgba(0, 0, 0, 0.018) 24px, rgba(0, 0, 0, 0.018) 25px),
    repeating-linear-gradient(78deg, transparent, transparent 32px, rgba(0, 0, 0, 0.012) 32px, rgba(0, 0, 0, 0.012) 33px);
}

body.sa-body {
  font-family: Inter, Roboto, "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--sa-text);
  margin: 0;
}

/* ========== 頂欄 V2 ========== */
.sa-header--v2 {
  background: #fff !important;
  border-bottom: 1px solid var(--sa-line) !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.sa-nav-toggle {
  display: none;
}

.sa-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
  min-height: 64px;
  position: relative;
}

.sa-logo--wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.sa-logo__wordmark {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #111 !important;
}

.sa-header__collapse {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 8px 20px;
  flex-wrap: wrap;
}

.sa-header__nav {
  display: flex;
  align-items: center;
  gap: 6px 22px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.sa-header__navlink {
  color: var(--sa-text) !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
}

.sa-header__navlink:hover {
  color: var(--sa-brand-red) !important;
}

.sa-header__navitem--dropdown {
  position: relative;
}

.sa-header__navlink--trigger {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0;
  color: var(--sa-text) !important;
}

.sa-header__navlink--trigger::after {
  content: "";
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: 0.55;
}

.sa-header__subnav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sa-header__sublink {
  display: block;
  color: var(--sa-text) !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.sa-header__sublink:hover {
  color: var(--sa-brand-red) !important;
}

@media (min-width: 961px) {
  .sa-header__subnav {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 13em;
    background: #fff;
    border: 1px solid var(--sa-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 100;
  }

  .sa-header__navitem--dropdown:hover .sa-header__subnav,
  .sa-header__navitem--dropdown:focus-within .sa-header__subnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .sa-header__sublink {
    padding: 0.5em 1em;
  }

  .sa-header__sublink:hover {
    background: var(--sa-bg-alt);
  }
}

.sa-header__actions {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.sa-lang--header {
  border-color: var(--sa-line);
}

.sa-header__iconbtn {
  color: var(--sa-text);
  padding: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sa-header__iconbtn:hover {
  background: var(--sa-bg-alt);
  color: var(--sa-brand-red);
}

.sa-header__textlink {
  color: var(--sa-link-blue) !important;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
}

.sa-header__textlink:hover {
  text-decoration: underline !important;
}

.btn-solid--compact {
  padding: 0.55em 1em !important;
  font-size: 0.88rem !important;
  border-radius: 6px;
  text-transform: none !important;
}

@media (max-width: 960px) {
  .sa-nav-toggle {
    display: inline-flex !important;
  }
  .sa-header__collapse {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    padding: 12px 0 8px;
    border-top: 1px solid var(--sa-line);
    background: #fff;
  }
  .sa-header__collapse.is-open {
    display: flex;
  }
  .sa-header__nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .sa-header__navitem--dropdown {
    width: 100%;
  }
  .sa-header__navlink--trigger {
    width: 100%;
    justify-content: flex-start;
  }
  .sa-header__navlink--trigger::after {
    margin-left: auto;
    margin-right: 2px;
    transform: rotate(45deg);
    transition: transform 0.15s ease;
  }
  .sa-header__navitem--dropdown.is-open .sa-header__navlink--trigger::after {
    transform: rotate(-135deg);
    margin-top: 2px;
  }
  .sa-header__subnav {
    display: none;
    padding: 4px 0 10px 14px;
    margin: 2px 0 6px 4px;
    border-left: 2px solid var(--sa-line);
  }
  .sa-header__navitem--dropdown.is-open .sa-header__subnav {
    display: block;
  }
  .sa-header__sublink {
    padding: 0.5em 0;
    white-space: normal;
  }
  .sa-header__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .sa-header__cta {
    text-align: center;
  }
}

.sa-lang__btn.is-active {
  background: var(--sa-brand-red) !important;
  border-color: transparent !important;
  color: #fff !important;
}

/* ========== 首頁全寬輪播（Swiper，純背景圖） ========== */
.sa-home-hero-slider {
  width: 99vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
}

.sa-home-hero-swiper {
  width: 100%;
  /* PC：固定 360px */
  height: 360px;
  min-height: 360px;
  max-height: 360px;
  --sa-hero-nav-size: 40px;
}

.sa-home-hero-swiper .swiper-wrapper {
  height: 100%;
}

.sa-home-hero-swiper .swiper-slide {
  display: block;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  height: 360px;
  min-height: 360px;
  max-height: 360px;
}

/* 平板：等比縮一級 */
@media (max-width: 960px) {
  .sa-home-hero-swiper,
  .sa-home-hero-swiper .swiper-slide {
    height: 280px;
    min-height: 280px;
    max-height: 280px;
  }
}

/* 手機直向（iPhone X 等） */
@media (max-width: 480px) {
  .sa-home-hero-swiper,
  .sa-home-hero-swiper .swiper-slide {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }
}

.sa-home-hero-slide {
  background-color: #0a4a45;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 圖檔：public/static/site/carousel-1.jpg ~ carousel-3.jpg */
.sa-home-hero-slide--1 {
  background-image: url("/static/site/carousel-1.jpg");
}

.sa-home-hero-slide--2 {
  background-image: url("/static/site/carousel-2.jpg");
}

.sa-home-hero-slide--3 {
  background-image: url("/static/site/carousel-3.jpg");
}

.sa-home-hero-slide--4 {
  background-image: url("/static/site/carousel-4.jpg");
}

.sa-home-hero-swiper .swiper-pagination {
  bottom: 4px !important;
}

.sa-home-hero-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.sa-home-hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

.sa-home-hero-swiper .swiper-button-prev,
.sa-home-hero-swiper .swiper-button-next {
  width: var(--sa-hero-nav-size);
  height: var(--sa-hero-nav-size);
  margin-top: calc(-0.5 * var(--sa-hero-nav-size));
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
}

.sa-home-hero-swiper .swiper-button-prev:after,
.sa-home-hero-swiper .swiper-button-next:after {
  font-size: 16px;
  font-weight: 700;
}

.sa-home-hero-swiper .swiper-button-prev:hover,
.sa-home-hero-swiper .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .sa-home-hero-swiper .swiper-button-prev,
  .sa-home-hero-swiper .swiper-button-next {
    display: none;
  }
}

/* ========== Hero 白卡片 ========== */
.sa-home-hero {
  padding: 48px 0 56px;
  text-align: center;
}

.sa-home-hero__title {
  margin: 0 auto 12px;
  max-width: 20ch;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--sa-text);
}

.sa-home-hero__subtitle {
  margin: 0 auto 32px;
  max-width: 46ch;
  font-size: 1.05rem;
  color: var(--sa-text-muted);
  line-height: 1.55;
}

.sa-home-hero__subcontent{
  margin: 0 auto 32px;
  max-width: 146ch;
  font-size: 0.7rem;
  color: var(--sa-text-muted);
  line-height: 1.55;
}

.sa-home-hero__grid {
  display: grid;
  grid-template-columns: 2fr 0;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
  text-align: left;
}

@media (max-width: 880px) {
  .sa-home-hero__grid {
    grid-template-columns: 1fr;
  }
}

.sa-search-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 24px 28px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.sa-search-card__label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--sa-text);
}

.sa-search-card__field {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  padding: 0 14px;
  margin-bottom: 16px;
  background: #fafbfc;
}

.sa-search-card__icon {
  color: var(--sa-text-muted);
  flex-shrink: 0;
}

.sa-search-card__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-size: 1rem;
  outline: none;
  min-width: 0;
  font-family: inherit;
}

.sa-search-card__submit {
  width: 100%;
  border-radius: 8px !important;
  padding: 14px !important;
  text-transform: none !important;
  font-size: 1.05rem !important;
}

.sa-home-trending {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--sa-text-muted);
}

.sa-home-trending a {
  color: var(--sa-link-blue);
  font-weight: 600;
}

.sa-home-trending a:hover {
  color: var(--sa-brand-red);
}

.sa-side-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 22px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.sa-side-card__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--sa-text);
}

/* ========== Romance 橫幅 ========== */
.sa-promo-banner {
  padding: 0 0 40px;
}

.sa-promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ffe8ec 0%, #fff5f7 45%, #fff 100%);
  border: 1px solid rgba(200, 16, 46, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.sa-promo-banner__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sa-promo-banner__heart {
  color: var(--sa-brand-red);
  font-size: 1.5rem;
}

.sa-promo-banner__left strong {
  display: block;
  font-size: 0.95rem;
  color: var(--sa-text);
}

.sa-promo-banner__sub {
  display: block;
  font-size: 0.85rem;
  color: var(--sa-text-muted);
  margin-top: 2px;
}

.sa-promo-banner__cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--sa-brand-red);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border-radius: 6px;
  text-decoration: none !important;
}

.sa-promo-banner__cta:hover {
  background: var(--sa-brand-red-hover);
}

/* ========== 區塊通用 ========== */
.sa-section {
  padding: 56px 0;
}

.sa-section--alt {
  background: #fff;
  border-top: 1px solid var(--sa-line);
  border-bottom: 1px solid var(--sa-line);
}

.sa-section__h2 {
  text-align: center;
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0 0 32px;
  color: var(--sa-text);
}

.sa-section__h2--left {
  text-align: left;
}

.sa-section__btnwrap {
  text-align: center;
  margin-top: 8px;
}

/* ========== Scam carousel ========== */
.sa-scam-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}

.sa-scam-carousel__viewport {
  overflow: hidden;
  flex: 1;
}

.sa-scam-carousel__track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
}

.sa-scam-card {
  flex: 0 0 calc(25% - 14px);
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
  border: 1px solid var(--sa-line);
  box-sizing: border-box;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .sa-scam-card {
    flex: 0 0 calc(50% - 9px);
  }
}

@media (max-width: 560px) {
  .sa-scam-card {
    flex: 0 0 100%;
  }
}

.sa-scam-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.sa-scam-card__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sa-bg-alt);
  display: block;
}

.sa-scam-card__ident {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sa-scam-card__user {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sa-scam-card__date {
  font-size: 0.78rem;
  color: var(--sa-text-muted);
  margin-top: 2px;
}

.sa-scam-card__site {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
  word-break: break-all;
}

.sa-scam-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--sa-text);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sa-scam-carousel__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--sa-line);
  border-radius: 50%;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--sa-text-muted);
}

.sa-scam-carousel__arrow:hover {
  border-color: var(--sa-brand-red);
  color: var(--sa-brand-red);
}

/* ========== Learn about scams + stats clone ========== */
.sa-learn-stats {
  padding-top: 26px;
}

.sa-learn-stats__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #333;
}

.sa-learn-stats__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto 30px;
}

.sa-learn-card {
  min-height: 108px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform .15s ease, box-shadow .15s ease;
}

.sa-learn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.sa-learn-card__icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  color: #0e766d;
}

.sa-learn-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sa-learn-card__label {
  display: block;
  max-width: 9.5em;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.2;
  color: #064641;
}

.sa-stats-bar {
  padding: 0 0 46px;
}

.sa-stats-bar__box {
  background: var(--sa-brand-red);
  border-radius: 0;
  padding: 16px 18px 18px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.sa-stats-bar__heading {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  font-weight: 800;
  line-height: 1.1;
}

.sa-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.sa-stats-bar__cell {
  background: #fff;
  min-height: 92px;
  padding: 10px 8px;
  text-align: center;
  box-sizing: border-box;
}

.sa-stats-bar__val {
  display: block;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 800;
  color: #064641;
  line-height: 1.1;
}

.sa-stats-bar__lbl {
  display: block;
  margin-top: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: #333;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .sa-learn-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sa-stats-bar__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sa-learn-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sa-stats-bar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ========== 三欄趨勢 ========== */
.sa-trends-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 960px) {
  .sa-trends-grid {
    grid-template-columns: 1fr;
  }
}

.sa-trends-col__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--sa-link-blue);
}

.sa-trust-widget {
  background: #fff;
  border: 1px solid var(--sa-line);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.sa-trust-widget__gauge {
  position: relative;
  width: 180px;
  height: 90px;
  margin: 0 auto 12px;
}

.sa-trust-widget__arc {
  position: absolute;
  inset: 0;
  border-radius: 180px 180px 0 0;
  background: conic-gradient(from 180deg at 50% 100%, #c8102e 0deg, #f5a623 90deg, #2eac6a 180deg);
  mask: radial-gradient(circle at 50% 100%, transparent 55%, #000 56%);
  -webkit-mask: radial-gradient(circle at 50% 100%, transparent 55%, #000 56%);
}

.sa-trust-widget__score {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: 800;
  color: var(--sa-text);
}

.sa-trust-widget__cap {
  font-size: 0.88rem;
  color: var(--sa-text-muted);
  margin: 0 0 14px;
}

.sa-mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sa-mini-list li + li {
  margin-top: 12px;
}

.sa-mini-list__link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none !important;
  color: inherit;
}

.sa-mini-list__thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-color: var(--sa-bg-alt);
}

.sa-mini-list__thumb--ph {
  background: linear-gradient(135deg, #e8ecf0, #dde3ea);
}

.sa-mini-list__t {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--sa-text);
}

.sa-mini-list__link:hover .sa-mini-list__t {
  color: var(--sa-brand-red);
}

.sa-mini-list__d {
  display: block;
  font-size: 0.78rem;
  color: var(--sa-text-muted);
  margin-top: 4px;
}

/* ========== 使命 / 媒體 ========== */
.sa-mission {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
  align-items: center;
  padding-bottom: 32px;
}

@media (max-width: 640px) {
  .sa-mission {
    grid-template-columns: 1fr;
  }
}

.sa-mission__text p {
  margin: 0;
  line-height: 1.65;
  color: var(--sa-text-muted);
}

.sa-mission__visual {
  display: flex;
  justify-content: center;
}

.sa-media-strip {
  text-align: center;
  padding: 24px 0 8px;
  border-top: 1px solid var(--sa-line);
}

.sa-media-strip__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sa-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 16px 0 8px;
}

.sa-media-strip__logos {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 8px;
}

/* ========== 資料 / 訂閱 ========== */
.sa-data-row {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 24px;
  align-items: center;
  padding-bottom: 40px;
}

.sa-data-row__art {
  height: 100px;
  border-radius: 8px;
  background: linear-gradient(160deg, #083062, #0a4a8c);
  opacity: 0.85;
}

.sa-app-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--sa-line);
}

@media (max-width: 720px) {
  .sa-data-row {
    grid-template-columns: 1fr;
  }
  .sa-app-newsletter {
    grid-template-columns: 1fr;
  }
}

.sa-app-banner {
  background: linear-gradient(90deg, #c8102e, #e6a01a);
  color: #fff;
  padding: 20px 22px;
  border-radius: 10px;
  font-size: 1.05rem;
}

.sa-newsletter__title {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.sa-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sa-newsletter__input {
  flex: 1;
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  font-size: 1rem;
}

/* ========== 按鈕 & tile（沿用） ========== */
.btn-solid--red {
  background: var(--sa-brand-red);
  color: #fff !important;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  outline: none;
  padding: 0.65em 1.2em;
  text-align: center;
  text-decoration: none !important;
  transition: background-color 0.15s ease;
}

.btn-solid--red:hover,
.btn-solid--red:active {
  background: var(--sa-brand-red-hover);
  color: #fff !important;
}

.btn--wide {
  display: block;
  width: 100%;
}

.home-block {
  padding: 48px 0 72px;
  background: var(--sa-bg-alt);
}

.home-block__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sa-text);
  margin: 0 0 24px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.col-12 {
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

@media screen and (min-width: 640px) {
  .col-phablet-6 {
    width: 50%;
  }
}

.tile--bottom {
  margin-bottom: 24px;
}

.tile {
  height: 100%;
}

.tile__link {
  color: var(--sa-text-muted);
  display: block;
  height: 100%;
  text-decoration: none;
}

.tile-link__hover:hover .tile__body {
  background-color: rgba(200, 16, 46, 0.06);
  transition: background-color 0.2s ease;
}

.tile__body {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
  padding: 22px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid var(--sa-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tile-header__title {
  color: var(--sa-text);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.35;
}

.tile__excerpt {
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}

.tile__link:hover .tile-header__title {
  color: var(--sa-brand-red);
}

.mb-0 {
  margin-bottom: 0;
}
.mb-25 {
  margin-bottom: 20px;
}
.h-100 {
  height: 100%;
}

.btn__link div {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.text-link--blue {
  color: var(--sa-link-blue);
}

/* ========== 頁腳 ========== */
.footer-top {
  background-color: #2f3338;
  color: #fff;
  padding: 0;
  border-top: 2px solid #cf0000;
  border-bottom: 1px solid #3f4348;
}

.footer-top__logo {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-top__logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: brightness(0.96) contrast(1.03);
}

.footer-top a,
.footer-top__title,
.footer-top__text,
.footer-top__grid {
  display: none;
}

.footer-bottom {
  background: #046f74;
  border-top: 2px solid #045d61;
  color: #fff;
  padding: 10px 0;
  font-size: 0.84rem;
}

.footer-bottom__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  flex-wrap: wrap;
  padding: 0 12px;
}

.footer-bottom__copy {
  color: #f2f2f2;
  letter-spacing: 0.01em;
}

.footer-bottom__links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom__links a {
  color: #f0f0f0 !important;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
}

.footer-bottom__links a:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

@media (max-width: 760px) {
  .footer-bottom__inner {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom__links {
    gap: 16px;
    justify-content: center;
  }
}

/* reveal */
.sa-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sa-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== 捐贈頁（文檔式：通欄標題 + 左用途右帳戶 + 表單區） ========== */
.sa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sa-donate-doc {
  background: #f0f3f6;
  min-height: 60vh;
  padding-bottom: 56px;
}

.sa-donate-hero {
  background: linear-gradient(135deg, #0a5c54 0%, #0e766d 45%, #127a72 100%);
  color: #fff;
  padding: 36px 16px 40px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(10, 60, 55, 0.25);
}

.sa-donate-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.sa-donate-hero__kicker {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
}

.sa-donate-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.sa-donate-hero__sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.95;
  font-weight: 400;
}

.sa-donate-body {
  max-width: 1040px;
  padding-left: 16px;
  padding-right: 16px;
}

.sa-donate-breadcrumb {
  padding: 20px 0 8px;
}

.sa-donate-intro {
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 4px;
  padding: 22px 26px 26px;
  margin-bottom: 22px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.sa-donate-h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0e3d38;
  padding-bottom: 10px;
  border-bottom: 2px solid #0e766d;
}

.sa-donate-h2--section {
  margin-bottom: 10px;
}

.sa-donate-intro__text {
  margin: 0;
  line-height: 1.75;
  color: var(--sa-text);
  font-size: 0.96rem;
}

.sa-donate-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
  align-items: stretch;
}

.sa-donate-panel {
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 4px;
  padding: 22px 24px 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.sa-donate-panel__title {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #14302c;
}

.sa-donate-usage-list {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.75;
  color: #333;
  font-size: 0.95rem;
}

.sa-donate-usage-list li {
  margin-bottom: 8px;
}

.sa-donate-bank-hint {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--sa-text-muted);
}

.sa-donate-bank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.sa-donate-bank-table th,
.sa-donate-bank-table td {
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.sa-donate-bank-table th {
  width: 26%;
  background: #f4f9f8;
  font-weight: 600;
  color: #1a3d38;
  white-space: nowrap;
}

.sa-donate-mono {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.95em;
}

.sa-donate-qr__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #14302c;
  margin-bottom: 10px;
}

.sa-donate-qr__box {
  border: 2px dashed #b8ccc9;
  border-radius: 4px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafcfc;
  padding: 16px;
}

.sa-donate-qr__placeholder {
  font-size: 0.88rem;
  color: #6b7f7c;
  text-align: center;
  line-height: 1.5;
  max-width: 200px;
}

.sa-donate-form-section {
  margin-top: 8px;
}

.sa-donate-form-section__desc {
  margin: 0 0 18px;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--sa-text-muted);
}

.sa-donate-form-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}

.sa-donate-steps {
  margin-bottom: 20px !important;
}

.sa-donate-tipbar {
  margin-top: 20px;
  padding: 14px 18px;
  background: #e8eeec;
  border: 1px solid #cfd9d6;
  border-radius: 4px;
}

.sa-donate-tipbar__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #3d4f4c;
}

/* 捐款向導（fanzha.docx 四步） */
.sa-donate-wizard {
  margin-top: 0;
}

.sa-donate-card-kicker {
  margin: 0;
  padding: 18px 22px 12px;
  font-size: 1.28rem;
  font-weight: 800;
  color: #0066b3;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.sa-donate-progress {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
}

.sa-donate-progress__item {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 12px 10px;
  background: #f0f4f3;
  border: 2px solid #dfe8e6;
  border-radius: 6px;
  font-size: 0.78rem;
  color: #555;
  line-height: 1.35;
  transition: border-color 0.2s, background 0.2s;
}

.sa-donate-progress--kova .sa-donate-progress__item {
  position: relative;
  align-items: flex-start;
  text-align: left;
  border-radius: 0;
  border: none;
  border-left: 1px solid #e1e1e1;
  background: #f5f5f5;
  min-height: 56px;
  padding: 10px 14px 12px 14px;
  flex: 1 1 0;
}

.sa-donate-progress--kova .sa-donate-progress__item:first-child {
  border-left: none;
}

.sa-donate-progress__step {
  font-size: 1.55rem;
  font-weight: 700;
  color: #cbced3;
  line-height: 1.1;
}

.sa-donate-progress--kova .sa-donate-progress__step {
  font-size: 0.7rem;
  font-weight: 800;
  color: #888;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.2;
}

.sa-donate-progress--kova .sa-donate-progress__item .sa-donate-progress__t {
  font-size: 0.8rem;
  font-weight: 700;
  color: #666;
  line-height: 1.35;
  margin-top: 4px;
}

.sa-donate-progress__item.is-active {
  border-color: #0e766d;
  background: #fff;
  color: #14302c;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(14, 118, 109, 0.12);
}

.sa-donate-progress--kova .sa-donate-progress__item.is-active {
  background: #0066b3;
  border-color: #0066b3;
  color: #fff;
  box-shadow: none;
  padding-right: 40px;
}

.sa-donate-progress--kova .sa-donate-progress__item.is-active .sa-donate-progress__step,
.sa-donate-progress--kova .sa-donate-progress__item.is-active .sa-donate-progress__t {
  color: #fff;
}

.sa-donate-progress--kova .sa-donate-progress__item.is-active::after {
  content: "···>";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.sa-donate-progress__item.is-done {
  border-color: #b8d4cf;
  background: #f7fcfb;
}

.sa-donate-progress--kova .sa-donate-progress__item.is-done {
  background: #eef6fc;
  border-color: transparent;
}

.sa-donate-progress__n {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #b0c4c0;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-donate-progress__item.is-active .sa-donate-progress__n {
  background: #0e766d;
}

.sa-donate-progress__item.is-done .sa-donate-progress__n {
  background: #5a9e94;
}

.sa-donate-step-panel__title {
  margin: 0 0 12px;
  font-size: 1.9rem;
  font-weight: 700;
  color: #404040;
}

.sa-donate-step-panel__hint {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #9aa0a6;
}

.sa-donate-step-panel__note {
  margin: 0 0 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--sa-text-muted);
}

.sa-donate-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

/* KOVA 式：左欄標題 + 網格表（對齊參考稿） */
.sa-donate-step-panel[data-step="1"] {
  padding: 0 0 10px;
}

.sa-donate-kova-sheet {
  margin: 16px 22px 0;
}

.sa-donate-kova-block {
  display: grid;
  grid-template-columns: 128px 1fr;
  border: 1px solid #e1e1e1;
  border-bottom: none;
  background: #fff;
}

.sa-donate-kova-block:last-of-type {
  border-bottom: 1px solid #e1e1e1;
}

.sa-donate-kova-block__rail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 8px;
  background: #fafafa;
  border-right: 1px solid #e1e1e1;
  font-size: 0.98rem;
  font-weight: 800;
  color: #333;
  text-align: center;
  line-height: 1.4;
}

.sa-donate-kova-block__main {
  padding: 12px 14px 14px;
  min-width: 0;
}

.sa-donate-kova-hint {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: #9a9a9a;
  line-height: 1.55;
  font-weight: 500;
}

.sa-donate-kova-hint__ico {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.62rem;
  color: #b8b8b8;
}

.sa-donate-mesh {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.92rem;
  border: 1px solid #e1e1e1;
  background: #fff;
}

.sa-donate-mesh th {
  width: 32%;
  background: #f5f5f5;
  font-weight: 800;
  color: #333;
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #e1e1e1;
  vertical-align: middle;
}

.sa-donate-mesh td {
  padding: 9px 11px;
  border: 1px solid #e1e1e1;
  background: #fff;
  vertical-align: middle;
}

.sa-donate-mesh--amounts th {
  width: 36%;
}

.sa-donate-kova-opt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  user-select: none;
}

.sa-donate-kova-opt input[type="checkbox"] {
  accent-color: #f39800;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sa-donate-amt-row.is-row-off {
  display: none;
}

.sa-donate-wizard-actions--kova-next {
  margin: 14px 22px 0;
  padding: 18px 0 22px;
  border-top: 1px solid #eaeaea;
}

.sa-donate-btn-prev {
  min-width: 220px;
  padding: 14px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 8px;
  color: #fff;
  border: 1px solid #b1b0af;
  background: linear-gradient(180deg, #b1b0af 0%, #a9a8a8 45%, #939191 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.sa-donate-btn-next--orange.sa-mrm-submit {
  min-width: 220px;
  padding: 14px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid #d88700;
  background: linear-gradient(180deg, #ffbc55 0%, #f39800 45%, #e88900 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.sa-donate-btn-next--orange.sa-mrm-submit:hover {
  filter: brightness(1.03);
}

.sa-donate-kova-chev {
  font-weight: 800;
}

/* 舊版兩欄列式（保留類名以免其他頁引用） */
.sa-donate-type-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
}

.sa-donate-type-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #efefef;
}

.sa-donate-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.94rem;
  background: #f9f9f9;
  font-weight: 700;
}

.sa-donate-option input[type="checkbox"] {
  accent-color: #f39800;
  width: 18px;
  height: 18px;
}

.sa-donate-option:hover {
  background: #f3f3f3;
}

.sa-donate-amounts {
  margin-bottom: 8px;
}

.sa-donate-select {
  max-width: 190px;
  height: 42px;
  font-size: 0.95rem;
}

.sa-donate-amount-control {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sa-donate-custom-input {
  max-width: 170px;
  height: 42px;
}

.sa-donate-custom-input:disabled {
  background: #f3f4f6;
  color: #9aa3af;
  cursor: not-allowed;
}

.sa-donate-total {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
}

.sa-donate-step-panel[data-step="1"] .sa-donate-total {
  margin: 16px 22px 0;
}

.sa-donate-total__label {
  color: #5b6774;
  font-size: 2.25rem;
  font-weight: 500;
}

.sa-donate-total__value {
  color: #0b6ea8;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.sa-donate-wizard-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  justify-content: center;
}

.sa-donate-wizard-actions--final {
  justify-content: flex-start;
}

.sa-donate-btn-ghost {
  padding: 11px 22px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0e766d;
  background: #fff;
  border: 2px solid #0e766d;
  border-radius: 3px;
  cursor: pointer;
}

.sa-donate-btn-ghost:hover {
  background: #f0faf9;
}

.sa-donate-pay-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sa-donate-pay {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  border: 2px solid #d8e2ef;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.94rem;
  line-height: 1.45;
}

.sa-donate-pay--active {
  border-color: #0e766d;
  background: #f4fbfb;
}

.sa-donate-pay--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: #f5f5f5;
  color: #888;
}

.sa-donate-pay__suffix {
  font-style: normal;
  font-size: 0.88em;
  color: #777;
}

.sa-donate-summary {
  background: #f6faf9;
  border: 1px solid #c5e0db;
  border-radius: 4px;
  padding: 20px 22px;
  margin-bottom: 8px;
}

.sa-donate-summary__title {
  font-size: 1rem;
  font-weight: 700;
  color: #14302c;
  margin-bottom: 14px;
}

.sa-donate-summary__dl {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(100px, 140px) 1fr;
  gap: 10px 20px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.sa-donate-summary__dl dt {
  margin: 0;
  font-weight: 600;
  color: #5c6f6c;
}

.sa-donate-summary__dl dd {
  margin: 0;
  color: #222;
  word-break: break-word;
}

.sa-donate-cs-link.sa-mrm-submit {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.sa-donate-wizard-form > .sa-donate-step-panel:not([data-step="1"]) {
  padding: 0 0 24px;
}

/* ===== Step-2 Donor Form ===== */
.sa-d2-topbar {
  display: flex;
  justify-content: flex-end;
  padding: 10px 22px 0;
}

.sa-d2-back-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.88rem;
  color: #0066b3;
  cursor: pointer;
  text-decoration: underline;
}

.sa-d2-kova-block {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-top: 1px solid #e1e1e1;
  margin: 8px 22px 0;
}

.sa-d2-rail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px 8px;
  background: #fafafa;
  border-right: 1px solid #e1e1e1;
  font-size: 0.95rem;
  font-weight: 800;
  color: #333;
  text-align: center;
  line-height: 1.4;
  writing-mode: horizontal-tb;
}

.sa-d2-body {
  padding: 10px 12px 14px;
  min-width: 0;
}

.sa-d2-hint {
  margin: 0 0 8px;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
}

.sa-d2-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.55;
}

.sa-d2-table th {
  width: 130px;
  background: #f5f5f5;
  font-weight: 700;
  color: #333;
  text-align: left;
  padding: 9px 12px;
  border: 1px solid #e1e1e1;
  vertical-align: top;
  white-space: nowrap;
}

.sa-d2-table td {
  padding: 8px 10px;
  border: 1px solid #e1e1e1;
  background: #fff;
  vertical-align: middle;
}

.sa-d2-table--extra th {
  width: 110px;
}

.sa-d2-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}

.sa-d2-branch-grid {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 4px 14px;
  margin-bottom: 4px;
}

.sa-d2-path-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 4px 14px;
}

.sa-d2-rl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #333;
  white-space: nowrap;
}

.sa-d2-rl input[type="radio"],
.sa-d2-rl input[type="checkbox"] {
  accent-color: #f39800;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.sa-d2-rl--ml {
  margin-left: 10px;
}

.sa-d2-note {
  margin: 5px 0 0;
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
}

.sa-d2-q {
  margin: 0 0 6px;
  font-size: 0.86rem;
  color: #444;
  line-height: 1.55;
}

.sa-d2-input {
  height: 34px;
  padding: 0 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 0.9rem;
  background: #fff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s;
}

.sa-d2-input:focus {
  border-color: #0066b3;
}

.sa-d2-input--phone {
  width: 72px;
  text-align: center;
}

.sa-d2-input--email {
  width: 130px;
}

.sa-d2-input--zip {
  width: 90px;
}

.sa-d2-input--addr {
  width: 100%;
  margin-top: 4px;
  display: block;
}

.sa-d2-sel {
  height: 34px;
  padding: 0 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 0.9rem;
  background: #fff;
  box-sizing: border-box;
}

.sa-d2-sel--sm {
  width: 64px;
}

.sa-d2-sel--domain {
  width: 140px;
}

.sa-d2-sfx {
  font-size: 0.88rem;
  color: #555;
  margin: 0 8px 0 3px;
}

.sa-d2-at {
  font-size: 0.92rem;
  color: #555;
  margin: 0 4px;
}

.sa-d2-dash {
  font-size: 0.92rem;
  color: #555;
  margin: 0 3px;
}

.sa-d2-bday-row,
.sa-d2-phone-row,
.sa-d2-email-row,
.sa-d2-zip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
}

.sa-d2-btn {
  height: 34px;
  padding: 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: #555;
  border: 1px solid #444;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 6px;
}

.sa-d2-btn--ghost {
  color: #555;
  background: #f5f5f5;
  border-color: #ccc;
}

.sa-d2-btn--ghost:hover {
  background: #e8e8e8;
}

.sa-d2-extra {
  margin: 14px 22px 0;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  overflow: hidden;
}

.sa-d2-extra__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 16px;
  background: #f7f7f7;
  border: none;
  border-radius: 0;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  gap: 8px;
}

.sa-d2-extra__toggle:hover {
  background: #f0f0f0;
}

.sa-d2-extra__ico {
  font-size: 0.72rem;
  color: #888;
}

.sa-d2-extra__body {
  padding: 0;
  border-top: 1px solid #e1e1e1;
}

.sa-d2-extra__body.is-collapsed {
  display: none;
}

.sa-d2-actions {
  margin: 18px 22px 0;
  padding-top: 16px;
  border-top: 1px solid #eaeaea;
  justify-content: flex-end;
}

.sa-d2-prev-btn.sa-donate-btn-ghost {
  border-color: #999;
  color: #555;
}

.sa-d2-prev-btn.sa-donate-btn-ghost:hover {
  background: #f5f5f5;
}

/* ===== Step-3 & 4 Payment ===== */
.sa-d3-pay-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
}

.sa-d3-pay-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
}

.sa-d3-pay-opt input[type="radio"] {
  accent-color: #f39800;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sa-d3-pay-opt--off {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

.sa-d3-pay-opt--on input[type="radio"] {
  accent-color: #f39800;
}

.sa-d3-notice {
  margin: 0;
  font-size: 0.84rem;
  color: #555;
  line-height: 1.65;
}

/* ===== Step-4 Confirm Card ===== */
.sa-donate-step-panel[data-step="4"] {
  padding: 0;
}

.sa-d4-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

.sa-d4-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: #fafafa;
  border-bottom: 1px solid #e8e8e8;
}

.sa-d4-logo {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0066b3;
  line-height: 1.4;
}

.sa-d4-close {
  background: none;
  border: none;
  font-size: 1rem;
  color: #999;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}

.sa-d4-close:hover {
  color: #333;
  background: #eee;
}

.sa-d4-body {
  padding: 20px 22px 10px;
  flex: 1;
}

.sa-d4-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 5px;
}

.sa-d4-desc {
  font-size: 0.84rem;
  color: #777;
  margin: 0 0 16px;
  line-height: 1.55;
}

.sa-d4-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.sa-d4-info-row {
  padding: 10px 14px;
  border: 1px solid #dde3e9;
  border-radius: 4px;
  font-size: 0.92rem;
  color: #222;
  background: #fafdff;
  min-height: 40px;
  line-height: 1.5;
  word-break: break-all;
}

.sa-d4-confirm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #444;
  cursor: pointer;
  margin-bottom: 16px;
}

.sa-d4-confirm input[type="checkbox"] {
  accent-color: #f39800;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.sa-d4-service-note {
  padding: 12px 14px;
  background: #f4f6f8;
  border: 1px solid #e2e6ea;
  border-radius: 4px;
  font-size: 0.86rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 18px;
}

.sa-d4-amount-area {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 0 14px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.sa-d4-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #1a3868;
}

.sa-d4-cta__left {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1.4;
}

.sa-d4-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(180deg, #ffbc55 0%, #f39800 45%, #e08800 100%);
  border: 1px solid #c87800;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s;
}

.sa-d4-cta__btn:hover {
  filter: brightness(1.05);
  text-decoration: none;
  color: #fff;
}

@media (max-width: 500px) {
  .sa-d4-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .sa-d4-cta__btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .sa-d2-kova-block {
    grid-template-columns: 1fr;
    margin-left: 12px;
    margin-right: 12px;
  }

  .sa-d2-rail {
    border-right: none;
    border-bottom: 1px solid #e1e1e1;
    justify-content: flex-start;
    padding: 10px 12px;
  }

  .sa-d2-branch-grid {
    grid-template-columns: repeat(3, auto);
  }

  .sa-d2-path-grid {
    grid-template-columns: repeat(2, auto);
  }

  .sa-d2-table th {
    width: auto;
    white-space: normal;
  }

  .sa-d2-extra,
  .sa-d2-actions {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.sa-donate-step-panel.is-hidden {
  display: none !important;
}

@media (max-width: 840px) {
  .sa-donate-split {
    grid-template-columns: 1fr;
  }

  .sa-donate-kova-sheet {
    margin-left: 14px;
    margin-right: 14px;
  }

  .sa-donate-kova-block {
    grid-template-columns: 1fr;
  }

  .sa-donate-kova-block__rail {
    border-right: none;
    border-bottom: 1px solid #e1e1e1;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 14px;
  }

  .sa-donate-type-row {
    grid-template-columns: 1fr;
  }

  .sa-donate-wizard-actions--kova-next {
    margin-left: 14px;
    margin-right: 14px;
  }

  .sa-donate-step-panel[data-step="1"] .sa-donate-total {
    margin-left: 14px;
    margin-right: 14px;
  }

  .sa-donate-total {
    justify-content: flex-start;
  }

  .sa-donate-total__label {
    font-size: 1.2rem;
  }

  .sa-donate-total__value {
    font-size: 1.9rem;
  }

  .sa-donate-progress--kova {
    flex-wrap: wrap;
  }

  .sa-donate-progress--kova .sa-donate-progress__item {
    flex: 1 1 50%;
    max-width: 50%;
    box-sizing: border-box;
    border-left: 1px solid #e1e1e1;
  }

  .sa-donate-progress--kova .sa-donate-progress__item:nth-child(1),
  .sa-donate-progress--kova .sa-donate-progress__item:nth-child(3) {
    border-left: none;
  }

  .sa-donate-progress--kova .sa-donate-progress__item:nth-child(n + 3) {
    border-top: 1px solid #e1e1e1;
  }
}

/* ========== 捐贈表單內嵌（表格列式欄位，沿用 .sa-mrm-*） ========== */
.sa-mrm-page {
  background: #e9eef5;
  min-height: 60vh;
  padding-bottom: 48px;
}

.sa-mrm-topbar {
  background: linear-gradient(90deg, #1a4a8c 0%, #2563a8 100%);
  color: #fff;
  font-size: 0.88rem;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.sa-mrm-topbar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dd87a;
  animation: sa-mrm-pulse 1.2s ease-in-out infinite;
}

@keyframes sa-mrm-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.sa-mrm-breadcrumb {
  padding: 18px 0 8px;
}

.sa-mrm-wrap {
  max-width: 920px;
}

.sa-mrm-card {
  background: #fff;
  border: 1px solid #c5d2e3;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(26, 74, 140, 0.08);
  padding: 28px 32px 32px;
}

.sa-mrm-title {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a3366;
  border-bottom: 2px solid #2563a8;
  padding-bottom: 12px;
}

.sa-mrm-lead {
  margin: 0 0 20px;
  color: var(--sa-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.sa-mrm-steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.88rem;
  color: #334155;
}

.sa-mrm-steps__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2563a8;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  margin-right: 6px;
}

.sa-mrm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.sa-mrm-table th,
.sa-mrm-table td {
  border: 1px solid #d8e2ef;
  padding: 12px 14px;
  vertical-align: middle;
  text-align: left;
}

.sa-mrm-table th {
  width: 28%;
  background: #f4f7fb;
  font-weight: 600;
  color: #1e3a5f;
}

.sa-mrm-input {
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
  border: 1px solid #b8c5d6;
  border-radius: 3px;
  padding: 9px 11px;
  font: inherit;
}

.sa-mrm-input--inline {
  max-width: 140px;
  margin-left: 8px;
}

.sa-mrm-amounts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.sa-mrm-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.sa-mrm-checks {
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.sa-mrm-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.sa-mrm-actions {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.sa-mrm-submit {
  min-width: 160px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, #2f6fad 0%, #1a4a8c 100%);
  border: 1px solid #153d75;
  border-radius: 3px;
  cursor: pointer;
}

.sa-mrm-submit:hover {
  filter: brightness(1.05);
}

.sa-mrm-footnote {
  margin: 20px 0 0;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .sa-mrm-table th,
  .sa-mrm-table td {
    display: block;
    width: 100%;
  }

  .sa-mrm-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }
}

/* ========== KOVA 風格：綠頂欄、側欄、內容塊 ========== */
/* ===== KOVA Mission Page ===== */
.sa-kova-page {
  background: #f5f5f5;
  min-height: 50vh;
  padding-bottom: 56px;
}

/* Hero banner – simulates forest photo overlay */
.sa-kova-hero {
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(20, 55, 30, 0.72) 0%,
      rgba(30, 75, 40, 0.68) 60%,
      rgba(20, 55, 30, 0.82) 100%),
    linear-gradient(135deg, #1a4a20 0%, #2d7a3a 40%, #1e5c28 100%);
  color: #fff;
  padding: 40px 16px 44px;
  text-align: center;
  overflow: hidden;
}

.sa-kova-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(60, 140, 70, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(40, 110, 55, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.sa-kova-hero__overlay {
  display: none;
}

.sa-kova-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.sa-kova-hero__sub {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.sa-kova-hero__title {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Breadcrumb */
.sa-kova-breadcrumb {
  padding: 14px 0 8px;
  font-size: 0.84rem;
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.sa-kova-breadcrumb a {
  color: #555;
  text-decoration: none;
}

.sa-kova-breadcrumb a:hover {
  color: #f57c00;
  text-decoration: underline;
}

.sa-kova-breadcrumb__sep {
  margin: 0 6px;
  color: #bbb;
}

/* Two-column layout */
.sa-kova-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px 28px;
  align-items: start;
  padding-bottom: 32px;
}

.sa-kova-layout--full {
  grid-template-columns: 1fr;
}

/* Sidebar */
.sa-kova-sidebar {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  overflow: hidden;
  position: sticky;
  top: 72px;
}

.sa-kova-sidebar__title {
  background: #4a4a4a;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #333;
}

.sa-kova-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.sa-kova-sidebar__list a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s;
}

.sa-kova-sidebar__list a:hover {
  background: #fafafa;
  color: #f57c00;
}

.sa-kova-sidebar__list a.is-current {
  border-left-color: #f57c00;
  background: #fff8f0;
  font-weight: 700;
  color: #e06500;
}

/* Main article card */
.sa-kova-main {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 28px 34px 40px;
  min-height: 320px;
}

.sa-kova-main__h1 {
  margin: 0 0 28px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #222;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e5e5;
}

/* Programs block (other pages) */
.sa-kova-programs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sa-kova-block {
  padding: 18px 20px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  border-left: 4px solid #f57c00;
}

.sa-kova-block__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f57c00;
}

.sa-kova-block__text {
  margin: 0;
  line-height: 1.65;
  color: #444;
  font-size: 0.95rem;
}

/* Mission founding section */
.sa-kova-mission-section {
  margin-bottom: 32px;
}

.sa-kova-mission-section__h2 {
  margin: 0 0 14px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #0055a4;
}

.sa-kova-mission-section__p {
  margin: 0 0 12px;
  line-height: 1.75;
  color: #333;
  font-size: 0.94rem;
}

.sa-kova-mission-section__p:last-child {
  margin-bottom: 0;
}

/* Platform overview — body pasted from Word / lang HTML */
.sa-platform-overview {
  line-height: 1.75;
  color: #333;
  font-size: 0.94rem;
}

.sa-platform-overview > *:first-child {
  margin-top: 0;
}

.sa-platform-overview p {
  margin: 0 0 12px;
}

.sa-platform-overview h2 {
  margin: 1.35em 0 0.65em;
  font-size: 1.18rem;
  font-weight: 800;
  color: #0055a4;
}

.sa-platform-overview h3 {
  margin: 1.15em 0 0.5em;
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
}

.sa-platform-overview ul,
.sa-platform-overview ol {
  margin: 0 0 12px;
  padding-left: 1.35em;
}

.sa-platform-overview li {
  margin-bottom: 0.35em;
}

.sa-platform-overview table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 0.9rem;
}

.sa-platform-overview th,
.sa-platform-overview td {
  border: 1px solid #ddd;
  padding: 8px 10px;
  text-align: left;
}

/* KOVA 미션 / 비전 blocks */
.sa-kova-mission-block {
  margin-bottom: 24px;
}

.sa-kova-mission-block__h2 {
  margin: 0 0 14px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #f57c00;
}

.sa-kova-mission-block__quote {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  line-height: 1.6;
}

/* Orange vision banner pill */
.sa-kova-vision-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(90deg, #f57c00 0%, #ffa726 100%);
  border-radius: 50px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* NGO cards grid */
.sa-kova-ngo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.sa-kova-ngo-card {
  padding: 18px 16px;
  background: #fff;
  border-top: 3px solid #f5f5f5;
  border: 1px solid #e8e8e8;
}

.sa-kova-ngo-card__en {
  font-size: 1.15rem;
  font-weight: 800;
  color: #f57c00;
  margin-bottom: 4px;
  line-height: 1.2;
}

.sa-kova-ngo-card__kr {
  font-size: 0.92rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.35;
}

.sa-kova-ngo-card__p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #555;
}

/* Legacy keys kept for other pages */
.sa-kova-ngo-card__tag { display: none; }
.sa-kova-ngo-card__h3 { display: none; }
.sa-kova-mission-quote { margin: 22px 0; }
.sa-kova-mission-quote__label { font-weight: 700; color: #f57c00; margin-bottom: 8px; }
.sa-kova-mission-quote__text { font-size: 1.05rem; font-weight: 600; color: #1a1a1a; }

@media (max-width: 900px) {
  .sa-kova-layout {
    grid-template-columns: 1fr;
  }

  .sa-kova-sidebar {
    position: static;
  }

  .sa-kova-ngo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sa-kova-vision-banner {
    border-radius: 8px;
    font-size: 0.9rem;
  }

  .sa-kova-main {
    padding: 20px 18px 28px;
  }
}

/* ===== Business Programs (图文段落) ===== */
.sa-biz-prog {
  margin-bottom: 48px;
}

.sa-biz-prog:last-child {
  margin-bottom: 0;
}

.sa-biz-prog__h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #f57c00;
}

.sa-biz-prog__fig {
  margin: 0;
}

.sa-biz-prog__img-wrap {
  width: 100%;
  background: #e8e8e8;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

.sa-biz-prog__img-wrap.is-placeholder::after {
  content: '';
  display: block;
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #d8d8d8 0%, #c5c5c5 100%);
}

.sa-biz-prog__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.sa-biz-prog__caption {
  margin: 0;
  padding: 14px 16px;
  background: #f8f8f8;
  border-left: 4px solid #f57c00;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 900px) {
  .sa-biz-prog {
    margin-bottom: 32px;
  }

  .sa-biz-prog__img-wrap {
    min-height: 160px;
  }
}

/* ===== Support System Page ===== */
.sa-support-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f57c00;
  margin: 0 0 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fce8d0;
}

.sa-support-step {
  margin-bottom: 42px;
}

.sa-support-step:last-child {
  margin-bottom: 0;
}

.sa-support-step__header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: #f9f9f9;
  border-left: 4px solid #f57c00;
  padding: 10px 16px;
  margin-bottom: 22px;
  border-radius: 0 3px 3px 0;
}

.sa-support-step__num {
  font-size: 0.82rem;
  font-weight: 800;
  color: #f57c00;
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: #f57c00;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
}

.sa-support-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
}

/* Icon flow row */
.sa-support-flow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.sa-support-flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 90px;
  max-width: 160px;
  text-align: center;
}

.sa-support-flow__circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid #f57c00;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.sa-support-flow__circle svg {
  width: 52px;
  height: 52px;
}

.sa-support-flow__label {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #444;
  word-break: keep-all;
}

.sa-support-flow__arrow {
  font-size: 2rem;
  color: #f57c00;
  line-height: 88px;
  align-self: flex-start;
  padding-top: 0;
  flex-shrink: 0;
}

/* Bullet list */
.sa-support-bullets {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sa-support-bullets li {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #333;
}

.sa-support-bullets--plain {
  list-style-type: disc;
}

.sa-support-bullets ul {
  margin: 6px 0 0 0;
  padding-left: 20px;
  list-style-type: disc;
}

.sa-support-bullets ul li {
  color: #555;
  font-size: 0.87rem;
}

.sa-support-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: #e06500;
  font-weight: 600;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .sa-support-flow {
    gap: 6px;
  }

  .sa-support-flow__circle {
    width: 72px;
    height: 72px;
  }

  .sa-support-flow__circle svg {
    width: 42px;
    height: 42px;
  }

  .sa-support-flow__arrow {
    line-height: 72px;
    font-size: 1.5rem;
  }

  .sa-support-flow__item {
    min-width: 70px;
  }
}

/* ===== Training Counsellor Page ===== */
.sa-training-purpose {
  margin-bottom: 36px;
}

.sa-training-purpose__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.sa-training-purpose__h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: #222;
  flex: 1;
}

.sa-training-purpose__btn {
  display: inline-block;
  padding: 6px 16px;
  background: #1a57a4;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.sa-training-purpose__btn:hover {
  background: #154790;
}

.sa-training-what__h3 {
  margin: 0 0 10px;
  font-size: 0.97rem;
  font-weight: 700;
  color: #222;
}

.sa-training-what__p {
  margin: 0 0 22px;
  line-height: 1.75;
  color: #444;
  font-size: 0.93rem;
}

/* Numbered objectives */
.sa-training-obj-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sa-training-obj-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f8f8f8;
  padding: 16px 18px;
  border-radius: 4px;
}

.sa-training-obj-item__num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #e0e0e0;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.sa-training-obj-item__body {
  flex: 1;
}

.sa-training-obj-item__h {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a57a4;
  margin-bottom: 6px;
}

.sa-training-obj-item__p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #555;
}

/* Qualification level section */
.sa-training-levels {
  margin-bottom: 32px;
}

.sa-training-levels__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.sa-training-levels__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #222;
}

.sa-training-levels__sub {
  font-size: 0.85rem;
  color: #777;
}

/* Level cards row */
.sa-training-level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sa-training-level-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sa-training-level-card__circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid #1a57a4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.sa-training-level-card__circle svg {
  width: 58px;
  height: 58px;
}

.sa-training-level-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  line-height: 1.4;
}

/* Grade sections (1급 / 2급 / 3급) */
.sa-training-grade {
  margin-bottom: 28px;
}

.sa-training-grade:last-child {
  margin-bottom: 0;
}

.sa-training-grade__banner {
  background: #1a57a4;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.sa-training-grade__desc {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.65;
}

.sa-training-grade__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sa-training-grade__list li {
  display: flex;
  gap: 8px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #333;
  padding-left: 4px;
}

.sa-training-grade__mark {
  flex-shrink: 0;
  font-weight: 700;
  color: #1a57a4;
  min-width: 20px;
}

@media (max-width: 700px) {
  .sa-training-level-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .sa-training-level-card__circle {
    width: 72px;
    height: 72px;
  }

  .sa-training-level-card__circle svg {
    width: 44px;
    height: 44px;
  }

  .sa-training-level-card__name {
    font-size: 0.75rem;
  }

  .sa-training-obj-item__num {
    font-size: 1.2rem;
  }
}
