body {
  background-color: #e1e7eb;
}

/* ==================== Liste ==================== */
.List-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
}

.List-title {
  font-size: 28px;
  color: #006086;
}

.List-detail {
  font-size: 18px;
  color: #697983;
}

.List-link {
  position: relative;
  font-size: 18px;
  color: #008ac6;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}

.List-link::after {
  margin-left: 5px;
  content: '';
  height: 28px;
  width: 28px;
  border-radius: 5px;
  background-color: #fdc729;
  background-image: url('../Images/Icons/arrow.svg');
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
}

.List-link[href$='.pdf']::after {
  background-image: url('../Images/Icons/pdf_line.svg');
  background-size: 18px;
}

@media screen and (max-width: 1024px) {
  .List-item {
    padding: 10px;
  }
}

@media screen and (max-width: 600px) {
  .List-title {
    font-size: 24px;
  }
}

/* ==================== Artikel ==================== */
.Article-wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
  margin: 20px 0;
}

.Article-wrapper::after {
  content: '';
  display: block;
  clear: both;
}

.Article-title {
  font-size: 30px;
  color: #006086;
}

.Article-detail {
  font-size: 18px;
  color: #697983;
}

.Article-image {
  border-radius: 5px;
}

.Article-image img {
  display: block;
}

.Article-image--left {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.Article-image--right {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}

small {
  color: #adc1ce;
}

@media screen and (max-width: 1200px) {
  .Article-wrapper {
    padding: 15px;
  }
}

/* ==================== DocumentList ==================== */
.Document-wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
}

.Document-list {
  position: relative;
  background-color: #f2f5f7;
  color: #008ac6;
  display: flex;
  align-items: center;
  padding: 12px 25px 12px 40px;
  border-radius: 5px;
  margin-top: 5px;
  flex-direction: column;
  align-items: flex-start;
}

.Document-list:first-child {
  margin-top: 0;
}

.Document-list:hover {
  text-decoration: none;
}

.Document {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.Document-title {
  font-size: 18px;
}

.Document-detail {
  display: block;
  color: #697983;
  font-size: 18px;
  margin-top: 15px;
}

.Document-meta {
  color: #697983;
  font-size: 18px;
}

.Document-list::before {
  content: '';
  position: absolute;
  left: 12px;
  width: 25px;
  height: 25px;
  background-image: url('../Images/Icons/globe-solid.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-size: contain;
}

.Document-list[href$='.pdf']::before {
  background-image: url('../Images/Icons/pdf.svg');
}

@media screen and (max-width: 1200px) {
  .Document-wrapper {
    padding: 0px;
  }

  .Document-title,
  .Document-detail {
    margin-left: 40px;
  }

  /* .Document-list span {
    margin-left: 40px;
  }

  .Document-meta span {
    margin-left: 0;
  } */

  .Document-list {
    padding: 10px 0px 12px 0px;
    border-radius: 0;
  }
}

@media screen and (max-width: 600px) {
  .Document-wrapper {
    padding: 5px;
  }

  .Document {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 10px;
  }

  .Document-title,
  .Document-meta {
    margin-left: 45px;
  }
}

/* ==================== Akkordeon ==================== */
.Accordion-wrapper {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 5px;
}

.Accordion-wrapper .Article-wrapper {
  padding: 12px 25px;
  margin: 0;
}

.Accordion-title {
  font-family: DIN;
  font-size: 25px;
  position: relative;
}

.Accordion-wrapper .neos-contentcollection {
  display: none;
}

.Accordion-wrapper.is-active .neos-contentcollection {
  display: block;
  margin-top: 10px;
}

.Accordion-button {
  position: absolute;
  right: 38px;
  height: 30px;
  width: 40px;
  background-color: #ffffff;
  border: none;
  background-image: url('../Images/Icons/accordion_arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

.Accordion-wrapper.is-active .Accordion-button {
  transform: rotate(270deg);
}

@media screen and (max-width: 1200px) {
  .Accordion-wrapper {
    padding: 8px;
  }
  .Accordion-button {
    right: 5px;
    top: 10px;
  }
}
