
/* Homepage subject discovery */
.home-subject-section,.home-specialty-section{
  margin-bottom:22px;padding:clamp(22px,3vw,32px);
  border:1px solid #dbe4ef;border-radius:18px;background:#fff;
  box-shadow:0 8px 28px rgba(15,45,101,.055)
}
.home-subject-section{
  background:
    radial-gradient(circle at 92% 8%,rgba(37,99,235,.08),transparent 25%),
    #fff
}
.home-subject-heading{
  display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:20px
}
.home-subject-heading.compact{margin-bottom:16px}
.home-subject-heading h2{margin:0;color:#142d55;font-size:clamp(1.45rem,2.5vw,1.9rem);letter-spacing:-.035em}
.home-subject-heading p:not(.eyebrow){max-width:780px;margin:8px 0 0;color:#65758a;line-height:1.65}
.home-subject-all{flex:0 0 auto;color:#2563eb;text-decoration:none;font-weight:800;font-size:.88rem}
.home-subject-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:11px}
.home-subject-card{
  min-height:76px;display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:12px;align-items:center;
  padding:14px;border:1px solid #dbe4ef;border-radius:14px;background:#fff;color:#203655;text-decoration:none;
  transition:.15s ease
}
.home-subject-card:hover{
  transform:translateY(-2px);border-color:#abc2ef;background:#f8fbff;
  box-shadow:0 9px 22px rgba(37,99,235,.08)
}
.home-subject-icon{
  width:40px;height:40px;display:grid;place-items:center;border-radius:12px;
  background:#edf4ff;color:#2458ac;font-weight:900
}
.home-subject-copy strong{display:block;line-height:1.28}
.home-subject-copy small{display:block;margin-top:4px;color:#748299}
.home-subject-arrow{color:#7890b2;font-weight:900}
.home-subject-note{
  margin-top:17px;padding:12px 14px;border-radius:11px;background:#f7f9fc;color:#66758a;
  font-size:.82rem;line-height:1.55
}
.home-subject-note strong{color:#334b6d}.home-subject-note a{color:#2563eb;font-weight:750;text-decoration:none}

.home-specialty-section{background:linear-gradient(180deg,#fff,#fbfcff)}
.home-specialty-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px}
.home-specialty-grid a{
  display:flex;flex-direction:column;justify-content:center;min-height:68px;padding:12px 14px;
  border:1px solid #dce5f0;border-radius:12px;background:#fff;color:#1f385a;text-decoration:none;
  transition:.15s ease
}
.home-specialty-grid a:hover{border-color:#abc3ef;background:#f7faff;transform:translateY(-1px)}
.home-specialty-grid strong{font-size:.86rem;line-height:1.3}
.home-specialty-grid span{margin-top:5px;color:#718096;font-size:.74rem}

@media(max-width:980px){
  .home-subject-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .home-specialty-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:700px){
  .home-subject-heading{align-items:flex-start;flex-direction:column;gap:9px}
  .home-subject-grid,.home-specialty-grid{grid-template-columns:1fr}
}
