.blogtitel {
  font-size: 1em;
}
.blogeintrag {
  grid-column: span 8;
  margin-bottom: 6em;
}
.blogeintrag > header > h2 {
  font-size: 2.5em;
}
.blogeintrag > header > p {
  margin-top: 0;
  padding-top: 0.5em;
}
.blogeintrag > header h2 {
  border-bottom: 1px solid;
}

.author-pic {
  width:4em;
  overflow:visible;
}
.author-pic-big {
  min-width: calc(6.25vw - 1em);
}

.author-pic img {
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.25s;
  display: block;
  width: 3em;
  height: 3em;
  border:2px solid var(--background-off-color);
}

.author-pic img:hover {
  transform: scale(1.25);
}
.blogeintrag p {
  max-width: 50em;
  line-height: 1.7;
}
main.blog aside {
  grid-column: span 4;
}

main.blog aside a {
  /*    border: .1em solid;*/
  border: none;
  display: inline-block;
  padding: 0.3em 1em 0.2em 1em;
  background-color: var(--text-faded-color);
  color: inherit;
  border-radius: 5em;
  margin: 0;
  transition: all 0.1s;
}
main.blog aside a:hover {
  /*    border: .2em solid var(--accent-color-1);*/
  font-weight: bolder;
  background-color: var(--text-faded-active-color);
  color: white;
}

.article-infos {
  display: flex;
  flex-wrap: wrap;
}
.article-infos dl {
  flex-grow: 1;
}

.excerpt > *:not(first-of-type) {
  display: none;
}
.excerpt > *:first-of-type {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
main a.reactions {
  text-decoration: none;
  font-size: 1.5em;
}
.reactions::after {
  content: attr(data-count);
  display: inline-block;
  /*font-family: AvenirNextLTPro-Bold, "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";font-weight: normal;
    letter-spacing: -.015em;*/
  position: relative;
  top: -0.75em;
  margin-left: 0.25em;
  margin-right: 1em;
  font-size: 0.5em;
  transition: color 0.5s;
}
.reactions.increased::after {
  animation: spin 0.25s;
  color: var(--color);
}
.reactions.increased.bummer {
  animation: bummer 0.25s;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bummer {
  0%,
  100% {
    transform: translateX(0em);
  }
  15% {
    transform: translateX(0.5em);
  }
  30% {
    transform: translateX(-0.4em);
  }
  50% {
    transform: translateX(0.25em);
  }
  70% {
    transform: translateX(-0.125em);
  }
}
footer > article {
  margin-bottom: 4em;
}

footer .author-pic {
  margin-right: 6.25vw;
}
footer .author-pic img {
  width: 6.25vw;
  height: 6.25vw;
}
