@charset "utf-8";

@import url("//at.alicdn.com/t/c/font_5202943_sdp6qcz7ytb.css");

/* ============================================================
   reset.css — 公共基础样式
   ============================================================ */

:root {
  --c-primary: #0066cc;
  --c-accent: #c8102e;
  --c-text: #222222;
  --c-text-sub: #666666;
  --c-text-muted: #999999;
  --c-line: #eeeeee;
  --c-bg: #ffffff;
  --c-bg-gray: #f8f8f8;
  --c-footer-bar: #222222;
  --site-width-pct: 84%;
  --site-max-width: 1440px;
  --site-gutter: calc((100vw - min(var(--site-width-pct), var(--site-max-width))) / 2);
  --header-h: 60px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --scrollbar-size: 8px;
  --scrollbar-track: #f2f2f2;
  --scrollbar-thumb: #c4c4c4;
  --scrollbar-thumb-hover: var(--c-primary);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font: 14px/1.75 "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

html,
body,
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

/* 滚动条美化（全站） */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border: 2px solid var(--scrollbar-track);
  border-radius: 999px;
  transition: background-color .25s var(--ease);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
*::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

@media (prefers-reduced-motion: reduce) {
  html::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb,
  *::-webkit-scrollbar-thumb {
    transition: none;
  }
}

/* 内页：固定页头占位（首页 hero 整屏叠在页头下方） */
body:not(.page-home) {
  padding-top: var(--header-h);
}

img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--c-primary); }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.35; }

/* 内容区宽度：大屏 84% 且不超过 1440px / 小屏 94% */
.site-wrap {
  width: var(--site-width-pct);
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0;
}

.container {
  width: var(--site-width-pct);
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0;
}

/* 滚动显现 */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   页头
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-h);
  background: #fff;
  overflow: visible;
  transition: box-shadow .3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-h);
  overflow: visible;
}

.site-header__logo {
  display: block;
  line-height: 0;
}

.site-header__logo img {
  width: 161px;
  height: 29px;
}

/* 导航居中 */
.site-header__nav {
  justify-self: center;
}

.site-header__nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.site-header__nav > ul > li {
  position: relative;
}

.site-header__nav > ul > li > a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  line-height: var(--header-h);
  white-space: nowrap;
  transition: color .25s;
}

.site-header__nav > ul > li > a:hover,
.site-header__nav > ul > li.is-cur > a {
  color: var(--c-accent);
}

.site-header__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1001;
  min-width: 140px;
  padding: 8px 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity .25s, transform .25s, visibility .25s;
}

.site-header__nav > ul > li:hover .site-header__sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-header__sub li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--c-text-sub);
  line-height: 1.6;
  white-space: nowrap;
}

.site-header__sub li a .iconfont {
  font-size: 14px;
  line-height: 1;
}

.site-header__sub li a:hover {
  color: var(--c-accent);
  background: #f8f8f8;
}

/* 右侧工具 */
.site-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-right: 4px;
  padding: 2px;
  border: 1px solid var(--c-line, #eee);
  border-radius: 999px;
  background: #fff;
}

.site-lang__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.site-lang__item:hover {
  color: var(--c-accent, #c8102e);
}

.site-lang__item.is-active {
  color: #fff;
  background: var(--c-accent, #c8102e);
}

.site-header__search,
.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--c-text);
  cursor: pointer;
}

.site-header__search .iconfont {
  font-size: 20px;
  line-height: 1;
}

.site-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.site-header__menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .3s, opacity .3s;
}

.site-header.is-nav-open .site-header__menu span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-nav-open .site-header__menu span:nth-child(2) { opacity: 0; }
.site-header.is-nav-open .site-header__menu span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__search-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 300px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s, transform .25s, visibility .25s;
}

.site-header__search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__search-panel form {
  display: flex;
  gap: 8px;
}

.site-header__search-panel input[type="text"] {
  flex: 1;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--c-line);
}

.site-header__search-panel button {
  height: 38px;
  padding: 0 16px;
  background: var(--c-accent, #c8102e);
  color: #fff;
  cursor: pointer;
  transition: background .2s var(--ease);
}

.site-header__search-panel button:hover {
  background: #a00d25;
}

body.is-nav-drawer-open { overflow: hidden; }

@media (max-width: 1100px) {
  .site-header__nav > ul { gap: 20px; }
  .site-header__nav > ul > li > a { font-size: 14px; }
}

@media (max-width: 960px) {
  :root {
    --site-width-pct: 94%;
  }

  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-header__menu { display: flex; }
  .site-header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: #fff;
    padding: 16px 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    justify-self: stretch;
  }
  .site-header.is-nav-open .site-header__nav { transform: translateX(0); }
  .site-header__nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-header__nav > ul > li > a { line-height: 1; padding: 14px 0; border-bottom: 1px solid var(--c-line); }
  .site-header__sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 12px; }
}

/* ============================================================
   内页公共样式 — 统一头部 Hero（对齐联系我们 / 加入我们）
   ============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  height: 50vw;
  min-height: 420px;
  max-height: 860px;
  color: #fff;
  overflow: hidden;
}

.page-hero .site-wrap {
  width: var(--site-width-pct);
  max-width: var(--site-max-width);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 10, 12, .72) 0%, rgba(20, 10, 12, .35) 48%, rgba(20, 10, 12, .55) 100%),
    linear-gradient(180deg, rgba(200, 16, 46, .16) 0%, transparent 45%);
}

.page-hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 11.5vw;
  color: #fff;
}

.page-hero__left {
  width: 52%;
}

.page-hero__eyebrow {
  margin: 0;
  font-size: clamp(14px, 1.04166vw, 20px);
  line-height: 1.4;
}

.page-hero__title {
  margin: .6vw 0 0;
  font-size: clamp(36px, 4.16666vw, 80px);
  font-weight: 700;
  line-height: 1.2;
}

.page-hero__nav {
  width: min(19.8vw, 280px);
  flex: 0 0 auto;
  margin-top: .4vw;
}

.page-hero__nav-link {
  display: block;
  padding: 1vw 0;
  line-height: 2.75vw;
  min-height: 2.75vw;
  font-size: clamp(14px, 1.25vw, 24px);
  color: #fff;
  opacity: .85;
  border-bottom: 1px solid #fff;
  background: no-repeat url(/upfile/join/ico-arrow.png) right center;
  background-size: 1vw auto;
  transition: opacity .5s ease;
}

.page-hero__nav-link:hover,
.page-hero__nav-link.is-active {
  color: #fff;
  opacity: 1;
}

.page-hero__scroll {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 18.3vw;
  min-width: 160px;
  height: 6.25vw;
  min-height: 56px;
  max-height: 96px;
  padding-left: clamp(24px, 8.33vw, 120px);
  box-sizing: border-box;
  background: var(--c-accent, #c8102e);
  border-top-right-radius: 1.5vw;
  overflow: hidden;
  color: #fff;
  transition: background .25s ease;
}

.page-hero__scroll:hover {
  color: #fff;
  background: #a50d25;
}

.page-hero__scroll-bar {
  position: relative;
  width: 2px;
  height: 1.5vw;
  min-height: 14px;
  max-height: 24px;
  background: rgba(255, 255, 255, .2);
  flex: 0 0 auto;
}

.page-hero__scroll-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: pageHeroScrollBar 2s linear infinite;
}

.page-hero__scroll-text {
  margin-left: 1vw;
  font-size: clamp(13px, 1.25vw, 22px);
  white-space: nowrap;
}

@keyframes pageHeroScrollBar {
  0% { top: 0; }
  100% { top: 100%; }
}

/* 兼容旧类名，避免其他页面断裂 */
.inner-banner {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  align-items: stretch;
  background: #1a1a1a;
  color: #fff;
  overflow: hidden;
}

.inner-banner__media,
.inner-banner__overlay,
.inner-banner__body {
  grid-area: stack;
}

.inner-banner__media {
  margin: 0;
  line-height: 0;
}

.inner-banner__media img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 961px) {
  .inner-banner:not(.inner-banner--plain) {
    height: 80vh;
    min-height: 360px;
    max-height: 900px;
  }

  .inner-banner:not(.inner-banner--plain) .inner-banner__media {
    height: 100%;
  }

  .inner-banner:not(.inner-banner--plain) .inner-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.inner-banner--plain {
  min-height: clamp(220px, 28vw, 320px);
}

.inner-banner--plain .inner-banner__body {
  align-self: center;
}

.inner-banner__overlay {
  background: rgba(0, 0, 0, .42);
  z-index: 1;
}

.inner-banner__body {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(48px, 8vw, 72px) 0 clamp(36px, 5vw, 52px);
}

.inner-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(16px, 2vw, 24px);
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
}

.inner-breadcrumb a {
  color: rgba(255, 255, 255, .85);
}

.inner-breadcrumb a:hover {
  color: #fff;
}

.inner-breadcrumb__sep {
  opacity: .55;
}

.inner-breadcrumb__current {
  color: #fff;
}

.inner-banner__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .02em;
}

.inner-tabs {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}

.inner-tabs__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  min-height: 56px;
}

.inner-tabs__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px clamp(18px, 2.4vw, 32px);
  font-size: 15px;
  color: var(--c-text-sub);
  white-space: nowrap;
  transition: color .25s var(--ease), background-color .25s var(--ease);
}

.inner-tabs__link::after {
  content: "";
  position: absolute;
  left: clamp(18px, 2.4vw, 32px);
  right: clamp(18px, 2.4vw, 32px);
  bottom: -1px;
  height: 2px;
  background: var(--c-accent, #c8102e);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease), height .25s var(--ease);
  z-index: 1;
}

.inner-tabs__link:hover {
  color: var(--c-accent, #c8102e);
  background: rgba(200, 16, 46, 0.04);
}

.inner-tabs__link.is-active {
  color: var(--c-accent, #c8102e);
  font-weight: 600;
  background: rgba(200, 16, 46, 0.08);
}

.inner-tabs__link.is-active:hover {
  color: var(--c-accent, #c8102e);
  background: rgba(200, 16, 46, 0.1);
}

.inner-tabs__link.is-active::after {
  transform: scaleX(1);
  height: 3px;
}

.inner-main {
  padding: clamp(48px, 6vw, 72px) 0 clamp(64px, 8vw, 96px);
  background: #fff;
}

@media (max-width: 960px) {
  .page-hero {
    height: auto;
    min-height: 100vh;
    max-height: none;
  }

  .page-hero__body {
    flex-direction: column;
    padding: 7.5rem 0 6rem;
  }

  .page-hero__left,
  .page-hero__nav {
    width: 100%;
  }

  .page-hero__nav {
    margin-top: 1.2rem;
  }

  .page-hero__nav-link {
    padding: .35rem 0;
    line-height: 2;
    background-size: .35rem auto;
  }

  .page-hero__scroll {
    width: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: .55rem 9vw .55rem 5%;
    border-top-right-radius: .35rem;
  }

  .inner-banner:not(.inner-banner--plain) {
    height: auto;
  }

  .inner-banner:not(.inner-banner--plain) .inner-banner__media {
    height: auto;
  }

  .inner-banner:not(.inner-banner--plain) .inner-banner__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .inner-banner--plain {
    min-height: clamp(180px, 42vw, 240px);
  }

  .inner-banner__body {
    padding: clamp(32px, 8vw, 48px) 0;
    text-align: center;
  }

  .inner-breadcrumb {
    justify-content: center;
  }

  .inner-banner__title {
    font-size: clamp(26px, 7vw, 32px);
  }

  .inner-tabs {
    position: sticky;
    top: var(--header-h);
    z-index: 50;
  }

  .inner-tabs__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
    min-height: 48px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .inner-tabs__inner::-webkit-scrollbar {
    display: none;
  }

  .inner-tabs__link {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding: 13px 10px;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
  }

  .inner-tabs__link::after {
    left: 8px;
    right: 8px;
  }

  .inner-main {
    padding: 40px 0 56px;
  }
}

@media (max-width: 640px) {
  .inner-tabs__inner {
    justify-content: flex-start;
  }

  .inner-tabs__link {
    flex: 1 1 0;
    min-width: 72px;
    padding: 12px 6px;
    font-size: 13px;
  }

  .inner-tabs__link::after {
    left: 6px;
    right: 6px;
  }
}

/* ============================================================
   页尾 — 对齐设计图
   ============================================================ */
.site-footer {
  background: #fff;
  color: #666;
  border-top: 1px solid var(--c-line);
}

.site-footer__main {
  padding: clamp(56px, 6vw, 72px) 0 clamp(28px, 3vw, 40px);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  column-gap: 80px;
  align-items: start;
}

.site-footer__brand {
  min-width: 0;
}

.site-footer__logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: clamp(28px, 3vw, 36px);
}

.site-footer__logo img {
  display: block;
  width: min(280px, 100%);
  height: auto;
}

.site-footer__qrcodes {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
}

.site-footer__qrcodes figure {
  margin: 0;
}

.site-footer__qrcodes img {
  display: block;
  width: clamp(80px, 8vw, 96px);
  height: auto;
}

.site-footer__qrcodes figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: #999;
  line-height: 1.4;
  text-align: center;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 48px);
  row-gap: clamp(60px, 5vw, 80px);
}

.site-footer__col {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.site-footer__col:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
}

.site-footer__col:nth-child(6) {
  grid-column: 2;
  grid-row: 2;
}

.site-footer__col dt {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}

.site-footer__col dt a {
  color: inherit;
}

.site-footer__col dt a:hover {
  color: var(--c-primary);
}

.site-footer__col dd {
  margin: 0 0 8px;
  line-height: 1.6;
}

.site-footer__col dd:last-child {
  margin-bottom: 0;
}

.site-footer__col dd a {
  font-size: 14px;
  color: #666;
}

.site-footer__col dd a:hover {
  color: var(--c-primary);
}

.site-footer__social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 40px;
  margin-top: clamp(200px, 5vw, 36px);
  gap: 16px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 20px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer__social-link:hover {
  color: var(--c-primary);
}

.site-footer__bar {
  background: #fff;
}

.site-footer__bar .site-wrap.site-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid #e8e8e8;
}

.site-footer__copy {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 14px;
  color: #999;
  line-height: 1;
}

.site-footer__credit a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.site-footer__credit img {
  display: block;
  width: auto;
  height: 24px;
}

@media (max-width: 1100px) {
  .site-footer__top {
    grid-template-columns: 240px minmax(0, 1fr);
    column-gap: 32px;
  }

  .site-footer__nav {
    column-gap: 24px;
  }
}

@media (max-width: 960px) {
  .site-footer__main {
    padding: 48px 0 32px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    row-gap: 40px;
    column-gap: 0;
  }

  .site-footer__brand {
    text-align: center;
  }

  .site-footer__qrcodes {
    justify-content: center;
  }

  .site-footer__logo {
    margin-bottom: 24px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 32px;
  }

  .site-footer__col {
    justify-content: center;
  }

  .site-footer__col:nth-child(5),
  .site-footer__col:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__bar .site-wrap.site-footer__bar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 0;
  }

  .site-footer__copy {
    margin: 0;
  }

  .site-footer__credit {
    margin: 0;
  }

  .site-footer__credit img {
    height: 18px;
  }

  .site-footer__social {
    justify-content: center;
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__col dt{
    margin-bottom: 10px;
  }

  .site-footer__copy {
    font-size: 14px;
  }

  .site-footer__bar .site-wrap.site-footer__bar-inner {
    padding: 15px 0;
    gap: 0;
  }
}
