.newsflash-image {
  position: relative;
  overflow: hidden;
}

.newsflash-image::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* z-index: 3; */
}

.newsflash-image::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 2px solid transparent;
  transform: scaleX(0.9) scaleY(0.9) scaleZ(0.9) translateX(0px) translateY(0px) translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  transform-origin: center center;
  transition: transform 0.3s ease;
  z-index: 1;
  
  
}

.newsflash-image:hover::after {
  border-color: #fff;
  transform: scaleX(1) scaleY(1) scaleZ(1) translateX(0px) translateY(0px) translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.newsflash-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  background-color: #00000007;
  /* z-index: 1; */
}
