.blog-home {
  background: var(--white);
}

.blog-model-archive {
  background: var(--white);
}

.blog-model-archive .blog-section {
  padding: 80px 0;
}

.blog-model-archive .blog-section__head h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.blog-model-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 64px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgb(125 217 87 / 8%), transparent 50%),
    var(--green-800);
}

.blog-model-hero .container {
  max-width: 1200px;
  padding-right: 40px;
  padding-left: 40px;
}

.blog-model-hero__inner {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 48px;
}

.blog-model-hero__copy {
  max-width: 660px;
}

.blog-model-hero__eyebrow-row,
.section__head-row,
.bf-col__head-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.blog-model-zh {
  color: currentColor;
  font-size: 12px;
  line-height: 1.4;
  opacity: .55;
}

.blog-model-hero__title {
  max-width: 660px;
  margin-top: 16px;
  color: var(--white);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
  text-wrap: balance;
}

.blog-model-hero__sub {
  max-width: 580px;
  margin: 12px 0 0;
  color: rgb(255 255 255 / 85%);
  font-size: 16px;
  line-height: 24px;
}

.blog-model-hero__quick {
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.blog-model-hero__quick-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
  border-right: 1px solid rgb(255 255 255 / 20%);
}

.blog-model-hero__quick-cell:first-child {
  padding-left: 0;
}

.blog-model-hero__quick-cell:last-child {
  border-right: 0;
}

.blog-model-hero__quick-cell strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.blog-model-hero__quick-cell span {
  color: rgb(255 255 255 / 70%);
  font-size: 11px;
  line-height: 14px;
}

.blog-model-hero__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 8px;
  background: rgb(255 255 255 / 5%);
}

.blog-model-hero__prices span {
  display: block;
  color: var(--accent-green);
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-model-hero__prices strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.blog-model-hero__prices .is-accent {
  color: var(--accent-green);
}

.blog-model-hero__prices p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgb(255 255 255 / 65%);
  font-size: 11px;
  font-style: italic;
  line-height: 1.5;
}

.blog-model-hero__price-divider {
  display: none;
}

.blog-model-hero__ctas {
  margin-top: 24px;
}

.blog-model-hero__photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-model-hero__photo,
.blog-model-hero__thumbs span,
.blog-model-gallery__item,
.blog-model-alt-card__cover {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--brand), var(--green-800));
}

.blog-model-hero__photo {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: linear-gradient(160deg, #0f4a1c 0%, #1f3a1a 100%);
}

.blog-model-hero__photo::before,
.blog-model-hero__thumbs span::before,
.blog-model-gallery__item::before,
.blog-model-alt-card__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 24px 24px;
}

.blog-model-hero__image,
.blog-model-hero__thumb-image,
.blog-model-gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
  opacity: .22;
}

.blog-model-hero__thumb-image {
  padding: 8%;
  opacity: .2;
}

.blog-model-hero__photo-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-model-hero__photo-name {
  color: rgb(255 255 255 / 55%);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.blog-model-hero__photo-zh {
  margin-top: 8px;
  color: rgb(255 255 255 / 32%);
  font-size: 16px;
  letter-spacing: 4px;
}

.blog-model-hero__photo-tag {
  margin-top: 16px;
  color: rgb(255 255 255 / 45%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-model-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.blog-model-hero__thumbs span {
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: linear-gradient(160deg, #1f3a1a, #0a1a0f);
}

.blog-model-hero__thumbs b {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  color: rgb(255 255 255 / 55%);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.blog-model-hero__all-photos {
  margin-top: 4px;
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.blog-model-nav {
  position: sticky;
  top: var(--site-header-height, 80px);
  z-index: 50;
  height: 56px;
  border-bottom: var(--border-soft);
  background: var(--white);
}

.blog-model-nav .blog-hub-nav__inner {
  height: 100%;
  max-width: 1200px;
  padding-right: 40px;
  padding-left: 40px;
  gap: 32px;
}

.blog-model-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.blog-model-nav__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.blog-model-nav__brand-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.blog-model-nav .blog-hub-nav__scroll {
  margin-left: auto;
  gap: 4px;
}

.blog-model-nav .blog-hub-nav__scroll a {
  padding: 16px 12px;
}

.blog-model-pillar {
  padding: 80px 0;
  background: var(--white);
}

.blog-model-pillar__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-model-pillar__lead {
  margin: 0 0 40px;
  color: var(--charcoal);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.blog-model-pillar h2 {
  margin: 56px 0 24px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0;
  text-wrap: balance;
}

.blog-model-pillar h2:first-of-type {
  margin-top: 0;
}

.blog-model-pillar p {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
}

.blog-model-pillar a.inline {
  color: var(--brand);
  border-bottom: 1px solid rgb(47 115 5 / 30%);
}

.blog-model-pillar a.inline:hover {
  border-bottom-color: var(--brand);
}

.blog-model-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}

.blog-model-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}

.blog-model-bullets li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.blog-model-compare {
  margin: 32px 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: var(--white);
}

.blog-model-compare h3 {
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.blog-model-compare table {
  width: 100%;
  border: var(--border-soft);
  border-radius: 4px;
  border-collapse: collapse;
}

.blog-model-compare th,
.blog-model-compare td {
  padding: 14px 20px;
  border-bottom: var(--border-soft);
  text-align: left;
  vertical-align: top;
}

.blog-model-compare th {
  padding-top: 16px;
  padding-bottom: 16px;
  background: var(--surface-soft);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.blog-model-compare td {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.blog-model-compare tr:last-child td {
  border-bottom: 0;
}

.blog-model-compare-mobile {
  display: none;
}

.blog-model-compare tbody tr:nth-child(even) td {
  background: var(--surface-soft);
}

.blog-model-compare tbody td:first-child {
  border-right: var(--border-soft);
  font-weight: 500;
}

.blog-model-budget-cards {
  margin: 32px 0;
}

.blog-model-budget-cards .blog-budget-card--popular {
  border-color: var(--brand);
}

.blog-model-budget-cards .blog-budget-card__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-model-budget-cards .blog-budget-card span:not(.blog-budget-card__badge) {
  margin-bottom: 8px;
}

.blog-model-budget-cards .blog-budget-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.blog-model-budget-cards .blog-budget-card strong {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 26px;
}

.blog-model-budget-cards .blog-budget-card b {
  display: block;
  margin-bottom: 12px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}

.blog-model-budget-cards .blog-budget-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

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

.blog-section--off-white {
  background: var(--surface-soft);
}

.blog-section__head--wide {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.blog-model-spec-wrap {
  max-width: 740px;
  margin: 0 auto;
}

.blog-model-spec-group {
  margin-bottom: 24px;
}

.blog-model-spec-group__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  padding: 12px 20px;
  border-radius: 4px;
  background: var(--surface-soft);
}

.blog-model-spec-group__head span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: .7;
}

.blog-model-spec-group__head strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.blog-model-spec-group__list {
  overflow: hidden;
  border: var(--border-soft);
  border-radius: 4px;
  background: var(--white);
}

.blog-model-spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px;
  border-bottom: var(--border-soft);
}

.blog-model-spec-row:last-child {
  border-bottom: 0;
}

.blog-model-spec-row span {
  color: var(--text-muted);
  font-size: 14px;
}

.blog-model-spec-row strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  text-align: right;
}

.blog-model-specs .blog-section__head {
  margin-bottom: 40px;
}

.blog-model-spec-foot,
.blog-model-gallery__foot {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

.blog-model-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.blog-model-gallery__item {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.blog-model-gallery__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(0 0 0 / 10%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.blog-model-gallery__item--alt-1 {
  background: linear-gradient(160deg, var(--green-800), #0a1a0f);
}

.blog-model-gallery__item--alt-2 {
  background: linear-gradient(160deg, #15201a, var(--brand));
}

.blog-model-gallery__item--alt-3 {
  background: linear-gradient(160deg, #1f1f1f, var(--brand));
}

.blog-model-gallery__label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: rgb(255 255 255 / 60%);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.blog-model-gallery__expand {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgb(10 26 15 / 70%);
  color: var(--white);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.blog-model-gallery__item:hover .blog-model-gallery__expand,
.blog-model-gallery__item:hover .blog-model-gallery__overlay {
  opacity: 1;
}

.blog-model-gallery__foot {
  color: var(--text-muted);
}

.blog-model-video-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.blog-model-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 96px;
  background: rgb(10 26 15 / 95%);
}

.blog-model-lightbox.is-open {
  display: flex;
}

.blog-model-lightbox__stage {
  position: relative;
  display: flex;
  width: min(100%, 1100px);
  max-height: 100%;
  flex-direction: column;
  align-items: center;
}

.blog-model-lightbox__image {
  position: relative;
  width: 100%;
  max-height: 80vh;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(160deg, var(--brand) 0%, var(--green-800) 100%);
}

.blog-model-lightbox__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 32px 32px;
}

.blog-model-lightbox__label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: rgb(255 255 255 / 42%);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.blog-model-lightbox__caption {
  max-width: 800px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 85%);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

.blog-model-lightbox__close,
.blog-model-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 72%);
  cursor: pointer;
}

.blog-model-lightbox__close:hover,
.blog-model-lightbox__nav:hover {
  color: var(--white);
}

.blog-model-lightbox__close {
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  font-size: 34px;
  line-height: 1;
}

.blog-model-lightbox__counter {
  position: absolute;
  top: -48px;
  left: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 14px;
  font-weight: 500;
}

.blog-model-lightbox__nav {
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 58px;
  line-height: 1;
}

.blog-model-lightbox__nav--prev {
  left: 16px;
}

.blog-model-lightbox__nav--next {
  right: 16px;
}

.blog-model-trim-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-model-trim-card {
  display: flex;
  flex-direction: column;
  min-height: 800px;
  padding: 32px;
  border: var(--border-soft);
  border-radius: 12px;
  background: var(--white);
}

.blog-model-trim-card--top {
  border-color: var(--brand);
}

.blog-model-trim-card__eyebrow,
.blog-model-trim-card__prices span,
.blog-model-trim-card__specs span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-model-trim-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.blog-model-trim-card__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 4px;
  background: var(--surface-soft);
}

.blog-model-trim-card__prices strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.blog-model-trim-card__prices .is-accent {
  color: var(--brand);
}

.blog-model-trim-card__specs {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.blog-model-trim-card__specs > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: var(--border-soft);
}

.blog-model-trim-card__specs > div:last-child {
  border-bottom: 0;
}

.blog-model-trim-card__specs strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-align: right;
}

.blog-model-trim-card__features-title {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 20px;
  text-transform: uppercase;
}

.blog-model-trim-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-model-trim-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 21px;
}

.blog-model-trim-card__features svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--brand);
}

.blog-model-trim-card__features em {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 2px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-model-trim-card__cta {
  margin-top: auto;
  padding-top: 24px;
}

.blog-model-trim-card__cta .btn {
  min-height: 48px;
}

.blog-model-trim-note {
  margin-top: 40px;
  text-align: center;
}

.blog-model-trim-note p {
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

.blog-model-trim-note .btn {
  min-height: 44px;
}

.blog-model-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-model-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  border: var(--border-soft);
  border-radius: 8px;
  background: var(--white);
}

.blog-model-review-card__glyph {
  position: absolute;
  top: 16px;
  left: 24px;
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  opacity: .2;
  pointer-events: none;
}

.blog-model-review-card p {
  margin: 0 0 auto;
  padding-top: 24px;
  color: var(--ink);
  font-size: 15px;
  line-height: 24px;
}

.blog-model-review-card__stars {
  display: flex;
  gap: 2px;
  margin-top: 16px;
  color: var(--brand);
}

.blog-model-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: var(--border-soft);
}

.blog-model-review-card__author > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand), var(--green-800));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.blog-model-review-card__author strong,
.blog-model-review-card__author small {
  display: block;
}

.blog-model-review-card__author strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 18px;
}

.blog-model-review-card__author small {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 17px;
}

.blog-model-reviews__footer {
  margin-top: 32px;
  text-align: center;
}

.blog-model-cta .blog-hub-cta__stat {
  padding-right: 20px;
  border-right: 0;
}

.blog-model-cta .blog-hub-bridge__logo {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}

.blog-model-alt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-model-alt-card {
  overflow: hidden;
  border: var(--border-soft);
  border-radius: 8px;
  background: var(--white);
  transition: border-color .2s ease, transform .2s ease;
}

.blog-model-alt-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.blog-model-alt-card__cover {
  display: block;
  aspect-ratio: 16 / 10;
}

.blog-model-alt-card__cover--alt-1 {
  background: linear-gradient(160deg, #1f3a1a, #0a1a0f);
}

.blog-model-alt-card__cover--alt-2 {
  background: linear-gradient(160deg, #15201a, var(--brand));
}

.blog-model-alt-card__cover > span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-model-alt-card__cover strong {
  color: rgb(255 255 255 / 60%);
  font-size: 22px;
  line-height: 28px;
}

.blog-model-alt-card__cover small {
  margin-top: 6px;
  color: rgb(255 255 255 / 38%);
  font-size: 13px;
  letter-spacing: 2px;
}

.blog-model-alt-card__body {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
}

.blog-model-alt-card__body em {
  color: var(--brand);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-model-alt-card__body > strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.blog-model-alt-card__body > small {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 21px;
}

.blog-model-alt-card__body b {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 18px;
  line-height: 24px;
}

.blog-model-alt-card__body b span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-model-alt-card .blog-card-link {
  margin-top: auto;
}

.blog-model-archive .blog-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.blog-model-archive .bf-col__head {
  margin-bottom: 24px;
}

.blog-model-archive .bf-col__head-row {
  margin-bottom: 6px;
}

.blog-model-archive .bf-col__title {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.blog-model-archive .bf-col__sub {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.blog-model-archive .blog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-model-archive .blog-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px;
  border: var(--border-soft);
  border-radius: 8px;
  background: var(--white);
  transition: border-color .2s ease;
}

.blog-model-archive .blog-card:hover {
  border-color: var(--brand);
}

.blog-model-archive .blog-card__cover {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(160deg, var(--brand), var(--green-800));
}

.blog-model-archive .blog-card__cover--alt-1 {
  background: linear-gradient(160deg, #1f3a1a, #0a1a0f);
}

.blog-model-archive .blog-card__cover--alt-2 {
  background: linear-gradient(160deg, #15201a, var(--brand));
}

.blog-model-archive .blog-card__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 16px 16px;
}

.blog-model-archive .blog-card__cover-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  color: rgb(255 255 255 / 55%);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.blog-model-archive .blog-card__eyebrow {
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.blog-model-archive .blog-card__title {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.blog-model-archive .blog-card__meta {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 16px;
}

@media (max-width: 900px) {
  .blog-model-archive .blog-section {
    padding: 48px 0;
  }

  .blog-model-archive .blog-section__head {
    margin-bottom: 28px;
  }

  .blog-model-archive .blog-section__head h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .blog-model-archive .blog-section__head p {
    font-size: 15px;
    line-height: 23px;
  }

  .blog-model-hero {
    min-height: auto;
    padding: 32px 0;
    background: var(--green-800);
  }

  .blog-model-hero .container {
    padding-right: var(--container-padding, 16px);
    padding-left: var(--container-padding, 16px);
  }

  .blog-model-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .blog-model-hero__eyebrow-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .blog-model-hero__title {
    margin-top: 16px;
    font-size: 28px;
    line-height: 32px;
  }

  .blog-model-hero__sub {
    margin-top: 12px;
    font-size: 14px;
    line-height: 20px;
  }

  .blog-model-hero__quick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgb(255 255 255 / 15%);
  }

  .blog-model-hero__quick-cell {
    gap: 4px;
    padding: 0;
    border-right: 0;
  }

  .blog-model-hero__quick-cell strong {
    font-size: 16px;
    line-height: 20px;
  }

  .blog-model-hero__prices {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 20px;
    padding: 16px;
  }

  .blog-model-hero__prices span {
    font-size: 10px;
  }

  .blog-model-hero__prices strong {
    font-size: 22px;
    line-height: 28px;
  }

  .blog-model-hero__price-divider {
    display: block;
    height: 1px;
    margin: 12px 0;
    background: rgb(255 255 255 / 15%);
  }

  .blog-model-hero__prices p {
    grid-column: auto;
    margin-top: 10px;
  }

  .blog-model-hero__ctas {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .blog-model-hero__photo-wrap {
    margin-top: 24px;
    gap: 0;
  }

  .blog-model-hero__photo {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
  }

  .blog-model-hero__photo::before {
    background-size: 24px 24px;
  }

  .blog-model-hero__photo-name {
    font-size: 28px;
  }

  .blog-model-hero__photo-zh {
    margin-top: 4px;
    font-size: 14px;
    letter-spacing: 2px;
  }

  .blog-model-hero__photo-tag {
    margin-top: 8px;
    color: rgb(255 255 255 / 30%);
    font-size: 10px;
  }

  .blog-model-hero__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
  }

  .blog-model-hero__thumbs span {
    aspect-ratio: 16 / 10;
    border-radius: 6px;
  }

  .blog-model-hero__thumbs span:nth-child(3) {
    display: none;
  }

  .blog-model-hero__all-photos {
    display: block;
    margin-top: 12px;
    text-decoration: underline;
  }

  .blog-model-trim-card__prices {
    grid-template-columns: 1fr;
  }

  .blog-model-pillar {
    padding: 48px 0;
  }

  .blog-model-pillar__inner {
    width: auto;
    max-width: none;
    padding-right: var(--container-padding, 16px);
    padding-left: var(--container-padding, 16px);
  }

  .blog-model-pillar__lead {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.5;
  }

  .blog-model-pillar h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 28px;
  }

  .blog-model-pillar p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
  }

  .blog-model-bullets {
    margin: 12px 0 20px;
  }

  .blog-model-bullets li {
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.55;
  }

  .blog-model-bullets li::before {
    top: 10px;
    width: 5px;
    height: 5px;
  }

  .blog-model-nav {
    top: var(--site-header-height, 64px);
    height: 48px;
    overflow: hidden;
  }

  .blog-model-nav .blog-hub-nav__inner {
    display: block;
    max-width: none;
    padding: 0;
  }

  .blog-model-nav__brand {
    display: none;
  }

  .blog-model-nav .blog-hub-nav__scroll {
    height: 100%;
    margin-left: 0;
    padding-left: var(--container-padding, 16px);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .blog-model-nav .blog-hub-nav__scroll::-webkit-scrollbar {
    display: none;
  }

  .blog-model-nav .blog-hub-nav__scroll a {
    flex: 0 0 auto;
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    line-height: 48px;
  }

  .blog-model-compare {
    margin: 24px 0;
  }

  .blog-model-compare table {
    display: none;
  }

  .blog-model-compare-mobile {
    display: block;
  }

  .blog-model-compare-mobile__col {
    margin-bottom: 12px;
    padding: 16px;
    border: var(--border-soft);
    border-radius: 4px;
    background: var(--surface-soft);
  }

  .blog-model-compare-mobile__col strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
  }

  .blog-model-compare-mobile__col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .blog-model-compare-mobile__col li {
    position: relative;
    padding-left: 16px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.45;
  }

  .blog-model-compare-mobile__col li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
  }

  .blog-model-gallery,
  .blog-model-reviews,
  .blog-model-alt-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: var(--container-padding, 16px);
    margin-right: calc(var(--container-padding, 16px) * -1);
    padding-right: var(--container-padding, 16px);
  }

  .blog-model-gallery::-webkit-scrollbar,
  .blog-model-reviews::-webkit-scrollbar,
  .blog-model-alt-grid::-webkit-scrollbar {
    display: none;
  }

  .blog-model-lightbox {
    padding: 56px var(--container-padding, 16px) 72px;
  }

  .blog-model-lightbox__image {
    aspect-ratio: 16 / 10;
  }

  .blog-model-lightbox__label {
    font-size: 18px;
  }

  .blog-model-lightbox__caption {
    margin-top: 16px;
    font-size: 14px;
  }

  .blog-model-lightbox__counter {
    top: -34px;
  }

  .blog-model-lightbox__close {
    top: 10px;
    right: 10px;
  }

  .blog-model-lightbox__nav {
    top: auto;
    bottom: 14px;
    width: 44px;
    height: 44px;
    transform: none;
    border-radius: 50%;
    background: rgb(255 255 255 / 8%);
    font-size: 38px;
  }

  .blog-model-lightbox__nav--prev {
    left: calc(50% - 54px);
  }

  .blog-model-lightbox__nav--next {
    right: calc(50% - 54px);
  }

  .blog-model-gallery__item {
    flex: 0 0 78%;
    max-width: 320px;
  }

  .blog-model-trim-grid {
    grid-template-columns: 1fr;
  }

  .blog-model-trim-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .blog-model-reviews .blog-model-review-card {
    flex: 0 0 84%;
    max-width: 360px;
  }

  .blog-model-alt-card {
    flex: 0 0 84%;
    max-width: 360px;
  }

  .blog-model-alt-card__body {
    min-height: 230px;
  }

  .blog-model-cta .blog-hub-cta__stat {
    padding: 0;
  }

  .blog-model-cta .blog-hub-cta__stat:nth-child(n + 3) {
    padding-top: 14px;
    border-top: 1px solid rgb(255 255 255 / 16%);
  }

  .blog-model-cta .blog-hub-bridge__logo {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .blog-model-cta .blog-hub-bridge {
    width: 100%;
    min-width: 0;
  }

  .blog-model-cta .blog-hub-bridge .bases-button-row {
    width: 100%;
    gap: 12px;
  }

  .blog-model-cta .blog-hub-bridge .btn {
    min-width: 0;
    width: 100%;
    white-space: normal;
  }

  .blog-model-archive .blog-faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-model-archive .blog-card {
    grid-template-columns: 96px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .blog-model-archive .blog-card__title {
    font-size: 14px;
    line-height: 19px;
  }

}

@media (max-width: 640px) {
  .blog-model-cta.blog-hub-cta {
    padding: 48px 0;
  }

  .blog-model-cta .blog-hub-cta__inner {
    gap: 28px;
  }

  .blog-model-cta .blog-hub-cta__stats {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    gap: 14px;
  }

  .blog-model-cta .blog-hub-cta__stat strong {
    font-size: 20px;
    line-height: 24px;
  }

  .blog-model-cta .blog-hub-cta__stat span {
    font-size: 11px;
    line-height: 15px;
  }

  .blog-model-cta .blog-hub-bridge {
    margin-top: 0;
    padding: 20px;
  }

  .blog-model-cta .blog-hub-bridge__brand {
    align-items: flex-start;
    gap: 12px;
  }

  .blog-model-cta .blog-hub-bridge__logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .blog-model-cta .blog-hub-bridge strong {
    font-size: 16px;
    line-height: 21px;
  }

  .blog-model-cta .blog-hub-bridge ul {
    margin: 20px 0 24px;
  }

  .blog-model-cta .blog-hub-bridge li {
    gap: 8px;
    font-size: 13px;
    line-height: 18px;
  }

  .blog-model-spec-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .blog-model-spec-row strong {
    text-align: left;
  }

  .blog-model-trim-card__specs > div {
    flex-direction: column;
    gap: 4px;
  }

  .blog-model-trim-card__specs strong {
    text-align: left;
  }
}

.blog-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 64px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgb(125 217 87 / 8%), transparent 50%),
    var(--green-700);
}

.blog-hero__pattern,
.blog-why__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 32px 32px;
}

.blog-why__pattern {
  background-size: 64px 64px;
}

.blog-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-hero__copy {
  max-width: 640px;
}

.blog-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  line-height: 18px;
}

.blog-crumbs a {
  color: inherit;
}

.blog-crumbs a:hover {
  color: var(--accent-green);
}

.blog-eyebrow {
  margin: 0;
  color: var(--brand);
}

.blog-eyebrow--on-dark {
  color: var(--accent-green);
}

.blog-hero__eyebrow {
  margin-bottom: 24px;
}

.blog-display {
  margin: 0;
  color: inherit;
  font-size: 52px;
  font-weight: 800;
  line-height: 60px;
  letter-spacing: 0;
}

.blog-hero__title {
  max-width: 640px;
  margin-bottom: 24px;
}

.blog-hero__sub {
  max-width: 580px;
  margin: 0 0 48px;
  color: rgb(255 255 255 / 85%);
  font-size: 18px;
  line-height: 28px;
}

.blog-hero__facts {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.blog-hero__fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
  border-right: 1px solid rgb(255 255 255 / 20%);
}

.blog-hero__fact:first-child {
  padding-left: 0;
}

.blog-hero__fact:last-child {
  border-right: 0;
}

.blog-hero__fact strong {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}

.blog-hero__fact span {
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  line-height: 16px;
}

.blog-map-card {
  padding: 32px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: var(--radius-lg);
}

.blog-hero__ctas {
  margin-bottom: 0;
}

.blog-map-card__eyebrow {
  color: var(--accent-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-zh,
.blog-map-card__zh {
  color: var(--text-muted);
  font-family: var(--font-zh);
  font-size: 12px;
  line-height: 1.4;
}

.blog-map-card__zh {
  margin-top: 4px;
  color: rgb(255 255 255 / 50%);
}

.blog-map-card__map {
  position: relative;
  width: 100%;
  aspect-ratio: 280 / 220;
  margin-top: 20px;
}

.blog-map-card__map svg {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-map-card__marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(255 255 255 / 95%);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.blog-map-card__dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(75 178 9 / 25%);
}

.blog-map-card__caption {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  line-height: 1.5;
}

.blog-section {
  padding: 96px 0;
}

.blog-home > .blog-section .container,
.blog-why .container {
  max-width: 1200px;
}

.blog-section--off-white {
  background: var(--surface-soft);
}

.blog-section--stone {
  background: var(--surface-muted);
}

.blog-section__head {
  max-width: 760px;
  margin-bottom: 40px;
}

.blog-section__head--centered {
  margin-right: auto;
  margin-bottom: 48px;
  margin-left: auto;
  text-align: center;
}

.blog-section__head-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.blog-section__head--centered .blog-section__head-row,
.blog-newsletter .blog-section__head-row,
.blog-final-cta .blog-section__head-row {
  justify-content: center;
}

.blog-section__head p,
.blog-why .blog-section__head p,
.blog-final-cta p,
.blog-newsletter p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 28px;
}

.blog-section__head--centered p {
  margin-right: auto;
  margin-left: auto;
}

.blog-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-cat-card,
.blog-base-card,
.blog-top-feature,
.blog-top-small,
.blog-article-card,
.blog-brand-card {
  color: var(--ink);
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.blog-base-card,
.blog-article-card {
  -webkit-tap-highlight-color: transparent;
}

.blog-base-card,
.blog-base-card *,
.blog-article-card,
.blog-article-card * {
  user-select: none;
  -webkit-user-select: none;
}

.blog-cat-card:hover,
.blog-base-card:hover,
.blog-top-feature:hover,
.blog-top-small:hover,
.blog-article-card:hover,
.blog-brand-card:hover {
  border-color: rgb(75 178 9 / 45%);
  box-shadow: var(--visual-shadow);
  transform: translateY(-2px);
}

.blog-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  height: 200px;
  padding: 28px;
}

.blog-cat-card__zh {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-muted);
  font-family: var(--font-zh);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.45;
}

.blog-cat-card__num,
.blog-base-card__eyebrow {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.blog-cat-card h3,
.blog-base-card h3 {
  margin: 6px 56px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.blog-cat-card p,
.blog-base-card p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.blog-cat-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-cat-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  color: var(--text-muted);
  font-size: 12px;
}

.blog-cat-card__foot b {
  color: var(--brand);
  font-size: 16px;
}

.blog-cat-card--last {
  grid-column: 2;
}

.blog-bases-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.blog-base-card {
  display: flex;
  flex-direction: column;
  height: 320px;
  min-height: 320px;
  padding: 24px;
}

.blog-base-card h3 {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.2;
}

.blog-base-card p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
}

.blog-base-card hr {
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background: var(--stone-border);
  border: 0;
}

.blog-base-card__expert-eyebrow,
.blog-card-eyebrow {
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.blog-base-card strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.blog-base-card small {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.blog-base-card__foot {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--text-muted);
  font-size: 12px;
  border-top: var(--border-soft);
}

.blog-base-card__foot b,
.blog-card-link,
.blog-collection__head a {
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
}

.blog-card-link {
  position: relative;
  z-index: 4;
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  pointer-events: auto;
  user-select: auto !important;
  -webkit-user-select: auto !important;
}

.blog-base-card__foot .blog-card-link {
  margin-top: 0;
}

.blog-centered-cta {
  justify-content: center;
  margin-top: 40px;
}

.blog-top-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 24px;
  align-items: start;
}

.blog-top-feature,
.blog-top-small,
.blog-article-card {
  overflow: hidden;
}

.blog-top-feature,
.blog-article-card {
  display: flex;
  flex-direction: column;
}

.blog-top-feature__cover,
.blog-top-small__cover,
.blog-article-card__cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  min-height: 158px;
  padding: 20px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  font-weight: 700;
  background: linear-gradient(160deg, var(--green-800), var(--green-700));
}

.blog-top-feature__cover {
  min-height: 332px;
}

.blog-article-card__cover {
  min-height: 150px;
}

.blog-top-feature__cover img,
.blog-top-small__cover img,
.blog-article-card__cover img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-top-feature__cover::before,
.blog-top-small__cover::before,
.blog-article-card__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(180deg, rgb(0 0 0 / 16%), rgb(0 0 0 / 38%)),
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

.blog-top-feature__cover span,
.blog-top-small__cover span,
.blog-article-card__cover span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 8px 12px;
  color: var(--white);
  text-shadow: 0 1px 2px rgb(0 0 0 / 45%);
  background: rgb(10 26 15 / 52%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-sm);
}

.blog-top-feature__cover span {
  font-size: 24px;
}

.blog-top-feature__body,
.blog-top-small__body,
.blog-article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.blog-top-feature__body {
  padding: 32px;
}

.blog-top-feature__body strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 750;
  line-height: 1.2;
}

.blog-top-feature__body small,
.blog-top-small__body small,
.blog-article-card__body small {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 18px;
}

.blog-top-small-grid,
.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-top-small__cover--alt-1,
.blog-article-card__cover--alt-1 {
  background: linear-gradient(160deg, var(--green-700), var(--green-950));
}

.blog-top-small__cover--alt-2,
.blog-article-card__cover--alt-2 {
  background: linear-gradient(160deg, var(--ink), var(--green-800));
}

.blog-top-small__cover--alt-3,
.blog-article-card__cover--alt-3 {
  background: linear-gradient(160deg, var(--charcoal), var(--green-800));
}

.blog-top-small__body {
  padding: 16px;
}

.blog-article-card__body {
  padding: 20px;
}

.blog-top-small__body strong,
.blog-article-card__body strong {
  display: -webkit-box;
  flex: 1;
  margin-top: 8px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-article-card__body strong {
  margin-top: 10px;
  font-size: 15px;
}

.blog-collection {
  margin-bottom: 64px;
}

.blog-collection:last-child {
  margin-bottom: 0;
}

.blog-collection__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.blog-collection__head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 750;
  line-height: 1.25;
}

.blog-article-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.blog-why {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--green-800);
}

.blog-why .container {
  position: relative;
}

.blog-why h2,
.blog-why .blog-section__head p {
  color: var(--white);
}

.blog-why .blog-section__head p {
  color: rgb(255 255 255 / 82%);
}

.blog-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-why-card {
  min-height: 280px;
  padding: 32px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius-md);
}

.blog-why-card span {
  color: var(--accent-green);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.blog-why-card h3 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.3;
}

.blog-why .blog-why-card p {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 90%);
  font-size: 15px;
  line-height: 1.55;
}

.blog-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.blog-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  padding: 24px;
  text-align: center;
}

.blog-brand-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 40px;
  padding: 8px 16px;
  background: var(--surface-soft);
  border: var(--border-soft);
  border-radius: var(--radius-sm);
}

.blog-brand-card b {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 1px;
}

.blog-brand-card strong {
  margin-top: 10px;
  color: var(--ink);
}

.blog-brand-card small {
  color: var(--text-muted);
  font-size: 12px;
}

.blog-brand-card--all {
  display: none;
}

.blog-newsletter {
  text-align: center;
}

.blog-newsletter__inner,
.blog-final-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.blog-final-cta__inner {
  max-width: 800px;
  padding: 0 40px;
}

.blog-newsletter__form {
  width: min(100%, 480px);
  margin: 24px auto 12px;
}

.blog-newsletter__form input {
  flex: 1;
  height: 48px;
  min-width: 0;
  padding: 0 16px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--control-radius);
}

.blog-newsletter__form input:focus {
  border-color: var(--brand);
  outline: 0;
}

.blog-newsletter__legal {
  color: var(--text-muted);
  font-size: 12px;
}

.blog-final-cta {
  padding: 96px 0;
  text-align: center;
  background: var(--white);
}

.blog-final-cta p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}

.blog-final-cta__ctas {
  justify-content: center;
  margin-top: 32px;
}

.blog-term-hub__hero {
  padding-top: 72px;
}

.blog-term-hub__head {
  max-width: 760px;
  margin-top: 32px;
}

.blog-term-hub__head h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.blog-term-hub__search {
  display: block;
  width: min(100%, 520px);
  margin-top: 36px;
}

.blog-term-hub__search input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--control-radius);
  outline: none;
}

.blog-term-hub__search input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgb(75 178 9 / 14%);
}

.blog-term-hub__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.blog-term-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 132px;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.blog-term-card:hover,
.blog-term-card:focus-visible {
  color: var(--green-800);
  border-color: rgb(75 178 9 / 35%);
  box-shadow: var(--visual-shadow);
}

.blog-term-card__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.blog-term-card__meta {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 20px;
}

.blog-term-hub__empty {
  max-width: 520px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

.blog-category-hub {
  background: var(--white);
}

.blog-hub-breadcrumbs {
  padding: 24px 0;
  background: var(--white);
}

.blog-hub-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 14px;
  list-style: none;
}

.blog-hub-breadcrumbs__list a:hover {
  color: var(--brand);
}

.blog-hub-breadcrumbs__list span {
  color: var(--stone-border);
}

.blog-hub-breadcrumbs__list [aria-current="page"] {
  color: var(--text-secondary);
  font-weight: 600;
}

.blog-hub-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgb(125 217 87 / 8%), transparent 50%),
    var(--green-800);
}

.blog-hub-hero__pattern,
.blog-hub-cta__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 64px 64px;
}

.blog-hub-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-hub-hero__copy {
  max-width: 660px;
}

.blog-hub-hero__zh,
.blog-hub-cta__zh {
  margin-top: 4px;
  color: rgb(255 255 255 / 50%);
  font-family: var(--font-zh);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.blog-hub-hero h1 {
  margin: 24px 0;
  color: var(--white);
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  letter-spacing: 0;
}

.blog-hub-hero p {
  max-width: 660px;
  margin: 0 0 48px;
  color: rgb(255 255 255 / 85%);
  font-size: 18px;
  line-height: 28px;
}

.blog-hub-hero__metrics {
  display: flex;
  align-items: center;
}

.blog-hub-hero__metric {
  padding: 0 24px;
  border-right: 1px solid rgb(255 255 255 / 20%);
}

.blog-hub-hero__metric:first-child {
  padding-left: 0;
}

.blog-hub-hero__metric:last-child {
  border-right: 0;
}

.blog-hub-hero__metric strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 28px;
}

.blog-hub-hero__metric span {
  display: block;
  margin-top: 4px;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  line-height: 16px;
}

.blog-hub-map,
.blog-hub-bridge {
  padding: 32px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: var(--radius-lg);
}

.blog-hub-map__eyebrow {
  color: var(--accent-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-hub-map__map {
  position: relative;
  width: 100%;
  aspect-ratio: 280 / 180;
  margin-top: 16px;
}

.blog-hub-map svg {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-hub-map__marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(255 255 255 / 95%);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.blog-hub-map__marker span {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(72 202 50 / 18%);
}

.blog-hub-map p {
  margin: 20px 0 0;
  padding-top: 16px;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  line-height: 1.5;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.blog-hub-nav {
  position: sticky;
  top: 80px;
  z-index: 20;
  height: 56px;
  background: var(--white);
  border-bottom: var(--border-soft);
}

.blog-hub-nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-hub-nav__inner > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.blog-hub-nav__scroll {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.blog-hub-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.blog-hub-nav a:hover,
.blog-hub-nav a.is-active {
  color: var(--ink);
}

.blog-hub-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 2px;
  background: var(--brand);
}

.blog-pillar {
  padding: 80px 0;
  background: var(--white);
}

.blog-pillar__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-pillar__lead,
.blog-pillar .lead {
  margin: 0 0 40px;
  color: var(--charcoal);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.blog-pillar h2 {
  margin: 56px 0 24px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 0;
}

.blog-pillar h2:first-of-type {
  margin-top: 0;
}

.blog-pillar h3 {
  margin: 32px 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 750;
  line-height: 30px;
  letter-spacing: 0;
}

.blog-pillar p,
.blog-pillar__bullets li,
.blog-pillar__steps li {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
}

.blog-pillar p {
  margin: 0 0 20px;
}

.blog-pillar a {
  color: var(--brand);
  border-bottom: 1px solid rgb(47 115 5 / 30%);
}

.blog-pillar a:hover {
  border-bottom-color: var(--brand);
}

.blog-pillar ul:not([class]),
.blog-pillar ol:not([class]) {
  margin: 16px 0 24px;
  padding: 0;
}

.blog-pillar ul:not([class]) {
  list-style: none;
}

.blog-pillar ul:not([class]) li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}

.blog-pillar ul:not([class]) li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 4px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

.blog-pillar ol:not([class]) {
  margin-left: 22px;
}

.blog-pillar ol:not([class]) li {
  margin-bottom: 12px;
  padding-left: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}

.blog-pillar table {
  width: 100%;
  margin: 32px 0;
  overflow: hidden;
  font-size: 15px;
  border: var(--border-soft);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-sm);
}

.blog-pillar th,
.blog-pillar td {
  padding: 14px 20px;
  color: var(--ink);
  line-height: 1.5;
  text-align: left;
  border-right: var(--border-soft);
  border-bottom: var(--border-soft);
}

.blog-pillar th {
  color: var(--charcoal);
  font-weight: 700;
  background: var(--surface-soft);
}

.blog-pillar tr:nth-child(even) td {
  background: var(--surface-soft);
}

.blog-pillar th:last-child,
.blog-pillar td:last-child {
  border-right: 0;
}

.blog-pillar tr:last-child td {
  border-bottom: 0;
}

.blog-pillar blockquote {
  position: relative;
  margin: 32px 0;
  padding: 40px;
  color: var(--ink);
  background: var(--surface-soft);
  border-left: 4px solid var(--brand);
}

.blog-pillar blockquote p {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-callout,
.blog-pillar .callout {
  margin: 32px 0;
  padding: 20px 24px;
  background: var(--surface-soft);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-callout__head {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.blog-callout__head svg {
  color: var(--brand);
}

.blog-callout span,
.blog-callout strong:first-child,
.blog-pillar .callout__label {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.blog-callout p,
.blog-pillar .blog-callout p,
.blog-pillar .callout p,
.blog-pillar .callout__text {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.6;
}

.blog-pillar__bullets,
.blog-pillar__steps {
  margin: 16px 0 24px;
  padding: 0;
}

.blog-pillar__bullets {
  list-style: none;
}

.blog-pillar__bullets li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
}

.blog-pillar__bullets li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 4px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

.blog-pillar__steps {
  counter-reset: step;
  list-style: none;
}

.blog-pillar__steps li {
  position: relative;
  min-height: 32px;
  margin-bottom: 16px;
  padding-left: 44px;
  counter-increment: step;
}

.blog-pillar__steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  background: var(--brand-soft);
  border-radius: 50%;
}

.blog-compare-table-wrap {
  margin: 32px 0;
}

.blog-compare-table-wrap h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 16px;
}

.blog-compare-table {
  width: 100%;
  margin: 0;
  overflow: hidden;
  font-size: 15px;
  border: var(--border-soft);
  border-collapse: collapse;
  border-radius: var(--radius-sm);
}

.blog-compare-table th {
  width: 50%;
  padding: 16px 20px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  background: var(--surface-soft);
  border-bottom: var(--border-soft);
}

.blog-compare-table td {
  width: 50%;
  padding: 14px 20px;
  color: var(--ink);
  line-height: 1.5;
  border-bottom: var(--border-soft);
}

.blog-compare-table td:first-child {
  border-right: var(--border-soft);
}

.blog-compare-table tr:nth-child(even) td {
  background: var(--surface-soft);
}

.blog-compare-table tr:last-child td {
  border-bottom: 0;
}

.blog-compare-table__diff,
.blog-compare-table__same {
  font-weight: 400;
}

.blog-compare-table__diff {
  color: var(--ink);
}

.blog-compare-table__same {
  color: var(--ink);
}

.blog-compare-table__diff::before {
  content: "+";
  margin-right: 6px;
  color: var(--brand);
  font-weight: 700;
}

.blog-compare-table__same::before {
  content: "=";
  margin-right: 6px;
  color: var(--text-muted);
  font-weight: 700;
}

.blog-compare-mobile {
  display: none;
}

.blog-budget-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.blog-budget-card {
  padding: 24px;
  background: var(--surface-soft);
  border: var(--border-soft);
  border-radius: var(--radius-sm);
}

.blog-budget-card span,
.blog-budget-card small {
  display: block;
}

.blog-budget-card span {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-budget-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
}

.blog-budget-card small {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.blog-budget-dots {
  display: none;
}

.blog-brand-quote {
  position: relative;
  margin: 32px 0;
  padding: 40px;
  background: var(--surface-soft);
  border-left: 4px solid var(--brand);
}

.blog-brand-quote::before {
  content: "«";
  position: absolute;
  top: 12px;
  left: 20px;
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.18;
  pointer-events: none;
}

.blog-brand-quote .quote__glyph {
  display: none;
}

.blog-brand-quote .quote__text {
  position: relative;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.blog-brand-quote .quote__author {
  display: flex;
  gap: 16px;
  align-items: center;
}

.blog-brand-quote .quote__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand) 0%, var(--green-800) 100%);
  border-radius: 50%;
}

.blog-brand-quote .quote__author-name {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.blog-brand-quote .quote__author-role {
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.35;
}

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

.blog-subcat-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 32px;
  color: var(--ink);
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  transition: border-color 200ms ease, transform 200ms ease;
}

.blog-subcat-card:hover,
.blog-hub-brand-card:hover,
.blog-hub-article-card:hover {
  border-color: rgb(75 178 9 / 45%);
  transform: translateY(-2px);
}

.blog-subcat-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.blog-subcat-card__top span {
  color: var(--text-muted);
  font-family: var(--font-zh);
  font-size: 24px;
}

.blog-subcat-card__top b,
.blog-hub-article-card__body > small,
.blog-related-card__eyebrow {
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.blog-subcat-card strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.blog-subcat-card small {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.blog-subcat-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 24px;
}

.blog-subcat-card__pills i {
  padding: 4px 8px;
  color: var(--brand);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  background: var(--brand-soft);
  border-radius: 2px;
}

.blog-hub-brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.blog-hub-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  padding: 24px;
  color: var(--ink);
  text-align: center;
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  transition: border-color 200ms ease, transform 200ms ease;
}

.blog-hub-brand-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 36px;
  padding: 6px 12px;
  background: var(--surface-soft);
  border: var(--border-soft);
  border-radius: var(--radius-sm);
}

.blog-hub-brand-card b {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 1px;
}

.blog-hub-brand-card strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.blog-hub-brand-card em,
.blog-hub-brand-card small {
  color: var(--text-muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.35;
}

.blog-hub-brand-card em {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-hub-articles-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.blog-hub-articles-head .blog-section__head {
  margin-bottom: 0;
}

.blog-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.blog-filter-tags a {
  padding: 6px 12px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  border: var(--border-soft);
  border-radius: 2px;
}

.blog-filter-tags a:hover {
  color: var(--ink);
  border-color: rgb(75 178 9 / 45%);
}

.blog-filter-tags a.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.blog-hub-article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.blog-hub-article-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  transition: border-color 200ms ease, transform 200ms ease;
}

.blog-hub-article-card__cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  min-height: 150px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: linear-gradient(160deg, var(--green-800), var(--green-700));
}

.blog-hub-article-card__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hub-article-card__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(180deg, rgb(0 0 0 / 16%), rgb(0 0 0 / 38%)),
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

.blog-hub-article-card__cover > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  max-width: calc(100% - 24px);
  padding: 8px 12px;
  color: var(--white);
  text-shadow: 0 1px 2px rgb(0 0 0 / 45%);
  background: rgb(10 26 15 / 52%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-sm);
}

.blog-hub-article-card__cover b {
  font-size: 16px;
  line-height: 1.2;
}

.blog-hub-article-card__cover small {
  margin-top: 2px;
  color: rgb(255 255 255 / 70%);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-hub-article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.blog-hub-article-card__body strong {
  display: -webkit-box;
  flex: 1;
  margin-top: 10px;
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-hub-article-card:hover strong {
  color: var(--brand);
}

.blog-hub-article-card__body em {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 12px;
  font-style: normal;
}

.blog-hub-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--green-800);
}

.blog-hub-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
}

.blog-hub-cta h2 {
  margin: 24px 0 16px;
  color: var(--white);
  font-size: 32px;
  line-height: 40px;
}

.blog-hub-cta p {
  max-width: 540px;
  margin: 0;
  color: rgb(255 255 255 / 85%);
  font-size: 18px;
  line-height: 28px;
}

.blog-hub-cta__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 560px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.blog-hub-cta__stat {
  padding-right: 20px;
}

.blog-hub-cta__stat:first-child {
  padding-left: 0;
}

.blog-hub-cta__stat strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.blog-hub-cta__stat span {
  display: block;
  margin-top: 4px;
  color: rgb(255 255 255 / 68%);
  font-size: 12px;
  line-height: 16px;
}

.blog-hub-bridge__brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.blog-hub-bridge__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.blog-brand-cta .blog-hub-bridge__brand {
  gap: 12px;
}

.blog-brand-cta .blog-hub-bridge__logo {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.blog-hub-bridge__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blog-hub-bridge strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 24px;
}

.blog-hub-bridge small {
  display: block;
  margin-top: 2px;
  color: rgb(255 255 255 / 58%);
  font-size: 12px;
  line-height: 16px;
}

.blog-hub-bridge__divider {
  height: 1px;
  margin-top: 24px;
  background: rgb(255 255 255 / 10%);
}

.blog-hub-bridge ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.blog-hub-bridge li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgb(255 255 255 / 85%);
  font-size: 14px;
  line-height: 1.45;
}

.blog-hub-bridge li svg {
  flex: 0 0 16px;
  margin-top: 2px;
  color: var(--accent-green);
}

.blog-hub-bridge .bases-button-row {
  flex-direction: column;
  align-items: stretch;
}

.blog-hub-bridge .btn {
  width: 100%;
  justify-content: center;
}

.blog-hub-bridge .blog-hub-bridge__legal {
  margin-top: 16px;
  color: rgb(255 255 255 / 50%);
  font-size: 12px;
  line-height: 1.5;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-related-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 32px;
  color: var(--ink);
  background: var(--surface-soft);
  border-radius: var(--radius-md);
  transition: background 200ms ease, transform 200ms ease;
}

.blog-related-card:hover {
  background: var(--surface-muted);
  transform: translateY(-2px);
}

.blog-related-card h3 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.blog-related-card p {
  flex: 1;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.blog-related-card .blog-card-link {
  margin-top: 16px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.blog-single-breadcrumbs {
  background: var(--surface-soft);
}

.blog-single-hero {
  position: relative;
  padding: 86px 0 72px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 14%, rgb(125 217 87 / 9%), transparent 46%),
    var(--green-800);
}

.blog-single-hero__inner {
  position: relative;
}

.blog-single-hero__copy {
  max-width: 820px;
}

.blog-single-hero__zh {
  margin-top: 4px;
  color: rgb(255 255 255 / 50%);
  font-family: var(--font-zh);
  font-size: 12px;
}

.blog-single-hero h1 {
  max-width: 860px;
  margin: 22px 0 24px;
  color: var(--white);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.blog-single-hero p {
  max-width: 760px;
  margin: 0;
  color: rgb(255 255 255 / 84%);
  font-size: 19px;
  line-height: 30px;
}

.blog-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 34px;
}

.blog-single-hero__meta span,
.blog-single-hero__meta a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: rgb(255 255 255 / 78%);
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}

.blog-single-hero__meta a {
  color: var(--accent-green);
}

.blog-single-body {
  padding: 80px 0;
  background: var(--white);
}

.blog-single-body__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 740px);
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-single-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.blog-single-toc__head {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 24px;
}

.blog-single-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-single-toc li {
  margin-bottom: 12px;
}

.blog-single-toc a {
  display: flex;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-single-toc a:hover {
  color: var(--brand);
}

.blog-single-toc a span {
  flex: 0 0 28px;
  color: var(--text-muted);
}

.blog-single-content {
  min-width: 0;
}

.blog-single-content .lead {
  margin: 0 0 40px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.blog-single-content h2 {
  margin: 56px 0 24px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0;
}

.blog-single-content h2:first-child {
  margin-top: 0;
}

.blog-single-content h3 {
  margin: 32px 0 14px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

.blog-single-content p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.72;
}

.blog-single-content a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgb(47 115 5 / 30%);
  text-underline-offset: 3px;
}

.blog-single-content ul,
.blog-single-content ol {
  margin: 18px 0 24px;
  padding-left: 22px;
}

.blog-single-content li {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.blog-single-content ul.bullets {
  padding-left: 0;
  list-style: none;
}

.blog-single-content ul.bullets li {
  position: relative;
  padding-left: 22px;
}

.blog-single-content ul.bullets li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

.blog-single-content .callout,
.blog-single-content .takeaways {
  margin: 28px 0;
  padding: 24px;
  background: var(--surface-soft);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-single-content .callout__head,
.blog-single-content .takeaways__head {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--brand);
}

.blog-single-content .callout__head::before,
.blog-single-content .takeaways__head::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.blog-single-content .callout__head::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cline x1='12' y1='11' x2='12' y2='16'/%3E%3Ccircle cx='12' cy='7.5' r='.5' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cline x1='12' y1='11' x2='12' y2='16'/%3E%3Ccircle cx='12' cy='7.5' r='.5' fill='black'/%3E%3C/svg%3E");
}

.blog-single-content .takeaways__head::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='9 12 11 14 15.5 9.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='9 12 11 14 15.5 9.5'/%3E%3C/svg%3E");
}

.blog-single-content .callout__label,
.blog-single-content .takeaways__label {
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-single-content .callout__text,
.blog-single-content .takeaways p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

.blog-single-content .takeaways__title {
  margin: 8px 0 12px;
}

.blog-single-content .takeaways__list {
  margin-bottom: 0;
}

.blog-single-content blockquote.quote {
  position: relative;
  margin: 32px 0;
  padding: 32px;
  color: var(--white);
  background: var(--green-800);
  border-radius: var(--radius-md);
}

.blog-single-content blockquote.quote > p:first-child {
  margin: 0;
}

.blog-single-content .quote__glyph {
  position: absolute;
  top: 12px;
  right: 24px;
  color: rgb(255 255 255 / 12%);
  font-size: 96px;
  line-height: 1;
}

.blog-single-content .quote__text {
  color: rgb(255 255 255 / 88%);
}

.blog-single-content .quote__author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.blog-single-content .quote__avatar {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  color: var(--green-800);
  background: var(--accent-green);
  border-radius: 50%;
  font-weight: 800;
}

.blog-single-content .quote__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-single-content .quote__author-name {
  color: var(--white);
  font-weight: 700;
}

.blog-single-content .quote__author-role {
  color: rgb(255 255 255 / 64%);
  font-size: 13px;
}

.blog-single-content .media-placeholder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-800), var(--brand));
}

.blog-single-content .media-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 28px 28px;
}

.blog-single-content .media-placeholder__label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--white);
  text-align: center;
}

.blog-single-content .media-placeholder__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.blog-single-content .media-placeholder__sub {
  margin-top: 4px;
  color: rgb(255 255 255 / 62%);
  font-size: 12px;
}

.blog-single-content .article-figure,
.blog-single-content .article-video,
.blog-single-content .article-gallery,
.blog-single-content .data-table-wrap {
  margin: 34px 0;
}

.blog-single-content .article-figure__img,
.blog-single-content .article-video__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
}

.blog-single-content figcaption,
.blog-single-content .media-caption,
.blog-single-content .article-figure__caption,
.blog-single-content .article-video__caption {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

.blog-single-content .media-head {
  margin-bottom: 14px;
}

.blog-single-content .media-head__eyebrow-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 6px;
}

.blog-single-content .media-head__title {
  margin: 0;
}

.blog-single-content .media-head__sub {
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.blog-single-content .article-video__player {
  max-width: none;
  cursor: pointer;
}

.blog-single-content .article-video__meta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgb(255 255 255 / 88%);
  font-size: 12px;
  pointer-events: none;
}

.blog-single-content .article-video__meta span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.blog-single-content .media-video.is-playing .article-video__meta {
  display: none;
}

.blog-single-content .data-table-wrap {
  padding: 24px;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
}

.blog-single-content .data-table-wrap__title {
  margin-top: 0;
}

.blog-single-content .data-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  font-size: 14px;
}

.blog-single-content .data-table th,
.blog-single-content .data-table td {
  padding: 12px;
  border-bottom: 1px solid var(--stone-border);
  text-align: left;
  vertical-align: top;
}

.blog-single-content .data-table th {
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
}

.blog-single-content .price-final {
  color: var(--brand);
  font-weight: 800;
}

.blog-single-content .article-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-single-content .gallery-item {
  margin: 0;
}

.blog-single-content .gallery-item__thumb {
  position: relative;
  cursor: pointer;
}

.blog-single-content .gallery-item__thumb-inner {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
}

.blog-single-content .gallery-item__caption {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
}

.blog-share {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--stone-border);
}

.blog-share__head {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 12px;
}

.blog-share__head .bases-eyebrow {
  color: var(--text-muted);
}

.blog-share__head .blog-zh {
  font-size: 12px;
  opacity: 0.5;
}

.blog-share__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

.blog-share__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  color: var(--text-secondary);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease;
}

.blog-share__link svg {
  width: 20px;
  height: 20px;
}

.blog-share__label,
.blog-share__copy-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.blog-share__link:hover,
.blog-share__link:focus-visible {
  color: var(--brand);
  background: transparent;
  outline: none;
}

.blog-share__copy.is-copied {
  gap: 8px;
  width: auto;
  min-width: 0;
  padding: 0 10px;
  color: var(--brand);
}

.blog-share__copy.is-copied .blog-share__copy-label {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.blog-author-section {
  padding: 64px 0;
  background: var(--surface-soft);
}

.blog-author-inline {
  margin-top: 56px;
  padding: 40px 0 0;
  background: transparent;
  border-top: var(--border-soft);
}

.blog-author-inline .blog-section__head {
  margin-bottom: 18px;
}

.blog-author-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  max-width: 820px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--stone-border);
  border-radius: var(--radius-md);
}

.blog-author-inline .blog-author-card {
  max-width: none;
}

.blog-author-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
}

.blog-author-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.blog-author-card strong {
  display: block;
  margin-top: 4px;
  color: var(--brand);
  font-size: 14px;
}

.blog-author-card p {
  margin: 14px 0 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

.blog-author-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.blog-author-card__links a {
  color: var(--brand);
  font-weight: 700;
}

.blog-author-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: var(--white);
  background: var(--green-800);
}

.blog-author-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 112px minmax(0, 760px);
  gap: 28px;
  align-items: center;
}

.blog-author-hero__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  color: var(--green-800);
  background: var(--accent-green);
  border-radius: 50%;
  font-size: 46px;
  font-weight: 800;
}

.blog-author-hero h1 {
  margin: 12px 0 10px;
  color: var(--white);
  font-size: 48px;
  line-height: 1.08;
}

.blog-author-hero strong {
  display: block;
  color: var(--accent-green);
  font-size: 16px;
}

.blog-author-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: 18px;
  line-height: 1.6;
}

.blog-author-archive__empty {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.blog-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.blog-faq-item {
  border-bottom: var(--border-soft);
}

.blog-faq-item summary {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.blog-faq-item summary::-webkit-details-marker {
  display: none;
}

.blog-faq-item__num {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.blog-faq-item__q {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.blog-faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 200ms ease;
}

.blog-faq-item[open] .blog-faq-item__icon {
  transform: rotate(45deg);
}

.blog-faq-item__a {
  max-width: 720px;
  padding: 0 0 24px;
  margin-left: 48px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.blog-faq-item__a p {
  margin: 0 0 12px;
}

.blog-faq-item__a p:last-child {
  margin-bottom: 0;
}

.blog-faq-item__a a {
  color: var(--brand);
  border-bottom: 1px solid rgb(75 178 9 / 30%);
}

.blog-category-hub .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.blog-category-hub .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-sm);
}

.blog-category-hub .page-numbers.current {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.blog-brand-archive {
  background: var(--white);
}

.blog-brand-hero {
  position: relative;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgb(125 217 87 / 8%), transparent 50%),
    var(--green-800);
}

.blog-brand-hero > .container {
  position: relative;
  z-index: 1;
}

.blog-brand-hero__upper {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  min-height: 420px;
  padding: 64px 0 48px;
}

.blog-brand-hero__copy {
  max-width: 660px;
}

.blog-brand-hero__lockup {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  margin: 24px 0 32px;
}

.blog-brand-hero__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  color: var(--white);
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.blog-brand-hero__mark img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.blog-brand-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.blog-brand-hero__sub-name {
  margin-top: 6px;
  color: rgb(255 255 255 / 70%);
  font-family: var(--font-zh);
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.5px;
}

.blog-brand-hero__copy > p {
  max-width: 660px;
  margin: 0;
  color: rgb(255 255 255 / 85%);
  font-size: 18px;
  line-height: 28px;
}

.blog-brand-hero__metrics {
  display: flex;
  align-items: center;
  margin-top: 48px;
}

.blog-brand-hero__metric {
  padding: 0 24px;
  border-right: 1px solid rgb(255 255 255 / 20%);
}

.blog-brand-hero__metric:first-child {
  padding-left: 0;
}

.blog-brand-hero__metric:last-child {
  border-right: 0;
}

.blog-brand-hero__metric strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.blog-brand-hero__metric span {
  display: block;
  margin-top: 4px;
  color: rgb(255 255 255 / 68%);
  font-size: 12px;
  line-height: 16px;
}

.blog-brand-hero__card {
  padding: 32px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 12px;
}

.blog-brand-hero__card-eyebrow {
  margin-bottom: 24px;
  color: var(--accent-green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-brand-hero__glyph {
  color: rgb(255 255 255 / 92%);
  font-family: var(--font-zh);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 4px;
}

.blog-brand-hero__card ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.blog-brand-hero__card li {
  padding: 12px 0;
  color: rgb(255 255 255 / 85%);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.blog-brand-hero__card li:first-child {
  padding-top: 0;
  border-top: 0;
}

.blog-brand-hero__card li:last-child {
  padding-bottom: 0;
}

.blog-brand-shelf {
  margin-top: 72px;
  padding: 28px 0 32px;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.blog-brand-shelf__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.blog-brand-shelf__card {
  display: flex;
  height: 84px;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--white);
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-sm);
  transition: background 200ms ease, border-color 200ms ease;
}

.blog-brand-shelf__card:hover {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(72 202 50 / 45%);
}

.blog-brand-shelf__card strong,
.blog-brand-shelf__card small,
.blog-brand-shelf__card b {
  display: block;
}

.blog-brand-shelf__card strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.blog-brand-shelf__card small {
  margin-top: 2px;
  color: rgb(255 255 255 / 55%);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-brand-shelf__card b {
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.blog-brand-model-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-brand-model-card {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  min-height: 320px;
  overflow: hidden;
  background: var(--white);
  border: var(--border-soft);
  border-radius: 12px;
  transition: border-color 200ms ease, transform 200ms ease;
}

.blog-brand-model-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.blog-brand-model-card__photo {
  position: relative;
  height: 100%;
  padding: 16px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(160deg, var(--green-800), var(--green-950));
}

.blog-brand-model-card__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 32px 32px;
}

.blog-brand-model-card__photo--1 {
  background: linear-gradient(160deg, var(--ink), var(--green-800));
}

.blog-brand-model-card__photo--2 {
  background: linear-gradient(160deg, var(--green-700), var(--green-950));
}

.blog-brand-model-card__photo--3 {
  background: linear-gradient(160deg, var(--charcoal), var(--green-800));
}

.blog-brand-model-card__photo--4 {
  background: linear-gradient(160deg, var(--green-950), var(--green-700));
}

.blog-brand-model-card__photo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.blog-brand-model-card__photo-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}

.blog-brand-model-card__photo-name {
  color: rgb(255 255 255 / 45%);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.blog-brand-model-card__photo-zh {
  margin-top: 8px;
  color: rgb(255 255 255 / 30%);
  font-family: var(--font-zh);
  font-size: 18px;
  letter-spacing: 2px;
}

.blog-brand-model-card__body {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.blog-brand-model-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.blog-brand-model-card__top span,
.blog-brand-model-card__prices small,
.blog-brand-model-card__specs small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-brand-model-card__top b {
  padding: 4px 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  background: var(--brand-soft);
  border: 1px solid var(--brand);
  border-radius: 2px;
  white-space: nowrap;
}

.blog-brand-model-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0;
}

.blog-brand-model-card p {
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.blog-brand-model-card__specs {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 20px;
  padding-top: 0;
  border-top: 0;
}

.blog-brand-model-card__specs > div {
  flex: 1;
  padding: 0 16px;
  border-right: var(--border-soft);
}

.blog-brand-model-card__specs > div:first-child {
  padding-left: 0;
}

.blog-brand-model-card__specs > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.blog-brand-model-card__specs strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.blog-brand-model-card__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 20px;
  padding: 16px;
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
}

.blog-brand-model-card__prices strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.3px;
}

.blog-brand-model-card__prices strong.is-accent {
  color: var(--brand);
}

.blog-brand-model-card__prices p {
  grid-column: 1 / span 2;
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 11px;
  font-style: italic;
  line-height: 1.4;
}

.blog-brand-model-card .blog-brand-model-card__prices-foot {
  grid-column: 1 / span 2;
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 11px;
  font-style: italic;
  line-height: 1.4;
}

.blog-brand-model-card__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.blog-brand-factory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.blog-brand-factory-map {
  position: relative;
  width: 100%;
  aspect-ratio: 640 / 440;
  overflow: hidden;
  background: var(--surface-muted);
  border: var(--border-soft);
  border-radius: 8px;
}

.blog-brand-factory-map svg {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-brand-factory-map__marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.blog-brand-factory-map i,
.blog-brand-factory-map__legend i {
  display: inline-flex;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgb(75 178 9 / 18%);
}

.blog-brand-factory-map i.is-shinezo {
  width: 8px;
  height: 8px;
  flex-basis: 8px;
  background: rgb(75 178 9 / 50%);
  box-shadow: 0 0 0 3px rgb(75 178 9 / 12%);
}

.blog-brand-factory-map__legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  color: var(--text-secondary);
  font-size: 11px;
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-sm);
}

.blog-brand-factory-map__legend b {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 400;
}

.blog-brand-factory-map__legend i,
.blog-brand-factory-map__legend .is-shinezo {
  box-shadow: none;
}

.blog-brand-factory-item {
  padding: 20px 0;
  border-bottom: var(--border-soft);
}

.blog-brand-factory-item:first-child {
  padding-top: 0;
}

.blog-brand-factory-item:last-child {
  border-bottom: 0;
}

.blog-brand-factory-item > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.blog-brand-factory-item span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.blog-brand-factory-item b {
  padding: 4px 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--surface-soft);
  border-radius: 2px;
}

.blog-brand-factory-item h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0;
}

.blog-brand-factory-item p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.blog-brand-factory-item > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.blog-brand-factory-item small {
  padding: 4px 8px;
  color: var(--brand);
  font-size: 11px;
  background: var(--brand-soft);
  border-radius: 2px;
}

.blog-brand-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-brand-article-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: var(--border-soft);
  border-radius: 8px;
  transition: border-color 200ms ease, transform 200ms ease;
}

.blog-brand-article-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.blog-brand-article-card__cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, var(--brand) 0%, #1f3a1a 100%);
}

.blog-brand-article-card__cover--alt-1 {
  background: linear-gradient(160deg, #1f3a1a, #0a1a0f);
}

.blog-brand-article-card__cover--alt-2 {
  background: linear-gradient(160deg, #15201a, var(--brand));
}

.blog-brand-article-card__cover--alt-3 {
  background: linear-gradient(160deg, #1f1f1f, var(--brand));
}

.blog-brand-article-card__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 24px 24px;
}

.blog-brand-article-card__cover-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--white);
  text-align: center;
}

.blog-brand-article-card__cover-brand {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.blog-brand-article-card__cover-model {
  margin-top: 2px;
  color: rgb(255 255 255 / 60%);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-brand-article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.blog-brand-article-card__eyebrow {
  color: var(--brand);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.blog-brand-article-card__title {
  display: -webkit-box;
  flex: 1;
  margin-top: 12px;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  transition: color 150ms ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-brand-article-card:hover .blog-brand-article-card__title {
  color: var(--brand);
}

.blog-brand-article-card__meta {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.blog-brand-articles-cta {
  margin-top: 40px;
  text-align: center;
}

.blog-brand-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.blog-brand-related-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  background: var(--surface-soft);
  border-radius: 8px;
  transition: background 200ms ease, transform 200ms ease;
}

.blog-brand-related-card:hover {
  background: var(--surface-muted);
  transform: translateY(-2px);
}

.blog-brand-related-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 70px;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: var(--white);
  border: var(--border-soft);
  border-radius: 4px;
}

.blog-brand-related-card__logo img {
  display: block;
  width: auto;
  max-width: 96px;
  height: 28px;
  object-fit: contain;
}

.blog-brand-related-card__name {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.blog-brand-related-card__counts {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-brand-related-card__desc {
  flex: 1;
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.blog-brand-related-card__link {
  margin-top: 16px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.blog-brand-related-card:hover .blog-brand-related-card__link {
  color: var(--brand-dark);
}

@media (max-width: 1023px) {
  .blog-brand-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hero {
    min-height: 0;
    padding: 56px 0 72px;
  }

  .blog-hero__inner {
    grid-template-columns: 1fr;
  }

  .blog-hero__copy {
    max-width: 760px;
  }

  .blog-map-card {
    max-width: 620px;
  }

  .blog-cat-grid,
  .blog-bases-grid,
  .blog-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-cat-card--last {
    grid-column: auto;
  }

  .blog-top-grid,
  .blog-why__grid {
    grid-template-columns: 1fr;
  }

  .blog-top-feature__cover {
    min-height: 280px;
  }

  .blog-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-term-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hub-hero__inner,
  .blog-hub-cta__inner {
    grid-template-columns: 1fr;
  }

  .blog-hub-map {
    max-width: 620px;
  }

  .blog-hub-brand-grid,
  .blog-hub-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hub-articles-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-filter-tags {
    justify-content: flex-start;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-brand-hero__upper,
  .blog-brand-factory-grid {
    grid-template-columns: 1fr;
  }

  .blog-brand-hero__card,
  .blog-brand-factory-map {
    max-width: 640px;
  }

  .blog-brand-shelf__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-brand-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .blog-brand-model-card {
    grid-template-columns: 1fr;
  }

  .blog-brand-model-card__photo {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .blog-home .container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .blog-hero {
    padding: 32px 0;
  }

  .blog-hero__inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .blog-display {
    font-size: 28px;
    line-height: 32px;
  }

  .blog-hero__sub {
    font-size: 14px;
    line-height: 20px;
  }

  .blog-hero__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .blog-hero__fact {
    padding: 0;
    border-right: 0;
  }

  .blog-hero__fact strong {
    font-size: 22px;
    line-height: 26px;
  }

  .blog-hero__fact span {
    font-size: 11px;
    line-height: 14px;
  }

  .blog-hero__ctas {
    display: block;
    margin-top: 24px;
  }

  .blog-hero__ctas .btn {
    width: 100%;
  }

  .blog-map-card {
    margin-top: 24px;
    padding: 16px;
  }

  .blog-section,
  .blog-why,
  .blog-final-cta {
    padding: 48px 0;
  }

  .blog-section__head {
    margin-bottom: 24px;
    text-align: center;
  }

  .blog-section__head-row {
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
  }

  .blog-section__head p,
  .blog-why .blog-section__head p,
  .blog-final-cta p,
  .blog-newsletter p {
    font-size: 14px;
    line-height: 1.5;
  }

  .blog-cat-grid,
  .blog-why__grid {
    grid-template-columns: 1fr;
  }

  .blog-cat-card,
  .blog-base-card,
  .blog-why-card {
    min-height: 0;
  }

  .blog-cat-card {
    height: auto;
    min-height: 140px;
    padding: 20px;
  }

  .blog-cat-card h3 {
    max-width: 75%;
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.25;
  }

  .blog-cat-card p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
  }

  .blog-cat-card__zh {
    top: 16px;
    right: 20px;
    font-size: 20px;
  }

  .blog-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .blog-brand-card {
    min-height: 0;
    aspect-ratio: 1;
    padding: 12px 8px;
  }

  .blog-brand-card span {
    min-width: 0;
    height: 30px;
    padding: 4px 8px;
  }

  .blog-brand-card b {
    font-size: 10px;
  }

  .blog-brand-card strong {
    font-size: 13px;
  }

  .blog-brand-card small {
    font-size: 10px;
  }

  .blog-brand-card--all {
    display: flex;
    justify-content: center;
    gap: 6px;
    color: var(--brand);
    background: var(--surface-soft);
  }

  .blog-brand-card--all span {
    color: var(--brand);
    background: var(--brand-soft);
    border-color: var(--brand-soft);
  }

  .blog-brand-card--all small {
    color: var(--brand);
    font-weight: 600;
    line-height: 1.3;
  }

  .blog-brand-grid + .blog-centered-cta {
    display: none;
  }

  .blog-bases-grid,
  .blog-article-grid {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .blog-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
  }

  .blog-base-card,
  .blog-article-card {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
  }

  .blog-base-card:hover,
  .blog-base-card:focus-visible,
  .blog-article-card:hover,
  .blog-article-card:focus-visible {
    border-color: var(--border-soft);
    box-shadow: none;
    transform: none;
  }

  .blog-base-card {
    height: 300px;
    min-height: 300px;
  }

  .blog-top-small-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .blog-top-small {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .blog-top-small__cover {
    width: 100px;
    min-height: 72px;
    aspect-ratio: 25 / 18;
    padding: 0;
    border-radius: var(--radius-sm);
  }

  .blog-top-small__cover span {
    padding: 4px;
    font-size: 10px;
    letter-spacing: 0.5px;
    background: rgb(10 26 15 / 44%);
    border: 0;
  }

  .blog-top-small__body {
    padding: 0;
  }

  .blog-top-small__body strong {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.3;
  }

  .blog-top-small__body small {
    margin-top: 6px;
    font-size: 11px;
  }

  .blog-top-feature__body strong {
    font-size: 22px;
  }

  .blog-top-feature__cover,
  .blog-article-card__cover {
    min-height: 180px;
  }

  .blog-collection__head,
  .blog-newsletter__form {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-collection__head {
    align-items: flex-end;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 16px;
  }

  .blog-collection {
    margin-bottom: 40px;
  }

  .blog-collection__head h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .blog-newsletter__form .btn {
    width: 100%;
  }

  .blog-newsletter__form input {
    height: 52px;
    min-height: 52px;
  }

  .blog-term-hub__hero {
    padding-top: 48px;
  }

  .blog-term-hub__head h1 {
    font-size: 40px;
    line-height: 44px;
  }

  .blog-term-hub__grid {
    grid-template-columns: 1fr;
  }

  .blog-term-card {
    min-height: 112px;
  }

  .blog-category-hub .container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .blog-hub-breadcrumbs {
    padding: 16px 0;
  }

  .blog-hub-breadcrumbs__list {
    font-size: 13px;
  }

  .blog-hub-hero {
    min-height: 0;
    padding: 32px 0;
  }

  .blog-hub-hero__inner {
    gap: 24px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .blog-hub-hero h1 {
    margin: 18px 0 16px;
    font-size: 32px;
    line-height: 36px;
  }

  .blog-hub-hero p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 20px;
  }

  .blog-hub-hero__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }

  .blog-hub-hero__metric {
    padding: 0;
    border-right: 0;
  }

  .blog-hub-hero__metric strong {
    font-size: 22px;
    line-height: 26px;
  }

  .blog-hub-map {
    padding: 16px;
  }

  .blog-hub-map__map {
    aspect-ratio: 280 / 130;
  }

  .blog-hub-nav {
    top: 64px;
    height: 48px;
  }

  .blog-hub-nav__inner {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 0;
    overflow: hidden;
  }

  .blog-hub-nav__inner > span {
    display: none;
  }

  .blog-hub-nav__scroll {
    gap: 0;
    width: 100%;
    max-width: 100%;
    height: 48px;
    margin: 0;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .blog-hub-nav__scroll.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }

  .blog-hub-nav__scroll::-webkit-scrollbar {
    display: none;
  }

  .blog-hub-nav a {
    flex: 0 0 auto;
    height: 48px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .blog-pillar {
    padding: 48px 0;
  }

  .blog-pillar__inner {
    padding: 0 20px;
  }

  .blog-pillar__lead {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.55;
  }

  .blog-pillar h2 {
    margin: 40px 0 16px;
    font-size: 24px;
    line-height: 30px;
  }

  .blog-pillar h3 {
    margin: 28px 0 10px;
    font-size: 20px;
    line-height: 26px;
  }

  .blog-pillar p,
  .blog-pillar__bullets li,
  .blog-pillar__steps li,
  .blog-pillar ul:not([class]) li,
  .blog-pillar ol:not([class]) li {
    font-size: 16px;
    line-height: 1.62;
  }

  .blog-pillar table {
    display: block;
    width: 100%;
    overflow-x: auto;
    font-size: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .blog-pillar th,
  .blog-pillar td {
    min-width: 180px;
    padding: 12px 14px;
  }

  .blog-pillar blockquote {
    margin: 24px 0;
    padding: 24px;
  }

  .blog-pillar blockquote p {
    font-size: 18px;
    line-height: 1.45;
  }

  .blog-callout {
    margin: 24px 0;
    padding: 18px;
  }

  .blog-compare-table-wrap {
    margin: 24px 0;
  }

  .blog-compare-table {
    display: none;
  }

  .blog-compare-table-wrap > h3 {
    display: none;
  }

  .blog-compare-mobile {
    display: block;
    margin: 24px 0;
  }

  .blog-compare-mobile__title {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
  }

  .blog-compare-mobile__col {
    padding: 16px;
    margin-bottom: 12px;
    background: var(--surface-soft);
    border: var(--border-soft);
    border-radius: 4px;
  }

  .blog-compare-mobile__col-title {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
  }

  .blog-compare-mobile__col-title .glyph-diff,
  .blog-compare-mobile__col-title .glyph-same {
    font-size: 16px;
    font-weight: 800;
  }

  .blog-compare-mobile__col-title .glyph-diff {
    color: var(--brand);
  }

  .blog-compare-mobile__col-title .glyph-same {
    color: var(--text-muted);
  }

  .blog-compare-mobile__col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .blog-compare-mobile__col li {
    position: relative;
    padding-left: 16px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.45;
  }

  .blog-compare-mobile__col li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 4px;
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
  }

  .blog-compare-mobile__col--diff li::before {
    background: var(--brand);
  }

  .blog-budget-cards {
    display: flex;
    gap: 12px;
    margin: 24px -20px 8px;
    padding: 0 20px 4px;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .blog-budget-cards::-webkit-scrollbar {
    display: none;
  }

  .blog-budget-cards.is-dragging,
  .blog-brand-shelf__grid.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }

  .blog-budget-card {
    width: 280px;
    min-width: 280px;
    flex: 0 0 280px;
    padding: 20px;
  }

  .blog-budget-card strong {
    font-size: 22px;
    line-height: 1.2;
  }

  .blog-budget-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 24px;
  }

.blog-budget-dots button {
  display: block;
  width: 6px;
  height: 6px;
  padding: 0;
  background: var(--stone-border);
  border: 0;
  border-radius: 50%;
  appearance: none;
}

.blog-budget-dots button.is-active {
  background: var(--brand);
}

  .blog-brand-quote.quote {
    margin: 28px 0;
  }

  .blog-subcat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-subcat-card {
    min-height: 0;
    padding: 20px;
  }

  .blog-subcat-card strong {
    font-size: 20px;
  }

  .blog-hub-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .blog-hub-brand-card {
    min-height: 132px;
    padding: 16px 10px;
  }

  .blog-hub-brand-card span {
    min-width: 0;
    height: 30px;
    padding: 4px 8px;
  }

  .blog-hub-brand-card b {
    font-size: 11px;
  }

  .blog-hub-brand-card strong {
    font-size: 14px;
  }

  .blog-hub-article-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-hub-article-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .blog-hub-article-card__cover {
    width: 112px;
    min-height: 82px;
    aspect-ratio: 112 / 82;
    border-radius: var(--radius-sm);
  }

  .blog-hub-article-card__cover > span {
    max-width: calc(100% - 8px);
    padding: 4px;
    border: 0;
  }

  .blog-hub-article-card__cover b {
    font-size: 10px;
  }

  .blog-hub-article-card__cover small {
    font-size: 9px;
  }

  .blog-hub-article-card__body {
    padding: 0;
  }

  .blog-hub-article-card__body strong {
    margin-top: 6px;
    font-size: 14px;
    line-height: 18px;
  }

  .blog-hub-article-card__body em {
    margin-top: 8px;
    font-size: 11px;
  }

  .blog-hub-cta {
    padding: 48px 0;
  }

  .blog-hub-cta__inner {
    gap: 24px;
  }

  .blog-hub-cta h2 {
    margin-top: 18px;
    font-size: 26px;
    line-height: 32px;
  }

  .blog-hub-cta p {
    font-size: 15px;
    line-height: 22px;
  }

  .blog-hub-cta__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .blog-hub-cta__stat {
    padding: 0 14px 14px 0;
    border-right: 0;
  }

  .blog-brand-cta .blog-hub-cta__stat {
    border-right: 0;
  }

  .blog-hub-cta__stat:nth-child(n + 3) {
    border-top: 1px solid rgb(255 255 255 / 16%);
  }

  .blog-hub-cta__stat strong {
    font-size: 21px;
    line-height: 25px;
  }

  .blog-hub-bridge {
    margin-top: 24px;
    padding: 20px;
  }

  .blog-hub-bridge__brand {
    gap: 12px;
  }

  .blog-hub-bridge__logo {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 16px;
  }

  .blog-brand-cta .blog-hub-bridge__logo {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .blog-brand-cta .blog-hub-bridge__divider {
    margin: 16px 0;
  }

  .blog-brand-cta .blog-hub-bridge ul {
    gap: 8px;
    margin: 0 0 20px;
  }

  .blog-brand-cta .blog-hub-bridge li {
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
  }

  .blog-brand-cta .blog-hub-bridge .bases-button-row {
    gap: 12px;
  }

  .blog-hub-bridge .blog-hub-bridge__legal {
    font-size: 10px;
    line-height: 15px;
  }

  .blog-brand-cta .blog-hub-bridge .blog-hub-bridge__legal {
    font-size: 11px;
    line-height: 1.5;
  }

  .blog-related-grid {
    gap: 12px;
  }

  .blog-related-card {
    min-height: 0;
    padding: 20px;
  }

  .blog-related-card strong {
    font-size: 20px;
  }

  .blog-single-hero {
    padding: 54px 0 44px;
  }

  .blog-single-hero h1 {
    margin: 18px 0 18px;
    font-size: 34px;
    line-height: 1.12;
  }

  .blog-single-hero p {
    font-size: 16px;
    line-height: 24px;
  }

  .blog-single-hero__meta {
    gap: 8px;
    margin-top: 24px;
  }

  .blog-single-hero__meta span,
  .blog-single-hero__meta a {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .blog-single-body {
    padding: 36px 0;
  }

  .blog-single-body__grid {
    display: block;
    padding: 0 20px;
  }

  .blog-single-toc {
    position: static;
    max-height: none;
    margin-bottom: 28px;
    padding: 18px;
    background: var(--surface-soft);
    border-radius: var(--radius-sm);
    overflow: visible;
  }

  .blog-single-toc__head {
    margin-bottom: 14px;
  }

  .blog-single-toc li {
    margin-bottom: 8px;
  }

  .blog-single-toc a {
    font-size: 13px;
  }

  .blog-single-content .lead {
    margin-bottom: 28px;
    font-size: 18px;
  }

  .blog-single-content h2 {
    margin: 40px 0 16px;
    font-size: 26px;
    line-height: 32px;
  }

  .blog-single-content h3 {
    font-size: 20px;
  }

  .blog-single-content p {
    font-size: 16px;
    line-height: 1.65;
  }

  .blog-single-content .callout,
  .blog-single-content .takeaways,
  .blog-single-content blockquote.quote,
  .blog-single-content .data-table-wrap {
    padding: 18px;
  }

  .blog-single-content .data-table-wrap {
    overflow-x: auto;
  }

  .blog-single-content .data-table {
    min-width: 640px;
  }

  .blog-single-content .article-gallery__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-share {
    margin-top: 34px;
    padding-top: 22px;
  }

  .blog-share__actions {
    display: flex;
    gap: 16px;
  }

  .blog-share__link {
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    font-size: 0;
  }

  .blog-author-section {
    padding: 44px 0;
  }

  .blog-author-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .blog-author-card__avatar {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .blog-author-hero {
    padding: 52px 0 44px;
  }

  .blog-author-hero__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-author-hero__avatar {
    width: 74px;
    height: 74px;
    font-size: 30px;
  }

  .blog-author-hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .blog-author-hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .blog-faq-item summary {
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    padding: 18px 0;
  }

  .blog-faq-item__q {
    font-size: 16px;
    line-height: 22px;
  }

  .blog-faq-item__a {
    margin-left: 38px;
    font-size: 14px;
    line-height: 1.55;
  }

  .blog-brand-archive .container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .blog-brand-hero {
    min-height: 0;
  }

  .blog-brand-hero__upper {
    min-height: 0;
    padding: 32px 0 24px;
    gap: 24px;
  }

  .blog-brand-hero__lockup {
    grid-template-columns: 60px 1fr;
    gap: 14px;
    margin: 18px 0 22px;
  }

  .blog-brand-hero__mark {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .blog-brand-hero__mark img {
    width: 60px;
    height: 60px;
  }

  .blog-brand-hero h1 {
    font-size: 34px;
    line-height: 38px;
  }

  .blog-brand-hero__sub-name {
    margin-top: 4px;
    font-size: 13px;
    line-height: 18px;
  }

  .blog-brand-hero__copy > p {
    font-size: 14px;
    line-height: 21px;
  }

  .blog-brand-hero__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    margin-top: 24px;
  }

  .blog-brand-hero__metric {
    padding: 0;
    border-right: 0;
  }

  .blog-brand-hero__metric strong {
    font-size: 22px;
    line-height: 26px;
  }

  .blog-brand-hero__card {
    min-height: 0;
    padding: 20px;
  }

  .blog-brand-hero__glyph {
    font-size: 58px;
  }

  .blog-brand-hero__card ul {
    margin-top: 18px;
  }

  .blog-brand-shelf {
    margin-top: 32px;
    padding: 20px 0 24px;
  }

  .blog-brand-shelf__grid {
    display: flex;
    gap: 8px;
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px 4px;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .blog-brand-shelf__grid::-webkit-scrollbar {
    display: none;
  }

  .blog-brand-shelf__card {
    width: 130px;
    min-width: 130px;
    height: 80px;
    flex: 0 0 130px;
    padding: 10px 12px;
  }

  .blog-brand-shelf__card strong {
    font-size: 13px;
    line-height: 1.1;
  }

  .blog-brand-shelf__card small {
    font-size: 9px;
  }

  .blog-brand-shelf__card b {
    font-size: 12px;
  }

  .blog-brand-nav.blog-hub-nav {
    top: 64px;
  }

  .blog-brand-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .blog-brand-model-card {
    grid-template-columns: 1fr;
    border-radius: var(--radius-sm);
  }

  .blog-brand-model-card:hover {
    box-shadow: none;
    transform: none;
  }

  .blog-brand-model-card__photo {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9.5;
    padding: 12px;
  }

  .blog-brand-model-card__photo-name {
    font-size: 28px;
    letter-spacing: -0.4px;
  }

  .blog-brand-model-card__photo-zh {
    font-size: 14px;
    margin-top: 6px;
  }

  .blog-brand-model-card__body {
    padding: 20px;
  }

  .blog-brand-model-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-brand-model-card h3 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.4px;
  }

  .blog-brand-model-card p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 6px;
  }

  .blog-brand-model-card__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin-top: 16px;
  }

  .blog-brand-model-card__specs > div {
    padding: 0;
    border-right: 0;
  }

  .blog-brand-model-card__prices {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
    padding: 14px;
  }

  .blog-brand-model-card__prices > div + div {
    padding-top: 8px;
    border-top: var(--border-soft);
  }

  .blog-brand-model-card__prices p {
    grid-column: auto;
    margin-top: 0;
  }

  .blog-brand-model-card .blog-brand-model-card__prices-foot {
    grid-column: auto;
    margin-top: 0;
    font-size: 11px;
    line-height: 1.4;
  }

  .blog-brand-model-card__prices strong {
    margin-top: 2px;
    font-size: 18px;
    line-height: 24px;
  }

  .blog-brand-model-card__ctas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }

  .blog-brand-model-card__ctas .btn {
    width: 100%;
  }

  .blog-brand-model-card__ctas .blog-card-link {
    align-self: center;
    margin-top: 0;
    padding: 8px;
    font-size: 13px;
    text-align: center;
  }

  .blog-brand-factory-grid {
    gap: 28px;
  }

  .blog-brand-factory-map {
    min-height: 0;
  }

  .blog-brand-factory-map__marker {
    font-size: 10px;
  }

  .blog-brand-factory-map__legend {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .blog-brand-factory-item {
    padding: 20px 0;
  }

  .blog-brand-factory-item h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .blog-brand-article-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-brand-article-card__body {
    padding: 18px;
  }

  .blog-brand-article-card__title {
    margin-top: 10px;
    font-size: 16px;
    line-height: 22px;
  }

  .blog-brand-article-card__cover-brand {
    font-size: 17px;
  }

  .blog-brand-articles-cta {
    margin-top: 28px;
  }

  .blog-brand-related-card {
    min-height: 200px;
    padding: 20px 16px;
  }

  .blog-brand-related-card__logo {
    height: 40px;
    min-width: 0;
    margin-bottom: 12px;
    padding: 6px 12px;
  }

  .blog-brand-related-card__logo img {
    max-width: 72px;
    height: 24px;
  }

  .blog-brand-related-card__name {
    font-size: 16px;
    line-height: 1.25;
  }

  .blog-brand-related-card__counts {
    margin-top: 2px;
    font-size: 10px;
  }

  .blog-brand-related-card__desc {
    display: none;
  }

  .blog-brand-related-card__link {
    margin-top: auto;
    font-size: 12px;
    font-weight: 600;
  }
}
