/* Filter */
.filter-button {
  width: 20%;
  text-align: center;

  padding: 8px;

  background: #264653;
  color: white;
  border-radius: 4px 4px 4px 4px;

  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.filter-button.active {
  border-radius: 4px 4px 0px 0px;
}

.filter-button.active::after {
  content: " \f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.filter-button::after {
  content: " \f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-left: 4px;
  font-size: 14px;
}

.hidden {
  display: none;
}

.filter-select {
  display: none;
  background: #264653;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 32px;
}

button.filter-select-button {
  padding: 16px;
  background: none;
  outline: none;
  box-shadow: none;
  border: 1px solid white;
  margin-left: 16px;
  color: white;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
button.filter-select-button:hover {
  padding: 16px;
  background: white;
  outline: none;
  box-shadow: none;
  border: 1px solid white;
  margin-left: 16px;
  color: #264653;
  cursor: pointer;
}
select#category-filter {
  padding: 16px;
  margin-left: 16px;
  cursor: pointer;
  width: 50%;
}

.blog-filter {
  margin-bottom: 32px;
}

a.more-link::before {
  content: "Weiterlesen ";
}

.blog-item {
  width: calc(33% - 20px);
  padding: 10px;
  margin: 10px;
  background: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.blog-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

a.post-link {
  color: #264653 !important;
}
a.post-link:hover {
  text-decoration: none !important;
}
img.full-image.wp-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 12px;
}
.blog-content {
  padding: 12px;
}
span.blog-date {
  font-size: 14px;
  color: #e76f51;
  font-family: "Source Sans Pro", sans-serif;
}

.post-title {
  font-size: 22px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}
.blog-image {
  position: relative;
}

span.category-badge {
  background: #264653;
  padding: 8px;
  border-radius: 8px;
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  position: absolute;
  font-size: 14px;

  right: 0;
  margin: 10px;
}

.blog-content p {
  font-size: 14px !important;
  font-family: "Source Sans Pro", sans-serif;
}

@media only screen and (max-width: 860px) {
  .blog-item {
    width: 100%;
  }
}
