
.ep-blog-section{
  font-family:Arial,sans-serif;
  background:#f8fafc;
  padding:70px 6%;
  color:#0f172a;
}

.ep-blog-container{
  max-width:1280px;
  margin:0 auto;
}

.ep-blog-header{
  text-align:center;
  margin-bottom:42px;
}

.ep-blog-kicker{
  color:#f59e0b;
  font-size:15px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.ep-blog-header h2{
  font-size:42px;
  line-height:1.2;
  margin:0 0 14px;
  color:#0b2545;
}

.ep-blog-header p{
  max-width:760px;
  margin:0 auto;
  font-size:17px;
  line-height:1.7;
  color:#475569;
}

.ep-blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.ep-blog-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(15,23,42,.06);
  transition:all .28s ease;
  text-decoration:none;
  display:block;
  color:inherit;
}

.ep-blog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 38px rgba(15,23,42,.12);
}

.ep-blog-img{
  height:210px;
  background:#eaf1f8;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.ep-blog-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ep-blog-body{
  padding:24px;
}

.ep-blog-tag{
  display:inline-block;
  background:#eef2ff;
  color:#1d4ed8;
  font-size:13px;
  font-weight:700;
  padding:6px 12px;
  border-radius:999px;
  margin-bottom:14px;
}

.ep-blog-body h3{
  font-size:21px;
  line-height:1.35;
  margin:0 0 12px;
  color:#0f172a;
}

.ep-blog-body p{
  font-size:15.5px;
  line-height:1.65;
  color:#475569;
  margin:0 0 18px;
}

.ep-blog-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#0b2545;
  font-weight:700;
  text-decoration:none;
  font-size:15px;
}

.ep-blog-card:hover .ep-blog-link{
  color:#f59e0b;
}

.ep-blog-cta{
  margin-top:42px;
  background:#0b2545;
  border-radius:22px;
  padding:34px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  color:#fff;
}

.ep-blog-cta h3{
  font-size:26px;
  margin:0 0 8px;
}

.ep-blog-cta p{
  margin:0;
  color:#dbeafe;
  font-size:16px;
  line-height:1.6;
}

.ep-blog-cta a{
  background:#f59e0b;
  color:#fff;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}

.ep-blog-cta a:hover{
  background:#d97706;
}

@media(max-width:1024px){
  .ep-blog-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .ep-blog-section{
    padding:48px 18px;
  }

  .ep-blog-header h2{
    font-size:30px;
  }

  .ep-blog-header p{
    font-size:15.5px;
  }

  .ep-blog-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .ep-blog-img{
    height:190px;
  }

  .ep-blog-body{
    padding:22px;
  }

  .ep-blog-cta{
    flex-direction:column;
    align-items:flex-start;
    padding:26px;
  }

  .ep-blog-cta h3{
    font-size:22px;
  }

  .ep-blog-cta a{
    width:100%;
    text-align:center;
  }
}
