/* The four contribution cards in Four Ways We Carry a Spark. */
.et_pb_post_content .spark-roles{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  margin:28px 0 34px;
}
.et_pb_post_content .spark-role{
  min-width:0;
  overflow:hidden;
  border:1px solid #dedfdd;
  border-radius:16px;
  background:#f8f7f2;
  box-shadow:0 10px 28px rgba(24,42,77,.08);
}
.et_pb_post_content .spark-role>img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:4/3;
  object-fit:cover;
}
.et_pb_post_content .spark-role__body{padding:22px 24px 26px}
.et_pb_post_content .spark-role__body h3{
  margin:0 0 12px;
  padding:0;
  color:#182a4d;
  font-size:clamp(21px,2vw,26px);
  font-weight:800;
  line-height:1.2;
}
.et_pb_post_content .spark-role__body p{
  margin:0;
  padding:0;
  color:#303b4b;
  font-size:16px;
  line-height:1.65;
}
@media(max-width:700px){
  .et_pb_post_content .spark-roles{grid-template-columns:1fr;gap:20px}
  .et_pb_post_content .spark-role__body{padding:18px 20px 22px}
}
