/** CSS Easing functions */ /* Bulma Utilities */
.single-publication .single-heading-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: clamp(1.5rem, 1.1216rem + 1.6145vw, 2.5rem);
}
@media screen and (min-width: 1024px) {
  .single-publication .single-heading-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
