.page-node-11428 input[type="radio"] {
  position: absolute;
  left: -9999px;
}

.page-node-11428 ol {
  list-style: none;
}


/* FILTERS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.filters {
  text-align: center;
  margin-bottom: 2rem;
}

.filters * {
  display: inline-block;
}

.filters label {
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: .3rem;
  min-width: 50px;
  line-height: normal;
  cursor: pointer;
  transition: all 0.1s;
}

.filters label:hover {
  background: #d00000;
  color: #fff;
}


/* FILTERED ELEMENTS (POSTS)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.posts {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}

.posts .post {
  background-color: #ededed;
  border: 1px solid #ccc;
border-radius: 4px;
}

.posts .post-title {
  font-size: 1rem;
margin-bottom: 0;
}

/*
.posts .post-title:hover {
  text-decoration: underline;
}
*/

.posts figcaption {
  padding: 1rem;
color: inherit;
}

.posts .post-categories {
  margin-bottom: 0;
  font-size: 0.75rem;
margin-left: -1.3rem;
}

.posts .post-categories * {
  display: inline-block;
}

.posts .post-categories li {
  margin-bottom: 0;
padding: 0.4rem;
  border-radius: .3rem;
  background-color: #005d84;
  line-height: normal;
  transition: all 0.1s;
color: #fff;
}

/* .posts .post-categories a {
  padding: 0.2rem 0.5rem;
  border-radius: .3rem;
  background-color: #ededed;
  line-height: normal;
  transition: all 0.1s;
text-decoration: none;
} 

.posts .post-categories a:hover {
  background: var(--green);
  color: var(--white);
} */


/* FILTERING RULES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
[value="All"]:checked ~ .filters [for="All"],
[value="Topic1"]:checked ~ .filters [for="Topic1"],
[value="Topic2"]:checked ~ .filters [for="Topic2"],
[value="Topic3"]:checked ~ .filters [for="Topic3"],
[value="Topic4"]:checked ~ .filters [for="Topic4"],
[value="Topic5"]:checked ~ .filters [for="Topic5"],
[value="Topic6"]:checked ~ .filters [for="Topic6"] {
  background: #d00000;
  color: #fff;
}

[value="All"]:checked ~ .posts [data-category] {
  display: block;
}

[value="Topic1"]:checked ~ .posts .post:not([data-category~="Topic1"]),
[value="Topic2"]:checked ~ .posts .post:not([data-category~="Topic2"]),
[value="Topic3"]:checked ~ .posts .post:not([data-category~="Topic3"]),
[value="Topic4"]:checked ~ .posts .post:not([data-category~="Topic4"]),
[value="Topic5"]:checked ~ .posts .post:not([data-category~="Topic5"]),
[value="Topic6"]:checked ~ .posts .post:not([data-category~="Topic6"]) {
  display: none;
}



/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 900px) {
 .page-node-11428 .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 650px) {

.page-node-11428 .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}