.single-blog{
  max-width: 950px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.climbing-formwork-img-box{
   width: 100%;
  height: 100%;
}

.climbing-formwork-img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

 .key-benefit-ul p{
line-height: 12px;
}

@media (max-width:768px) {
  .key-benefit-ul p{
line-height: 25px;
}
}

.item {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
  transform: scale(1.05);
  box-shadow: 12px 20px 30px rgba(0, 0, 0, 0.25);
}

.item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1.2), transparent 70%);
  border-radius: 16px;
}

.item-desc {
  position: absolute;
  bottom: 15%;
  padding: 20px;
  color: #fff;
  z-index: 2;
  transform: translateY(calc(100% - 60px));
  transition: transform 0.4s ease;
}

.item:hover .item-desc {
  bottom: 0;
  transform: translateY(0);
}

.item-desc p{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.item-desc a{
  opacity: 0;
  color: transparent;
}

.item:hover .item-desc p {
  opacity: 1;
  transform: translateY(0);
  color: #fff;
}

.item:hover .item-desc a{
  opacity: 1;
  transform: translateY(0);
  color: #fff;
}

.item h3 {
  margin: 0 0 10px;
}

@media (max-width: 768px) {
  .item {
    height: 300px;
  }
}
