.ces-homeBlog{
  position:relative;
  overflow:hidden;
  padding:90px 0;
  background:linear-gradient(135deg, #c40000 0%, #a90000 55%, #8d0000 100%);
}

.ces-homeBlog:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.10), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.08), transparent 28%);
  pointer-events:none;
}

.ces-homeBlog .ces-container{
  position:relative;
  z-index:2;
}

.ces-homeBlog__head{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.ces-homeBlog__kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.ces-homeBlog__title{
  margin:0 0 16px;
  color:#fff;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.02em;
}

.ces-homeBlog__desc{
  color:rgba(255,255,255,.88);
  font-size:16px;
  line-height:1.8;
}

.ces-homeBlog__desc p{
  margin:0;
}

.ces-homeBlog__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
}

.ces-homeBlogCard{
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.16);
  transition:transform .3s ease, box-shadow .3s ease;
}

.ces-homeBlogCard:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 56px rgba(0,0,0,.20);
}

.ces-homeBlogCard__thumb{
  display:block;
  aspect-ratio:16 / 10;
  background:#f1f1f1;
  overflow:hidden;
}

.ces-homeBlogCard__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}

.ces-homeBlogCard:hover .ces-homeBlogCard__thumb img{
  transform:scale(1.06);
}

.ces-homeBlogCard__placeholder{
  width:100%;
  height:100%;
  background:linear-gradient(135deg, #f4f4f4 0%, #e7e7e7 100%);
}

.ces-homeBlogCard__body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:26px 24px 24px;
}

.ces-homeBlogCard__title{
  margin:0 0 14px;
  font-size:24px;
  line-height:1.3;
  font-weight:900;
  color:#111;
}

.ces-homeBlogCard__title a{
  color:#111;
  transition:color .25s ease;
}

.ces-homeBlogCard__title a:hover{
  color:#b00000;
}

.ces-homeBlogCard__desc{
  margin:0 0 22px;
  color:#5a5a5a;
  line-height:1.8;
  font-size:15px;
}

.ces-homeBlogCard__btn{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-weight:800;
  transition:background .25s ease, transform .25s ease;
  width:max-content;
}

.ces-homeBlogCard__btn:hover{
  background:#c40000;
  transform:translateX(2px);
}

/* reveal */
.ces-homeBlog__reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}

.ces-homeBlog__reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (max-width: 991px){
  .ces-homeBlog{
    padding:72px 0;
  }

  .ces-homeBlog__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:22px;
  }

  .ces-homeBlogCard__title{
    font-size:21px;
  }
}

@media (max-width: 640px){
  .ces-homeBlog{
    padding:58px 0;
  }

  .ces-homeBlog__head{
    margin-bottom:30px;
  }

  .ces-homeBlog__grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .ces-homeBlogCard__body{
    padding:22px 18px 20px;
  }

  .ces-homeBlogCard__title{
    font-size:20px;
  }

  .ces-homeBlog__desc{
    font-size:15px;
  }
}