/*  Slick references:
       http://kenwheeler.github.io/slick/
       https://www.jqueryscript.net/slider/Fully-Responsive-Flexible-jQuery-Carousel-Plugin-slick.html */

.carousels-content {
    position: relative;
  }
  
  .carousel {
    display: none;
    margin: 0 auto;
    width: 100%;
    max-width: 800px; /* adjust this value as needed */
  }
  
  .carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3em;
  }
  
  .carousel-item a.painting-caption {
    display: block;
    width: 100%;
    font-weight: 600;
    text-align: center;
    line-height: 1.2em;
  }
  
  .carousel-item a.painting-measurements {
    display: block;
    width: 100%;
    font-weight: 100;
    text-align: center;
    line-height: 1.2em;
    padding: 0 0 0.5em 0;
  }
  
  .carousel-item a.sculptures-caption,
  .carousel-item a.drawings-caption {
    display: block;
    width: 100%;
    font-weight: 600;
    text-align: center;
    padding: 0 0 0.5em 0;
  }
  
  .carousel-item a.paintings-copyright,
  .carousel-item a.sculptures-copyright,
  .carousel-item a.drawings-copyright {
    display: block;
    width: 100%;
    font-weight: 100;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2em;
    padding: 5em 0 0 0;
  }
  
  .carousel div:first-child {
    display: block;
  }
  
  .carousel-item {
    font-weight: 400;
    text-align: center;
    -ms-flex-align: center;
    -ms-flex-item-align: center;
  }
  
  .carousel-item.active {
    display: block;
  }
  
  .carousel img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
  
  .about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .about-image-column {
    flex-basis: 30%;
  }
  
  .about-text-column {
    flex-basis: 70%;
  }
  
  .about-image {
    /* flex: 1 1 20%; */
    vertical-align: top;
    min-width: 12em;
    max-width: 16em;
    padding: 2rem 0 2rem 0;
    /* margin: 0 20% 0 0; */
  }
  .about-text {
    /* flex: 1 1 80%; */
    text-align: left;
    vertical-align: top;
    font-size: 1rem;
    padding: 2rem 0 0 0;
  }
    
 /* Screens <= 768px wide */
  @media only screen and (max-width: 600px) {
    .about-section {
      flex-direction: column;
    }
    .about-image-column {
      margin-bottom: 1em;
    }
    .about-image {
      min-width: 14em;
      max-width: 14em;
      margin: 0 auto;
    }
  }

 /* Screens <= 400px wide */
 @media only screen and (max-width: 400px) {
  .about-section {
    flex-direction: column;
  }
  .about-image-column {
    margin-bottom: 1em;
  }
  .about-image {
    min-width: 10em;
    max-width: 10em;
    margin: 0 auto;
  }
}
