@charset "UTF-8";
@media screen and (max-width: 800px) {
  section.topstories {
    padding: 0;
  }
}
section.topstories .wrapper {
  padding: 0 2rem;
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "bigstory smallstories";
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 800px) {
  section.topstories .wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "bigstory" "smallstories";
    gap: 0;
    padding: 0;
  }
}
section.topstories .wrapper .bigstory {
  grid-area: bigstory;
  background-color: #E8F1F2;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 1rem 1rem 1rem;
}
@media screen and (max-width: 800px) {
  section.topstories .wrapper .bigstory {
    margin: 16px 8px 0 8px;
  }
}
section.topstories .wrapper .bigstory article {
  margin-bottom: 0;
}
section.topstories .wrapper .bigstory article a.headline {
  text-decoration: none;
}
section.topstories .wrapper .bigstory article a.headline h3 {
  color: #33415B;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 3rem;
  margin-top: 0.5rem;
  padding-top: 0.0325rem;
  padding-bottom: 0.4675rem;
  margin-bottom: 0.5rem;
}
section.topstories .wrapper .bigstory article a.headline:hover h3 {
  color: #000;
}
section.topstories .wrapper .bigstory article .description p {
  font-size: 1.25rem;
  line-height: 2rem;
  margin-top: 0rem;
  padding-top: 0.01625rem;
  padding-bottom: 0.48375rem;
  margin-bottom: 0.5rem;
}
section.topstories .wrapper .bigstory article .authortime {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-areas: "author date pattern";
  gap: 1ch;
  align-items: center;
  padding-top: 0.5rem;
}
section.topstories .wrapper .bigstory article .authortime:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
  background-color: #A3C2C6;
}
section.topstories .wrapper .bigstory article .authortime .author {
  grid-area: author;
  display: block;
  color: #4a4a4a;
}
section.topstories .wrapper .bigstory article .authortime time {
  grid-area: date;
  display: block;
}
section.topstories .wrapper .bigstory article .authortime time:before {
  content: " — ";
}
section.topstories .wrapper .bigstory article .authortime:after {
  grid-area: pattern;
  content: "";
  display: block;
  height: 18px;
  background-image: url(../svg/dotpattern-graymedium.svg);
  background-repeat: repeat;
  background-position: left top;
  margin-left: 1rem;
  margin-top: 2px;
}
section.topstories .wrapper .smallstories {
  grid-area: smallstories;
  margin-top: 2rem;
}
section.topstories .wrapper .smallstories .buttonholder {
  text-align: right;
}
@media screen and (max-width: 800px) {
  section.topstories .wrapper .smallstories {
    padding: 3rem 1rem 1rem 1rem;
    margin: 0;
  }
  section.topstories .wrapper .smallstories .buttonholder {
    text-align: center;
  }
}
/*# sourceMappingURL=block-top-stories.css.map */
