/* ── Home Equity Calculator (results-specific styles) ── */

.bs-calculator .hec-description {
  font-size: 14px;
  color: #5A6577;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  max-width: 380px;
}

/* ── LTV Cards ── */
.bs-calculator .hec-cards {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bs-calculator .hec-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid #E4E9ED;
  background: #fff;
}

.bs-calculator .hec-card--primary {
  background: #081C32;
  border-color: #081C32;
}

.bs-calculator .hec-card-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bs-calculator .hec-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #133156;
}

.bs-calculator .hec-card--primary .hec-card-title {
  color: #fff;
}

.bs-calculator .hec-card-subtitle {
  font-size: 12px;
  color: #FFFFFF80;
}

.bs-calculator .hec-card-value {
  font-family: 'Glober', Inter, sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #133156;
}

.bs-calculator .hec-card--primary .hec-card-value {
  font-size: 28px;
  color: #fff;
}

@media (max-width: 768px) {
  .bs-calculator .hec-card-value {
    font-size: 20px;
  }

  .bs-calculator .hec-card--primary .hec-card-value {
    font-size: 24px;
  }
}
