.dome-news-articles-shortcode,
.dome-news-articles-shortcode * {
  box-sizing: border-box;
}

.dome-news-articles-shortcode {
  width: 100%;
  margin: 75px auto 150px;
  color: #808080;
  font-family: "Roboto", "Tahoma", "San Francisco", sans-serif;
}

.dome-news-articles-shortcode > .title,
.dome-news-articles-shortcode > .paragraph {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dome-news-articles-shortcode > .title {
  margin-top: 0;
  margin-bottom: 0;
  color: #808080;
  font-size: 2.65rem;
  font-weight: 300;
  line-height: 1.2;
}

.dome-news-articles-shortcode > .paragraph {
  margin-top: 1rem;
  color: #808080;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
}

.dome-news-articles-shortcode > .title + .list-gallery,
.dome-news-articles-shortcode > .paragraph + .list-gallery {
  margin-top: 75px;
}

.dome-news-articles-shortcode .list-gallery {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1140px;
  margin: 20px auto 15px;
  padding: 0 15px;
  list-style: none;
}

.dome-news-articles-shortcode .list-item,
.dome-news-articles-shortcode .list-title,
.dome-news-articles-shortcode .list-link {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: stretch;
}

.dome-news-articles-shortcode .list-item {
  position: relative;
  flex: 0 0 auto;
  margin: 0 15px 15px 0;
  overflow: hidden;
  background-color: #222;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.dome-news-articles-shortcode .list-item::after {
  display: block;
  padding-top: 100%;
  content: "";
}

.dome-news-articles-shortcode .list-item::before {
  position: absolute;
  inset: 0;
  display: block;
  background-color: #000;
  content: "";
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

.dome-news-articles-shortcode .list-item:hover::before,
.dome-news-articles-shortcode .list-item:focus-within::before {
  opacity: 0.7;
}

.dome-news-articles-shortcode .list-title {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

.dome-news-articles-shortcode .list-link {
  position: absolute;
  inset: 0 0 0 0;
  z-index: 2;
  display: block;
  align-items: flex-start;
  padding: calc(100% - 65px) 40px 0;
  overflow: hidden;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: padding-top 0.2s cubic-bezier(1, 0.02, 0.7, 0.02);
}

.dome-news-articles-shortcode .list-link:hover,
.dome-news-articles-shortcode .list-link:focus {
  padding-top: 40px;
  color: #fff;
  text-decoration: none;
}

.dome-news-articles-shortcode .list-summary {
  position: absolute;
  top: 5rem;
  left: 40px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: calc(100% - 80px);
  height: calc(100% - 5rem - 40px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.52);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.55;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(1, 0.02, 0.7, 0.02);
}

.dome-news-articles-shortcode .list-summary::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3em;
  background: linear-gradient(to bottom, transparent 1%, transparent 40%, #020202 100%);
  content: "";
}

.dome-news-articles-shortcode .list-item:hover .list-summary,
.dome-news-articles-shortcode .list-item:focus-within .list-summary {
  opacity: 1;
}

.dome-news-articles-shortcode .button-bar {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 70px;
}

.dome-news-articles-shortcode .more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  min-height: 70px;
  padding: 0 45px;
  border: 1px solid #808080;
  color: #808080;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dome-news-articles-shortcode .more-button:hover,
.dome-news-articles-shortcode .more-button:focus {
  background-color: #808080;
  color: #fff;
  text-decoration: none;
}

@media only screen and (min-width: 960px) {
  .dome-news-articles-shortcode .list-item {
    flex-basis: calc((100% - 30px) / 3);
    max-width: calc((1140px - 60px) / 3);
    min-width: 300px;
    min-height: 300px;
  }

  .dome-news-articles-shortcode .list-item:nth-child(3n),
  .dome-news-articles-shortcode .list-item:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 37.5em) and (max-width: 960px) {
  .dome-news-articles-shortcode .list-item {
    flex-basis: calc((100% - 15px) / 2);
    min-width: 270px;
  }

  .dome-news-articles-shortcode .list-item:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 37.5em) {
  .dome-news-articles-shortcode {
    margin: 55px auto 100px;
  }

  .dome-news-articles-shortcode > .title,
  .dome-news-articles-shortcode > .paragraph {
    margin-left: 15px;
    margin-right: 15px;
  }

  .dome-news-articles-shortcode > .title {
    font-size: 2rem;
  }

  .dome-news-articles-shortcode > .title + .list-gallery,
  .dome-news-articles-shortcode > .paragraph + .list-gallery {
    margin-top: 45px;
  }

  .dome-news-articles-shortcode .list-item {
    flex-basis: 100%;
    margin-right: 0;
  }

  .dome-news-articles-shortcode .list-link {
    padding-left: 28px;
    padding-right: 28px;
  }

  .dome-news-articles-shortcode .list-summary {
    left: 28px;
    width: calc(100% - 56px);
    font-size: 1rem;
  }

  .dome-news-articles-shortcode .more-button {
    width: calc(100% - 30px);
    min-width: 0;
  }
}
