.card__blog-image {
    aspect-ratio: 1.6;
}
.text-green {
    color: rgb(9, 178, 136);
}


.text-container {
  position: relative;
  display: inline-block;
}

.text-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; 
  right: 0;
  height: 100%;
  
  filter: blur(5px);
  z-index: -1; /* behind the text */
  background-color: rgba(0,0,0,0.4);
  border-radius: 8px; /* optional */
}

.text-container span {
  position: relative;
  color: white;
}