@font-face {
  font-family: "Mulish";
  src: url("/media/mulish-variable.woff2") format("woff2");
  font-weight: 200 900;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body.hk-blog {
  --hk-ink: #151a1f;
  --hk-muted: #5c6872;
  --hk-line: #dce2e5;
  --hk-paper: #f7f8f6;
  --hk-white: #ffffff;
  --hk-night: #06080b;
  --hk-night-soft: #0f1722;
  --hk-orange: #ff6b3d;
  --hk-orange-dark: #a73717;
  --hk-teal: #157b68;
  --hk-teal-soft: #e4f4ef;
  --hk-blue: #3c76b2;
  --hk-reading: 760px;
  --hk-wide: 1160px;
  min-height: 100vh;
  margin: 0;
  color: var(--hk-ink);
  background: var(--hk-paper);
  font-family: "Mulish", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: 0;
}

.hk-blog *,
.hk-blog *::before,
.hk-blog *::after {
  box-sizing: border-box;
}

.hk-blog h1,
.hk-blog h2,
.hk-blog h3,
.hk-blog p,
.hk-blog figure {
  margin-top: 0;
}

.hk-blog a {
  color: inherit;
}

.hk-blog button,
.hk-blog input,
.hk-blog a {
  font: inherit;
}

.hk-blog img {
  display: block;
  max-width: 100%;
}

.hk-skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--hk-ink);
  background: var(--hk-white);
  border: 2px solid var(--hk-teal);
  transform: translateY(-160%);
}

.hk-skip-link:focus {
  transform: translateY(0);
}

.hk-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hk-icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hk-site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  min-height: 78px;
  padding: 18px max(24px, calc((100vw - var(--hk-wide)) / 2));
  color: var(--hk-white);
  background: var(--hk-night);
  border-bottom: 1px solid #27323c;
}

.hk-site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.hk-brand {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.hk-brand img {
  width: 154px;
  height: auto;
}

.hk-site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hk-site-nav a,
.hk-site-footer a {
  color: #d9e0e6;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hk-site-nav a:hover,
.hk-site-footer a:hover {
  color: var(--hk-white);
}

.hk-site-header__action {
  justify-self: end;
}

.hk-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.hk-action--small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 13px;
}

.hk-action--primary {
  color: #1a0904;
  background: var(--hk-orange);
}

.hk-action--primary:hover {
  background: #ff825e;
}

.hk-action--secondary {
  color: var(--hk-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
}

.hk-action--secondary:hover {
  background: rgba(255, 255, 255, 0.17);
}

.hk-action--light {
  color: #06110f;
  background: #66d6b5;
}

.hk-action--light:hover {
  background: #7ee0c2;
}

.hk-action--outline {
  color: var(--hk-ink);
  background: var(--hk-white);
  border-color: var(--hk-line);
}

.hk-action--outline:hover {
  border-color: #9ca8af;
}

.hk-kicker,
.hk-eyebrow,
.hk-product-label,
.hk-capture__eyebrow {
  margin: 0 0 10px;
  color: var(--hk-orange-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffd4c8;
  font-size: 13px;
}

.hk-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 760px;
  overflow: hidden;
  color: var(--hk-white);
  background: #111820;
}

.hk-hero__media,
.hk-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hk-hero__media {
  object-fit: cover;
}

.hk-hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.94) 0%, rgba(4, 7, 10, 0.78) 42%, rgba(4, 7, 10, 0.25) 78%),
    linear-gradient(0deg, rgba(4, 7, 10, 0.84) 0%, rgba(4, 7, 10, 0) 58%);
}

.hk-hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--hk-wide), calc(100% - 48px));
  margin: 0 auto;
  padding: 170px 0 76px;
}

.hk-hero h1,
.hk-editorial-hero h1 {
  max-width: 980px;
  margin: 22px 0;
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.01;
}

.hk-hero__dek,
.hk-editorial-hero__dek {
  max-width: 760px;
  margin-bottom: 30px;
  color: #d4dde4;
  font-size: 1.45rem;
  line-height: 1.48;
}

.hk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hk-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 38px;
  color: #aab6c1;
  font-size: 12px;
  font-weight: 650;
}

.hk-editorial-hero {
  padding: 90px max(24px, calc((100vw - var(--hk-wide)) / 2));
  color: var(--hk-white);
  background: var(--hk-night);
}

.hk-editorial-hero--index {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 500px;
  padding-top: 128px;
  padding-bottom: 68px;
  overflow: hidden;
  background: var(--hk-night) url("/media/homes/first-time-home.jpg") center 52% / cover no-repeat;
}

.hk-editorial-hero--index::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.95) 0%, rgba(4, 7, 10, 0.82) 46%, rgba(4, 7, 10, 0.34) 78%),
    linear-gradient(0deg, rgba(4, 7, 10, 0.76) 0%, rgba(4, 7, 10, 0.08) 72%);
}

.hk-editorial-hero--index > * {
  position: relative;
  z-index: 1;
}

.hk-editorial-hero--index h1 {
  max-width: 920px;
  margin: 18px 0;
  font-size: 4.2rem;
  line-height: 1.02;
}

.hk-editorial-hero--index .hk-editorial-hero__dek {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.2rem;
}

.hk-editorial-hero__dek {
  color: #c3ced7;
}

.hk-article-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, var(--hk-reading));
  justify-content: space-between;
  gap: 72px;
  width: min(var(--hk-wide), calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 110px;
}

.hk-article-rail {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.hk-article-rail > p {
  margin-bottom: 8px;
  color: var(--hk-muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-article-rail > a {
  padding: 7px 0;
  color: #4b5862;
  border-bottom: 1px solid var(--hk-line);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hk-article-rail > a:hover {
  color: var(--hk-orange-dark);
}

.hk-article-body {
  min-width: 0;
}

.hk-article-body h2,
.hk-final-cta h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.hk-article-body h3 {
  margin-bottom: 9px;
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1.25;
}

.hk-article-body p {
  color: #45515b;
}

.hk-lead {
  color: #2c353c !important;
  font-size: 1.25rem;
  line-height: 1.62;
}

.hk-section {
  padding: 8px 0 82px;
  scroll-margin-top: 30px;
}

.hk-section--intro {
  padding-bottom: 54px;
}

.hk-section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.hk-feature-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(var(--hk-wide), calc(100% - 48px));
  margin: 0 auto;
  border-bottom: 1px solid var(--hk-line);
}

.hk-feature-band--inside {
  width: 100%;
  margin-bottom: 76px;
  border-top: 1px solid var(--hk-line);
}

.hk-feature-band > div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-height: 104px;
  padding: 14px 8px;
  border-right: 1px solid var(--hk-line);
  color: #334048;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.hk-feature-band > div:last-child {
  border-right: 0;
}

.hk-feature-band .hk-icon {
  width: 22px;
  height: 22px;
  color: var(--hk-teal);
}

.hk-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  padding: 25px 27px;
  color: #28594f;
  background: var(--hk-teal-soft);
  border-left: 4px solid var(--hk-teal);
}

.hk-notice .hk-icon {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.hk-notice h3,
.hk-notice strong,
.hk-notice span {
  display: block;
}

.hk-notice p,
.hk-notice span {
  margin-bottom: 0;
  color: #315f56;
  font-size: 14px;
  line-height: 1.55;
}

.hk-notice--warning {
  color: #8f361d;
  background: #fff3eb;
  border-left-color: var(--hk-orange);
}

.hk-notice--warning p,
.hk-notice--warning span {
  color: #653626;
}

.hk-notice--neutral {
  grid-template-columns: 1fr;
  color: var(--hk-ink);
  background: #eef2f4;
  border: 1px solid #c9d2d8;
}

.hk-notice--compact {
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  font-size: 12px;
}

.hk-section-callout {
  margin: 0 0 82px;
}

.hk-editorial-method {
  margin: 10px 0 72px;
  padding: 34px;
}

.hk-editorial-method h2 {
  font-size: 1.9rem;
}

.hk-data-table {
  margin-top: 28px;
  border-top: 2px solid var(--hk-ink);
}

.hk-data-row {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr 1fr;
  gap: 16px;
  padding: 18px 12px;
  border-bottom: 1px solid var(--hk-line);
  font-size: 13px;
  line-height: 1.45;
}

.hk-data-row--three {
  grid-template-columns: 1.25fr 0.65fr 1.5fr;
}

.hk-data-row > span {
  color: #53616c;
}

.hk-data-row--head {
  padding-top: 11px;
  padding-bottom: 11px;
  color: var(--hk-muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.hk-inline-guide-link {
  display: grid;
  gap: 4px;
  color: inherit;
  text-decoration: none;
}

.hk-inline-guide-link > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--hk-orange-dark);
  font-size: 11px;
  font-weight: 800;
}

.hk-inline-guide-link:hover > span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hk-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--hk-orange-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.hk-evidence-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 52px;
  align-items: center;
  margin: 8px 0 90px;
  padding: 54px;
  overflow: hidden;
  color: var(--hk-white);
  background: var(--hk-night-soft);
}

.hk-evidence-panel h2 {
  color: var(--hk-white);
}

.hk-evidence-panel p {
  color: #b9c5d1;
}

.hk-evidence-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}

.hk-evidence-panel li {
  display: flex;
  gap: 10px;
  color: #dce5ed;
  font-size: 14px;
}

.hk-evidence-panel li .hk-icon {
  margin-top: 3px;
  color: #5ed0ad;
}

.hk-evidence-panel figure {
  margin-bottom: 0;
  text-align: center;
}

.hk-evidence-panel figure img {
  width: min(280px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.hk-evidence-panel figcaption {
  margin-top: 10px;
  color: #8999a9;
  font-size: 11px;
}

.hk-article-figure {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  margin: 0 0 90px;
  overflow: hidden;
  background: #e7edf2;
}

.hk-article-figure img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: top;
  background: var(--hk-night);
}

.hk-article-figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  color: #54616a;
}

.hk-article-figure figcaption strong {
  margin-bottom: 12px;
  color: var(--hk-ink);
  font-size: 1.45rem;
  line-height: 1.35;
}

.hk-split {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.hk-stat-panel {
  display: grid;
  gap: 8px;
  padding: 30px;
  color: var(--hk-teal);
  background: var(--hk-teal-soft);
  border-top: 4px solid var(--hk-teal);
}

.hk-stat-panel strong {
  font-size: 1.75rem;
  line-height: 1.1;
}

.hk-stat-panel span {
  color: #315f56;
  font-size: 14px;
  line-height: 1.5;
}

.hk-number-grid,
.hk-step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 30px 0;
  background: var(--hk-line);
  border: 1px solid var(--hk-line);
}

.hk-number-grid > section,
.hk-step-grid > section {
  min-height: 218px;
  padding: 27px;
  background: var(--hk-white);
}

.hk-number-grid > section:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: auto;
}

.hk-number-grid > section > span,
.hk-step-grid > section > span {
  color: var(--hk-orange-dark);
  font-size: 11px;
  font-weight: 850;
}

.hk-number-grid h3,
.hk-step-grid h3 {
  margin: 14px 0 9px;
}

.hk-number-grid p,
.hk-step-grid p {
  margin-bottom: 0;
  color: #54616a;
  font-size: 14px;
  line-height: 1.55;
}

.hk-product-list {
  display: grid;
  gap: 22px;
}

.hk-product-card {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  min-height: 420px;
  overflow: hidden;
  background: var(--hk-white);
  border: 1px solid var(--hk-line);
  border-radius: 4px;
}

.hk-product-card__image {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px;
  background: #edf1f3;
  border-right: 1px solid var(--hk-line);
}

.hk-product-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.hk-product-card__copy {
  padding: 30px;
}

.hk-product-label {
  margin-bottom: 8px;
  color: var(--hk-teal);
}

.hk-product-card h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.16;
}

.hk-product-card__model {
  margin: 5px 0 15px;
  color: #788690 !important;
  font-size: 12px;
  font-weight: 750;
}

.hk-product-card__fit {
  margin-bottom: 19px;
  color: #36434c !important;
  font-size: 15px;
  line-height: 1.55;
}

.hk-product-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.hk-product-card li {
  display: flex;
  gap: 9px;
  color: #4b5963;
  font-size: 13px;
  line-height: 1.45;
}

.hk-product-card li .hk-icon {
  margin-top: 2px;
  color: var(--hk-teal);
}

.hk-product-card__verify {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
  padding: 14px 16px;
  color: #5c453c;
  background: #fff7f2;
  border-left: 3px solid #ff8a66;
  font-size: 12px;
  line-height: 1.5;
}

.hk-product-card small {
  display: block;
  margin-top: 8px;
  color: #7a8790;
  font-size: 10px;
}

.hk-process {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  margin-top: 30px;
}

.hk-process ol {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  background: var(--hk-line);
  border: 1px solid var(--hk-line);
  list-style: none;
}

.hk-process li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  padding: 19px;
  background: var(--hk-white);
}

.hk-process li > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--hk-white);
  background: var(--hk-teal);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
}

.hk-process li strong {
  display: block;
  margin-bottom: 4px;
}

.hk-process li p {
  margin: 0;
  color: #56636d;
  font-size: 12px;
  line-height: 1.5;
}

.hk-process aside {
  align-self: start;
  padding: 28px;
  color: #28594f;
  background: var(--hk-teal-soft);
  border-top: 4px solid var(--hk-teal);
}

.hk-process aside h3 {
  margin: 17px 0 9px;
}

.hk-process aside p {
  margin: 0;
  color: #315f56;
  font-size: 13px;
  line-height: 1.55;
}

.hk-capture {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 34px;
  margin: 34px 0 42px;
  padding: 32px;
  color: var(--hk-white);
  background: var(--hk-night-soft);
  border-top: 4px solid var(--hk-orange);
  scroll-margin-top: 24px;
}

.hk-capture__copy h3 {
  margin-bottom: 13px;
  color: var(--hk-white);
  font-size: 1.7rem;
  line-height: 1.12;
}

.hk-capture__copy > p:last-child {
  margin: 0;
  color: #b9c5d1;
  font-size: 14px;
  line-height: 1.55;
}

.hk-capture__eyebrow {
  margin-bottom: 9px;
  color: #7ee0c2 !important;
  font-size: 10px !important;
}

.hk-capture__form {
  min-width: 0;
}

.hk-capture__form > label:first-child {
  display: block;
  margin-bottom: 7px;
  color: #dce5ed;
  font-size: 12px;
  font-weight: 750;
}

.hk-capture__input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.hk-capture__input-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 0 12px;
  color: #687783;
  background: var(--hk-white);
  border: 1px solid transparent;
}

.hk-capture__input-wrap:focus-within {
  border-color: #7ee0c2;
  box-shadow: 0 0 0 3px rgba(126, 224, 194, 0.18);
}

.hk-capture__input-wrap input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0;
  color: var(--hk-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.hk-capture__input-row button {
  min-height: 48px;
  padding: 0 16px;
  color: #1a0904;
  background: var(--hk-orange);
  border: 0;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.hk-capture__input-row button:hover {
  background: #ff825e;
}

.hk-capture__input-row button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.hk-capture__consent {
  position: relative;
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 9px;
  align-items: start;
  margin-top: 14px;
  color: #dce5ed;
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.hk-capture__consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #66d6b5;
}

.hk-capture__terms {
  margin: 9px 0 0;
  color: #8999a9 !important;
  font-size: 10px !important;
  line-height: 1.5;
}

.hk-capture__terms a {
  color: #c4dcd5;
  text-underline-offset: 3px;
}

.hk-capture__status {
  display: none;
  margin: 12px 0 0;
  padding: 10px 12px;
  color: #ffd4c8;
  background: rgba(255, 107, 61, 0.13);
  border-left: 2px solid var(--hk-orange);
  font-size: 12px;
  line-height: 1.45;
}

.hk-capture__status[data-status="success"] {
  display: block;
  color: #c4f2e5;
  background: rgba(102, 214, 181, 0.13);
  border-left-color: #66d6b5;
}

.hk-capture__status[data-status="error"] {
  display: block;
}

.hk-capture__status a {
  color: inherit;
  font-weight: 800;
}

.hk-sources {
  display: grid;
  gap: 9px;
  padding-top: 34px;
  border-top: 1px solid var(--hk-line);
}

.hk-sources h2 {
  margin-bottom: 3px;
  font-size: 1.55rem;
}

.hk-sources p,
.hk-sources a {
  color: #59666f;
  font-size: 12px;
  line-height: 1.55;
  text-underline-offset: 3px;
}

.hk-final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding: 76px max(24px, calc((100vw - var(--hk-wide)) / 2));
  color: var(--hk-white);
  background: #123f37;
}

.hk-final-cta > div {
  max-width: 730px;
}

.hk-final-cta .hk-kicker {
  color: #7ee0c2;
}

.hk-final-cta h2 {
  margin-bottom: 12px;
}

.hk-final-cta p:not(.hk-kicker) {
  margin: 0;
  color: #c4dcd5;
}

.hk-site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 35px max(24px, calc((100vw - var(--hk-wide)) / 2));
  color: #9dacb9;
  background: var(--hk-night);
}

.hk-site-footer p {
  margin: 0;
  font-size: 13px;
}

.hk-site-footer__links {
  display: flex;
  justify-self: end;
  gap: 22px;
}

.hk-blog-index {
  width: min(var(--hk-wide), calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.hk-index-section {
  padding: 0 0 72px;
  scroll-margin-top: 24px;
}

.hk-index-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hk-line);
}

.hk-index-section__heading h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 2.45rem;
  line-height: 1.1;
}

.hk-index-section__heading p {
  max-width: 500px;
  margin-bottom: 2px;
  color: var(--hk-muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.hk-post-grid--latest {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
}

.hk-post-grid--collection {
  grid-template-columns: 1fr;
}

.hk-post-grid--collection .hk-post-card {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  min-height: 310px;
}

.hk-post-card {
  display: grid;
  overflow: hidden;
  background: var(--hk-white);
  border: 1px solid var(--hk-line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 31, 38, 0.055);
}

.hk-post-card__media {
  height: 260px;
  min-height: 0;
  overflow: hidden;
  background: #dce2e5;
}

.hk-post-grid--latest .hk-post-card__media {
  height: 310px;
}

.hk-post-grid--collection .hk-post-card__media {
  height: 310px;
  min-height: 310px;
}

.hk-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.hk-post-card__media:hover img {
  transform: scale(1.018);
}

.hk-post-card__media--contain {
  display: grid;
  place-items: center;
  padding: 20px;
  background: #edf1f2;
}

.hk-post-card__media--contain img {
  width: auto;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hk-post-card__body {
  display: flex;
  flex-direction: column;
  padding: 28px 30px 30px;
}

.hk-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 13px;
  color: var(--hk-muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.hk-post-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.hk-post-card p {
  color: #53616c;
  font-size: 15px;
  line-height: 1.6;
}

.hk-post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  color: var(--hk-orange-dark);
  font-size: 14px;
  font-weight: 850;
  text-underline-offset: 4px;
}

.hk-blog :focus-visible {
  outline: 3px solid #4fa58f;
  outline-offset: 3px;
}

@media (max-width: 1160px) {
  .hk-editorial-hero--index h1 {
    max-width: 800px;
    font-size: 3.8rem;
  }
}

@media (max-width: 960px) {
  .hk-site-header {
    grid-template-columns: 1fr auto;
  }

  .hk-site-nav {
    display: none;
  }

  .hk-article-shell {
    grid-template-columns: 1fr;
  }

  .hk-article-rail {
    display: none;
  }

  .hk-evidence-panel {
    grid-template-columns: 1fr;
  }

  .hk-article-figure {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .hk-evidence-panel figure img {
    width: 240px;
  }

  .hk-editorial-hero--index {
    min-height: 460px;
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .hk-editorial-hero--index h1 {
    max-width: 760px;
    font-size: 3.8rem;
  }

  .hk-post-grid--latest {
    grid-template-columns: 1fr;
  }

  .hk-post-grid--latest .hk-post-card {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  }

  .hk-post-grid--latest .hk-post-card__media {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  body.hk-blog {
    font-size: 16px;
  }

  .hk-site-header {
    gap: 14px;
    min-height: 68px;
    padding: 16px 18px;
  }

  .hk-brand img {
    width: 124px;
  }

  .hk-site-header__action {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hk-site-header__action .hk-icon {
    display: none;
  }

  .hk-hero {
    min-height: 720px;
  }

  .hk-hero__shade {
    background: linear-gradient(0deg, rgba(4, 7, 10, 0.96) 0%, rgba(4, 7, 10, 0.54) 82%);
  }

  .hk-hero__inner {
    width: calc(100% - 36px);
    padding: 130px 0 45px;
  }

  .hk-hero h1,
  .hk-editorial-hero h1 {
    font-size: 3.05rem;
  }

  .hk-hero__dek,
  .hk-editorial-hero__dek {
    font-size: 1.1rem;
  }

  .hk-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hk-byline {
    gap: 8px 16px;
    margin-top: 26px;
  }

  .hk-editorial-hero {
    padding: 58px 18px;
  }

  .hk-editorial-hero--index {
    min-height: 500px;
    padding: 112px 18px 52px;
    background-position: 62% center;
  }

  .hk-editorial-hero--index::before {
    background: linear-gradient(0deg, rgba(4, 7, 10, 0.96) 0%, rgba(4, 7, 10, 0.48) 88%);
  }

  .hk-editorial-hero--index h1 {
    max-width: 520px;
    font-size: 3rem;
  }

  .hk-editorial-hero--index .hk-editorial-hero__dek {
    font-size: 1.05rem;
  }

  .hk-article-shell,
  .hk-blog-index {
    width: calc(100% - 36px);
    padding: 52px 0 68px;
  }

  .hk-article-body h2,
  .hk-final-cta h2,
  .hk-index-section__heading h2 {
    font-size: 2.15rem;
  }

  .hk-feature-band {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 36px);
  }

  .hk-feature-band--inside {
    width: 100%;
  }

  .hk-feature-band > div {
    min-height: 88px;
    border-bottom: 1px solid var(--hk-line);
  }

  .hk-feature-band > div:nth-child(2n) {
    border-right: 0;
  }

  .hk-feature-band > div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .hk-section-heading,
  .hk-index-section__heading {
    display: block;
  }

  .hk-section-heading .hk-action {
    margin-bottom: 18px;
  }

  .hk-data-row,
  .hk-data-row--three {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 4px;
  }

  .hk-data-row--head {
    display: none;
  }

  .hk-evidence-panel {
    margin-right: -18px;
    margin-left: -18px;
    padding: 42px 22px;
  }

  .hk-article-figure {
    grid-template-columns: 1fr;
    margin-right: -18px;
    margin-left: -18px;
  }

  .hk-article-figure img {
    max-height: 360px;
  }

  .hk-article-figure figcaption {
    padding: 30px 22px;
  }

  .hk-split,
  .hk-process {
    grid-template-columns: 1fr;
  }

  .hk-number-grid,
  .hk-step-grid {
    grid-template-columns: 1fr;
  }

  .hk-number-grid > section:last-child:nth-child(odd) {
    grid-column: auto;
  }

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

  .hk-product-card__image {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--hk-line);
  }

  .hk-product-card__image img {
    width: min(260px, 80%);
  }

  .hk-product-card__copy {
    padding: 25px 22px;
  }

  .hk-capture {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-right: -18px;
    margin-left: -18px;
    padding: 32px 22px;
  }

  .hk-capture__input-row {
    grid-template-columns: 1fr;
  }

  .hk-capture__input-row button {
    width: 100%;
  }

  .hk-final-cta {
    display: grid;
    padding: 58px 20px;
  }

  .hk-site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hk-site-footer__links {
    justify-self: start;
  }

  .hk-post-grid {
    grid-template-columns: 1fr;
  }

  .hk-post-grid--latest .hk-post-card,
  .hk-post-grid--collection .hk-post-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hk-post-card__media,
  .hk-post-grid--latest .hk-post-card__media,
  .hk-post-grid--collection .hk-post-card__media {
    height: 230px;
    min-height: 0;
  }

  .hk-post-card__body {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hk-blog *,
  .hk-blog *::before,
  .hk-blog *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .hk-site-header,
  .hk-hero__media,
  .hk-hero__shade,
  .hk-hero__actions,
  .hk-article-rail,
  .hk-evidence-panel,
  .hk-final-cta,
  .hk-site-footer,
  .hk-capture,
  .hk-action {
    display: none !important;
  }

  .hk-hero,
  .hk-editorial-hero {
    min-height: auto;
    padding: 20px 0;
    color: #000000;
    background: #ffffff;
  }

  .hk-hero__inner {
    padding: 30px 0;
  }

  .hk-hero__dek,
  .hk-editorial-hero__dek,
  .hk-byline {
    color: #333333;
  }

  .hk-article-shell {
    display: block;
    width: 100%;
    padding: 0;
  }

  .hk-section,
  .hk-checklist__item,
  .hk-product-card {
    break-inside: avoid;
  }
}
