body {
  font-family: "Figtree", sans-serif;
}

main {
  padding: calc(var(--header-height) + 3rem) 1rem 4rem 1rem;
  margin: 0 auto;
  max-width: 1024px;
}

div.page-title-outer {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 0 1.25rem;
}

div.page-title-outer h1.page-title {
  font-size: clamp(28px, 5.25vw, 42px);
  color: white;
  padding-bottom: .5rem;
  font-weight: 550;
  font-family: "Figtree", sans-serif;
}

.news-type-title {
  display: flex;
  align-items: center;
  padding-top: 1.75rem;
  padding-bottom: .75rem;
}

.news-type-title h2 {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 600;
  color:var(--color-quiver-white);
}

.news-type-title i {
  margin-right: 0.75rem;
  color: #999cde;
}

.page-title-outer p {
  font-size: clamp(13px, 2.125vw, 17px);
  color: rgb(200, 200, 200);
  line-height: 1.5;
}

.article-alerts {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: .25rem;
}

.subscribe-btn.highlight-first-char::first-letter {
  color: var(--color-quiver-green);
  padding-right: 0.25rem;
}

.unsubscribe-btn.highlight-first-char::first-letter {
  color: var(--color-error-red);
  padding-right: 0.25rem;
}

.article-alerts:not(.highlight-first-char) {
  opacity: .5;
  cursor: initial;
  pointer-events: none;
}

.article-alerts span {
  border-radius: 2px;
  padding: .4rem .75rem;
  background: #1F242D;
  color: rgb(220,220,220);
  font-size: clamp(13px, 1.5vw, 14px);
  transition: all 0.1s ease;
  background-color: transparent;
  white-space: nowrap;
}

.article-alerts span:hover {
  background-color: rgba(28, 33, 40, 1);
  cursor: pointer;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.25rem;
  padding: 1rem 0 1rem;
  border-bottom: 1px solid rgb(40, 40, 40);
  margin: 0 auto;
}

.news-filters a {
  display: inline-block;
  padding: 0.75rem 0 0 0;
  color: rgb(140, 140, 140);
  font-size: clamp(12px, 1.5vw, 13px);
}

.news-filters:first-child a {
  margin-left: 0;
}

.news-filters a:hover {
  color: rgb(170, 170, 170);
}

a.active-news-filter {
  color: rgb(245, 245, 245);
  font-weight: 500;
}

.articles-wrapper {
  padding-bottom: 4rem;
  width: 100%;
}

.article-outer {
  padding: 1.5rem 0;
  border-bottom: 1px solid #282828;
  width: 825px;
  max-width: 100%;
}

.article-outer a.overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}

.article-inner {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  max-width: 100%;
}

.article-inner:hover a.article-headline {
  text-decoration: underline;
}

.article-image-mask {
  position: relative;
  border-radius: 0px;
  min-width: 135px;
  width: 135px;
  height: 135px;
  overflow: hidden;
}

.placeholder-mask {
  background-color: #050505;
}

.article-image-mask a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img.article-image {
  border-radius: 0px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
}

.article-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 1.33rem;
  padding-right: 1rem;
  font-style: normal;
}

.article-headline {
  display: block;
  font-size: 22px;
  color: rgb(250, 250, 250);
  line-height: 1.4;
  font-weight: 550;
}

.article-headline:hover {
  text-decoration: underline;
  text-decoration-thickness: .25px;
}

.article-posted {
  display: block;
  padding: 0.5rem 0 0;
  font-size: clamp(12px, 1.5vw, 12px);
  color: rgb(140, 140, 140);
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
}

.article-preview {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-top: .25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 3rem;
  max-width: 600px;
}

.article-preview h2,
.article-preview p {
  line-height: 1.5;
  font-size: clamp(12px, 1.5vw, 14px);
  color: rgb(170, 170, 170);
}

.article-preview a {
  color: rgb(200,200,200);
  color: var(--color-quiver-green);
}

.article-image.article-placeholder-image {
  width: 83.5px !important;
  height: auto;
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top a {
  margin: 1rem 0 3rem;
  padding: .5rem 1rem;
  border-radius: 2px;
  background-color: #1e1e1e;
  color: rgb(200, 200, 200);
  font-size: 14px;
  font-size: clamp(14px, 1.25vw, 16px);
}

.back-to-top a:hover {
  color: var(--color-quiver-white);
  background-color: #252525;
}

.back-to-top a i {
  margin-right: .25rem;
  color: var(--color-dataset-sec);
}

@media screen and (max-width: 875px) {
  .article-headline {
    font-size: 19px;
  }

  .article-image-mask {
    min-width: 100px;
    width: 100px;
    height: 100px;
  }

  .article-preview {
    -webkit-line-clamp: 1;
  }

  .article-info {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .news-filters {
    padding: .5rem 0 1rem;
  }

  .article-outer {
    width: 100%;
    padding: 1rem 0;
  }

  .article-alerts {
    position: absolute;
    top: -2rem;
    right: 0;
  }

  .article-headline {
    font-size: 14px;
  }

  .article-image-mask {
    min-width: 70px;
    width: 70px;
    height: 70px;
  }

  .article-info {
    padding-left: .75rem;
    padding-right: 0;
  }

  .article-posted {
    padding: 0.5rem 0 0;
    font-weight: 400;
  }

  .article-preview {
    display: none;
  }

  .article-image.article-placeholder-image {
    width: 55px !important;
  }

  .placeholder-mask {
    background-color: #121212;
  }
}

@media screen and (max-width: 350px) {
  .article-image-mask {
    display: none;
  }

  .article-info {
    padding-left: 0;
  }

  .article-headline {
    font-size: 13px;
  }
}