/* GAP */
.gutenberg h1,
.gutenberg h2,
.gutenberg h3,
.gutenberg h4,
.gutenberg p,
.gutenberg ul,
.gutenberg hr {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.gutenberg > p {
  padding-bottom: 1rem;
}
.gutenberg > hr {
  height: 1px;
  padding: 40px 0;
  border: 0;
  border-top: 2px dotted #dddddd;
  clear: both;
}
@media (max-width: 991px) {
  .gutenberg h1,
  .gutenberg h2,
  .gutenberg h3,
  .gutenberg h4,
  .gutenberg p,
  .gutenberg ul,
  .gutenberg hr {
    width: 100%;
  }
}



/* TITLE */
.gutenberg h1,
.gutenberg h2 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  margin: 2em 0 1em 0;
  line-height: 1.2;
  font-weight: 800;
  background: linear-gradient(to right, #095c55, #387f77);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.gutenberg h1:after,
.gutenberg h2:after {
  content: '';
  position: absolute;
  bottom: -3px;
  width: 1em;
  height: 1px;
  left: 0;
  background-color: #b0b0b0;
}




/* LINK */
.gutenberg a,
.gutenberg a:visited {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: ink;

  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.gutenberg a:hover,
.gutenberg a:focus {
  color: #ff3265;
  text-decoration: underline;
  outline: none;
}




/* IMAGE */
.gutenberg .wp-block-image {
  position: relative;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  margin: 40px 0;
}
.gutenberg .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
}
.gutenberg .wp-block-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 4px 10px;
  background-color: rgba(0,0,0,.3);
  color: #fff;
  opacity: 0;
  text-align: left;
  font-size: 0.8em;

  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}
.gutenberg .wp-block-image:hover figcaption {
  opacity: 1;
}
@media (max-width: 991px) {
  .gutenberg .wp-block-image figcaption {
    opacity: 1;
  }
}





/* TABLE */
.gutenberg figure.wp-block-table {
  margin: 20px 0;
}
.gutenberg figure.wp-block-table table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  border: 1px solid #ccc;
  text-align: left;
  padding: 0;
  margin: 0;
  font-size: .9em;
}
.gutenberg figure.wp-block-table tr {
  border: 1px solid #ddd;
  padding: .35em;
}
.gutenberg figure.wp-block-table tr:nth-child(odd) {
  background-color: #f3f3f3;
}
.gutenberg figure.wp-block-table td {
  padding: .625em;
  border-left: 1px solid #ddd;
}




/* QUOTE */
.gutenberg blockquote.wp-block-quote {
  background: url(../img/icons/quote.svg) 0 30px no-repeat;
  margin: 0;
  padding: 20px 10%;
  font-size: 1.4em;
  line-height: 1.4;
  color: #bbb;
  text-align: center;
}
.gutenberg blockquote.wp-block-quote cite {
  display: inline-block;
  font-style: inherit;
  font-size: 1rem;
  color: #000;
  background-color: #eee;
  padding: 3px 13px 5px 4px;
  margin: 20px 0;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .gutenberg blockquote.wp-block-quote {
    padding: 20px 0;
    background: none;
  }
}




/* LIST */
.gutenberg ul {
  list-style: none;
  margin-bottom: 1rem;
}
.gutenberg li {
  clear: left;
  background: url(../img/icons/li.svg) .3rem .55rem no-repeat;
  padding-left: 1.2rem;
}



/* GALLERY */
.gutenberg .wp-block-gallery {
  width: 100% !important;
  margin: 40px 0;
}
.gutenberg .wp-block-gallery li.blocks-gallery-item {
  background: none;
  padding: 0;
}
.gutenberg .wp-block-gallery li.blocks-gallery-item img {
  border-radius: 3px;
}
.gutenberg .wp-block-gallery li.blocks-gallery-item figcaption {
  display: none;
}



/* COLUMNS */
.gutenberg .wp-block-columns {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.gutenberg .wp-block-columns .wp-block-column {
  background-color: #eee;
  padding: 2rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}



/* MEDIA-TEXT */
.gutenberg .wp-block-media-text {
  margin: 20px 0;
}
@media (max-width: 991px) {
  .gutenberg .wp-block-media-text {
    display: block;
  }
  .gutenberg .wp-block-media-text .wp-block-media-text__media {
    margin: 10px 0;
  }
  .gutenberg .wp-block-media-text .wp-block-media-text__content {
    margin: 10px 0;
    padding: 0;
  }
}



/* MD - tablet landscape */
@media (max-width: 991px) {

}


/* SM - tablet portrait */
@media (max-width: 767px) {

}