.article-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 50px;
}
@media (min-width: 1200px) {
  .article-wrapper > .article-item-wrapper:nth-of-type(3n + 1) {
    justify-content: flex-start;
  }
  .article-wrapper > .article-item-wrapper:nth-of-type(3n + 3) {
    justify-content: flex-end;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .article-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .article-wrapper > .article-item-wrapper:nth-of-type(2n + 1) {
    justify-content: flex-start;
  }
}
@media (max-width: 991.98px) {
  .article-wrapper {
    grid-template-columns: 1fr;
  }
}
.article-wrapper > .article-item-wrapper {
  display: flex;
  justify-content: center;
}

.article-item {
  min-height: 453px;
  border-radius: 10px;
  width: 323px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px;
}
.article-item[data-color-scheme=unpublished] {
  color: #ffffff;
  background-color: #E62900;
  border: 1px solid #E62900;
}
.article-item[data-color-scheme=unpublished] .btn {
  background-color: #ffffff;
  color: #E62900;
}
.article-item[data-color-scheme=white] {
  color: #3012AB;
  background-color: #ffffff;
  border: 1px solid #3012AB;
}
.article-item[data-color-scheme=white] .btn {
  background-color: #3012AB;
  color: #ffffff;
}
.article-item[data-color-scheme=blue] {
  color: #ffffff;
  background-color: #3012AB;
  border: 1px solid #ffffff;
}
.article-item[data-color-scheme=blue] .btn {
  background-color: #ffffff;
  color: #3012AB;
}
.article-item[data-color-scheme=dark-beige] {
  color: #3012AB;
  background-color: #FFBB82;
  border: 1px solid #FFBB82;
}
.article-item[data-color-scheme=dark-beige] .btn {
  background-color: #3012AB;
  color: #ffffff;
}
.article-item[data-color-scheme=light-violet] {
  color: #3012AB;
  background-color: #EBE6F7;
  border: 1px solid #EBE6F7;
}
.article-item[data-color-scheme=light-violet] .btn {
  background-color: #3012AB;
  color: #ffffff;
}
.article-item .article-item-publish-date {
  font-size: 16px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 21px;
}
.article-item .article-item-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 15px;
}
.article-item .article-item-teaser {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  flex-grow: 1;
  margin-bottom: 30px;
}

.article {
  margin-top: 75px;
  margin-bottom: 120px;
}
.article img {
  max-width: 100%;
  height: auto;
}

.article-headline-list {
  list-style: none;
  margin: 0;
  padding: 110px 0 0;
}
.article-headline-list li {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #3012AB;
  transition: color 0.3s linear;
  margin-left: 3rem;
  padding-bottom: 1rem;
}
.article-headline-list li:before {
  content: "";
  display: block;
  position: absolute;
  left: -2rem;
  height: 100%;
  width: 3px;
  background-color: rgba(48, 18, 171, 0.1);
}
.article-headline-list li:hover {
  cursor: pointer;
}
.article-headline-list li.active {
  color: #75C3B7;
}
.article-headline-list li.active:before {
  background-color: #75C3B7;
}

.article-top {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}

/*# sourceMappingURL=articles.css.map */
