.image-card-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.image-card-box .image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.image-card-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: scale-animation 20s ease-in-out infinite alternate;
}
.image-card-box .contents {
  padding: 48px 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .image-card-box .contents {
    padding: 96px 0;
    justify-content: end;
  }
}
.image-card-box .contents .card-box {
  display: flex;
  flex-direction: column;
  gap: 48px;
  background: var(--cpn-white-alpha-60);
  backdrop-filter: var(--cpn-blur-80);
  box-shadow: var(--cpn-elevation-5);
  border: 2px solid var(--cpn-default-white);
  border-radius: 16px;
  padding: 24px;
}
@media (min-width: 768px) {
  .image-card-box .contents .card-box {
    padding: 48px;
  }
}
.image-card-box .contents .card-box h2 span {
  color: var(--cpn-orange-300);
}
.image-card-box .contents .card-box .link {
  display: flex;
  flex-direction: column;
}
@keyframes scale-animation {
  from {
    transform: scale(1);
    /* Initial scale (no change) */
  }
  to {
    transform: scale(1.2);
    /* Scale up to 1.5 times its size */
  }
}
