
  .cd-poster {
    display: block;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    text-decoration: none;
    line-height: 0;
    overflow: hidden;
  }
  .cd-poster img {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    transition: transform 0.4s ease;
  }
  .cd-poster:hover img {
    transform: scale(1.02);
  }

  @media (max-width: 768px) {
    .cd-poster {
      max-width: 100%;
    }
  }
