.bk-resource-section {
  --resource-accent: var(--bk-accent);
  --resource-text: var(--bk-text);
  --resource-muted: #5f6c7b;
  --resource-border: var(--bk-border);
  --resource-soft: var(--bk-surface-soft);
  --resource-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  background: #fff;
  padding: clamp(56px, 7vw, 92px) 5%;
}

.bk-resource-section--topics,
.bk-resource-section--siblings {
  background: #f7f9fc;
}

.bk-resource-section .bk-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.bk-resource-jumpbar {
  position: sticky;
  top: 0;
  z-index: 8;
  padding: 12px 5%;
  border-bottom: 1px solid var(--bk-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.admin-bar .bk-resource-jumpbar {
  top: 32px;
}

.bk-resource-jumpbar .bk-section__inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
  justify-content: center;
}

.bk-resource-jumpbar a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid var(--resource-border, var(--bk-border));
  border-radius: 5px;
  background: #f7f9fc;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.bk-resource-jumpbar a:hover,
.bk-resource-jumpbar a:focus-visible {
  border-color: var(--bk-accent);
  color: var(--bk-accent);
  text-decoration: none;
}

.bk-stop-foreclosure-page section[id] {
  scroll-margin-top: 92px;
}

.bk-resource-header {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.bk-resource-header h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 40px;
  line-height: 1.15;
}

.bk-resource-header p {
  margin: 0;
  color: var(--resource-muted);
  font-size: 18px;
  line-height: 1.65;
}

.bk-resource-answer-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.bk-resource-answer-copy p {
  margin: 0;
  color: var(--resource-muted);
  font-size: 18px;
  line-height: 1.65;
}

.bk-resource-answer-copy p + p {
  margin-top: 16px;
}

.bk-resource-grid {
  display: grid;
  gap: 20px;
}

.bk-resource-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bk-resource-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--resource-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--resource-shadow);
}

.bk-resource-card--current {
  background: #eef3f6;
}

.bk-resource-card h3 {
  margin: 0;
  color: #111827;
  font-size: 23px;
  line-height: 1.25;
}

.bk-resource-card p {
  margin: 0;
  color: var(--resource-muted);
  font-size: 16px;
  line-height: 1.65;
}

.bk-editorial-body,
.bk-editorial-columns {
  max-width: 980px;
  margin: 0 auto;
}

.bk-source-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.bk-editorial-body p,
.bk-editorial-columns p,
.bk-source-list p {
  margin: 0;
  color: var(--resource-muted);
  font-size: 17px;
  line-height: 1.75;
}

.bk-source-list p {
  padding: 14px 0;
  border-bottom: 1px solid var(--resource-border);
  line-height: 1.68;
  text-align: left;
}

.bk-source-list p:last-child {
  border-bottom: 0;
}

.bk-editorial-body p + p,
.bk-editorial-columns p + p {
  margin-top: 18px;
}

.bk-editorial-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}

.bk-editorial-columns > div + div {
  padding-left: clamp(24px, 4vw, 44px);
  border-left: 1px solid var(--resource-border);
}

.bk-editorial-body h3,
.bk-editorial-columns h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 24px;
  line-height: 1.22;
}

.bk-editorial-list,
.bk-cta-question-list {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none !important;
}

.bk-editorial-list {
  display: grid;
  gap: 12px;
}

.bk-editorial-list--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 20px 0;
}

.bk-editorial-list li {
  position: relative;
  padding-left: 22px;
  color: var(--resource-text);
  font-size: 16px;
  line-height: 1.6;
  list-style: none !important;
  list-style-type: none !important;
}

.bk-editorial-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--resource-accent);
}

.bk-editorial-list li::marker,
.bk-cta-question-list li::marker {
  content: "";
}

.bk-risk-check {
  padding-top: 4px;
}

.bk-source-list {
  padding-top: 0;
  border-top: 1px solid var(--resource-border);
}

.bk-source-list strong {
  color: #111827;
}

.bk-region-card {
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.bk-region-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: var(--resource-soft);
}

.bk-region-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
}

.bk-resource-card__link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--resource-accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bk-resource-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--resource-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--resource-shadow);
}

.bk-resource-table {
  width: 100%;
  min-width: 780px;
  margin: 0;
  border-collapse: collapse;
  color: var(--resource-text);
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: normal;
  word-break: normal;
}

.bk-resource-table th,
.bk-resource-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--resource-border);
  vertical-align: top;
  text-align: left;
  overflow-wrap: normal;
  word-break: normal;
}

.bk-resource-table thead th {
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bk-resource-table tbody th {
  width: 22%;
  background: var(--resource-soft);
  color: #111827;
  font-weight: 800;
}

.bk-resource-table tr:last-child th,
.bk-resource-table tr:last-child td {
  border-bottom: 0;
}

.bk-resource-hero-note {
  width: 66%;
  max-width: 720px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.bk-resource-review-line {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.bk-resource-hub-page .bk-hero .hero-cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.bk-resource-hub-page .bk-hero .hero-cta-block .legal-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  padding: 14px 20px;
  border: 2px solid #fff;
  border-radius: 5px;
  background: #fff;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.bk-resource-hub-page .bk-hero .hero-cta-block .legal-hero-button:hover,
.bk-resource-hub-page .bk-hero .hero-cta-block .legal-hero-button:focus-visible {
  background: #eef3f6;
  border-color: #eef3f6;
  color: #111827;
  text-decoration: none;
  transform: translateY(-2px);
}

.bk-resource-hub-page .bk-hero .hero-cta-block .legal-hero-button.secondary-hero-button {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.bk-resource-hub-page .bk-hero .hero-cta-block .legal-hero-button.secondary-hero-button:hover,
.bk-resource-hub-page .bk-hero .hero-cta-block .legal-hero-button.secondary-hero-button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.bk-cost-scenario-list {
  display: grid;
  gap: 16px;
}

.bk-cost-scenario-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.75fr) minmax(0, 1.1fr) minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--resource-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--resource-shadow);
}

.bk-cost-scenario-row h3 {
  margin: 0;
  color: #111827;
  font-size: 20px;
  line-height: 1.25;
}

.bk-cost-scenario-label {
  display: grid;
  gap: 10px;
}

.bk-cost-scenario-summary {
  margin: 0;
  color: var(--resource-muted);
  font-size: 15px;
  line-height: 1.55;
}

.bk-cost-mini-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--resource-border);
}

.bk-cost-mini-list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--resource-border);
}

.bk-cost-mini-list dt {
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.bk-cost-mini-list dd {
  margin: 0;
  color: var(--resource-text);
  font-size: 14px;
  line-height: 1.45;
}

.bk-cost-takeaway {
  margin: 0 !important;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--resource-soft);
  color: var(--resource-text) !important;
}

.bk-cost-comparison-table td {
  width: 34%;
}

.bk-cost-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 24px;
}

.bk-resource-hub-page .bk-feasibility-gate .secondary-hero-button {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.bk-stop-foreclosure-page .bk-attorney-review-section {
  background: #f7f9fc;
  padding-top: clamp(50px, 6vw, 76px);
  padding-bottom: clamp(50px, 6vw, 76px);
}

.bk-stop-foreclosure-page .bk-attorney-review-section .bk-resource-header {
  margin-bottom: 28px;
}

.bk-stop-foreclosure-page .bk-resource-answer-copy,
.bk-stop-foreclosure-page .bk-editorial-body,
.bk-stop-foreclosure-page .bk-source-list {
  max-width: 720px;
  text-align: left;
}

.bk-stop-foreclosure-page .bk-resource-answer-copy p,
.bk-stop-foreclosure-page .bk-editorial-body p,
.bk-stop-foreclosure-page .bk-source-list p {
  line-height: 1.68;
  text-align: left;
}

.bk-stop-foreclosure-page .bk-editorial-columns {
  max-width: 960px;
  text-align: left;
}

.bk-stop-foreclosure-page .bk-editorial-columns h3,
.bk-stop-foreclosure-page .bk-editorial-columns p,
.bk-stop-foreclosure-page .bk-editorial-columns li {
  text-align: left;
}

.bk-stop-foreclosure-page .bk-editorial-columns h3 {
  margin-bottom: 20px;
}

.bk-stop-foreclosure-page .bk-editorial-columns p {
  line-height: 1.68;
}

.bk-stop-foreclosure-page .bk-resource-answer-copy p + p,
.bk-stop-foreclosure-page .bk-editorial-body p + p,
.bk-stop-foreclosure-page .bk-editorial-columns p + p {
  margin-top: 22px;
}

.bk-stop-foreclosure-page .bk-editorial-body p + .bk-editorial-list,
.bk-stop-foreclosure-page .bk-editorial-columns h3 + .bk-editorial-list {
  margin-top: 22px;
}

.bk-stop-foreclosure-page .bk-editorial-list + p {
  margin-top: 30px;
}

.bk-stop-foreclosure-page .bk-editorial-list {
  gap: 14px;
}

.bk-stop-foreclosure-page .bk-editorial-list--split {
  max-width: 760px;
  margin: 24px auto 30px;
  gap: 14px 36px;
}

.bk-stop-foreclosure-page .bk-risk-check .bk-editorial-list--split {
  margin-top: 0;
}

.bk-stop-foreclosure-page .bk-stay-check {
  display: grid;
  max-width: 1060px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--resource-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--resource-shadow);
}

.bk-stop-foreclosure-page .bk-stay-check__main h3,
.bk-stop-foreclosure-page .bk-stay-check__warning h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.18;
}

.bk-stop-foreclosure-page .bk-stay-check__main h3 {
  max-width: 18ch;
  margin-top: 12px;
}

.bk-stop-foreclosure-page .bk-stay-check__main p,
.bk-stop-foreclosure-page .bk-stay-check__warning p {
  margin: 16px 0 0;
  color: #5f6c7b;
  font-size: 17px;
  line-height: 1.68;
}

.bk-stop-foreclosure-page .bk-stay-check__list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
  counter-reset: stay-check;
}

.bk-stop-foreclosure-page .bk-stay-check__list li {
  display: grid;
  position: relative;
  min-height: 76px;
  grid-template-columns: 44px minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--resource-border);
  color: var(--resource-text);
  list-style: none !important;
  list-style-type: none !important;
  counter-increment: stay-check;
}

.bk-stop-foreclosure-page .bk-stay-check__list li:last-child {
  border-bottom: 1px solid var(--resource-border);
}

.bk-stop-foreclosure-page .bk-stay-check__list li::before {
  content: counter(stay-check);
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef3f6;
  color: #324258;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.bk-stop-foreclosure-page .bk-stay-check__list li::marker {
  content: "";
}

.bk-stop-foreclosure-page .bk-stay-check__list strong {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.bk-stop-foreclosure-page .bk-stay-check__list span {
  color: #2f3747;
  font-size: 16px;
  line-height: 1.58;
}

.bk-stop-foreclosure-page .bk-stay-check__warning {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid #dce3ed;
  border-radius: 8px;
  background: #f7f9fc;
}

.bk-stop-foreclosure-page .bk-stay-check__warning .section-micro {
  color: #40506a;
}

.bk-stop-foreclosure-page .bk-stay-check__warning h3 {
  margin-top: 10px;
  font-size: clamp(22px, 2vw, 26px);
}

.bk-stop-foreclosure-page .bk-stay-check__warning p + p {
  margin-top: 18px;
}

.bk-stop-foreclosure-page .bk-doc-checklist {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--resource-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--resource-shadow);
}

.bk-stop-foreclosure-page .bk-doc-checklist__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--resource-border);
}

.bk-stop-foreclosure-page .bk-doc-checklist__top h3 {
  max-width: 16ch;
  margin: 12px 0 0;
  color: #111827;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.16;
}

.bk-stop-foreclosure-page .bk-doc-checklist__top p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #5f6c7b;
  font-size: 17px;
  line-height: 1.68;
}

.bk-stop-foreclosure-page .bk-doc-checklist__status {
  padding: 22px;
  border: 1px solid #dce3ed;
  border-radius: 8px;
  background: #f7f9fc;
}

.bk-stop-foreclosure-page .bk-doc-checklist__status strong,
.bk-stop-foreclosure-page .bk-doc-checklist__status span {
  display: block;
}

.bk-stop-foreclosure-page .bk-doc-checklist__status strong {
  color: #111827;
  font-size: 30px;
  line-height: 1;
}

.bk-stop-foreclosure-page .bk-doc-checklist__status > span {
  margin-top: 8px;
  color: #5f6c7b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.bk-stop-foreclosure-page .bk-doc-checklist__meter {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ebf2;
}

.bk-stop-foreclosure-page .bk-doc-checklist__meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: #324258;
  transition: width 160ms ease;
}

.bk-stop-foreclosure-page .bk-doc-checklist__status button {
  width: 100%;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px solid #c8d2de;
  border-radius: 5px;
  background: #fff;
  color: #2f3747;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.bk-stop-foreclosure-page .bk-doc-checklist__status button:hover,
.bk-stop-foreclosure-page .bk-doc-checklist__status button:focus-visible {
  border-color: #324258;
  color: #111827;
}

.bk-stop-foreclosure-page .bk-doc-checklist__items {
  display: grid;
  gap: 0;
}

.bk-stop-foreclosure-page .bk-doc-checklist__item {
  display: grid;
  position: relative;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--resource-border);
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
}

.bk-stop-foreclosure-page .bk-doc-checklist__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bk-stop-foreclosure-page .bk-doc-checklist__item input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.bk-stop-foreclosure-page .bk-doc-checklist__box {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 2px solid #c8d2de;
  border-radius: 6px;
  background: #fff;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.bk-stop-foreclosure-page .bk-doc-checklist__box::after {
  content: "";
  width: 7px;
  height: 12px;
  margin-top: -2px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.8);
  transition: opacity 160ms ease, transform 160ms ease;
}

.bk-stop-foreclosure-page .bk-doc-checklist__copy {
  display: grid;
  gap: 6px;
}

.bk-stop-foreclosure-page .bk-doc-checklist__copy strong {
  color: #111827;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.bk-stop-foreclosure-page .bk-doc-checklist__copy span {
  color: #5f6c7b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.bk-stop-foreclosure-page .bk-doc-checklist__item:hover .bk-doc-checklist__box {
  border-color: #324258;
}

.bk-stop-foreclosure-page .bk-doc-checklist__item input:focus-visible + .bk-doc-checklist__box {
  border-color: #324258;
  box-shadow: 0 0 0 4px rgba(50, 66, 88, 0.14);
}

.bk-stop-foreclosure-page .bk-doc-checklist__item input:checked + .bk-doc-checklist__box {
  border-color: #324258;
  background: #324258;
}

.bk-stop-foreclosure-page .bk-doc-checklist__item input:checked + .bk-doc-checklist__box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.bk-stop-foreclosure-page .bk-doc-checklist__item input:checked ~ .bk-doc-checklist__copy strong,
.bk-stop-foreclosure-page .bk-doc-checklist__item input:checked ~ .bk-doc-checklist__copy span {
  color: #7a8494;
}

.bk-stop-foreclosure-page .bk-doc-checklist__item input:checked ~ .bk-doc-checklist__copy strong {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #aab4c1;
}

.bk-stop-foreclosure-page .bk-urgent-review-grid {
  gap: 24px;
  margin-top: 0;
  margin-bottom: 24px;
}

.bk-stop-foreclosure-page .bk-urgent-review-card {
  position: relative;
  min-height: 230px;
  gap: 18px;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(209, 216, 226, 0.95);
  border-top: 4px solid #324258;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
}

.bk-stop-foreclosure-page .bk-urgent-review-card::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 0;
  width: 4px;
  height: 64px;
  border-radius: 0 999px 999px 0;
  background: #324258;
}

.bk-stop-foreclosure-page .bk-urgent-review-card .section-micro,
.bk-landing.bk-means-test-page.bk-stop-foreclosure-page .bk-feasibility-gate .bk-urgent-review-card .section-micro {
  color: #40506a;
}

.bk-stop-foreclosure-page .bk-urgent-review-card h3 {
  max-width: 12ch;
  color: #111827;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.14;
}

.bk-stop-foreclosure-page .bk-urgent-review-card p {
  color: #465466;
  font-size: 16px;
  line-height: 1.7;
}

.bk-stop-foreclosure-page .bk-attorney-review-note {
  max-width: 900px;
}

.bk-stop-foreclosure-page .bk-feasibility-gate .bk-resource-card h3 {
  color: #111827;
}

.bk-stop-foreclosure-page .bk-feasibility-gate .bk-resource-card p {
  color: #465466;
}

.bk-stop-foreclosure-page .bk-cta-question-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(248, 250, 252, 0.22);
  border-bottom: 1px solid rgba(248, 250, 252, 0.22);
}

.bk-stop-foreclosure-page .bk-cta-question-list li {
  padding: 18px 24px;
  color: rgba(248, 250, 252, 0.9);
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  list-style: none !important;
  list-style-type: none !important;
}

.bk-stop-foreclosure-page .bk-cta-question-list li + li {
  border-left: 1px solid rgba(248, 250, 252, 0.18);
}

.bk-security-clearance-page section[id] {
  scroll-margin-top: 92px;
}

.bk-security-clearance-page .bk-resource-answer-copy,
.bk-security-clearance-page .bk-editorial-body,
.bk-security-clearance-page .bk-source-list {
  max-width: 760px;
  text-align: left;
}

.bk-security-clearance-page .bk-resource-answer-copy p,
.bk-security-clearance-page .bk-editorial-body p,
.bk-security-clearance-page .bk-source-list p {
  line-height: 1.68;
  text-align: left;
}

.bk-security-clearance-page .bk-editorial-columns {
  max-width: 980px;
  text-align: left;
}

.bk-security-clearance-page .bk-editorial-columns h3,
.bk-security-clearance-page .bk-editorial-columns p,
.bk-security-clearance-page .bk-editorial-columns li {
  text-align: left;
}

.bk-security-clearance-page .bk-editorial-body p + .bk-editorial-list,
.bk-security-clearance-page .bk-editorial-columns h3 + .bk-editorial-list {
  margin-top: 22px;
}

.bk-security-clearance-page .bk-editorial-list + p {
  margin-top: 30px;
}

.bk-security-clearance-page .bk-editorial-list--split {
  max-width: 820px;
  margin: 24px auto 30px;
  gap: 14px 36px;
}

.bk-security-clearance-page .bk-cta-question-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(248, 250, 252, 0.22);
  border-bottom: 1px solid rgba(248, 250, 252, 0.22);
}

.bk-security-clearance-page .bk-cta-question-list li {
  padding: 18px 24px;
  color: rgba(248, 250, 252, 0.9);
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  list-style: none !important;
  list-style-type: none !important;
}

.bk-security-clearance-page .bk-cta-question-list li + li {
  border-left: 1px solid rgba(248, 250, 252, 0.18);
}

@media (max-width: 900px) {
  .bk-stop-foreclosure-page section[id],
  .bk-security-clearance-page section[id] {
    scroll-margin-top: 78px;
  }

  .bk-resource-jumpbar {
    position: static;
  }

  .bk-resource-jumpbar .bk-section__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .bk-resource-jumpbar a {
    width: 100%;
    min-height: 42px;
    padding: 8px 6px;
    font-size: 11px;
  }

  .bk-resource-grid--three {
    grid-template-columns: 1fr;
  }

  .bk-editorial-columns,
  .bk-editorial-list--split,
  .bk-stop-foreclosure-page .bk-cta-question-list,
  .bk-security-clearance-page .bk-cta-question-list {
    grid-template-columns: 1fr;
  }

  .bk-editorial-columns > div + div {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid var(--resource-border);
    border-left: 0;
  }

  .bk-stop-foreclosure-page .bk-stay-check {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .bk-stop-foreclosure-page .bk-stay-check__main h3 {
    max-width: 100%;
  }

  .bk-stop-foreclosure-page .bk-stay-check__list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px 14px;
  }

  .bk-stop-foreclosure-page .bk-stay-check__list li strong {
    padding-top: 4px;
  }

  .bk-stop-foreclosure-page .bk-stay-check__list li span {
    grid-column: 2;
  }

  .bk-stop-foreclosure-page .bk-doc-checklist {
    padding: 24px;
  }

  .bk-stop-foreclosure-page .bk-doc-checklist__top {
    grid-template-columns: 1fr;
  }

  .bk-stop-foreclosure-page .bk-doc-checklist__top h3 {
    max-width: 100%;
  }

  .bk-stop-foreclosure-page .bk-doc-checklist__status {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 16px;
    align-items: center;
  }

  .bk-stop-foreclosure-page .bk-doc-checklist__meter,
  .bk-stop-foreclosure-page .bk-doc-checklist__status button {
    grid-column: 1 / -1;
  }

  .bk-stop-foreclosure-page .bk-doc-checklist__status > span {
    margin-top: 0;
    text-align: right;
  }

  .bk-stop-foreclosure-page .bk-cta-question-list li + li,
  .bk-security-clearance-page .bk-cta-question-list li + li {
    border-top: 1px solid rgba(248, 250, 252, 0.18);
    border-left: 0;
  }

  .bk-cost-scenario-row {
    grid-template-columns: 1fr;
  }

  .bk-resource-hero-note {
    width: 100%;
  }

  .bk-resource-review-line {
    max-width: 100%;
  }

  .bk-resource-hub-page .bk-hero .hero-cta-block .legal-hero-button {
    min-width: 220px;
  }
}

@media (max-width: 640px) {
  .bk-resource-section {
    padding: 48px 22px;
  }

  .bk-resource-card {
    padding: 22px;
  }

  .bk-resource-header h2 {
    font-size: 28px;
  }

  .bk-resource-header p {
    font-size: 16px;
  }

  .bk-resource-card h3 {
    font-size: 20px;
  }

  .bk-cost-scenario-row {
    padding: 20px;
  }

  .bk-cost-scenario-row h3 {
    font-size: 20px;
  }

  .bk-cost-mini-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bk-resource-hub-page .bk-hero .hero-cta-block {
    align-items: stretch;
  }

  .bk-resource-hub-page .bk-hero .hero-cta-block .legal-hero-button {
    width: 100%;
    min-width: 0;
  }
}
