
.text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  z-index: 2;
  transition: transform 0.5s ease-in-out;
  transform: translateY(100%);
}

/*
.slide-out {
  position: relative;
  width: 45%;
  height: 400px;
  background-color: #f2f2f2;
  overflow: hidden;
  padding: 10px;
}
*/

.slide-out {
  position: relative;
  margin: 0 auto;
  width: 80%;
  max-height: 80%;
  background-color: #f2f2f2;
  overflow: auto;
  padding: 60px;
  z-index: 1;
}

.image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease-in-out;
}

.slide-out:hover .image-box img {
  transform: scale(1.1);
}

.slide-out:hover .text-box {
  transform: translateY(0);
}
