#menu-page-list-header {
  display: block;
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
}

.menu-page-post-header h6 {
  font-size: 1em;
  text-transform: none;
  font-weight: 200;
  margin-bottom: 0;
  color: #444b4e;
}

.menu-page-post-content h1 {
  margin-top: 15px;
}

#menu-page-posts-header h2 {
  margin-bottom: 5px;
}

.menu-page-posts .post {
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.02);
}
.menu-page-posts .post:hover {
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
}
.menu-page-posts .post .text-holder {
  padding: 10px;
  box-sizing: border-box;
}
.menu-page-posts .post .text-holder h2 {
  margin: 0;
  font-size: 1em;
  line-height: 1.3em;
  color: #0a0a0a;
  text-align: center;
}
.menu-page-posts .post .text-holder p {
  font-weight: 400;
  font-size: 0.88em;
  margin: 8px 0 8px 20px;
}
.menu-page-posts .post .text-holder h5 {
  font-size: 0.8em;
  text-transform: none;
  font-weight: 200;
  text-transform: uppercase;
  color: #444b4e;
  margin: 20px 0 3px 20px;
}
.menu-page-posts .post a:hover h2 {
  color: #a948d3;
}
.menu-page-posts .post .post-date {
  font-size: 0.7em;
  color: #444b4e;
}

.menu-page-posts .read-more {
  display: none;
}

html.mobile .menu-page-posts .post-readmore a:after {
  content: "More";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  float: left;
  background: #aa41d6;
  color: #fff;
  padding: 4px 10px;
  z-index: 100;
  transition: all 1s;
  opacity: 0;
}

html.no-touch .menu-page-posts .post-readmore a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  float: left;
  background: #aa41d6;
  color: #fff;
  padding: 0;
  z-index: 1000;
  transition: all 1s;
  opacity: 0;
  font-size: 2px;
  width: 19px;
  height: 25px;
  background: url(/css/icons/read-more.png);
  background-repeat: no-repeat;
  background-size: 19px 25px;
}

html.no-touch .menu-page-posts .post-readmore a:hover:after {
  transition: all 1s;
  bottom: 0;
  /* opacity: 1; */
  opacity: 0;
}

html.no-touch .menu-page-posts .post-readmore a:hover h2 {
  transition: all 1s;
}

html.no-touch .menu-page-posts .post-readmore a h2 {
  position: relative;
}

.menu-page-posts {
  display: grid;
  grid-template: repeat(5, auto)/1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}

.menu-page-posts .post {
  font-size: 1em;
  margin: 0;
  position: relative;
  width: auto;
  grid-row: span 1;
  grid-column: span 1;
}

.menu-page-post-content figure {
  width: 100% !important;
}

.menu-page-post-content figure img {
  width: 100% !important;
}

.menu-page-posts .post .text-holder p {
  display: none;
}

@media only screen and (max-width: 1350px) {
  .menu-page-posts {
    grid-template: repeat(4, auto)/1fr 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1150px) {
  .menu-page-posts {
    grid-template: repeat(3, auto)/1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 780px) {
  .menu-page-posts {
    grid-template: repeat(3, auto)/1fr 1fr;
  }
}/*# sourceMappingURL=menu-page.css.map */