.list-gallery-views {
  --columns: 2;
  justify-content: center;
  /* in case there is only one picture */
}
.list-gallery-views article {
  border: none;
  padding: 0px;
}
.list-gallery-views img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.about {
  margin: 70px 0px 140px 0px;
  display: flex;
  column-gap: 24px;
}
.about figure {
  flex: 0 1 40%;
}
.about figure img {
  width: 50%;
}
.about article {
  flex-basis: 60%;
  margin: auto;
}
.about p {
  margin-top: 1em;
  line-height: 26px;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: end;
}

.about h2:after {
  content: "-";
  height: 2px;
  color: transparent;
  background-color: var(--cta-color);
  flex: 1;
  margin-left: 10px;
  position: relative;
  top: -5px;
}


/* .about ul { */
/*   list-style: none; */
/* } */
/* .about ul li { */
/*   padding: 12px; */
/* } */

/* .about ul h3 { */
/*   font-family: 'Playfair Display', serif; */
/*   font-weight: 400; */
/* } */

iframe {
  width: 100%;
  aspect-ratio: 1;
  border: 0;
  filter: grayscale(.8);
}

/* small screens */
@media screen and (max-width: 812px) {
    .about {
        flex-direction: column;
        margin: 60px 0px 0px 0px;
    }
    .about article {
        flex-basis: 100%;
        margin: 0px;
    }
    .list-gallery-views {
        --columns: 1;
    }
}
