/* ============================================================
   FinAxis — Calculators hub
   ============================================================ */
.calc-wrap { font-family: "Manrope", sans-serif; color: #1a1a1a; }

.calc-masthead {
  background: linear-gradient(180deg, #f5f8f9 0%, #ffffff 100%);
  padding: 66px 0 40px; text-align: center; border-bottom: 1px solid #e6eaed;
}
.calc-masthead .calc-kicker {
  text-transform: uppercase; letter-spacing: 3px; font-size: 13px; font-weight: 700; color: #0a9646;
}
.calc-masthead h1 { font-family: "DM Serif Text", serif; color: #264653; font-size: 44px; margin: 12px 0 14px; }
.calc-masthead p { color: #6b7785; max-width: 680px; margin: 0 auto; font-size: 17px; line-height: 1.6; }
@media (max-width: 600px) { .calc-masthead h1 { font-size: 32px; } }

.calc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  max-width: 1080px; margin: 46px auto 80px; padding: 0 16px;
}
@media (max-width: 900px) { .calc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid #e6eaed;
  border-radius: 16px; padding: 28px 26px; text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.calc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(38,70,83,.12); border-color: #cfe6da; }
.calc-card-icon {
  width: 56px; height: 56px; border-radius: 14px; background: #eef4f2; color: #0a9646;
  display: inline-flex; align-items: center; justify-content: center; font-size: 27px; margin-bottom: 18px;
}
.calc-card h3 { color: #264653; font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.calc-card p { color: #6b7785; font-size: 14.5px; line-height: 1.55; margin: 0 0 18px; flex: 1; }
.calc-card-link { font-size: 14px; font-weight: 600; color: #0a9646; align-self: flex-start; }
.calc-card-link i { transition: transform .15s ease; }
.calc-card:hover .calc-card-link i { transform: translateX(4px); }

/* "Back to all calculators" link used on each tool page */
.calc-backwrap { max-width: 1100px; margin: 0 auto 50px; padding: 0 20px; }
.calc-back { display: inline-flex; align-items: center; gap: 6px; color: #0a9646; text-decoration: none; font-weight: 600; }

/* Eligibility result helper text */
.emi-results .el-note { font-size: 13px; color: #b8c6cc; margin-top: 6px; }
