/* /assets/css/calculators.css */

.hc-lead{
  font-weight: 800;
  color: rgba(11,27,42,.80);
}

.hc-muted{
  color: rgba(11,27,42,.70);
  font-weight: 800;
}

.hc-tiny{
  font-size: 12px;
  font-weight: 800;
  color: rgba(11,27,42,.65);
}

.hc-bullets{
  margin: 10px 0 0 18px;
  padding: 0;
  line-height: 1.5;
}
.hc-bullets li{
  margin: 8px 0;
  font-weight: 800;
  color: rgba(11,27,42,.80);
}

/* Form styling */
.hc-form{ margin-top: 8px; }
.hc-form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hc-field{ display:flex; flex-direction:column; gap:6px; }
.hc-field__label{
  font-weight: 900;
  font-size: 13px;
  color: rgba(11,27,42,.85);
}
.hc-field input,
.hc-field select,
.hc-field textarea{
  width:100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(10,30,50,.18);
  background: #fff;
  font-weight: 800;
  outline:none;
}
.hc-field textarea{ resize: vertical; }

.hc-field input:focus,
.hc-field select:focus,
.hc-field textarea:focus{
  border-color: rgba(11,87,163,.55);
  box-shadow: 0 0 0 4px rgba(11,87,163,.12);
}

.hc-form-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top: 12px;
}

/* Buttons for main content (not header pills) */
.hc-btn-primary{
  border:none;
  background: #f3c400;
  color:#0b1b2a;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.hc-btn-primary:hover{ filter: brightness(.98); }

.hc-btn-secondary{
  border: 1px solid rgba(10,30,50,.18);
  background: #fff;
  color:#0b1b2a;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.hc-btn-secondary:hover{
  background: rgba(11,87,163,.06);
}

/* Widget container */
.hc-widget{
  border: 1px dashed rgba(10,30,50,.28);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,.65);
}
.hc-widget__placeholder{
  border-radius: 14px;
  padding: 18px;
  background: rgba(11,87,163,.06);
  font-weight: 900;
  color: rgba(11,27,42,.75);
}

/* Mortgage calc grid helpers (used by mortgage-calculator.php) */
.hc-mc-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

/* Responsive */
@media (max-width: 1040px){
  .hc-form-grid{ grid-template-columns: 1fr; }
  .hc-mc-grid{ grid-template-columns: 1fr; }
}
