.works-block {
    display: grid;
    grid-template-columns: 440px minmax(min-content, 160px) 440px;
    grid-template-areas: "left . right";
    justify-content: center;
    padding: 90px 60px;
    color: #ffffff;
}

.works-block .right {
    padding-top: 140px;
    grid-area: right;
}
.works-block .left {
    padding-bottom: 140px;
    grid-area: left;
}

.works-block .left, .works-block .right {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-gap: 160px;
}

.example {
    max-width: 440px;
}

.example .work-title {
    margin-top: 24px;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
}

.example .work-descr {
    margin-top: 12px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: normal;
}

/* STYLE IMAGES  */

.work-preview {
    height: 280px;
    width: 430px;
    border-radius: 24px;
    opacity: 0;
}

.work-preview.is-visible {
    animation: fade-bottom 1.75s ease-in;
    opacity: 1;
  }

@keyframes fade-bottom {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
  .works-block {
      grid-template-columns: 1fr 1fr;
      grid-template-areas: "left right";
      padding: 90px 0;
      grid-gap: 90px;
    }
    .work-preview {
      width: 100%;
      max-width: 100%;
      height: auto;
  }
}

@media screen and (max-width: 768px) {
  .works-block {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "right";
    padding: 90px 0;
    grid-gap: 90px;
  }
  .works-block .left, .works-block .right {
    grid-gap: 80px;
    padding: 0 24px;
  }
}