/* ===== 全域重置 ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Microsoft JhengHei', '微軟正黑體', 'Noto Sans TC', Georgia, serif;
  background: #e8e8e8;
  color: #111;
  font-size: 15px;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ===== 動畫定義 ===== */

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow:
      0 0 6px rgba(255,255,255,0.6),
      0 0 18px rgba(255,255,255,0.35),
      0 0 40px rgba(255,255,255,0.15);
  }
  50% {
    text-shadow:
      0 0 10px rgba(255,255,255,0.95),
      0 0 30px rgba(255,255,255,0.6),
      0 0 60px rgba(255,255,255,0.3);
  }
}

@keyframes subtleGlow {
  0%, 100% {
    text-shadow:
      0 0 4px rgba(255,255,255,0.4),
      0 0 12px rgba(255,255,255,0.2);
  }
  50% {
    text-shadow:
      0 0 8px rgba(255,255,255,0.8),
      0 0 22px rgba(255,255,255,0.4);
  }
}

@keyframes tickerScroll {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}

@keyframes navUnderline {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes cardShimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes linePulse {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50%       { opacity: 1;   transform: scaleX(1.03); }
}

/* ===== 進場動畫類別 ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.anim-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TNC 斜粗體 ===== */
.tcda-em {
  font-style: italic;
  font-weight: 900;
  letter-spacing: 3px;
}

/* ===== 發光文字 ===== */
.glow {
  animation: titleGlow 3s ease-in-out infinite;
}

.glow-sm {
  animation: subtleGlow 3.5s ease-in-out infinite;
}

/* ===== 頂部快訊欄 ===== */
.top-bar {
  background: #111;
  color: #fff;
  font-size: 13px;
  padding: 0;
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #2a2a2a;
}

.ticker-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.ticker-label {
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  padding: 0 14px;
  height: 36px;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-content {
  overflow: hidden;
  flex: 1;
}

.ticker-content span {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
  color: #ccc;
  letter-spacing: 0.5px;
  padding-left: 40px;
}

/* ===== 頁首 ===== */
.site-header {
  background: #000;
  color: #fff;
  padding: 30px 0 24px;
  border-bottom: 3px solid #fff;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.site-title-wrap {
  animation: fadeSlideIn 0.8s ease both;
}

.site-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: #fff;
  line-height: 1;
  font-family: 'Microsoft JhengHei', sans-serif;
}

.title-line {
  height: 1px;
  background: linear-gradient(to right, #fff, transparent);
  margin: 8px 0 6px;
  animation: linePulse 3s ease-in-out infinite;
}

.site-subtitle {
  font-size: 0.78rem;
  color: #888;
  letter-spacing: 3px;
  font-weight: 400;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  animation: fadeSlideIn 0.8s ease 0.2s both;
}

.header-date {
  font-size: 12px;
  color: #666;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}

.search-box {
  display: flex;
  border: 1px solid #333;
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.search-box:focus-within {
  border-color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.3);
}

.search-box input {
  padding: 7px 16px;
  border: none;
  font-size: 13px;
  outline: none;
  width: 200px;
  background: #111;
  color: #fff;
  letter-spacing: 0.5px;
}

.search-box input::placeholder {
  color: #555;
}

.search-box button {
  padding: 7px 16px;
  background: #222;
  border: none;
  border-left: 1px solid #333;
  color: #aaa;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
}

.search-box button:hover {
  background: #fff;
  color: #000;
}

/* ===== 導覽列 ===== */
.main-nav {
  background: #0a0a0a;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  display: block;
  padding: 14px 18px;
  color: #777;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: color 0.25s;
  position: relative;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover {
  color: #fff;
}

.main-nav ul li a:hover::after,
.main-nav ul li.active a::after {
  width: 100%;
}

.main-nav ul li.active a {
  color: #fff;
}

/* ===== 主容器 ===== */
.container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 24px;
}

/* ===== 區塊標題 ===== */
.section-block {
  margin-bottom: 36px;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #111;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #fff;
}

.label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #111;
  text-transform: uppercase;
}

.more-link {
  font-size: 11px;
  color: #999;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.more-link:hover {
  color: #111;
  border-bottom-color: #111;
}

/* ===== 頭條區塊 ===== */
.headline-grid {
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 16px;
}

.headline-main {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.headline-main:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.big-img {
  height: 280px;
  background: linear-gradient(
    90deg,
    #d0d0d0 25%,
    #e0e0e0 50%,
    #d0d0d0 75%
  );
  background-size: 800px 100%;
  animation: cardShimmer 2.5s infinite linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder-text {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.empty-content {
  padding: 20px 22px;
}

.tag-badge {
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.sm-badge {
  font-size: 9px;
  padding: 2px 8px;
}

.no-news-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #bbb;
  margin: 4px 0 10px;
  letter-spacing: 4px;
}

.no-news-desc {
  font-size: 13px;
  color: #bbb;
  line-height: 1.8;
}

.time-tag {
  font-size: 11px;
  color: #ccc;
  display: block;
  margin-top: 12px;
  letter-spacing: 2px;
}

.headline-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.small-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
  padding: 12px;
  transition: box-shadow 0.3s;
}

.small-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.empty-img-sm {
  width: 72px;
  height: 60px;
  background: linear-gradient(
    90deg,
    #ccc 25%,
    #ddd 50%,
    #ccc 75%
  );
  background-size: 300px 100%;
  animation: cardShimmer 2.5s infinite linear;
  border-radius: 8px;
  flex-shrink: 0;
}

.small-card-body { flex: 1; }

.no-news-sm {
  font-size: 12px;
  color: #bbb;
  margin-top: 5px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ===== 內容 + 側邊欄 ===== */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 28px;
}

.main-content { min-width: 0; }

/* ===== 即時新聞 ===== */
.news-list {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.news-item:last-child { border-bottom: none; }

.news-item:hover { background: #fafafa; }

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
  flex-shrink: 0;
}

.time-sm {
  font-size: 11px;
  color: #bbb;
  white-space: nowrap;
  min-width: 38px;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}

.no-news-inline {
  color: #ccc;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ===== 新聞卡片 ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.card-img-placeholder {
  height: 128px;
  background: linear-gradient(
    90deg,
    #ddd 25%,
    #eee 50%,
    #ddd 75%
  );
  background-size: 600px 100%;
  animation: cardShimmer 2.5s infinite linear;
}

.card-body { padding: 14px; }

.cat-tag {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
  background: #111;
  color: #fff;
}

.no-news {
  font-size: 14px;
  font-weight: 700;
  color: #bbb;
  margin: 2px 0;
  letter-spacing: 2px;
}

.card-desc {
  font-size: 11px;
  color: #ccc;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* ===== 側邊欄 ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
}

.widget-title {
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 11px 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hot-list { padding: 4px 0; }

.hot-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid #f4f4f4;
  transition: background 0.2s;
}

.hot-list li:last-child { border-bottom: none; }
.hot-list li:hover { background: #fafafa; }

.rank {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #e8e8e8;
  color: #999;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.rank1 { background: #111; color: #fff; }
.rank2 { background: #444; color: #fff; }
.rank3 { background: #888; color: #fff; }

.cat-list { padding: 4px 0; }

.cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  color: #444;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid #f4f4f4;
  transition: background 0.2s, color 0.2s;
}

.cat-list li:last-child a { border-bottom: none; }

.cat-list li a:hover {
  background: #f8f8f8;
  color: #000;
}

.count {
  background: #f0f0f0;
  color: #999;
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 20px;
  font-weight: 700;
}

.about-body { padding: 20px 18px; }

.about-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #111;
  text-align: center;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.about-text {
  font-size: 12px;
  color: #777;
  line-height: 1.9;
  text-align: center;
}

/* ===== 頁腳 ===== */
.site-footer {
  background: #0a0a0a;
  color: #ccc;
  margin-top: 50px;
  border-top: 3px solid #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: #ddd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #222;
}

.footer-col p {
  font-size: 12px;
  color: #555;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  font-size: 12px;
  color: #555;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.footer-col ul li a {
  color: #555;
  transition: color 0.2s;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.social-btn {
  background: transparent;
  color: #555;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  border: 1px solid #2a2a2a;
  transition: border-color 0.2s, color 0.2s;
  text-transform: uppercase;
}

.social-btn:hover {
  border-color: #fff;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  text-align: center;
  padding: 18px 24px;
  font-size: 11px;
  color: #444;
  max-width: 1200px;
  margin: 0 auto;
  letter-spacing: 1px;
}

.footer-bottom a {
  color: #555;
  transition: color 0.2s;
}

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

/* ===== 響應式 ===== */
@media (max-width: 1024px) {
  .content-sidebar-wrap {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .headline-grid {
    grid-template-columns: 1fr;
  }
  .headline-side {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .site-title {
    font-size: 2rem;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-right {
    align-items: flex-start;
    width: 100%;
  }
  .search-box input {
    width: 160px;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .main-nav ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .main-nav ul::-webkit-scrollbar {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .headline-side {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  .site-title {
    font-size: 1.6rem;
  }
  .container {
    padding: 0 14px;
  }
}

/* ===== 新聞載入器動態元素樣式 ===== */
.card-title-real {
  font-size: 14px; font-weight: 700; color: #111;
  margin: 4px 0 6px; line-height: 1.5;
}
.card-footer-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
}
.card-time-tag {
  font-size: 10px; color: #bbb; letter-spacing: 1px;
}
.card-views {
  font-size: 10px; color: #aaa; letter-spacing: 0.5px; white-space: nowrap;
}
.card-real-img {
  width: 100%; height: 128px; object-fit: cover; display: block;
}
.big-img-real {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
.small-img-real {
  width: 72px; height: 60px; object-fit: cover;
  border-radius: 8px; flex-shrink: 0;
}
.active-dot {
  background: #e44 !important;
  box-shadow: 0 0 0 3px rgba(228,68,68,0.2);
}
.news-title-sm {
  font-size: 13px; color: #111; font-weight: 600; letter-spacing: 0.5px;
}
.hot-title {
  font-size: 13px; color: #333; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1;
}

/* ===== 分頁 Hero 橫幅 ===== */
.page-hero {
  background: #111;
  border-radius: 16px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.02) 3px,
    rgba(255,255,255,0.02) 6px
  );
  pointer-events: none;
}

.page-hero-inner {
  padding: 40px 36px;
  position: relative;
  z-index: 1;
}

.page-hero-tag {
  background: #fff;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}

.page-hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 12px;
  animation: subtleGlow 3.5s ease-in-out infinite;
}

.page-hero-desc {
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
  max-width: 600px;
  line-height: 1.9;
}

/* ===== 即時新聞列表（分頁專用） ===== */
.breaking-list {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
}

.breaking-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.breaking-item:last-child { border-bottom: none; }
.breaking-item:hover { background: #fafafa; }

.breaking-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}

.breaking-body {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}

.breaking-time {
  font-size: 11px;
  color: #bbb;
  white-space: nowrap;
  min-width: 42px;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}

.breaking-tag-badge {
  background: #111;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.breaking-text {
  font-size: 13px;
  color: #ccc;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ===== 核心理念格子（關於我們） ===== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: #111;
  color: #fff;
  border-radius: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  letter-spacing: 0;
}

.value-title {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.value-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.9;
  letter-spacing: 0.3px;
}

/* ===== 組織介紹卡（關於我們） ===== */
.about-page-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  transition: box-shadow 0.3s;
}

.about-page-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.about-page-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: #111;
  letter-spacing: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 150px;
  text-align: center;
}

.about-page-body { flex: 1; }

.about-page-heading {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  letter-spacing: 3px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.about-page-text {
  font-size: 13px;
  color: #555;
  line-height: 2;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.about-page-text:last-child { margin-bottom: 0; }

/* ===== 聯絡資訊卡（關於我們） ===== */
.contact-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 28px 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-item {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-label {
  font-size: 10px;
  font-weight: 800;
  color: #aaa;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 13px;
  color: #333;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== 免責聲明（關於我們） ===== */
.disclaimer-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 28px 32px;
}

.disclaimer-text {
  font-size: 12px;
  color: #888;
  line-height: 2;
  letter-spacing: 0.5px;
}

/* ===== 響應式補充 ===== */
@media (max-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero-inner {
    padding: 28px 22px;
  }
  .page-hero-title {
    font-size: 1.8rem;
  }
  .about-page-card {
    flex-direction: column;
    gap: 20px;
  }
  .about-page-logo {
    min-width: unset;
    font-size: 1.3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero-title {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
  .breaking-body {
    gap: 8px;
  }
}
