
.c-section--focus ul {
  padding-left: 0;
}
.c-section--focus li {
  font-size: 2rem;
  list-style: none;
  padding-left: 0;
  border-bottom: 1px solid rgb(230, 230, 230);
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-weight: 200;
}


.c-section--gallery {
  padding-left: 0;
  padding-right: 0;
  
}

.c-section--gallery .carousel {
}

.carousel-cell {
  margin-left: .5rem;
  height: 40vw;
}

.c-section--gallery .carousel img {
  height: 100%;
  width: auto;
}




.home-grid {
  display: grid;
  list-style: none;
  grid-gap: 1.5rem;
  line-height: 0;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: dense;
}
.home-grid li {
  position: relative;
  --cols: 1;
  --rows: 1;

  overflow: hidden;
  background: #000;
  line-height: 0;
}
.home-grid li:first-child {
  --cols: 2;
  --rows: 2;
}
.home-grid li:nth-child(5) {
  --cols: 2;
}
.home-grid li:nth-child(6) {
  --rows: 2;
}
.home-grid li:nth-child(7) {
  --cols: 2;
}
.home-grid a {
  display: block;
  height: 10rem;
}
.home-grid img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.home-grid figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  line-height: 1;
  text-align: center;
  background: rgba(0,0,0, .5);
}

@media screen and (min-width: 45em) {
  .home-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-grid li {
    grid-column-start: span var(--cols);
    grid-row-start: span var(--rows);
  }
  .home-grid a {
    padding-bottom: 52.65%;
  }
}

.flickity-page-dots {
  text-align: left;
  bottom: -20px;
  position: relative;
  max-width: 1320px;
  margin: auto;
  padding-left: 12px;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 20px;
  height: 2px;
  margin: 0 8px;
  background: #333;
  border-radius: 0%;
  opacity: .25;
  cursor: pointer;
  transition: all .5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.dot.is-selected {
  width: 40px;
}