/* ==========================================================================
   洪泰装饰 · 首页与页脚自定义样式
   Hongtai Decoration — custom homepage & footer stylesheet
   设计语言：极简高级商业风 / 大留白分层 / 毛玻璃卡片 / Inter 三级字号
   ========================================================================== */

:root {
  /* 配色 · 主色 + 低饱和点缀色 */
  --ht-ink: #161f2c;          /* 主文字 / 深墨 */
  --ht-ink-2: #3c4854;        /* 次级文字 */
  --ht-muted: #86919d;        /* 弱化文字 */
  --ht-bg: #f7f8fa;           /* 页面底色 */
  --ht-surface: #ffffff;      /* 卡片表面 */
  --ht-line: #e9edf2;         /* 发丝分隔线 */
  --ht-accent: #a88052;       /* 低饱和铜棕 · 点缀色 */
  --ht-accent-ink: #8a6537;   /* 点缀色加深（浅底文字） */
  --ht-accent-tint: #f3ede3;  /* 点缀色浅染 */

  /* 圆角 / 阴影 */
  --ht-radius: 18px;
  --ht-radius-lg: 26px;
  --ht-shadow-sm: 0 1px 2px rgba(22, 31, 44, 0.04), 0 8px 24px rgba(22, 31, 44, 0.05);
  --ht-shadow-md: 0 12px 32px -12px rgba(22, 31, 44, 0.16);
  --ht-shadow-lg: 0 30px 60px -28px rgba(22, 31, 44, 0.32);

  /* 字体栈 · Inter 三级字号（中文回退到系统黑体） */
  --ht-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;

  /* 容器 */
  --ht-container: 1160px;
  --ht-gutter: 24px;
}

/* ==========================================================================
   全局图片修复：主题样式表里有一条 `img { max-width: 50% }` 的全局规则，
   会导致所有图片被压到一半宽度并拉伸。这里恢复为 100%。
   ========================================================================== */
img {
  max-width: 100%;
}

/* ==========================================================================
   基础排版（仅作用于首页与页脚）
   ========================================================================== */
.ht-front,
.ht-footer {
  font-family: var(--ht-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ht-ink-2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ht-container {
  width: 100%;
  max-width: var(--ht-container);
  margin: 0 auto;
  padding-left: var(--ht-gutter);
  padding-right: var(--ht-gutter);
}

.ht-front a,
.ht-footer a {
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease,
    transform 0.3s ease, box-shadow 0.3s ease, opacity 0.25s ease;
}

/* 让首页突破主题默认的 .container 约束，实现通栏分区 */
body.home.blog #main.container {
  width: 100%;
  max-width: none;
  padding: 0;
}

body.home.blog section.content-area {
  padding: 0;
}

body.home.blog {
  background: var(--ht-bg);
}

/* ==========================================================================
   头部导航 · 轻量现代化（去除旧后台风）
   ========================================================================== */
#site-navigation.main-navigation {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ht-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

/* 导航栏 Logo 适配高度（原图为 341×138，需压缩到与导航栏匹配） */
#site-navigation .site-title-container .custom-logo {
  max-height: 42px;
  width: auto;
  height: auto;
}

.main-navigation .menu {
  font-family: var(--ht-font);
}

.main-navigation .menu li a {
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--ht-ink-2);
}

.main-navigation .menu li a:hover,
.main-navigation .menu li:hover > a,
.main-navigation .menu > li:hover:after,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a {
  color: var(--ht-accent-ink);
}

.main-navigation .menu > li {
  margin-right: 30px;
}

/* 隐藏“Site Search”文字，仅保留图标 */
.module.widget-handle.search-widget-handle .title {
  display: none;
}

/* ==========================================================================
   分区通用工具
   ========================================================================== */
.ht-section {
  padding: 104px 0;
}

.ht-section--tint {
  background: var(--ht-bg);
}

.ht-section--surface {
  background: var(--ht-surface);
}

.ht-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ht-accent-ink);
  margin-bottom: 16px;
}

.ht-section-head {
  max-width: 620px;
  margin-bottom: 56px;
}

.ht-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ht-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ht-ink);
  margin: 0 0 16px;
}

.ht-section-desc {
  font-size: 16px;
  color: var(--ht-muted);
  margin: 0;
}

.ht-section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.ht-section-head-row .ht-section-head {
  margin-bottom: 0;
}

.ht-link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ht-accent-ink);
  white-space: nowrap;
}

.ht-link-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.ht-link-more:hover {
  color: var(--ht-ink);
}

.ht-link-more:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   按钮
   ========================================================================== */
.ht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
}

.ht-btn-primary {
  background: var(--ht-ink);
  color: #fff;
}

.ht-btn-primary:hover {
  background: #0b1119;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--ht-shadow-md);
}

.ht-btn-ghost {
  background: transparent;
  color: var(--ht-ink);
  border-color: var(--ht-line);
}

.ht-btn-ghost:hover {
  border-color: var(--ht-ink);
  color: var(--ht-ink);
  background: var(--ht-surface);
}

/* ==========================================================================
   Hero · 关于我们
   ========================================================================== */
.ht-hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 112px;
  background: var(--ht-bg);
}

.ht-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(42% 55% at 82% 8%, rgba(168, 128, 82, 0.12), transparent 60%),
    radial-gradient(38% 50% at 8% 90%, rgba(168, 128, 82, 0.08), transparent 62%);
  pointer-events: none;
}

.ht-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.ht-hero-title {
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ht-ink);
  margin: 0 0 24px;
}

.ht-hero-lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ht-ink-2);
  max-width: 560px;
  margin: 0 0 36px;
}

.ht-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.ht-hero-scope {
  font-size: 14px;
  color: var(--ht-muted);
  margin: 0;
}

/* Hero 右侧 · 精选项目视觉图 */
.ht-hero-media {
  position: relative;
  border-radius: var(--ht-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--ht-shadow-lg);
  background: var(--ht-line);
}

.ht-hero-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.ht-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ht-hero-media-link:hover img {
  transform: scale(1.04);
}

.ht-hero-media-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: rgba(22, 31, 44, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   分类卡片（服务 / 项目 / 新闻 通用）
   ========================================================================== */
.ht-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ht-card {
  display: flex;
  flex-direction: column;
  background: var(--ht-surface);
  border: 1px solid rgba(22, 31, 44, 0.05);
  border-radius: var(--ht-radius);
  box-shadow: var(--ht-shadow-sm);
  overflow: hidden;
  color: inherit;
}

.ht-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ht-shadow-lg);
  border-color: rgba(22, 31, 44, 0.08);
}

.ht-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ht-line);
}

.ht-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ht-card:hover .ht-card-media img {
  transform: scale(1.06);
}

.ht-card-media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ht-accent-tint), #f7f8fa);
  color: var(--ht-accent-ink);
  font-size: 22px;
  font-weight: 600;
}

.ht-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ht-accent-ink);
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.ht-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.ht-card-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ht-ink);
  margin: 0 0 12px;
}

.ht-card-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ht-muted);
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ht-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--ht-accent-ink);
}

.ht-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.ht-card:hover .ht-card-link {
  color: var(--ht-ink);
}

.ht-card:hover .ht-card-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   联系我们
   ========================================================================== */
.ht-contact {
  padding: 104px 0;
  background: var(--ht-bg);
  position: relative;
  overflow: hidden;
}

.ht-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(168, 128, 82, 0.10), transparent 64%);
  pointer-events: none;
}

.ht-contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.ht-contact-card,
.ht-contact-cta {
  border-radius: var(--ht-radius-lg);
  padding: 36px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--ht-shadow-sm);
}

.ht-contact-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ht-line);
}

.ht-contact-item:first-child {
  padding-top: 0;
}

.ht-contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ht-contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--ht-accent-tint);
  color: var(--ht-accent-ink);
}

.ht-contact-icon svg {
  width: 20px;
  height: 20px;
}

.ht-contact-item h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ht-muted);
  margin: 0 0 4px;
}

.ht-contact-item p {
  font-size: 16px;
  color: var(--ht-ink);
  margin: 0;
}

.ht-contact-item a {
  color: var(--ht-ink);
}

.ht-contact-item a:hover {
  color: var(--ht-accent-ink);
}

.ht-contact-cta {
  background: var(--ht-ink);
  border-color: var(--ht-ink);
  color: #c7d0da;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ht-contact-cta h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 14px;
}

.ht-contact-cta p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.ht-contact-cta .ht-btn-primary {
  background: #fff;
  color: var(--ht-ink);
  align-self: flex-start;
}

.ht-contact-cta .ht-btn-primary:hover {
  background: var(--ht-accent-tint);
  color: var(--ht-ink);
}

/* ==========================================================================
   页脚 · 三段式
   ========================================================================== */
.ht-footer {
  background: #0e141c;
  color: #aab4c0;
  padding: 88px 0 0;
  font-size: 15px;
}

.ht-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 56px;
  padding-bottom: 64px;
}

.ht-footer-brand {
  display: block;
  margin-bottom: 22px;
}

.ht-footer-brand img {
  max-height: 44px;
  width: auto;
  display: block;
  /* 深色页脚上，将深色 Logo 反白显示 */
  filter: invert(1) grayscale(1);
  opacity: 0.92;
}

.ht-footer-brand .ht-footer-name {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.ht-footer-desc {
  font-size: 15px;
  line-height: 1.85;
  color: #aab4c0;
  margin: 0 0 0;
  max-width: 340px;
}

.ht-footer h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px;
}

.ht-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.ht-footer-menu a {
  color: #aab4c0;
  font-size: 15px;
}

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

.ht-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ht-footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: #aab4c0;
  line-height: 1.7;
}

.ht-footer-contact li:last-child {
  margin-bottom: 0;
}

.ht-footer-contact svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--ht-accent);
}

.ht-footer-contact a {
  color: #aab4c0;
}

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

.ht-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #76818d;
}

/* ==========================================================================
   页面模板（关于我们 / 联系我们）
   ========================================================================== */
.page-template-template-clean #main.container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.page-template-template-clean section.content-area {
  padding: 0;
}

body.page-template-template-clean {
  background: var(--ht-bg);
}

.ht-page {
  font-family: var(--ht-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ht-ink-2);
}

.ht-page-hero {
  padding: 88px 0 56px;
  background: var(--ht-bg);
  border-bottom: 1px solid var(--ht-line);
}

.ht-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ht-ink);
  margin: 0;
}

.ht-page-body {
  padding: 64px 0 96px;
  background: var(--ht-surface);
}

.ht-page-content {
  max-width: 760px;
}

.ht-page-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ht-ink);
  margin: 48px 0 16px;
}

.ht-page-content h2:first-child {
  margin-top: 0;
}

.ht-page-content p {
  margin: 0 0 20px;
}

.ht-page-content ul {
  margin: 0 0 24px;
  padding-left: 4px;
  list-style: none;
}

.ht-page-content li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.ht-page-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ht-accent);
}

.ht-page-content a {
  color: var(--ht-accent-ink);
}

.ht-page-content a:hover {
  color: var(--ht-ink);
}

/* ==========================================================================
   分类归档列表页
   ========================================================================== */
body.category #main.container {
  width: 100%;
  max-width: none;
  padding: 0;
}

body.category section.content-area {
  padding: 0;
}

body.category {
  background: var(--ht-bg);
}

.ht-archive {
  font-family: var(--ht-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ht-ink-2);
}

.ht-archive-desc {
  font-size: 16px;
  color: var(--ht-muted);
  margin: 16px 0 0;
  max-width: 620px;
}

.ht-archive-body {
  padding: 64px 0 96px;
  background: var(--ht-bg);
}

.ht-archive .pagination {
  margin-top: 48px;
}

/* ==========================================================================
   顶部导航 · 翻译按钮（translate.js）
   ========================================================================== */
#site-navigation .flex-row {
  justify-content: flex-start;
}

#site-navigation .module-group.right {
  margin-left: auto;
}

#site-navigation .mobile-toggle {
  margin-left: 14px;
}

.ht-translate {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
}

.ht-translate > i {
  font-size: 14px;
  color: var(--ht-muted);
}

.ht-translate #translate {
  display: inline-flex;
  align-items: center;
}

.ht-translate .translateSelectLanguage {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--ht-line);
  background-color: transparent;
  color: var(--ht-ink-2);
  font-family: var(--ht-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  padding: 7px 28px 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2386919d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.ht-translate .translateSelectLanguage:hover,
.ht-translate .translateSelectLanguage:focus {
  border-color: var(--ht-ink);
  color: var(--ht-ink);
  outline: none;
}

/* 移动端：翻译按钮靠右、紧凑显示 */
@media (max-width: 991px) {
  .ht-translate {
    padding: 0 6px;
  }

  .ht-translate .translateSelectLanguage {
    font-size: 12px;
    padding: 6px 24px 6px 10px;
    background-position: right 8px center;
  }
}

/* ==========================================================================
   文章详情页
   ========================================================================== */
body.single-post #main.container {
  width: 100%;
  max-width: none;
  padding: 0;
}

body.single-post section.content-area {
  padding: 0;
}

body.single-post {
  background: var(--ht-bg);
}

.ht-single {
  font-family: var(--ht-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ht-ink-2);
}

.ht-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ht-muted);
  margin-bottom: 20px;
}

.ht-breadcrumb a {
  color: var(--ht-muted);
}

.ht-breadcrumb a:hover {
  color: var(--ht-accent-ink);
}

.ht-breadcrumb-sep {
  color: var(--ht-line);
}

.ht-breadcrumb-current {
  color: var(--ht-ink-2);
  font-weight: 500;
}

.ht-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--ht-muted);
  margin-top: 14px;
}

.ht-single-cat {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ht-accent-tint);
  color: var(--ht-accent-ink);
  font-size: 13px;
}

.ht-single-body {
  padding: 64px 0 96px;
  background: var(--ht-surface);
}

.ht-single-content {
  max-width: 760px;
  margin: 0 auto;
}

.ht-single-thumb {
  max-width: 720px;
  margin: 0 auto 40px;
  border-radius: var(--ht-radius);
  overflow: hidden;
  box-shadow: var(--ht-shadow-sm);
}

.ht-single-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.ht-single-related {
  padding: 96px 0;
  background: var(--ht-bg);
}

/* ==========================================================================
   响应式
   ========================================================================== */
@media (max-width: 991px) {
  .ht-hero-grid,
  .ht-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ht-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ht-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .ht-footer-about {
    grid-column: 1 / -1;
  }

  .ht-section {
    padding: 80px 0;
  }

  .ht-hero {
    padding: 96px 0 88px;
  }
}

@media (max-width: 640px) {
  .ht-section {
    padding: 64px 0;
  }

  .ht-hero {
    padding: 72px 0 64px;
  }

  .ht-page-hero {
    padding: 56px 0 40px;
  }

  .ht-page-body {
    padding: 48px 0 72px;
  }

  .ht-archive-body {
    padding: 48px 0 72px;
  }

  .ht-single-body {
    padding: 40px 0 64px;
  }

  .ht-single-related {
    padding: 64px 0;
  }

  .ht-card-grid {
    grid-template-columns: 1fr;
  }

  .ht-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ht-footer-about {
    grid-column: auto;
  }

  .ht-section-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ht-contact-card,
  .ht-contact-cta {
    padding: 26px;
  }

  .ht-hero-actions {
    margin-bottom: 24px;
  }
}

/* 尊重减少动态偏好 */
@media (prefers-reduced-motion: reduce) {
  .ht-front *,
  .ht-footer * {
    transition: none !important;
    animation: none !important;
  }
}
