/* ==========================================================================
   surplushk.com clone — global stylesheet
   Order: tokens → reset → typography → layout helpers → sections
   ========================================================================== */

:root {
  /* Brand palette */
  --color-gold: #d7b476;
  --color-gold-dark: #c39e5e;
  --color-beige: #d8d0c6;
  --color-green: #47b049;
  --color-green-dark: #379139;

  /* Neutrals */
  --color-white: #ffffff;
  --color-body: #676767;
  --color-text-dark: #444444;
  --color-muted: #999999;
  --color-light: #cccccc;
  --color-copyright: #777777;
  --color-border: #dddddd;
  --color-input: #333333;
  --color-error: #ff0000;
  --color-link-red: #990000;

  /* Surfaces */
  --bg-white: #ffffff;
  --bg-black: #000000;
  --bg-footer: #1a1a1a;
  --overlay-dark-80: rgba(0, 0, 0, 0.8);

  /* Shadows */
  --shadow-dropdown: 0 6px 28px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 5px 8px rgba(0, 0, 0, 0.15);
  --shadow-header-scrolled: 0 1px 12px rgba(0, 0, 0, 0.08);

  /* Radii */
  --radius-sm: 4px;
  --radius-card: 10px;
  --radius-pill: 50px;
  --radius-dropdown: 0 0 15px 15px;

  /* Spacing */
  --container-px: 90px;
  --container-px-tablet: 28px;
  --container-px-mobile: 18px;
  --container-max: 1425px;

  /* Type */
  --font-body: "Open Sans", "Noto Sans SC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --header-height: 74px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.625;
  color: var(--color-body);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
input, textarea, select { font: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; margin: 0; line-height: 1.25; }
p { margin: 0 0 1em; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.spacer-260 { height: 260px; }
.spacer-180 { height: 180px; }

@media (max-width: 1000px) {
  .container { padding: 0 var(--container-px-tablet); }
  .spacer-260 { height: 60px; }
  .spacer-180 { height: 60px; }
}
@media (max-width: 690px) {
  .container { padding: 0 var(--container-px-mobile); }
  .spacer-260 { height: 30px; }
  .spacer-180 { height: 30px; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--bg-white);
  z-index: 9995;
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-header-scrolled); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__logo { display: block; }
.site-header__logo img {
  width: 128px;
  height: 49px;
  object-fit: contain;
}

.site-header__hotline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background 0.25s ease;
}
.site-header__hotline:hover { background: var(--color-gold-dark); }
.site-header__hotline svg { width: 16px; height: 16px; }

.site-header__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  color: var(--color-text-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.site-header__hamburger span.bars {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}
.site-header__hamburger span.bars::before,
.site-header__hamburger span.bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease;
}
.site-header__hamburger span.bars::before { top: -7px; }
.site-header__hamburger span.bars::after  { top: 7px; }

/* Primary nav */
.nav-primary { display: flex; align-items: center; height: 100%; }
.nav-primary > ul { display: flex; align-items: center; height: 100%; }
.nav-primary > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-primary > ul > li > a {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  margin: 0 10px;
  font-size: 16px;
  color: var(--color-muted);
  transition: color 0.2s ease;
}
.nav-primary > ul > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.nav-primary > ul > li:hover > a { color: var(--color-text-dark); }
.nav-primary > ul > li:hover > a::after { width: 100%; }

/* Dropdown indicator (uses ::before so it doesn't collide with the
   ::after underline animation defined above) */
.nav-primary .has-sub > a {
  padding-right: 14px;
}
.nav-primary .has-sub > a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease, margin-top 0.25s ease;
}
.nav-primary .has-sub:hover > a::before,
.nav-primary .has-sub:focus-within > a::before {
  transform: rotate(-135deg);
  margin-top: -2px;
}

.nav-primary .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 18px 24px;
  background: var(--bg-white);
  box-shadow: var(--shadow-dropdown);
  border-radius: var(--radius-dropdown);
  border-top: 3px solid var(--color-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 10;
  list-style: none;
  margin: 0;
}
.nav-primary > ul > li:hover > .sub-menu,
.nav-primary > ul > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-primary .sub-menu li { display: block; list-style: none; }
.nav-primary .sub-menu a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  white-space: nowrap;
  color: var(--color-body);
  transition: color 0.2s ease, padding 0.2s ease;
  border-bottom: none;
}
.nav-primary .sub-menu a:hover { color: var(--color-gold); padding-left: 6px; }

/* Mega-menu — shares simple dropdown styling, just adds columns */
.nav-primary .megamenu .sub-menu {
  display: flex;
  gap: 36px;
  min-width: 520px;
  padding: 18px 28px;
}
.nav-primary .megamenu .mega-col {
  min-width: 180px;
  display: block;
}
.nav-primary .megamenu .mega-col > span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
  letter-spacing: 1px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
}
.nav-primary .megamenu .mega-col > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-primary .megamenu .mega-col > ul li { display: block; }

@media (max-width: 1100px) {
  .nav-primary { display: none; }
  .site-header__hamburger { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 320px;
  max-width: 85vw;
  background: var(--color-green);
  color: var(--color-white);
  padding: 80px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 9998;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer ul ul { padding-left: 16px; margin: 8px 0 14px; opacity: 0.85; }
.mobile-drawer a {
  display: block;
  padding: 8px 0;
  color: var(--color-white);
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-drawer ul ul a { font-size: 13px; border-bottom: none; padding: 4px 0; }
.mobile-drawer__close {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--color-white);
  font-size: 22px;
  line-height: 1;
}

.scroll-lock { overflow: hidden; }

/* ---------- Generations X header variant ---------- */
.gx-header {
  height: 74px;
  background: #f7f5ef;
  box-shadow: none;
}

.gx-header.is-scrolled { box-shadow: 0 1px 10px rgba(17, 24, 39, 0.08); }

.gx-header__inner {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(250px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.gx-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #052f55;
  justify-self: start;
}

.gx-brand__mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 42px;
  flex: 0 0 auto;
}

.gx-brand__mark::before,
.gx-brand__mark::after,
.gx-brand__mark span::before,
.gx-brand__mark span::after {
  display: none;
}

.gx-brand__mark img {
  width: 116px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.gx-brand__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.12;
}

.gx-brand__en {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.gx-brand__zh {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #24636a;
  white-space: nowrap;
}

.gx-nav {
  justify-self: center;
  height: 74px;
}

.gx-nav > ul {
  gap: 18px;
  height: 100%;
}

.gx-nav > ul > li > a {
  margin: 0;
  padding: 25px 0 24px;
  color: #2f3742;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.gx-nav > ul > li > a::after { display: none; }
.gx-nav > ul > li:hover > a { color: #052f55; }

.gx-nav .has-sub > a { padding-right: 16px; }

.gx-nav .has-sub > a::before {
  right: 1px;
  width: 6px;
  height: 6px;
  border-width: 1.5px;
  border-color: #2f3742;
  margin-top: -5px;
}

.gx-nav .sub-menu {
  left: 50%;
  min-width: 180px;
  padding: 10px 16px;
  border-top: 0;
  border-radius: 8px;
  transform: translate(-50%, 8px);
}

.gx-nav > ul > li:hover > .sub-menu,
.gx-nav > ul > li:focus-within > .sub-menu {
  transform: translate(-50%, 0);
}

.gx-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.gx-language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111827;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.gx-language svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.gx-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 6px;
  background: #c99647;
  color: #052f55;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gx-cta:hover {
  background: #b78335;
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .gx-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 28px;
  }

  .gx-nav > ul { gap: 12px; }
  .gx-nav > ul > li > a { font-size: 13px; }
  .gx-actions { gap: 12px; }
}

@media (max-width: 980px) {
  .gx-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .gx-nav,
  .gx-actions {
    display: none;
  }

  .gx-header .site-header__hamburger {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .gx-header__inner { padding: 0 18px; }
  .gx-brand { gap: 9px; }
  .gx-brand__mark { width: 82px; height: 30px; }
  .gx-brand__mark img { width: 82px; height: auto; max-height: 30px; }
  .gx-brand__en { font-size: 13px; }
  .gx-brand__zh { font-size: 11px; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 0;
  background: var(--bg-white);
}
.hero__inner {
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-px);
  overflow: hidden;
  border-radius: var(--radius-card);
}
.hero__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-card);
}
.hero__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.hero__media:hover img { transform: scale(1.04); }

@media (max-width: 1000px) {
  .hero__inner { padding: 0 var(--container-px-tablet); }
}
@media (max-width: 690px) {
  .hero__inner { padding: 0 var(--container-px-mobile); }
}

/* ---------- Services grid ---------- */
.services {
  padding: 0;
  background: var(--bg-white);
}
.services__row {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px var(--container-px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.services__row + .services__row { padding-top: 0; }

@media (max-width: 1000px) {
  .services__row {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px var(--container-px-tablet);
  }
}
@media (max-width: 480px) {
  .services__row {
    grid-template-columns: 1fr;
    padding: 12px var(--container-px-mobile);
  }
}

.service-card {
  position: relative;
  display: block;
  min-height: 200px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #f3eee5;
  color: var(--color-white);
  isolation: isolate;
}
.service-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}
.service-card:hover .service-card__bg { transform: scale(1.06); }

.service-card__title {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 15px;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
  z-index: 3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ---------- About section ---------- */
.about {
  position: relative;
  overflow: hidden;
  background: #f7f5ef;
}
.about__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 86px var(--container-px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 64px;
  align-items: center;
}
.about__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #c99647;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about__title {
  font-size: 34px;
  color: #052f55;
  margin-bottom: 18px;
}
.about__body {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
}
.about__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about__item {
  min-height: 176px;
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid rgba(5, 47, 85, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(5, 47, 85, 0.07);
}
.about__item span {
  display: block;
  margin-bottom: 28px;
  color: #c99647;
  font-size: 13px;
  font-weight: 700;
}
.about__item strong {
  display: block;
  margin-bottom: 10px;
  color: #052f55;
  font-size: 18px;
  line-height: 1.35;
}
.about__item p {
  margin: 0;
  color: #657282;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .about__inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 70px var(--container-px-tablet);
    gap: 28px;
  }
  .about__highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 690px) {
  .about__inner { padding: 50px var(--container-px-mobile); }
  .about__title { font-size: 28px; }
  .about__body { font-size: 15px; }
  .about__highlights { grid-template-columns: 1fr; }
  .about__item { min-height: auto; }
  .about__item span { margin-bottom: 16px; }
}

/* ---------- News section ---------- */
.news {
  padding: 80px 0 100px;
  background: var(--bg-white);
}
.news__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.news__title {
  font-size: 40px;
  color: var(--color-gold);
  margin-bottom: 30px;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 1000px) {
  .news__inner { padding: 0 var(--container-px-tablet); }
  .news__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .news__title { font-size: 32px; }
}
@media (max-width: 690px) {
  .news__inner { padding: 0 var(--container-px-mobile); }
  .news__grid { grid-template-columns: 1fr; }
  .news { padding: 50px 0 70px; }
  .news__title { font-size: 26px; margin-bottom: 18px; }
}

.news-card {
  position: relative;
  display: block;
  background-color: var(--color-green);
  color: var(--color-white);
  overflow: hidden;
  min-height: 380px;
  isolation: isolate;
}
.news-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  transition: transform 0.6s ease, opacity 0.4s ease;
  z-index: 1;
}
.news-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 2;
}
.news-card:hover .news-card__bg { transform: scale(1.05); opacity: 1; }

.news-card__content {
  position: relative;
  z-index: 3;
  padding: 22px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
}
.news-card__cats {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.news-card__cats a {
  font-size: 16px;
  color: var(--color-white);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.news-card__cats a:hover { opacity: 1; text-decoration: underline; }
.news-card__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-white);
}
.news-card__title a { color: inherit; position: relative; z-index: 5; }
.news-card__link {
  position: absolute;
  inset: 0;
  z-index: 4;
  text-indent: -9999px;
  overflow: hidden;
}
.news-card__cats a { position: relative; z-index: 5; }

/* Filter pills (hidden by default on home, shown on news listing) */
.news-filters { display: none; padding: 20px 0; text-align: center; }
.news-filters h4 { display: none; }
.news-filters a {
  display: inline-block;
  margin: 8px 18px;
  font-size: 16px;
  color: var(--color-body);
  position: relative;
  padding: 4px 0;
}
.news-filters a.active,
.news-filters a:hover { color: var(--color-gold); }
.news-filters a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
}

/* News listing page (news.html) — filter pills shown, no overlay */
.news--listing { padding: 30px 0 90px; }
.news-filters--listing {
  display: block;
  text-align: left;
  margin-bottom: 36px;
  padding: 0;
}
.news-filters--listing h4 {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 14px;
}
.news-filters__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.news-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--bg-white);
  color: var(--color-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.news-filters--listing .news-filter { padding: 8px 24px; }
.news-filters--listing .news-filter { margin: 0; }
.news-filter:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-1px);
}
.news-filter.is-active {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.news-filter__count {
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  padding: 1px 8px;
  font-size: 12px;
  font-weight: 600;
}
.news-filter.is-active .news-filter__count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.news__grid--listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.news__grid--listing .news-card { min-height: 340px; }
.news__grid--listing .news-card__content { min-height: 340px; padding: 18px 22px; }
.news__grid--listing .news-card__title { font-size: 18px; line-height: 1.45; }
.news__grid--listing .news-card[hidden] { display: none; }

@media (max-width: 1000px) {
  .news__grid--listing { grid-template-columns: repeat(2, 1fr); }
  .news-filter,
  .news-filters--listing .news-filter { padding: 7px 20px; font-size: 13px; }
}
@media (max-width: 690px) {
  .news__grid--listing { grid-template-columns: 1fr; gap: 18px; }
  .news--listing { padding: 20px 0 60px; }
}

.news-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--color-muted);
  font-size: 16px;
}

.news-card__cats { gap: 6px 10px; flex-wrap: wrap; }
.news-card__cat { font-size: 14px; color: var(--color-white); opacity: 0.92; cursor: default; }
.news-card__cat:hover { opacity: 1; text-decoration: underline; }

.news__more {
  display: flex;
  justify-content: center;
}

.btn-gold {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-gold);
  padding: 15px 35px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-gold:hover { background: var(--color-gold-dark); transform: translateY(-2px); }

/* ---------- Contact form ---------- */
.contact {
  padding: 50px 0 90px;
  background: var(--bg-white);
}
.contact__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
@media (max-width: 1000px) {
  .contact__inner { padding: 0 var(--container-px-tablet); }
}
@media (max-width: 690px) {
  .contact__inner { padding: 0 var(--container-px-mobile); }
  .contact { padding: 30px 0 60px; }
}

.cform__field { margin-bottom: 22px; }
.cform__label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-body);
  margin-bottom: 8px;
}
.cform__required { color: var(--color-error); }
.cform__choices { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.cform__choices li { display: inline-flex; align-items: center; gap: 6px; min-width: 135px; }
.cform__choices input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--color-green); }
.cform__choices label {
  font-size: 16px;
  color: var(--color-body);
  cursor: pointer;
}

.cform__input,
.cform__email,
.cform__tel,
.cform__text {
  width: 100%;
  max-width: 60%;
  height: 38px;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--bg-white);
  color: var(--color-input);
  font-size: 16px;
  line-height: 1.3;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cform__input:focus,
.cform__email:focus,
.cform__tel:focus,
.cform__text:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(215, 180, 118, 0.18);
  outline: 0;
}

@media (max-width: 690px) {
  .cform__input,
  .cform__email,
  .cform__tel,
  .cform__text { max-width: 100%; }
}

.cform__captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-body);
}
.cform__captcha input { width: 100px; max-width: 100px; }

.cform__conditional[hidden] { display: none; }

.cform__submit {
  background: var(--color-green);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.cform__submit:hover { background: var(--color-green-dark); transform: translateY(-2px); }
.cform__submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.cform__success {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(71, 176, 73, 0.12);
  border-left: 4px solid var(--color-green);
  color: var(--color-green-dark);
  display: none;
}
.cform.is-success .cform__success { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: #1a1a1a url('../images/footer-bg.jpg') center/cover no-repeat;
  color: var(--color-light);
  isolation: isolate;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-dark-80);
  z-index: 1;
}
.site-footer__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px var(--container-px) 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.site-footer__title {
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 600;
}
.site-footer p { color: var(--color-light); font-size: 15px; line-height: 1.85; margin: 0 0 1em; }
.site-footer strong { color: var(--color-white); font-weight: 600; }
.site-footer a {
  color: var(--color-light);
  transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--color-gold); }
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.social-row img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.social-row a:hover img { transform: translateY(-3px); }

.site-footer__bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 22px var(--container-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--color-copyright);
}
.site-footer__bottom-inner a { color: var(--color-light); }
.site-footer__bottom-inner a:hover { color: var(--color-gold); }

@media (max-width: 1000px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 50px var(--container-px-tablet) 24px;
  }
  .site-footer__bottom-inner { padding: 22px var(--container-px-tablet); }
}
@media (max-width: 690px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    padding: 40px var(--container-px-mobile) 20px;
    gap: 26px;
  }
  .site-footer__bottom-inner { padding: 22px var(--container-px-mobile); flex-direction: column; align-items: flex-start; }
  .site-footer__title { font-size: 24px; }
}

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: #25d366;
  box-shadow: var(--shadow-card);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp img { width: 52px; height: 52px; object-fit: contain; }

/* ---------- Inner page: hero / banner ---------- */
.page-hero {
  padding-top: 0;
  background: var(--bg-white);
  width: 100%;
  overflow: hidden;
}
.page-hero__inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
}
.page-hero__img {
  display: block;
  overflow: hidden;
  border-radius: 0;
}
.page-hero__img img {
  width: 100%;
  height: 280px;
  min-height: 280px;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.page-hero__img:hover img { transform: none; }

.page-title {
  padding: 36px 0 18px;
  text-align: center;
}
.page-title--standalone {
  padding-top: calc(var(--header-height) + 36px);
}
.page-title h1 {
  font-size: 40px;
  color: var(--color-gold);
  font-weight: 600;
  line-height: 1.25;
}
@media (max-width: 1000px) {
  .page-hero__inner { padding: 0; }
  .page-title h1 { font-size: 30px; }
}
@media (max-width: 690px) {
  .page-hero__inner { padding: 0; }
  .page-hero__img img {
    height: 180px;
    min-height: 180px;
  }
  .page-title { padding: 24px 0 14px; }
  .page-title--standalone { padding-top: calc(var(--header-height) + 24px); }
  .page-title h1 { font-size: 24px; }
}

/* ---------- Inner page: content ---------- */
.page-content {
  padding: 30px 0 70px;
  background: var(--bg-white);
}
.page-content__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
@media (max-width: 1000px) {
  .page-content__inner { padding: 0 var(--container-px-tablet); }
}
@media (max-width: 690px) {
  .page-content__inner { padding: 0 var(--container-px-mobile); }
}

.content-block { margin-bottom: 48px; }
.content-block__title {
  font-size: 28px;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.content-block__subtitle {
  font-size: 20px;
  color: var(--color-text-dark);
  margin-bottom: 14px;
  font-weight: 600;
}
.content-block p { font-size: 16px; line-height: 1.85; color: var(--color-body); margin: 0 0 14px; }
.content-block ul, .content-block ol { margin: 0 0 20px; padding-left: 1.5em; }
.content-block li { margin-bottom: 8px; line-height: 1.75; color: var(--color-body); }

.content-block ul.check-list { list-style: none; padding-left: 0; }
.content-block ul.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}
.content-block ul.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: inset 0 0 0 4px var(--bg-white);
}

/* ---------- Pricing cards (homestyle 3-up) ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.plan-card {
  background: var(--bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 30px 26px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.plan-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}
.plan-card__sub {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.plan-card__price {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 18px;
}
.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex-grow: 1;
}
.plan-card__features li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--color-body);
  margin-bottom: 8px;
  line-height: 1.55;
}
.plan-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-green);
  font-weight: 700;
}
.plan-card__cta {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}
.plan-card__cta:hover { background: var(--color-gold-dark); transform: translateY(-2px); }

@media (max-width: 1000px) {
  .plan-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Pricing / data tables ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 30px;
  font-size: 15px;
  background: var(--bg-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.data-table thead {
  background: var(--color-gold);
  color: var(--color-white);
}
.data-table th, .data-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.data-table th { font-weight: 600; }
.data-table tbody tr:nth-child(even) { background: rgba(216, 208, 198, 0.18); }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table .price { font-weight: 600; color: var(--color-gold); }

@media (max-width: 690px) {
  .data-table { font-size: 13px; }
  .data-table th, .data-table td { padding: 10px 12px; }
}

/* ---------- FAQ ---------- */
.faq-list { margin: 0; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-item__q {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}
.faq-item__q::before {
  content: 'Q.';
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item__a {
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.75;
  padding-left: 28px;
}

/* ---------- Flag grid (trademark page) ---------- */
.flag-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px 20px;
  margin: 30px 0 50px;
}
.flag-card {
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 22px 12px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.flag-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gold);
}
.flag-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.flag-card__en { font-size: 14px; color: var(--color-muted); }
.flag-card__zh { font-size: 16px; font-weight: 600; color: var(--color-text-dark); margin-top: 2px; }

@media (max-width: 1000px) {
  .flag-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 690px) {
  .flag-grid { grid-template-columns: repeat(3, 1fr); gap: 18px 12px; }
  .flag-card { padding: 16px 8px 14px; }
  .flag-card img { width: 48px; height: 48px; }
}

/* ---------- Sub-link grid (virtual office hub) ---------- */
.hub-section { margin-bottom: 48px; }
.hub-section__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hub-card {
  display: block;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: 24px 22px;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.hub-card::after {
  content: '→';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 20px;
  transition: transform 0.3s ease;
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.hub-card:hover::after { transform: translate(4px, -50%); }
@media (max-width: 1000px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 690px)  { .hub-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page split layout ---------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.contact-info p { font-size: 15px; line-height: 1.85; }
.contact-info strong { color: var(--color-text-dark); }
.contact-info h2 {
  font-size: 24px;
  color: var(--color-gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.contact-map {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(5, 47, 85, 0.12);
  box-shadow: 0 14px 34px rgba(5, 47, 85, 0.08);
  background: #f7f5ef;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}
@media (max-width: 1000px) {
  .contact-split { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 690px) {
  .contact-map,
  .contact-map iframe {
    min-height: 260px;
  }
}

/* ---------- Inline call-to-action ---------- */
.tip-callout {
  background: rgba(215, 180, 118, 0.1);
  border-left: 4px solid var(--color-gold);
  padding: 16px 22px;
  border-radius: 4px;
  margin: 0 0 22px;
}
.tip-callout p { margin: 0 0 6px; font-size: 15px; }
.tip-callout p:last-child { margin: 0; }

/* ---------- News detail page ---------- */
.breadcrumb {
  font-size: 14px;
  color: var(--color-muted);
  padding: calc(var(--header-height) + 18px) 0 0;
}
.breadcrumb__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.breadcrumb a { color: var(--color-body); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb__sep { margin: 0 8px; color: var(--color-light); }
.breadcrumb__current { color: var(--color-gold); }
@media (max-width: 1000px) {
  .breadcrumb__inner { padding: 0 var(--container-px-tablet); }
}
@media (max-width: 690px) {
  .breadcrumb__inner { padding: 0 var(--container-px-mobile); }
  .breadcrumb { font-size: 13px; }
}

.post {
  padding: 28px 0 70px;
  background: var(--bg-white);
}
.post__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}
@media (max-width: 1000px) {
  .post__inner { padding: 0 var(--container-px-tablet); }
}
@media (max-width: 690px) {
  .post__inner { padding: 0 var(--container-px-mobile); }
  .post { padding: 18px 0 50px; }
}

.post__header { margin-bottom: 26px; text-align: center; }
.post__cats {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.post__cats a {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}
.post__cats a:hover { background: var(--color-gold-dark); }
.post__title {
  font-size: 36px;
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 16px;
}
.post__meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--color-muted);
}
.post__meta span { display: inline-flex; align-items: center; gap: 6px; }
.post__meta svg { width: 16px; height: 16px; fill: var(--color-gold); }
@media (max-width: 690px) {
  .post__title { font-size: 24px; }
  .post__meta { gap: 14px; font-size: 13px; }
}

.post__cover {
  margin: 0 0 36px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.post__cover img { width: 100%; height: auto; display: block; }

.post__body { font-size: 16px; line-height: 1.9; color: var(--color-body); }
.post__body h2 {
  font-size: 26px;
  color: var(--color-gold);
  font-weight: 600;
  margin: 38px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(215, 180, 118, 0.25);
}
.post__body h3 {
  font-size: 20px;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 28px 0 12px;
}
.post__body p { margin: 0 0 16px; }
.post__body ul, .post__body ol { margin: 0 0 20px; padding-left: 1.5em; }
.post__body li { margin-bottom: 8px; }
.post__body strong { color: var(--color-text-dark); }
.post__body blockquote {
  margin: 24px 0;
  padding: 18px 24px;
  background: rgba(215, 180, 118, 0.08);
  border-left: 4px solid var(--color-gold);
  color: var(--color-text-dark);
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post__body blockquote p:last-child { margin: 0; }
.post__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 15px;
}
.post__body table th,
.post__body table td {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}
.post__body table th {
  background: rgba(215, 180, 118, 0.12);
  color: var(--color-text-dark);
  font-weight: 600;
}
.post__body table tr:nth-child(even) td { background: #fafafa; }
@media (max-width: 690px) {
  .post__body h2 { font-size: 21px; margin-top: 28px; }
  .post__body h3 { font-size: 18px; }
  .post__body table { font-size: 13px; }
  .post__body table th, .post__body table td { padding: 8px 10px; }
}

.post__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.post__tags-label {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 14px;
  margin-right: 4px;
}
.post__tags a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--color-body);
  transition: all 0.2s ease;
}
.post__tags a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(215, 180, 118, 0.08);
}

.post__share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}
.post__share-label { font-weight: 600; color: var(--color-text-dark); font-size: 14px; }
.post__share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  color: var(--color-body);
  transition: all 0.2s ease;
}
.post__share a:hover { background: var(--color-gold); color: var(--color-white); transform: translateY(-2px); }
.post__share svg { width: 18px; height: 18px; fill: currentColor; }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}
.post-nav a {
  display: block;
  padding: 18px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  transition: all 0.25s ease;
}
.post-nav a:hover {
  border-color: var(--color-gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.post-nav__label {
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.post-nav__title {
  font-size: 15px;
  color: var(--color-text-dark);
  font-weight: 600;
  line-height: 1.45;
}
.post-nav__next { text-align: right; }
@media (max-width: 690px) {
  .post-nav { grid-template-columns: 1fr; gap: 12px; }
  .post-nav__next { text-align: left; }
}

.related-posts { padding: 60px 0 80px; background: #fafafa; }
.related-posts__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.related-posts__title {
  font-size: 28px;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .related-posts__inner { padding: 0 var(--container-px-tablet); }
  .related-posts__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 690px) {
  .related-posts__inner { padding: 0 var(--container-px-mobile); }
  .related-posts__grid { grid-template-columns: 1fr; }
  .related-posts { padding: 40px 0 60px; }
  .related-posts__title { font-size: 22px; margin-bottom: 20px; }
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.news-filters--listing .news-filter {
  margin: 0;
  padding: 8px 24px;
}

@media (max-width: 1000px) {
  .news-filters--listing .news-filter {
    padding: 7px 20px;
  }
}
