/* ============================================================
   FishCasinoHub — 海洋探索门户 Glassmorphism Ocean
   气质：渐变青蓝背景 + 玻璃拟态卡片（backdrop-filter blur）+
         柔和波浪分割线 + 柔和圆角 + hover 上浮模糊增强
   class 前缀：fh-
   ============================================================ */

/* ── 设计 Token ─────────────────────────────────────────── */
:root {
  /* 配色：海洋渐变 + 半透明白卡 + 深蓝文字 + 珊瑚强调 */
  --fh-ocean-1:    #0093E9;
  --fh-ocean-2:    #80D0C7;
  --fh-ocean-deep: #1a3a5c;
  --fh-card-bg:    rgba(255, 255, 255, 0.7);
  --fh-card-bg-solid: #ffffff;
  --fh-card-border: rgba(255, 255, 255, 0.6);
  --fh-text:       #1a3a5c;
  --fh-heading:    #0e2a4a;
  --fh-muted:      #5a7a96;
  --fh-accent:     #0093E9;
  --fh-accent2:    #ff6b9d;   /* 珊瑚 */
  --fh-accent-soft: rgba(0, 147, 233, 0.12);
  --fh-border:     rgba(26, 58, 92, 0.12);
  --fh-font:       "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif;
  --fh-radius:     16px;
  --fh-radius-lg:  24px;
  --fh-blur:       blur(10px);
  --fh-blur-strong: blur(20px);
  --fh-shadow:     0 8px 32px rgba(31, 84, 122, 0.12);
  --fh-shadow-card: 0 4px 24px rgba(31, 84, 122, 0.08);
  --fh-shadow-hover: 0 20px 50px rgba(31, 84, 122, 0.18);
  --fh-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --fh-wrap:      1200px;
}

/* ── Reset / 基础 ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--fh-font);
  color: var(--fh-text);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  /* 海洋渐变背景：固定 + 多层光晕 */
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(128, 208, 199, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(0, 147, 233, 0.25) 0%, transparent 55%),
    linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
  background-attachment: fixed;
}

a { color: var(--fh-accent); text-decoration: none; transition: color var(--fh-transition); }
a:hover { color: var(--fh-accent2); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--fh-font);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fh-heading);
  letter-spacing: -0.01em;
}

.fh-skiplink-k249 {
  position: absolute; left: -9999px; top: 0;
  background: #fff; color: var(--fh-ocean-deep);
  padding: 10px 18px; border-radius: 0 0 8px 0; z-index: 9999;
}
.fh-skiplink-k249:focus { left: 0; }

.fh-wrap { max-width: var(--fh-wrap); margin: 0 auto; padding: 0 24px; }

/* ── 玻璃拟态卡片（核心组件）────────────────────────────── */
.fh-glass-card {
  background: var(--fh-card-bg);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border: 1px solid var(--fh-card-border);
  border-radius: var(--fh-radius);
  box-shadow: var(--fh-shadow-card);
  transition: transform var(--fh-transition), box-shadow var(--fh-transition), backdrop-filter var(--fh-transition);
}

/* ── Header：玻璃 blur 导航（固定）──────────────────────── */
.fh-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: var(--fh-blur-strong);
  -webkit-backdrop-filter: var(--fh-blur-strong);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 24px rgba(31, 84, 122, 0.08);
}
.fh-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding: 14px 24px;
}
.fh-logo {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fh-heading); font-weight: 600; font-size: 22px;
  letter-spacing: -0.02em;
}
.fh-logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--fh-ocean-1), var(--fh-ocean-2));
  color: #fff; font-size: 20px; font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 147, 233, 0.4);
}
.fh-logo:hover { color: var(--fh-accent); }

.fh-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.fh-nav-link {
  color: var(--fh-text); font-weight: 600; font-size: 14px;
  padding: 8px 14px; border-radius: 30px;
  transition: all var(--fh-transition);
}
.fh-nav-link:hover {
  background: rgba(0, 147, 233, 0.12);
  color: var(--fh-accent);
}
.fh-nav-cta {
  background: linear-gradient(135deg, var(--fh-ocean-1), var(--fh-ocean-2));
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 147, 233, 0.35);
}
.fh-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 147, 233, 0.5);
  background: linear-gradient(135deg, var(--fh-ocean-1), var(--fh-ocean-2));
}

/* ── HERO：渐变背景 + 玻璃卡 + 波浪分割 ─────────────────── */
.fh-hero { position: relative; padding: 64px 0 80px; margin-bottom: 0; }
.fh-hero-bg {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, rgba(0, 147, 233, 0.85) 0%, rgba(128, 208, 199, 0.75) 100%);
  padding: 56px 0 72px;
  overflow: hidden;
}
.fh-hero-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start;
}
.fh-hero-card {
  padding: 40px 36px; border-radius: var(--fh-radius-lg);
  background: rgba(255, 255, 255, 0.75);
}
.fh-tag {
  display: inline-block;
  background: var(--fh-accent-soft);
  color: var(--fh-accent);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 18px;
}
.fh-hero-title {
  font-size: 42px; line-height: 1.15; color: var(--fh-heading);
  margin-bottom: 14px; font-weight: 600;
}
.fh-hero-deck {
  font-size: 17px; color: var(--fh-muted); margin-bottom: 24px;
  max-width: 60ch; line-height: 1.7;
}
.fh-hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.fh-hero-img-link { display: block; }
.fh-hero-img-link img {
  width: 120px; height: 80px; object-fit: cover;
  border-radius: 12px; box-shadow: var(--fh-shadow);
}

.fh-hero-side { display: flex; flex-direction: column; gap: 14px; }
.fh-hero-side-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 16px; border-radius: var(--fh-radius);
}
.fh-hero-side-img { flex-shrink: 0; }
.fh-hero-side-img img {
  width: 80px; height: 64px; object-fit: cover; border-radius: 10px;
}
.fh-hero-side-body { flex: 1; min-width: 0; }
.fh-hero-side-title {
  font-size: 15px; line-height: 1.35; margin: 0 0 4px; font-weight: 600;
}
.fh-hero-side-title a { color: var(--fh-heading); }
.fh-hero-side-title a:hover { color: var(--fh-accent); }
.fh-date { font-size: 12px; color: var(--fh-muted); }

/* 波浪分割线 */
.fh-wave-divider {
  position: relative; line-height: 0; margin-top: -1px;
}
.fh-wave-divider svg {
  display: block; width: 100%; height: 60px;
}
.fh-wave-divider svg + svg { position: absolute; bottom: 0; left: 0; }

/* ── 按钮 ───────────────────────────────────────────────── */
.fh-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; font-size: 15px; font-weight: 600;
  border-radius: 30px; border: none; cursor: pointer;
  transition: all var(--fh-transition);
  font-family: var(--fh-font);
}
.fh-btn-primary {
  background: linear-gradient(135deg, var(--fh-ocean-1), var(--fh-accent2));
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 147, 233, 0.35);
}
.fh-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 147, 233, 0.5);
  color: #fff;
}
.fh-btn-block { width: 100%; }

/* ── 分类导航条 ─────────────────────────────────────────── */
.fh-catnav {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border-bottom: 1px solid var(--fh-card-border);
  padding: 16px 0;
}
.fh-catnav .fh-wrap {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.fh-catnav-item {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--fh-card-border);
  padding: 8px 18px; border-radius: 30px;
  font-size: 14px; font-weight: 600; color: var(--fh-text);
  transition: all var(--fh-transition);
}
.fh-catnav-item:hover {
  background: linear-gradient(135deg, var(--fh-ocean-1), var(--fh-ocean-2));
  color: #fff; border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 147, 233, 0.3);
}

/* ── 内容区 + 两栏 ──────────────────────────────────────── */
.fh-content-area { padding: 40px 24px 60px; }
.fh-two-col {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 32px; align-items: start;
}
.fh-main-col { min-width: 0; }
.fh-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 90px; }

/* ── Section ────────────────────────────────────────────── */
.fh-section { margin-bottom: 48px; }
.fh-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; margin-bottom: 22px;
  padding-bottom: 14px; border-bottom: 1px solid var(--fh-border);
}
.fh-section-title {
  font-size: 26px; color: var(--fh-heading); font-weight: 600;
}
.fh-section-more {
  color: var(--fh-accent); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 20px;
  background: var(--fh-accent-soft);
  transition: all var(--fh-transition);
}
.fh-section-more:hover {
  background: var(--fh-accent); color: #fff;
  transform: translateX(2px);
}

/* ── 卡片网格 ───────────────────────────────────────────── */
.fh-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.fh-card {
  overflow: hidden; display: flex; flex-direction: column;
  background: var(--fh-card-bg);
}
.fh-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fh-shadow-hover);
  backdrop-filter: var(--fh-blur-strong);
  -webkit-backdrop-filter: var(--fh-blur-strong);
}
.fh-card-img { display: block; overflow: hidden; background: var(--fh-accent-soft); }
.fh-card-img img {
  width: 100%; height: 170px; object-fit: cover;
  transition: transform var(--fh-transition);
}
.fh-card:hover .fh-card-img img { transform: scale(1.06); }
.fh-card-body { padding: 20px; }
.fh-card-title {
  font-size: 18px; line-height: 1.35; margin-bottom: 8px; font-weight: 600;
}
.fh-card-title a { color: var(--fh-heading); }
.fh-card-title a:hover { color: var(--fh-accent); }
.fh-card-excerpt { font-size: 14px; color: var(--fh-muted); line-height: 1.6; }

/* ── 列表（最新） ──────────────────────────────────────── */
.fh-list { list-style: none; display: grid; gap: 12px; }
.fh-list-item {
  display: flex; justify-content: space-between; gap: 18px;
  align-items: baseline; flex-wrap: wrap;
  padding: 16px 20px; border-radius: var(--fh-radius);
  background: var(--fh-card-bg);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border: 1px solid var(--fh-card-border);
  transition: all var(--fh-transition);
}
.fh-list-item:hover {
  transform: translateX(4px);
  border-color: var(--fh-accent);
  box-shadow: var(--fh-shadow-card);
}
.fh-list-rank { color: var(--fh-accent); font-size: 13px; font-weight: 600; flex-shrink: 0; }
.fh-list-body { flex: 1; min-width: 0; }
.fh-list-title {
  color: var(--fh-heading); font-weight: 600; font-size: 16px;
  display: block; line-height: 1.4;
}
.fh-list-title:hover { color: var(--fh-accent); }
.fh-readtime { font-size: 12px; color: var(--fh-muted); }

/* ── 侧边栏 widget ─────────────────────────────────────── */
.fh-widget { padding: 24px; }
.fh-widget-title {
  font-size: 16px; color: var(--fh-heading); margin-bottom: 16px;
  font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid var(--fh-border);
}
.fh-rank { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fh-rank-item {
  display: flex; gap: 12px; align-items: flex-start;
}
.fh-rank-num {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--fh-ocean-1), var(--fh-ocean-2));
  color: #fff; font-size: 13px; font-weight: 600;
}
.fh-rank-link { color: var(--fh-text); font-size: 14px; line-height: 1.45; font-weight: 500; }
.fh-rank-link:hover { color: var(--fh-accent); }

/* ── CTA box ────────────────────────────────────────────── */
.fh-cta-box { padding: 28px; text-align: center; }
.fh-cta-title { font-size: 20px; color: var(--fh-heading); margin-bottom: 10px; font-weight: 600; }
.fh-cta-text { font-size: 14px; color: var(--fh-muted); margin-bottom: 18px; line-height: 1.6; }

/* ── Footer ─────────────────────────────────────────────── */
.fh-footer {
  margin-top: 60px;
  background: rgba(14, 42, 74, 0.85);
  backdrop-filter: var(--fh-blur-strong);
  -webkit-backdrop-filter: var(--fh-blur-strong);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 32px;
}
.fh-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 28px;
}
.fh-footer-col { display: flex; flex-direction: column; gap: 8px; }
.fh-footer-logo { color: #fff; font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.fh-footer-desc { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }
.fh-footer-col h4 {
  color: #fff; font-size: 14px; font-weight: 600;
  margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase;
}
.fh-footer-col a {
  color: rgba(255, 255, 255, 0.7); font-size: 14px;
  transition: color var(--fh-transition);
}
.fh-footer-col a:hover { color: var(--fh-ocean-2); }
.fh-disclosure {
  font-size: 12px; color: rgba(255, 255, 255, 0.5);
  text-align: center; padding: 16px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px; margin: 0 auto; line-height: 1.6;
}
.fh-copyright {
  font-size: 13px; color: rgba(255, 255, 255, 0.5);
  text-align: center; padding-top: 12px;
}

/* ============================================================
   兼容样式段落（与 article / hub / author 模板中复用的 class）
   ============================================================ */

/* site-banner-ad 横幅广告 */
.fh-sitebannad-d683 {
  margin-bottom: 28px;
}
.fh-sitebannad-d683 img {
  width: 100%; max-height: 120px; object-fit: cover;
  border-radius: var(--fh-radius);
  box-shadow: var(--fh-shadow-card);
}

/* rg-banner 责任博彩 */
.fh-rgbann-tad3 {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border: 1px solid var(--fh-card-border);
  border-left: 4px solid var(--fh-accent2);
  border-radius: var(--fh-radius);
  padding: 18px 22px;
  font-size: 13px; line-height: 1.65; color: var(--fh-text);
}
.fh-rgbann-tad3 strong { color: var(--fh-accent2); font-weight: 600; }
.fh-rgbann-tad3 a { color: var(--fh-accent); font-weight: 600; }

/* breadcrumb */
.fh-brea-x5e9 {
  font-size: 13px; color: var(--fh-muted);
  margin-bottom: 20px;
  padding: 10px 16px;
  background: var(--fh-card-bg);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border-radius: var(--fh-radius);
  border: 1px solid var(--fh-card-border);
  width: fit-content; max-width: 100%;
}
.fh-brea-x5e9 a { color: var(--fh-accent); font-weight: 600; }
.fh-brea-x5e9 a:hover { color: var(--fh-accent2); }

/* 文章详情卡 */
.fh-article-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.8);
}
.fh-posthead-dc0b { margin-bottom: 24px; }
.fh-posttitl-l2b2 {
  font-size: 34px; line-height: 1.2; color: var(--fh-heading);
  font-weight: 600; margin-bottom: 14px;
}
.fh-postmeta-q22f {
  color: var(--fh-muted); font-size: 14px;
  display: flex; gap: 16px; flex-wrap: wrap;
  padding: 10px 16px;
  background: var(--fh-accent-soft);
  border-radius: 24px; width: fit-content;
}
.fh-postmeta-q22f a { color: var(--fh-accent); font-weight: 600; }

/* post-facts 表 */
.fh-postfact-l2b6 {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 16px 0 28px; font-size: 14px;
  border-radius: var(--fh-radius); overflow: hidden;
  background: var(--fh-card-bg);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border: 1px solid var(--fh-card-border);
  box-shadow: var(--fh-shadow-card);
}
.fh-postfact-l2b6 th, .fh-postfact-l2b6 td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--fh-border);
}
.fh-postfact-l2b6 th {
  background: var(--fh-accent-soft);
  width: 30%; color: var(--fh-heading);
  font-weight: 600;
}
.fh-postfact-l2b6 tr:last-child th, .fh-postfact-l2b6 tr:last-child td { border-bottom: none; }

/* post-content */
.fh-postcont-keff { font-size: 16px; line-height: 1.8; color: var(--fh-text); }
.fh-postcont-keff h2 {
  font-size: 24px; color: var(--fh-heading); margin: 32px 0 14px;
  font-weight: 600; padding-left: 14px;
  border-left: 4px solid var(--fh-accent);
}
.fh-postcont-keff h3 {
  font-size: 20px; color: var(--fh-heading); margin: 26px 0 10px; font-weight: 600;
}
.fh-postcont-keff p { margin-bottom: 18px; }
.fh-postcont-keff img {
  border-radius: var(--fh-radius); box-shadow: var(--fh-shadow-card); max-width: 100%;
}
.fh-postcont-keff ul, .fh-postcont-keff ol { margin: 0 0 18px; padding-left: 26px; }
.fh-postcont-keff li { margin: 6px 0; }
.fh-postcont-keff a { color: var(--fh-accent); text-decoration: underline; text-underline-offset: 2px; }
.fh-postcont-keff blockquote {
  margin: 20px 0; padding: 16px 22px;
  background: var(--fh-accent-soft);
  border-left: 4px solid var(--fh-accent);
  border-radius: 0 var(--fh-radius) var(--fh-radius) 0;
  color: var(--fh-text); font-style: italic;
}

/* cta-register */
.fh-ctaregi-v7b3 {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border: 1px solid var(--fh-card-border);
  border-radius: var(--fh-radius);
  padding: 28px; text-align: center;
  margin: 28px 0;
  box-shadow: var(--fh-shadow-card);
}
.fh-ctaregibott-lf10 h2 {
  color: var(--fh-heading); font-size: 24px; margin-bottom: 16px; font-weight: 600;
}
.fh-ctabtn-n83f {
  display: inline-block; padding: 13px 30px; font-size: 15px; font-weight: 600;
  border-radius: 30px; margin: 6px;
  transition: all var(--fh-transition);
  font-family: var(--fh-font);
}
.fh-ctabtnprim-wa0c {
  background: linear-gradient(135deg, var(--fh-ocean-1), var(--fh-accent2));
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 147, 233, 0.35);
}
.fh-ctabtnprim-wa0c:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 147, 233, 0.5);
  color: #fff;
}
.fh-ctabtnseco-k984 {
  background: transparent; color: var(--fh-accent);
  border: 2px solid var(--fh-accent);
}
.fh-ctabtnseco-k984:hover { background: var(--fh-accent); color: #fff; }
.fh-ctadisc-p316 { font-size: 12px; color: var(--fh-muted); margin-top: 14px; }

/* related-posts */
.fh-relapost-m693 {
  margin: 40px 0 0; padding-top: 28px;
  border-top: 1px solid var(--fh-border);
}
.fh-relapost-m693 h2 {
  font-size: 22px; color: var(--fh-heading); margin-bottom: 16px; font-weight: 600;
}
.fh-relalist-q680 {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px;
}
.fh-relalist-q680 li {
  background: var(--fh-card-bg);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border: 1px solid var(--fh-card-border);
  border-left: 4px solid var(--fh-accent);
  padding: 14px 16px; border-radius: 0 var(--fh-radius) var(--fh-radius) 0;
  transition: all var(--fh-transition);
}
.fh-relalist-q680 li:hover {
  transform: translateX(4px);
  box-shadow: var(--fh-shadow-card);
  border-left-color: var(--fh-accent2);
}
.fh-relalist-q680 a { color: var(--fh-heading); font-weight: 600; font-size: 14px; line-height: 1.45; }
.fh-relalist-q680 a:hover { color: var(--fh-accent); }

/* linked-articles */
.fh-linkarti-ke89 { margin-top: 36px; }
.fh-linkarti-ke89 h2 {
  font-size: 22px; color: var(--fh-heading); margin-bottom: 16px; font-weight: 600;
}
.fh-artigrid-r7e9 {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
}
.fh-artigriditem-w2c9 a {
  display: block; padding: 18px;
  background: var(--fh-card-bg);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border: 1px solid var(--fh-card-border);
  border-radius: var(--fh-radius);
  transition: all var(--fh-transition);
}
.fh-artigriditem-w2c9 a:hover {
  transform: translateY(-4px);
  box-shadow: var(--fh-shadow-card);
}
.fh-artigriditem-w2c9 strong { color: var(--fh-heading); display: block; margin-bottom: 6px; font-weight: 600; }
.fh-artigridexce-x631 { display: block; font-size: 13px; color: var(--fh-muted); margin-bottom: 6px; }
.fh-artigriditem-w2c9 time { font-size: 12px; color: var(--fh-accent); }

/* hub-intro */
.fh-hubintr-r36d {
  margin-bottom: 28px; padding: 28px 32px;
}
.fh-hubintr-r36d h1 { font-size: 32px; color: var(--fh-heading); margin-bottom: 10px; font-weight: 600; }
.fh-hubintr-r36d p { color: var(--fh-muted); font-size: 15px; line-height: 1.7; max-width: 80ch; }

/* hub-grid / hub-card */
.fh-hubgrid-x678 {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px;
}
.fh-hubcard-s9c9 {
  overflow: hidden; display: flex; flex-direction: column;
  background: var(--fh-card-bg);
}
.fh-hubcard-s9c9:hover {
  transform: translateY(-6px);
  box-shadow: var(--fh-shadow-hover);
  backdrop-filter: var(--fh-blur-strong);
  -webkit-backdrop-filter: var(--fh-blur-strong);
}
.fh-hubcardimg-n0de { display: block; overflow: hidden; background: var(--fh-accent-soft); }
.fh-hubcardimg-n0de img {
  width: 100%; height: 180px; object-fit: cover;
  transition: transform var(--fh-transition);
}
.fh-hubcard-s9c9:hover .fh-hubcardimg-n0de img { transform: scale(1.06); }
.fh-hubcardbody-pd9d { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.fh-hubcardtitl-vdd0 { font-size: 18px; font-weight: 600; line-height: 1.35; }
.fh-hubcardtitl-vdd0 a { color: var(--fh-heading); }
.fh-hubcardtitl-vdd0 a:hover { color: var(--fh-accent); }
.fh-hubcardexce-qce1 { font-size: 14px; color: var(--fh-muted); line-height: 1.6; }
.fh-hubcarddate-d59d { color: var(--fh-accent); font-size: 12px; margin-top: auto; font-weight: 600; }

/* pagination */
.fh-pagi-x871 {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 36px; flex-wrap: wrap;
}
.fh-pagi-x871 a, .fh-pagi-x871 .fh-pageinfo-r7b0 {
  padding: 10px 20px; border-radius: 30px;
  background: var(--fh-card-bg);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border: 1px solid var(--fh-card-border);
  color: var(--fh-heading); font-weight: 600; font-size: 14px;
  transition: all var(--fh-transition);
}
.fh-pagi-x871 a:hover {
  background: linear-gradient(135deg, var(--fh-ocean-1), var(--fh-ocean-2));
  color: #fff; border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 147, 233, 0.3);
}
.fh-pagi-x871 .fh-pageinfo-r7b0 { color: var(--fh-muted); background: transparent; border: none; }

/* author-profile */
.fh-authprof-xf1a {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 32px; margin-bottom: 32px;
  flex-wrap: wrap;
}
.fh-authprof-xf1a img {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  box-shadow: var(--fh-shadow);
  border: 3px solid #fff;
}
.fh-authbio-x497 { flex: 1; min-width: 200px; }
.fh-authbio-x497 h1 { font-size: 28px; margin-bottom: 10px; font-weight: 600; }
.fh-authbio-x497 p { color: var(--fh-muted); font-size: 15px; line-height: 1.7; }

/* author-posts article-list */
.fh-authpost-t4a2 h2 { font-size: 22px; color: var(--fh-heading); }
.fh-artilist-wd9c {
  list-style: none; display: grid; gap: 12px;
}
.fh-artilist-wd9c li {
  padding: 14px 18px;
  background: var(--fh-card-bg);
  backdrop-filter: var(--fh-blur);
  -webkit-backdrop-filter: var(--fh-blur);
  border: 1px solid var(--fh-card-border);
  border-radius: var(--fh-radius);
  transition: all var(--fh-transition);
}
.fh-artilist-wd9c li:hover {
  transform: translateX(4px);
  border-color: var(--fh-accent);
  box-shadow: var(--fh-shadow-card);
}
.fh-artilist-wd9c a { color: var(--fh-heading); font-weight: 600; font-size: 15px; }
.fh-artilist-wd9c a:hover { color: var(--fh-accent); }
.fh-artilist-wd9c time { color: var(--fh-muted); font-size: 12px; }

/* ── 兼容旧 class（home/main/hub 共享结构）────────────── */
.fh-cont-d313 { max-width: var(--fh-wrap); margin: 0 auto; padding: 0 24px; }
.fh-sitehead-p583 { background: rgba(255,255,255,0.55); backdrop-filter: var(--fh-blur-strong); -webkit-backdrop-filter: var(--fh-blur-strong); border-bottom: 1px solid var(--fh-card-border); padding: 14px 0; box-shadow: 0 4px 24px rgba(31,84,122,0.08); }
.fh-sitehead-p583 .fh-cont-d313 { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.fh-sitelogo-wbe4 { color: var(--fh-heading); font-size: 22px; font-weight: 600; text-decoration: none; }
.fh-sitenav-qc07 a { color: var(--fh-text); text-decoration: none; margin-left: 16px; font-size: 14px; font-weight: 600; padding: 8px 14px; border-radius: 30px; transition: all var(--fh-transition); }
.fh-sitenav-qc07 a:hover { background: var(--fh-accent-soft); color: var(--fh-accent); }

.fh-hero-q4d9 { background: linear-gradient(135deg, rgba(0,147,233,0.85), rgba(128,208,199,0.75)); color: #fff; border-radius: var(--fh-radius-lg); padding: 48px 36px; margin-bottom: 36px; box-shadow: var(--fh-shadow); }
.fh-herotitl-q55d { color: #fff; font-size: 38px; font-weight: 600; }
.fh-btn-m83d { display: inline-block; padding: 13px 28px; font-size: 15px; font-weight: 600; border-radius: 30px; transition: all var(--fh-transition); }
.fh-btnprim-m5a3 { background: linear-gradient(135deg, var(--fh-ocean-1), var(--fh-accent2)); color: #fff; box-shadow: 0 8px 22px rgba(0,147,233,0.35); }
.fh-btnprim-m5a3:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,147,233,0.5); color: #fff; }

.fh-homesect-ma0d { margin-bottom: 48px; }
.fh-homegrid-rd66 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 22px; }
.fh-homecard-m6eb { background: var(--fh-card-bg); backdrop-filter: var(--fh-blur); -webkit-backdrop-filter: var(--fh-blur); border: 1px solid var(--fh-card-border); border-radius: var(--fh-radius); overflow: hidden; transition: all var(--fh-transition); box-shadow: var(--fh-shadow-card); }
.fh-homecard-m6eb:hover { transform: translateY(-6px); box-shadow: var(--fh-shadow-hover); backdrop-filter: var(--fh-blur-strong); -webkit-backdrop-filter: var(--fh-blur-strong); }
.fh-homelist-mbcb { list-style: none; display: grid; gap: 12px; }

.fh-footlink-wf8d a { color: rgba(255,255,255,0.7); text-decoration: none; margin-right: 18px; font-weight: 600; transition: color var(--fh-transition); }
.fh-footlink-wf8d a:hover { color: var(--fh-ocean-2); }
.fh-affidisc-kfd2 { font-size: 12px; color: rgba(255,255,255,0.5); }
.fh-copy-df6d { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── 响应式 ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .fh-hero-inner { grid-template-columns: 1fr; }
  .fh-two-col { grid-template-columns: 1fr; }
  .fh-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .fh-sidebar > * { flex: 1 1 280px; }
  .fh-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .fh-header-inner { flex-direction: column; align-items: flex-start; padding: 12px 18px; }
  .fh-nav { width: 100%; overflow-x: auto; }
  .fh-nav-link { padding: 6px 12px; font-size: 13px; }
  .fh-content-area { padding: 28px 18px 44px; }
  .fh-hero { padding: 36px 0 56px; }
  .fh-hero-bg { padding: 36px 0 48px; }
  .fh-hero-card { padding: 28px 22px; }
  .fh-hero-title { font-size: 30px; }
  .fh-hero-deck { font-size: 15px; }
  .fh-grid, .fh-hubgrid-x678, .fh-homegrid-rd66 { grid-template-columns: 1fr; }
  .fh-card-img img, .fh-hubcardimg-n0de img { height: 180px; }
  .fh-section-title { font-size: 22px; }
  .fh-posttitl-l2b2 { font-size: 26px; }
  .fh-article-card { padding: 24px 20px; }
  .fh-authprof-xf1a { padding: 24px; flex-direction: column; align-items: center; text-align: center; }
  .fh-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .fh-catnav .fh-wrap { justify-content: flex-start; overflow-x: auto; }
}
