@charset "UTF-8";

/** Housekey components. Page layouts require explicit Housekey classes. */
.housekey-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--housekey-space-xs);
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--housekey-radius-sm);
  background: var(--housekey-orange);
  color: var(--housekey-white);
  font-weight: 700;
  text-decoration: none;
}

.home .housekey-cta-button {
  background: #AD5700;
}

.housekey-card,
.housekey-beginner-card,
.housekey-profile {
  padding: var(--housekey-space-md);
  border: 1px solid var(--housekey-border-color);
  border-radius: var(--housekey-radius-md);
  background: var(--housekey-white);
  color: var(--housekey-text);
}

.housekey-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--housekey-beige);
  color: var(--housekey-text);
  font-size: var(--housekey-font-size-sm);
  font-weight: 700;
}

.housekey-section-heading {
  margin-block: 0 var(--housekey-space-md);
  color: var(--housekey-navy);
}

.housekey-sale-steps {
  display: grid;
  gap: var(--housekey-space-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

.housekey-sale-step {
  padding: var(--housekey-space-md);
  border-left: 0.25rem solid var(--housekey-orange);
  border-radius: var(--housekey-radius-sm);
  background: var(--housekey-bg);
}

.housekey-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--housekey-space-md);
  align-items: center;
}

/* Home: preserve SWELL's document flow and refine marked blocks only. */
#body_wrap.home .l-content.l-container {
  padding-top: 0;
}

#body_wrap.home #post_slider:not(:has(li)) {
  display: none;
}

.home .housekey-hero {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.home .housekey-hero > .swell-block-fullWide__inner {
  width: min(calc(100% - 2rem), 72rem);
  max-width: 72rem;
  margin-inline: auto;
}

.home .housekey-hero__columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
  margin: 0;
}

.home .housekey-hero__copy,
.home .housekey-hero__visual {
  position: static;
  width: auto;
  min-width: 0;
  height: auto;
}

.home .housekey-hero__visual img {
  display: block;
  width: 100%;
  max-width: 28rem;
  height: auto;
  margin-inline: auto;
}

.home .housekey-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.home .housekey-hero__trust li {
  margin: 0;
  color: var(--housekey-navy);
  font-size: var(--housekey-font-size-sm);
  font-weight: 700;
}

.home .housekey-beginner-section > .swell-block-fullWide__inner,
.home .housekey-comparison-section > .swell-block-fullWide__inner {
  width: min(calc(100% - 2rem), 70rem);
  max-width: 70rem;
  margin-inline: auto;
}

.home .housekey-beginner-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2rem);
  align-items: stretch;
  width: 100%;
  max-width: 70rem;
  margin-inline: auto;
}

.home .housekey-beginner-card {
  position: static;
  display: flex;
  flex-direction: column;
  grid-column: auto;
  grid-row: auto;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 0;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid var(--housekey-border-color);
  border-radius: var(--housekey-radius-md);
  background: var(--housekey-white);
  box-shadow: var(--housekey-shadow-subtle);
}

.home .housekey-beginner-card h3 {
  margin-top: 0;
  color: var(--housekey-navy);
  font-size: clamp(1.125rem, 1rem + 0.25vw, 1.3125rem);
}

.home .housekey-beginner-card .housekey-card-link {
  margin-top: auto;
  color: var(--housekey-navy);
  font-weight: 700;
}

.home .housekey-comparison-scroll {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  overflow-x: auto;
  border: 1px solid var(--housekey-border-color);
  border-radius: var(--housekey-radius-md);
  background: var(--housekey-white);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.home .housekey-comparison-scroll table {
  width: 100%;
  margin: 0;
}

.home .housekey-comparison-scroll :is(th, td) {
  word-break: normal;
  overflow-wrap: normal;
}

.home .housekey-comparison-scroll tbody th,
.home .housekey-comparison-scroll td:last-child,
.home .housekey-comparison-scroll td:last-child a { white-space: nowrap; }

.housekey-scroll-hint {
  display: none;
  color: var(--housekey-navy);
  font-size: var(--housekey-font-size-sm);
  font-weight: 700;
  text-align: center;
}

/* Home: editorial discovery and trust sections appended by the child theme. */
.home .housekey-purpose-section,
.home .housekey-articles-section,
.home .housekey-about-section {
  margin-block: 0;
}

.home .housekey-purpose-section {
  background: var(--housekey-white);
}

.home .housekey-articles-section {
  background: var(--housekey-bg);
}

.home .housekey-about-section {
  background: #EFF6FF;
}

.home .housekey-section-kicker {
  margin: 0 0 0.5rem;
  color: #AD5700;
  font-size: var(--housekey-font-size-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.home .housekey-purpose-section .housekey-section-heading,
.home .housekey-articles-section .housekey-section-heading,
.home .housekey-about-section .housekey-section-heading {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  line-height: 1.45;
  text-align: center;
}

.home .housekey-section-lead {
  max-width: 46rem;
  margin: -0.5rem auto 2rem;
  color: #4B5563;
  text-align: center;
}

.home .housekey-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home .housekey-purpose-card {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr) auto;
  gap: 0.875rem;
  align-items: center;
  min-width: 0;
  min-height: 7.25rem;
  padding: 1.125rem;
  border: 1px solid var(--housekey-border-color);
  border-radius: var(--housekey-radius-md);
  background: var(--housekey-white);
  box-shadow: var(--housekey-shadow-subtle);
  color: var(--housekey-text);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home a.housekey-purpose-card:hover {
  border-color: rgb(30 58 138 / 32%);
  box-shadow: 0 8px 24px rgb(31 41 55 / 10%);
  color: var(--housekey-text);
  transform: translateY(-2px);
}

.home .housekey-purpose-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--housekey-navy);
  font-size: 1rem;
  font-weight: 700;
}

.home .housekey-purpose-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.home .housekey-purpose-card__title {
  color: var(--housekey-navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.home .housekey-purpose-card__description {
  color: #4B5563;
  font-size: var(--housekey-font-size-sm);
  line-height: 1.65;
}

.home .housekey-purpose-card__arrow {
  color: #AD5700;
  font-size: 1.25rem;
  font-weight: 700;
}

.home .housekey-purpose-card__status {
  color: #6B7280;
  font-size: 0.75rem;
  white-space: nowrap;
}

.home .housekey-featured-slider {
  min-width: 0;
}

.home .housekey-featured-slider #post_slider {
  display: block;
  margin: 0;
  background: transparent;
}

.home .housekey-featured-slider #post_slider::before {
  display: none;
}

.home .housekey-featured-slider .p-postSlider__inner {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.home .housekey-featured-slider .p-postList__link {
  border-radius: var(--housekey-radius-sm);
  background: var(--housekey-white);
}

.home .housekey-featured-slider .c-postThumb__figure {
  aspect-ratio: 1200 / 630;
  overflow: hidden;
}

.home .housekey-featured-slider .c-postThumb__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home .housekey-featured-slider .p-postList__link > .c-postThumb__img {
  height: auto;
  aspect-ratio: 1200 / 630;
}

.home .housekey-featured-slider .p-postList__title {
  color: var(--housekey-text);
  font-weight: 700;
  line-height: 1.55;
}

.home .housekey-about-card {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgb(30 58 138 / 12%);
  border-radius: var(--housekey-radius-lg);
  background: var(--housekey-white);
  box-shadow: 0 12px 36px rgb(31 41 55 / 8%);
}

.home .housekey-about-card__heading .housekey-section-kicker,
.home .housekey-about-card__heading .housekey-section-heading {
  text-align: left;
}

.home .housekey-about-card__tagline {
  margin: 0;
  color: var(--housekey-navy);
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  font-weight: 700;
  line-height: 1.7;
}

.home .housekey-about-card__copy p {
  margin-block: 0 1rem;
}

.home .housekey-text-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--housekey-tap-target);
  color: var(--housekey-navy);
  font-weight: 700;
  text-underline-offset: 0.25em;
}

/* SWELL header, navigation and footer. */
#header.l-header {
  border-bottom: 1px solid var(--housekey-border-color);
  background-color: var(--housekey-white);
  box-shadow: var(--housekey-shadow-subtle);
  color: var(--housekey-text);
}

#header .c-headLogo,
#header .c-headLogo__link {
  display: inline-flex;
  align-items: center;
}

#gnav .c-gnav > li > a {
  color: var(--housekey-text);
  font-weight: 600;
  line-height: var(--housekey-line-height-tight);
}

#gnav .c-gnav > li > a:hover,
#sp_menu .c-spnav a:hover { color: var(--housekey-navy); }

#header :where(a, button):focus-visible,
#sp_menu :where(a, button):focus-visible,
.l-footer a:focus-visible,
.home .post_content a:focus-visible {
  outline: 2px solid var(--housekey-focus-color);
  outline-offset: 3px;
  box-shadow: var(--housekey-focus-ring);
}

#sp_menu .p-spMenu__inner {
  background-color: var(--housekey-white);
  color: var(--housekey-text);
}

#sp_menu .c-widget__title.-spmenu,
#sp_menu .c-spnav a {
  color: var(--housekey-navy);
  font-weight: 700;
}

.l-footer {
  background-color: var(--housekey-navy);
  color: var(--housekey-white);
}

.l-footer .l-footer__nav a,
.l-footer .copyright { color: var(--housekey-white); }

.l-footer .l-footer__nav a:hover { text-decoration: underline; }

/* Editorial reading aids (Phase 7.1B pilot: HK-009). */
#content[data-postid="175"] .housekey-pr-label,
#content[data-postid="144"] .housekey-pr-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  margin: 0 0 0.75rem;
  padding: 0.2rem 0.65rem;
  border: 1px solid #AD5700;
  border-radius: 999px;
  background: #FFF7ED;
  color: #7A3E00;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.housekey-summary {
  margin-block: 1.75rem 2rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgb(30 58 138 / 18%);
  border-top: 4px solid var(--housekey-navy);
  border-radius: var(--housekey-radius-md);
  background: linear-gradient(135deg, var(--housekey-white), var(--housekey-beige));
  box-shadow: var(--housekey-shadow-subtle);
}

.housekey-summary__label,
.housekey-note__label,
.housekey-next-read__label {
  margin: 0 0 0.625rem;
  color: var(--housekey-navy);
  font-size: var(--housekey-font-size-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.housekey-summary__answer {
  margin: 0 0 0.875rem;
  color: var(--housekey-text);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.65;
}

.housekey-summary__points {
  margin-block: 0.75rem;
  padding-left: 1.4em;
}

.housekey-summary__points li + li { margin-top: 0.45rem; }

.housekey-summary__note {
  margin: 0.875rem 0 0;
  padding-top: 0.875rem;
  border-top: 1px solid rgb(30 58 138 / 14%);
  color: #4B5563;
  font-size: var(--housekey-font-size-sm);
}

.housekey-note {
  margin-block: 1.5rem;
  padding: 1.125rem 1.25rem;
  border: 1px solid #F3D7B3;
  border-left: 4px solid #AD5700;
  border-radius: var(--housekey-radius-sm);
  background: var(--housekey-beige);
}

.housekey-note > :last-child { margin-bottom: 0; }

.housekey-checklist {
  margin-block: 1.25rem 2rem;
  padding: 1.25rem 1.25rem 1.25rem 1.375rem;
  border: 1px solid rgb(30 58 138 / 16%);
  border-radius: var(--housekey-radius-md);
  background: #F8FAFF;
  list-style: none;
}

.housekey-checklist li {
  position: relative;
  padding-left: 1.75rem;
}

.housekey-checklist li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  color: #166534;
  content: "\2713";
  font-weight: 700;
}

.housekey-checklist li + li { margin-top: 0.625rem; }

.housekey-editorial-figure {
  margin-block: 1.75rem 2rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid rgb(30 58 138 / 16%);
  border-radius: var(--housekey-radius-md);
  background: var(--housekey-white);
  box-shadow: var(--housekey-shadow-subtle);
}

.housekey-editorial-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--housekey-radius-sm);
}

.housekey-editorial-figure__paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.housekey-editorial-figure__path {
  padding: 1rem;
  border: 1px solid #DCE4F2;
  border-radius: var(--housekey-radius-sm);
  background: #F8FAFF;
}

.housekey-editorial-figure__path h3 {
  margin: 0 0 0.75rem;
  color: var(--housekey-navy);
  font-size: 1.05rem;
  text-align: center;
}

.housekey-editorial-figure__path ol {
  margin: 0;
  padding-left: 1.4rem;
}

.housekey-editorial-figure__path li + li { margin-top: 0.45rem; }

.housekey-editorial-figure__route-start,
.housekey-editorial-figure__branches {
  display: grid;
  gap: 1rem;
}

.housekey-editorial-figure__route-start {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  counter-reset: housekey-route;
}

.housekey-editorial-figure__route-start li {
  position: relative;
  padding: 1rem 0.75rem;
  border: 1px solid #DCE4F2;
  border-radius: var(--housekey-radius-sm);
  background: #F8FAFF;
  color: var(--housekey-navy);
  font-weight: 700;
  text-align: center;
  counter-increment: housekey-route;
}

.housekey-editorial-figure__route-start li::before {
  display: block;
  margin-bottom: 0.35rem;
  color: #AD5700;
  content: counter(housekey-route);
}

.housekey-editorial-figure__branches { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.housekey-editorial-figure__branch {
  padding: 1rem;
  border: 1px solid #DCE4F2;
  border-top: 4px solid var(--housekey-navy);
  border-radius: var(--housekey-radius-sm);
  background: #FFF;
}

.housekey-editorial-figure__branch h3 {
  margin: 0 0 0.65rem;
  color: var(--housekey-navy);
  font-size: 1.05rem;
}

.housekey-editorial-figure__outcome {
  margin: 1rem 0 0;
  padding: 0.75rem;
  border-radius: var(--housekey-radius-sm);
  background: var(--housekey-navy);
  color: #FFF;
  font-weight: 700;
  text-align: center;
}

.housekey-editorial-figure__flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  counter-reset: housekey-flow;
  list-style: none;
}

.housekey-editorial-figure__flow li {
  position: relative;
  display: grid;
  min-height: 6rem;
  padding: 2.25rem 0.75rem 0.75rem;
  border: 1px solid #DCE4F2;
  border-radius: var(--housekey-radius-sm);
  background: #F8FAFF;
  color: var(--housekey-text);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  counter-increment: housekey-flow;
}

.housekey-editorial-figure__flow li::before {
  position: absolute;
  top: 0.625rem;
  left: 50%;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--housekey-navy);
  color: var(--housekey-white);
  content: counter(housekey-flow);
  font-size: 0.75rem;
  place-items: center;
  transform: translateX(-50%);
}

.housekey-sale-timeline .housekey-editorial-figure__flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.housekey-sale-timeline .housekey-editorial-figure__flow li {
  align-content: start;
  gap: 0.25rem;
}

.housekey-sale-timeline .housekey-editorial-figure__flow li strong {
  color: var(--housekey-navy);
}

.housekey-sale-timeline .housekey-editorial-figure__flow li span {
  font-weight: 400;
}

.housekey-editorial-figure figcaption {
  margin-top: 0.875rem;
  color: #4B5563;
  font-size: var(--housekey-font-size-sm);
  line-height: 1.65;
  text-align: center;
}

.housekey-editorial-figure__note {
  margin: 0.5rem 0 0;
  color: #6B7280;
  font-size: 0.8125rem;
  text-align: center;
}

@media (max-width: 899px) and (min-width: 600px) {
  .housekey-sale-timeline .housekey-editorial-figure__flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.housekey-next-read {
  margin-block: 2.5rem 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--housekey-radius-md);
  background: #EFF4FF;
}

.housekey-next-read__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.housekey-next-read__link {
  display: flex;
  align-items: center;
  min-height: var(--housekey-tap-target);
  padding: 0.875rem 1rem;
  border: 1px solid rgb(30 58 138 / 18%);
  border-radius: var(--housekey-radius-sm);
  background: var(--housekey-white);
  color: var(--housekey-navy);
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}

.housekey-next-read__link::after {
  margin-left: auto;
  padding-left: 0.75rem;
  content: "\2192";
}

.housekey-next-read__link:hover { text-decoration: underline; }

@media (max-width: 599px) {
  #content[data-postid="124"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="96"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="168"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="129"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="170"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="135"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="173"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="141"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="171"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="138"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="175"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="144"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="169"] .post_content > .p-toc .p-toc__childList,
  #content[data-postid="132"] .post_content > .p-toc .p-toc__childList {
    display: none;
  }

  #content[data-postid="124"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="96"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="168"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="129"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="170"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="135"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="173"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="141"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="171"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="138"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="175"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="144"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="169"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8),
  #content[data-postid="132"] .post_content > .p-toc.is-omitted > .p-toc__list > li:nth-child(n + 8) {
    display: none;
  }

  #content[data-postid="124"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="96"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="168"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="129"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="170"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="135"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="173"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="141"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="171"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="138"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="175"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="144"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="169"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7),
  #content[data-postid="132"] .post_content > .p-toc.is-omitted > .p-toc__list > li[data-omit="1"]:nth-child(-n + 7) {
    display: list-item;
  }

  .housekey-summary,
  .housekey-note,
  .housekey-checklist,
  .housekey-editorial-figure,
  .housekey-next-read {
    padding: 1rem;
  }

  .housekey-editorial-figure__flow,
  .housekey-sale-timeline .housekey-editorial-figure__flow {
    grid-template-columns: 1fr;
  }

  .housekey-editorial-figure__paths {
    grid-template-columns: 1fr;
  }

  .housekey-editorial-figure__route-start,
  .housekey-editorial-figure__branches {
    grid-template-columns: 1fr;
  }

  .housekey-editorial-figure__flow li {
    min-height: 0;
    padding: 0.75rem 0.75rem 0.75rem 2.75rem;
    text-align: left;
  }

  .housekey-editorial-figure__flow li::before {
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
  }

  .housekey-next-read__links { grid-template-columns: 1fr; }
}

/* Phase 8.5C: production-only figure readability; no article text changes. */
#content[data-postid="93"] .housekey-sale-timeline .housekey-editorial-figure__flow {
  gap: 6px;
  margin: 0;
  padding: 0;
}

#content[data-postid="93"] .housekey-sale-timeline .housekey-editorial-figure__flow li {
  margin: 0;
  gap: 2px;
  font-size: 13.5px;
  line-height: 1.5;
}

#content[data-postid="93"] .housekey-sale-timeline .housekey-editorial-figure__flow strong {
  font-size: 15px;
  line-height: 1.5;
}

#content[data-postid="93"] .housekey-sale-timeline figcaption,
#content[data-postid="94"] figure[aria-labelledby="housekey-three-prices-title"] figcaption,
#content[data-postid="95"] figure[aria-labelledby="housekey-company-evaluation-title"] figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
}

#content[data-postid="94"] figure[aria-labelledby="housekey-three-prices-title"] .housekey-editorial-figure__route-start {
  gap: 10px;
  margin-bottom: 12px;
  padding: 0;
}

#content[data-postid="94"] figure[aria-labelledby="housekey-three-prices-title"] .housekey-editorial-figure__route-start li {
  margin: 0;
  padding: 12px;
  color: #374151;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
}

#content[data-postid="94"] figure[aria-labelledby="housekey-three-prices-title"] .housekey-editorial-figure__route-start li::before {
  margin-bottom: 2px;
  font-size: 12px;
}

#content[data-postid="94"] figure[aria-labelledby="housekey-three-prices-title"] .housekey-editorial-figure__route-start strong {
  color: var(--housekey-navy);
  font-size: 16px;
  font-weight: 700;
}

#content[data-postid="94"] figure[aria-labelledby="housekey-three-prices-title"] .housekey-editorial-figure__note {
  margin: 12px 0 0;
  color: #4B5563;
  font-size: 13.5px;
  line-height: 1.65;
  text-align: left;
}

#content[data-postid="94"] figure[aria-labelledby="housekey-three-prices-title"] .housekey-editorial-figure__note strong {
  font-weight: 400;
}

#content[data-postid="95"] figure[aria-labelledby="housekey-company-evaluation-title"] .housekey-editorial-figure__paths {
  gap: 12px;
}

#content[data-postid="95"] figure[aria-labelledby="housekey-company-evaluation-title"] .housekey-editorial-figure__path {
  padding: 12px;
  border: 0;
  background: #F8FAFF;
}

#content[data-postid="95"] figure[aria-labelledby="housekey-company-evaluation-title"] h3 {
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

#content[data-postid="95"] figure[aria-labelledby="housekey-company-evaluation-title"] h3::before,
#content[data-postid="95"] figure[aria-labelledby="housekey-company-evaluation-title"] h3::after {
  content: none;
}

#content[data-postid="95"] figure[aria-labelledby="housekey-company-evaluation-title"] .housekey-editorial-figure__path p {
  margin: 8px 0 0;
  color: #4B5563;
  font-size: 14px;
  line-height: 1.6;
}

#content[data-postid="95"] figure[aria-labelledby="housekey-company-evaluation-title"] .housekey-editorial-figure__path p:first-of-type {
  margin-top: 0;
  color: var(--housekey-navy);
  font-size: 15px;
  font-weight: 700;
}

#content[data-postid="95"] figure[aria-labelledby="housekey-company-evaluation-title"] .housekey-editorial-figure__path p strong {
  display: block;
  color: #4B5563;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

#content[data-postid="95"] figure[aria-labelledby="housekey-company-evaluation-title"] .housekey-editorial-figure__path p strong + br {
  display: none;
}

@media (max-width: 599px) {
  #content[data-postid="93"] .housekey-sale-timeline .housekey-editorial-figure__flow li {
    padding: 8px 8px 8px 36px;
  }

  #content[data-postid="93"] .housekey-sale-timeline .housekey-editorial-figure__flow li::before {
    left: 8px;
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

/* Phase 8.6C-0: HK-004 Premium Editorial pilot; staging post 123 + production post 95. */
#content:is([data-postid="123"], [data-postid="95"]) .post_content {
  counter-reset: housekey-chapter;
}

#content:is([data-postid="123"], [data-postid="95"]) .post_content > h2 {
  margin: 64px 0 26px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid #D9D7CF;
  background: none;
  box-shadow: none;
  color: var(--housekey-navy);
  font-size: 24px;
  line-height: 1.6;
  counter-increment: housekey-chapter;
}

#content:is([data-postid="123"], [data-postid="95"]) .post_content > h2::before {
  content: "GUIDE / " counter(housekey-chapter, decimal-leading-zero);
  display: block;
  position: static;
  width: auto;
  height: auto;
  margin: 0 0 12px;
  border: 0;
  background: none;
  color: #786747;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .12em;
}

#content:is([data-postid="123"], [data-postid="95"]) .post_content > h2::after {
  content: none;
}

#content:is([data-postid="123"], [data-postid="95"]) .housekey-premium-bridge {
  margin: 28px 0 24px;
  padding: 0 0 0 18px;
  border-left: 2px solid #B3A07A;
}

#content:is([data-postid="123"], [data-postid="95"]) .housekey-premium-bridge__label {
  margin: 0 0 8px;
  color: #786747;
  font-size: 12px;
  letter-spacing: .1em;
}

#content:is([data-postid="123"], [data-postid="95"]) .housekey-premium-bridge__title {
  margin: 0 0 12px;
  color: var(--housekey-navy);
  font-size: 20px;
  line-height: 1.65;
}

#content:is([data-postid="123"], [data-postid="95"]) .housekey-premium-bridge__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
}

#content:is([data-postid="123"], [data-postid="95"]) figure.housekey-company-premium {
  margin: 28px 0 36px;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid #D9D7CF;
  border-bottom: 1px solid #D9D7CF;
  border-radius: 0;
  background: none;
}

#content:is([data-postid="123"], [data-postid="95"]) figure.housekey-company-premium .housekey-editorial-figure__paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
}

#content:is([data-postid="123"], [data-postid="95"]) figure.housekey-company-premium .housekey-editorial-figure__path {
  min-width: 0;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid #E8E5DC;
  border-radius: 0;
  background: none;
}

#content:is([data-postid="123"], [data-postid="95"]) figure.housekey-company-premium h3 {
  margin: 0 0 12px;
  color: #786747;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

#content:is([data-postid="123"], [data-postid="95"]) figure.housekey-company-premium .housekey-editorial-figure__path p.housekey-company-question {
  margin: 0 0 12px;
  color: var(--housekey-navy);
  font-size: 18px;
  line-height: 1.7;
}

#content:is([data-postid="123"], [data-postid="95"]) figure.housekey-company-premium .housekey-editorial-figure__path p.housekey-company-observe {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

#content:is([data-postid="123"], [data-postid="95"]) figure.housekey-company-premium .housekey-editorial-figure__path p strong {
  margin-bottom: 6px;
  color: #69717B;
  font-size: 12px;
  font-weight: 400;
}

#content:is([data-postid="123"], [data-postid="95"]) .housekey-summary {
  padding: 24px;
  border: 1px solid #E3DFD4;
  border-radius: 4px;
  background: #FAF9F5;
  box-shadow: none;
}

#content:is([data-postid="123"], [data-postid="95"]) .housekey-note {
  margin: 30px 0;
  padding: 18px 20px;
  border: 0;
  border-left: 2px solid #B3A07A;
  border-radius: 0;
  background: #FAF9F5;
}

#content:is([data-postid="123"], [data-postid="95"]) .housekey-checklist {
  padding: 20px 24px;
  border: 1px solid #E3DFD4;
  border-radius: 4px;
  background: #FAF9F5;
}

#content:is([data-postid="123"], [data-postid="95"]) .housekey-next-read {
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid #D9D7CF;
  border-radius: 0;
  background: none;
}

@media (max-width: 767px) {
  #content:is([data-postid="123"], [data-postid="95"]) .post_content > h2 {
    margin: 52px 0 24px;
    font-size: 22px;
  }

  #content:is([data-postid="123"], [data-postid="95"]) figure.housekey-company-premium .housekey-editorial-figure__paths {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  #content:is([data-postid="123"], [data-postid="95"]) .housekey-summary,
  #content:is([data-postid="123"], [data-postid="95"]) .housekey-checklist {
    padding: 20px 18px;
  }
}

/* Phase 8.6D-0: comparison pilot; HK-005 staging/production 154/98; HK-006 151/97 only. */
#content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-premium {
  margin: 24px 0 32px;
  overflow: visible;
  border: 0;
  background: #fff;
}

#content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-premium table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  border: 0;
}

#content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-premium :is(th, td) {
  padding: 14px 12px;
  border: 0;
  border-bottom: 1px solid #e3dfd4;
  background: #fff;
  color: #263747;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

#content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-premium thead th {
  border-top: 2px solid #b3a07a;
  background: #faf9f5;
  color: #102b46;
  font-weight: 600;
}

#content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-premium tbody th {
  color: #102b46;
  font-weight: 600;
}

#content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-premium caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

#content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-label {
  display: none;
}

@media (max-width: 767px) {
  #content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) :is(.housekey-comparison-columns, .housekey-comparison-rows) table {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  #content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) :is(.housekey-comparison-columns, .housekey-comparison-rows) :is(thead, tbody, tr) {
    display: contents;
  }

  #content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-columns :is(th, td) {
    order: var(--hk-order, 0);
  }

  #content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-columns tbody th,
  #content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-columns thead th:first-child,
  #content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-rows thead th {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  #content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-columns thead th:not(:first-child),
  #content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-rows tbody th {
    display: block;
    margin-top: 26px;
    padding: 14px 16px;
    border-top: 2px solid #b3a07a;
    border-bottom: 1px solid #e3dfd4;
    border-radius: 4px 4px 0 0;
    background: #faf9f5;
    font-size: 18px;
    line-height: 1.65;
  }

  #content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) :is(.housekey-comparison-columns, .housekey-comparison-rows) td {
    display: block;
    padding: 11px 16px;
    font-size: 16px;
    line-height: 1.75;
  }

  #content:is([data-postid="154"], [data-postid="98"], [data-postid="151"], [data-postid="97"]) .housekey-comparison-label {
    display: block;
    margin-bottom: 3px;
    color: #626b72;
    font-size: 13px;
    line-height: 1.6;
  }

  #content:is([data-postid="151"], [data-postid="97"]) .housekey-comparison-compact :is(th, td) {
    padding: 13px 10px;
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Phase 8.6E-0: Premium Comparison UI. Staging page 105 + production page 90. */
#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-page {
  font-size: 16px;
  line-height: 1.8;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-page h2 {
  margin-top: 56px;
  margin-bottom: 24px;
  padding: 0 0 16px;
  border-bottom: 1px solid #cfd5da;
  background: transparent;
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.5;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-page h2::after {
  display: none;
}

#content:is([data-postid="105"], [data-postid="90"]) :is(.housekey-assessment-lead, .housekey-assessment-notes) {
  padding: 20px;
  border-left: 2px solid #b8ac93;
  border-radius: 2px;
  background: #f7f7f4;
  font-size: 16px;
  line-height: 1.85;
}

#content:is([data-postid="105"], [data-postid="90"]) :is(.housekey-assessment-card, .housekey-assessment-service) {
  padding: 20px 0;
  border: 0;
  border-top: 1px solid #cfd5da;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#content:is([data-postid="105"], [data-postid="90"]) :is(.housekey-assessment-card, .housekey-assessment-service) h3 {
  padding: 0;
  border: 0;
  font-size: 20px;
  line-height: 1.5;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-table-wrap {
  border-color: #cfd5da;
  border-radius: 2px;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-table-wrap :is(th, td) {
  padding: 16px 12px;
  border: 1px solid #dce0e3;
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-table-wrap thead th {
  background: #eef1f3;
  color: #19364c;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-table-wrap tbody tr:nth-child(even) > * {
  background: #fafbfB;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-mobile-card {
  border: 1px solid #cfd5da;
  border-radius: 3px;
  box-shadow: none;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-mobile-card h3 {
  padding: 16px;
  border: 0;
  border-bottom: 1px solid #cfd5da;
  background: #f3f5f6;
  color: #19364c;
  font-size: 20px;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-mobile-card__body {
  padding: 0 16px 16px;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-mobile-card__row {
  grid-template-columns: 1fr;
  gap: 3px;
  padding: 10px 0;
  border-color: #e0e4e7;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-mobile-card__row dt {
  color: #55616b;
  font-size: 13px;
  font-weight: 400;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-mobile-card__row dd {
  font-size: 16px;
  line-height: 1.7;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-mobile-card__row:first-child dd {
  color: #19364c;
  font-weight: 700;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-service__points {
  gap: 16px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-service__points > div {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-service__points strong {
  color: #55616b;
  font-size: 13px;
  font-weight: 400;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-checklist li {
  margin: 0;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid #e0e4e7;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-checklist li::before {
  top: 16px;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-references {
  padding-top: 20px;
  border-color: #cfd5da;
  color: #55616b;
  font-size: 14px;
  line-height: 1.85;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-detail-link {
  min-height: 44px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
}

#content:is([data-postid="105"], [data-postid="90"]) .housekey-assessment-detail-link:focus-visible {
  outline: 2px solid #19364c;
  outline-offset: 3px;
}

/* Phase 8.6G-0: shared editorial components; staging + production posts 120/93, 121/94, 124/96, 169/132.
   Direct article headings only: figures, CTA cards and next-read remain unchanged. */
#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content {
  counter-reset: housekey-common-chapter;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > h2 {
  margin: 64px 0 26px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid #D9D7CF;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--housekey-navy);
  font-size: 24px;
  line-height: 1.6;
  counter-increment: housekey-common-chapter;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > h2::before {
  content: "GUIDE / " counter(housekey-common-chapter, decimal-leading-zero);
  display: block;
  position: static;
  width: auto;
  height: auto;
  margin: 0 0 12px;
  border: 0;
  background: none;
  color: #786747;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .12em;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > h2::after,
#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > h3::before,
#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > h3::after {
  content: none;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > h3 {
  margin: 40px 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--housekey-navy);
  font-size: 20px;
  line-height: 1.65;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-summary {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid #E3DFD4;
  border-radius: 4px;
  background: #FAF9F5;
  box-shadow: none;
  color: var(--housekey-text);
  font-size: 16px;
  line-height: 1.8;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-summary .housekey-summary__label,
#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-note .housekey-note__label {
  margin: 0 0 12px;
  color: #786747;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .06em;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-summary .housekey-summary__answer {
  font-size: 17px;
  line-height: 1.8;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-summary .housekey-summary__note {
  border-color: #E3DFD4;
  color: #55616B;
  font-size: 14px;
  line-height: 1.8;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-note {
  margin: 30px 0;
  padding: 18px 20px;
  border: 0;
  border-left: 2px solid #B3A07A;
  border-radius: 0;
  background: #FAF9F5;
  box-shadow: none;
  color: var(--housekey-text);
  font-size: 16px;
  line-height: 1.8;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-checklist {
  margin: 24px 0 28px;
  padding: 20px 24px;
  border: 1px solid #E3DFD4;
  border-radius: 4px;
  background: #FAF9F5;
  color: var(--housekey-text);
  font-size: 16px;
  line-height: 1.8;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-checklist > li {
  padding-left: 26px;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-checklist > li + li {
  margin-top: 12px;
}

#content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-checklist > li::before {
  color: #786747;
}

@media (max-width: 767px) {
  #content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > h2 {
    margin: 52px 0 24px;
    font-size: 22px;
  }

  #content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > h3 {
    margin: 32px 0 16px;
    font-size: 18px;
  }

  #content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-summary,
  #content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-checklist {
    padding: 20px 18px;
    font-size: 15.6px;
  }

  #content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-summary .housekey-summary__answer {
    font-size: 16px;
  }

  #content:is([data-postid="120"], [data-postid="121"], [data-postid="124"], [data-postid="169"], [data-postid="93"], [data-postid="94"], [data-postid="96"], [data-postid="132"]) .post_content > .housekey-note {
    font-size: 15.6px;
  }
}
