/* ================================================================
   about.css — 關於創意頁專屬樣式
   設計語言對齊首頁（品牌色、字級、卡片、交替雙欄）
================================================================ */

/* ── ② Mission ─────────────────────────────────────── */
.gc-about-mission { padding: 40px 0 64px; }
.gc-about-mission-text {
  text-align: center;
  font-size: 17px;
  line-height: 2;
  color: var(--gc-text);
  margin-top: 8px;
}
.gc-about-mission-text a {
  color: var(--gc-blue-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gc-about-mission-text a:hover { color: var(--gc-blue); }

/* ── ③/④ Counter headline ──────────────────────────── */
.gc-about-counter-head {
  text-align: center;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  letter-spacing: 2px;
  color: #222222;
  margin-bottom: 48px;
}
.gc-about-counter {
  display: inline-block;
  font-size: 1.4em;
  font-weight: 500;
  color: var(--gc-blue-bright);
  padding: 0 6px;
}

/* ── ③ 6 大脈絡 卡片 ───────────────────────────────── */
.gc-about-pulse { padding: 64px 0; }

.gc-about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  max-width: 1100px;
  margin-inline: auto;
}
.gc-about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
}
.gc-about-card-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
}
.gc-about-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.gc-about-card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gc-blue-bright);
  margin-bottom: 12px;
}
.gc-about-card-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gc-text);
}

/* ── ④ 4 大門派 ────────────────────────────────────── */
.gc-about-clans { padding: 32px 0 80px; }

.gc-about-clan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 32px;
  padding: 24px 0;
}
.gc-about-clan--reverse .gc-about-clan-text { order: 2; }
.gc-about-clan--reverse .gc-about-clan-img  { order: 1; }

/* 文字欄：英文大標 + 說明 */
.gc-about-clan-en {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 1px;
  color: #222222;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.gc-about-clan-desc {
  font-size: 16px;
  line-height: 2;
  color: var(--gc-text);
  text-align: justify;
}

/* 圖片欄：色塊 + 中文派名疊中央 */
.gc-about-clan-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-about-clan-blob {
  position: relative;
  width: 80%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-about-clan-blob img {
  width: 100%;
  height: auto;
  display: block;
}
.gc-about-clan-zh {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: 4px;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.12);
}

/* ── RWD ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gc-about-cards { gap: 32px 24px; }
}
@media (max-width: 767px) {
  .gc-about-pulse,
  .gc-about-clans { padding: 40px 0; }
  .gc-about-cards { grid-template-columns: 1fr; gap: 32px; max-width: 360px; }
  .gc-about-counter-head { margin-bottom: 32px; }

  /* 門派：單欄，圖在上、文在下（reverse 也統一） */
  .gc-about-clan,
  .gc-about-clan--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .gc-about-clan--reverse .gc-about-clan-text,
  .gc-about-clan--reverse .gc-about-clan-img,
  .gc-about-clan .gc-about-clan-text,
  .gc-about-clan .gc-about-clan-img { order: initial; }
  .gc-about-clan-img { order: -1; }
  .gc-about-clan-desc { text-align: left; }
}
