.ebd-footer{
  background:#f8fafc;
  border-top:1px solid #e5e7eb;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:#334155;
}

/* MAIN GRID (reduced height) */
.ebd-footer__wrap{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px 28px;   /* ↓ reduced */
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:28px;               /* ↓ reduced */
}

/* BRAND */
.ebd-footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:17px;
  font-weight:600;
  color:#0f172a;
}

/* DESCRIPTION */
.ebd-footer__desc{
  margin-top:10px;        /* ↓ reduced */
  font-size:13.5px;      /* ↓ slightly smaller */
  line-height:1.55;      /* ↓ tighter */
  color:#475569;
  max-width:420px;
}

/* HEADINGS */
.ebd-footer__col h4{
  font-size:14.5px;
  margin-bottom:10px;    /* ↓ reduced */
  color:#0f172a;
}

/* LISTS */
.ebd-footer__col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.ebd-footer__col li{
  margin-bottom:8px;     /* ↓ reduced */
}

.ebd-footer__col a{
  text-decoration:none;
  font-size:13.5px;
  color:#475569;
}

.ebd-footer__col a:hover{
  color:#2563eb;
}

/* SOCIAL ICONS */
.ebd-footer__social{
  display:flex;
  gap:12px;              /* ↓ reduced */
  margin-top:14px;
}

.ebd-footer__social a{
  width:32px;            /* ↓ smaller */
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#ffffff;
  border:1px solid #e5e7eb;
  transition:background .15s ease, transform .15s ease;
}

.ebd-footer__social a:hover{
  background:#f1f5f9;
  transform:translateY(-1px);
}

.ebd-footer__social svg{
  width:16px;
  height:16px;
  fill:#0f172a;
}

/* CTA COLUMN */
.ebd-footer__cta p{
  font-size:13.5px;
  line-height:1.55;
  margin-bottom:12px;    /* ↓ reduced */
}

.ebd-footer__btn{
  display:inline-block;
  background:#2563eb;
  color:#ffffff;
  padding:8px 14px;      /* ↓ reduced */
  border-radius:6px;
  font-size:13.5px;
  text-decoration:none;
  font-weight:500;
}

.ebd-footer__btn:hover{
  background:#1e40af;
}

/* BOTTOM BAR */
.ebd-footer__bottom{
  border-top:1px solid #e5e7eb;
  text-align:center;
  padding:10px 16px;     /* ↓ reduced */
  font-size:12.5px;
  color:#64748b;
}

/* RESPONSIVE */
@media (max-width:900px){
  .ebd-footer__wrap{
    grid-template-columns:1fr;
    padding:36px 20px 24px;
    gap:24px;
  }
}
