.summary a.feed {
  align-items: center;
  background: var(--color-primary-100);
  border-radius: 6px;
  color: var(--color-primary-700);
  display: inline-flex;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
  padding: 6px;
  position: relative;
  text-decoration: none;
  top: -1px;
  transition: all 0.25s;
}
.summary a.feed:hover {
  background-color: var(--color-primary-300);
  color: var(--color-primary-900);
}
.summary a.feed svg {
  fill: var(--color-primary-700);
  margin-right: 4px;
  transition: all 0.25s;
}
.summary a.feed:hover svg {
  fill: var(--color-primary-900);
}

.item {
  border-left: 4px solid var(--color-neutral-100);
  float: left;
  margin-bottom: 32px;
  margin-right: 32px;
  padding-left: 16px;
  width: calc(20% - 32px);
  transition: border-color 0.25s;
}
.item:hover {
  border-left-color: var(--color-primary-500);
}
.item h3 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  margin: 0 0 10px;
  padding: 0;
}
.item .author,
.item .source,
.item .date {
  font-size: 12px;
}
.item .author {
  font-weight: 700;
}
.item .date {
  color: var(--color-neutral-500);
}
.item a {
  color: var(--color-neutral-900);
  text-decoration: none;
}
.item a:hover {
  color: var(--color-primary-700);
}
.filters {
  background: -moz-linear-gradient(
    top,
    rgba(237, 236, 228, 1) 0%,
    rgba(237, 236, 228, 1) 50%,
    rgba(237, 236, 228, 0) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(237, 236, 228, 1) 0%,
    rgba(237, 236, 228, 1) 50%,
    rgba(237, 236, 228, 0) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(237, 236, 228, 1) 0%,
    rgba(237, 236, 228, 1) 50%,
    rgba(237, 236, 228, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#EDECE4', endColorstr='#00EDECE4',GradientType=0 ); /* IE6-9 */
  margin: -16px 0 -16px;
  padding: 8px 0 48px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
}
.filters:after {
  content: "";
  display: block;
  clear: both;
}
.filters button {
  background: transparent;
  border: 0;
  color: var(--color-neutral-900);
  cursor: pointer;
  float: left;
  font-family: "Switzer";
  font-size: 16px;
  margin: 0 16px 0 0;
  padding: 8px 0;
  transition: color 0.25s;
  -webkit-appearance: none;
}
.filters button:focus {
  outline: none;
}
.filters button:hover {
  color: var(--color-primary-700);
}
.filters button.is-checked {
  cursor: default;
  font-weight: 700;
}
.filters button:hover.is-checked {
  color: var(--color-neutral-900);
}
.filters button:first-of-type:after {
  content: "/";
  margin-left: 16px;
  font-weight: normal;
  color: var(--color-neutral-300);
}

.quote-modal {
  background: rgba(19, 19, 19, .5);
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1001;
}
.quote-modal-wrapper {
  background: var(--color-neutral-50);
  border-radius: 16px;
  border: 1px solid var(--color-neutral-100);
  width: 480px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}
.quote-modal-content {
  padding: 32px;
}
.quote-modal h3 {
  color: var(--color-neutral-700);
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 16px;
}
.quote-modal .author {
  color: var(--color-neutral-900);
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
}
.quote-modal .source {
  color: var(--color-neutral-500);
  font-size: 20px;
  line-height: 160%;
}
.quote-modal .date {
  color: var(--color-neutral-500);
  font-size: 20px;
  line-height: 160%;
}
.quote-modal-close {
  background: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='icon'%3E%3Cg id='close'%3E%3Cpath d='M21.5156 19.9549L20.4549 21.0156L3.48438 4.04507L4.54507 2.98438L21.5156 19.9549Z' fill='%23818181'/%3E%3Cpath d='M4.54454 21.017L3.48463 19.9571L20.4552 2.98657L21.5151 4.04648L4.54454 21.017Z' fill='%23818181'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 50% 50% no-repeat;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: none;
  top: 12px;
  right: 12px;
  cursor: pointer;
  z-index: 1;
}
body.overlay {
  overflow: hidden;
}


@media all and (max-width: 1280px) {
  .item {
    width: calc(25% - 32px);
  }
}
@media all and (max-width: 1024px) {
  .item {
    width: calc(33% - 32px);
  }
  .quote-modal-wrapper {
    width: calc(100vw - 128px);
    max-height: calc(100vh - 32px);
  }
  .quote-modal-content {
    overflow-y: auto;
    max-height: calc(100vh - 32px);
  }
}
@media all and (max-width: 600px) {
  .summary a.feed {
    border-radius: 5px;
    font-size: 12px;
    line-height: 12px;
    padding: 5px;
  }
  .summary a.feed svg {
    height: 12px;
    width: 12px;
  }
  .item {
    margin-right: 0;
    width: 100%;
  }
  .filters {
    margin-right: -24px;
  }
  .filters:before {
    background: -moz-linear-gradient(
      left,
      rgba(237, 236, 228, 0) 0%,
      rgba(237, 236, 228, 1) 50%,
      rgba(237, 236, 228, 1) 100%
    ); /* FF3.6-15 */
    background: -webkit-linear-gradient(
      left,
      rgba(237, 236, 228, 0) 0%,
      rgba(237, 236, 228, 1) 50%,
      rgba(237, 236, 228, 1) 100%
    ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      to right,
      rgba(237, 236, 228, 0) 0%,
      rgba(237, 236, 228, 1) 50%,
      rgba(237, 236, 228, 1) 100%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fbfaf6', endColorstr='#fbfaf6',GradientType=1 ); /* IE6-9 */
    content: "";
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    z-index: 1000;
    pointer-events: none;
  }
  .filters .buttons {
    height: 50px;
    margin-bottom: -16px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .filters .buttons {
    position: relative;
  }
  .filters button {
    display: inline-block;
    float: none;
  }
  .buttons button:last-of-type {
    margin-right: 70px;
  }
  .quote-modal-wrapper {
    width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
  }
  .quote-modal-content {
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }
  .quote-modal h3 {
    font-size: 20px;
  }
  .quote-modal .author, .quote-modal .source, .quote-modal .date {
    font-size: 16px;
  }
}