/*
@include max($tablet) {
	height: 60px;
}
*/
.pullquote-container .wp-block-pullquote {
  -webkit-clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
          clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  background-color: var(--primary-color-dark);
  padding: 3px;
  margin: 0;
  height: 100%;
  transition: all 0.3s;
}
.pullquote-container .wp-block-pullquote:hover {
  background-color: var(--primary-color);
}
.pullquote-container .wp-block-pullquote blockquote {
  -webkit-clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
          clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  background-color: #fff;
  padding: 30px 50px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pullquote-container .wp-block-pullquote blockquote p {
  margin-bottom: 0;
}
.pullquote-container .wp-block-pullquote blockquote cite {
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--secondary-font);
}