/* ============================================================
   APEX BLOG CTA BAND WIDGET — Section 5
   ============================================================ */

.apex-cta{
  font-family:'Public Sans',system-ui,-apple-system,'Segoe UI',sans-serif;
  background:#073762;
  border-radius:16px;
  padding:32px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}

.apex-cta__text{
  min-width:0;
}

.apex-cta__heading{
  margin:0;
  font-family:'Fraunces',Georgia,'Times New Roman',serif;
  font-weight:600;
  color:#fff;
  font-size:clamp(20px,2.2vw,25px);
  line-height:1.25;
}

.apex-cta__desc{
  margin:7px 0 0;
  font-size:14.5px;
  color:#b8cee0;
  line-height:1.55;
}

.apex-cta__btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  color:#073762;
  padding:15px 28px;
  border-radius:10px;
  font-size:14.5px;
  font-weight:700;
  white-space:nowrap;
  text-decoration:none;
  transition:background-color .16s ease,color .16s ease;
}
.apex-cta__btn:hover{
  background:#eaf5fc;
  color:#073762;
}

@media (max-width:768px){
  .apex-cta{ flex-direction:column; align-items:flex-start; padding:28px; }
  .apex-cta__btn{ width:100%; justify-content:center; }
}

@media (max-width:420px){
  .apex-cta{ padding:22px; }
  .apex-cta__heading{ font-size:19px; }
}
