/**
 * CODA - WPBakery Display Child Pages – grid layout
 */

.child-pages-container {
  display: flex;
  flex-wrap: wrap;
}

.child-page-wrapper {
  background: #eaeaea;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3% 20px 0;
  text-align: center;
}

/* 2 columns */
.child-pages-container.child-pages-cols-2 .child-page-wrapper {
  width: 48.5%;
}

/* 3 columns (default) */
.child-pages-container.child-pages-cols-3 .child-page-wrapper {
  width: 30%;
}

.child-page-wrapper h2 {
  margin: 0;
}

.child-page-wrapper h2 a {
  color: #333;
  font-size: 23px;
  line-height: 1;
  text-decoration: none;
}

.child-pages-container .child-thumb {
  display: block;
}

.child-pages-container .child-thumb img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0.625rem;
}

@media (max-width: 1000px) {
  .child-page-wrapper {
    width: 97%;
  }
}
