.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome and Opera */
}

.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

.hyphens {
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.force-unlimited-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.force-full-width {
  width: 100vw;
  margin-left: calc(50% - 720px);
  max-width: 1440px;
}
@media screen and (max-width: 1440px) {
  .force-full-width {
    margin-left: calc(50% - 50vw);
  }
}

.has-max-width {
  max-width: var(--maxWidth);
  margin: 0 auto;
}

.has-content-max-width {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.publication-item-container {
  width: 100%;
  border-radius: 4px;
  background: white;
  padding: 16px;
  border: 1px solid var(--black-10-fade);
  text-decoration: none;
  overflow: hidden;
}
.publication-item-container.has-link {
  position: relative;
}
.publication-item-container.has-link::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 100%;
  background: var(--green-accent);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  pointer-events: none;
  z-index: 1000;
}
.publication-item-container.has-link:hover::before {
  opacity: 1;
}
.publication-item-container.has-link .publication-item-title {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.publication-item-container .publication-item-title {
  font-family: var(--s6-fontFamily), sans-serif;
  font-weight: var(--s6-fontWeight);
  font-size: var(--s6-fontSize);
  line-height: var(--s6-lineHeight);
  color: var(--green-80);
  margin: 0;
}
.publication-item-container .publication-item-excerpt {
  font-family: var(--paragraph-FontFamily), sans-serif;
  font-weight: var(--paragraph-FontWeight);
  font-size: var(--paragraph-FontSize);
  line-height: var(--paragraph-LineHeight);
  letter-spacing: var(--paragraph-LetterSpacing);
  color: var(--black-100);
  margin: 4px 0 0 0;
}
.publication-item-container .publication-item-meta {
  font-family: var(--paragraphXSmall-FontFamily), sans-serif;
  font-weight: var(--paragraphXSmall-FontWeight);
  font-size: var(--paragraphXSmall-FontSize);
  line-height: var(--paragraphXSmall-LineHeight);
  color: var(--black-100);
  margin-top: 12px;
}
.publication-item-container .publication-item-source {
  font-family: var(--paragraphXSmall-FontFamily), sans-serif;
  font-weight: var(--paragraphXSmall-FontWeight);
  font-size: var(--paragraphXSmall-FontSize);
  line-height: var(--paragraphXSmall-LineHeight);
  color: var(--black-70);
  padding-top: 2px;
}

/*# sourceMappingURL=publication-item.css.map */
