/*----------------------------------------------------*/
/* @Autor: Nikita Englund
/* Description: Push basic style
/*----------------------------------------------------*/
/* Breakpoints bootstrap */
/* Breakpoints */
.node--type-push {
  width: 100%;
}
.node--type-push > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.node--type-push > a:hover {
  text-decoration: none;
}
.node--type-push .push-image {
  height: 230px;
}
.node--type-push .push-image > div:not(.play) {
  height: 100%;
  width: 100%;
}
.node--type-push .push-image img {
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.node--type-push .push-content {
  background: #F0F3F6;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  min-height: 220px;
  padding: 2rem;
  transition: all 0.5s;
}
.node--type-push .push-content h3 {
  font-size: 1.15rem;
  text-align: center;
  height: 50px;
  /*display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;*/
}
.node--type-push .push-content p {
  height: 4.905rem;
  /* Fallback for non-webkit */
  font-size: 1.09rem;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.node--type-push .push-link {
  margin-top: auto;
}
.node--type-push .push-link button:not(:empty) {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  font-family: "lato", sans-serif;
  font-size: 0.8rem;
  min-width: 120px;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
  transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
}
.node--type-push .push-link button:not(:empty):hover {
  background: #c0cdd9;
  border-color: transparent;
}
.node--type-push.push-large .push-image {
  height: 460px;
}
.node--type-push.push-large .push-image img {
  height: 460px;
}
.node--type-push.push-large .push-content {
  background: transparent;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  min-height: auto;
  height: 180px;
  left: 0;
  right: 0;
  top: 1rem;
}
.node--type-push.push-large .push-content h3 {
  color: #fff;
  font-weight: bold;
  font-size: 1.75rem;
}
.node--type-push.push-large .push-content p {
  display: none;
}
.node--type-push.push-large .push-content .push-link button:not(:empty) {
  color: #fff;
  border-color: #fff;
}

body.page-node-type-push .node--type-push {
  margin: 0 auto;
  max-width: 27rem;
  padding: 9rem 0;
}
body.page-node-type-push .node--type-push.push-large {
  max-width: 40rem;
}