.single-work figure {
  margin: 24px 0px;
  display: flex;
  width: 100%;
  gap: 24px;
  flex-wrap: nowrap;
  align-items: flex-end;
}

.single-work figure .image-container {
  flex: 0 1 65%;
  box-sizing: border-box;
  background-color: #F1F1F1;
  padding: 3%;
  height: 60vh;
}

.single-work figcaption {
  flex: 0 1 35%;
}

.single-work figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.single-work h2 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 29px;
}

.single-work hr {
  width: 40px;
  height: 4px;
  margin: 8px 0px;
  border: none;
  background-color: var(--cta-color);
}


/* small screens */
@media screen and (max-width: 812px) {
    main figure {
        flex-direction: column;
    }

    main figure figcaption h2 {
        font-size: 22px;
    }

    .single-work figcaption {
        width: 100%;
    }
}
