.loan-hld{background:#226458;}
.jf-loan-hld-section {
  width: 100%;
  padding: 72px 24px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: sticky;
    top: 0;
}

/* ── Headline ── */
.jf-loan-hld-headline {
  font-family: 'Nohemi', 'Arial', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

/* ── Badge row ── */
.jf-loan-hld-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.jf-loan-hld-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.jf-loan-hld-badge-icon {
  width: 22px;
  height: 22px;
  border: 1.75px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jf-loan-hld-badge-icon svg {
  display: block;
}

/* ── Progress card ── */
.jf-loan-hld-progress-card {
  background-color: #f5f0dc;
    border-radius: 16px;
    padding: 12px 12px;
    display: flex;
    align-items: self-start;
    gap: 10px;
    width: 100%;
    max-width: 420px;
    margin-bottom: 48px;
}

.jf-loan-hld-progress-icon {
  flex-shrink: 0;
  color: #1a1a1a;
}

.jf-loan-hld-progress-text {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
  text-align: left;
}

/* ── Resume link ── */
.jf-loan-hld-resume {
  font-size: 0.9375rem;
  color: #c8c8c8;
  font-weight: 400;
}

.jf-loan-hld-resume-link {
  color: #c8c8c8;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.jf-loan-hld-resume-link:hover, .jf-loan-hld-resume-link:focus {
  color: #ffffff;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .jf-loan-hld-badges {
	gap: 18px;
  }

  .jf-loan-hld-progress-card {
	padding: 18px 20px;
  }
}

@media (max-width: 768px) {
	.jf-loan-hld-section{padding: 22px 0px 20px;}
	.jf-loan-hld-progress-card{margin-bottom: 18px;}

}