/* full */
.node--type-journal.node--view-mode-full .node__image {
	box-shadow: var(--theme--box-shadow);
	margin-bottom: 1em;
}

.node--type-journal.node--view-mode-full .node__image img {
	min-width: 100%;
}

.node--type-journal.node--view-mode-full .node__share {
  position: relative;
  padding-top: 2em;
  margin-bottom: 2em;
}
  .node--type-journal.node--view-mode-full .node__share::before {
    content: '';
    width: 100px;
    height: 1px;
    background: var(--theme--color--light);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

.node--type-journal.node--view-mode-full .node__share h4 {
  margin-bottom: 0.5em;
}

.node--type-journal.node--view-mode-full .node__pager {
  padding-top: 2em;
  margin-bottom: 2em;
}

@media (min-width: 992px) {
	.node--type-journal.node--view-mode-full .node__columns {
    display: flex;
    gap: 0 var(--theme--gap);
  }
  
  .node--type-journal.node--view-mode-full .node__column:nth-child(1) {
    width: calc(25% - 1/2 * var(--theme--gap));
  }
  
  .node--type-journal.node--view-mode-full .node__column:nth-child(2) {
    width: calc(75% - 1/2 * var(--theme--gap));
  }
}

/* grid */
.node--type-journal.node--view-mode-grid .node__image {
	box-shadow: var(--theme--box-shadow);
	margin-bottom: 1em;
}

.node--type-journal.node--view-mode-grid .node__image img {
	min-width: 100%;
}

.node--type-journal.node--view-mode-grid h3 {
	margin-bottom: 0;
}

.paragraph--dynamic--recent-journal .node--type-journal.node--view-mode-grid .node__readmore {
  display: none;
}

/* search_result */
.node--type-journal.node--view-mode-search-result .node__type {
  text-transform: uppercase;
  color: var(--theme--color--primary);
  font-size: var(--theme--font-size--tiny);
  font-weight: 600;
}

.node--type-journal.node--view-mode-search-result h3 {
  font-family: var(--theme--font-family--primary);
  color: var(--theme--color--dark);
  font-size: var(--theme--font-size--normal);
  font-weight: 600;
}

.node--type-journal.node--view-mode-search-result h3 a {
  color: currentcolor;
}

.node--type-journal.node--view-mode-search-result .node__excerpt {
  color: var(--theme--color--text);
}

.node--type-journal.node--view-mode-search-result .node__excerpt strong {
  color: var(--theme--color--dark);
}