.listchildren {
    margin: 82px auto 96px auto;
    padding: 0 24px;
    width: 100%;
    max-width: 1248px;
    min-height: 400px;
}

.listchildren__headline {
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 36px;
    padding-bottom: 8px;
}

@media all and (min-width: 1264px) {
    .listchildren  {
        margin: 82px auto 96px auto;
    }
}

.listchildren__thumbs {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 48px;
    grid-column-gap: 36px;
  }
  
  .listchildren__thumb__img {
    display: block;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  
  .listchildren__thumb__title {
    color: #262626;
    font-size: 18px;
    line-height: 24px;
  }
  
  .listchildren__thumb__link:hover .listchildren__thumb__title {
    color: #833ac1;
  }
  
  @media only screen and (min-width: 700px) {
    .listchildren__thumbs {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media only screen and (min-width: 1264px) {
    .listchildren__thumbs {
      grid-template-columns: repeat(4, 1fr);
    }
    .listchildren__thumbs .listchildren__thumb:first-child {
      grid-column: 1;
    }
  }