.post__image {
  margin-bottom: 3rem;
  transition: all 360ms ease;
}
.post__image:hover,
.post__image:focus {
  transform: scale(1.03);
  box-shadow: 0 0 18px 0 var(--shadow);
}
.post__teaser {
  margin-bottom: 8.4rem;
}
.post__wrapper {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}
.post__profile-image {
  width: 4.8rem;
}
.post__profile-image img {
  margin: 0;
  transition: border 360ms ease;
  border: 2px solid var(--border-color);
  border-radius: 9rem;
}
.post__details {
  width: calc(100% - 4.8rem);
  padding-left: 1.2rem;
  font-size: var(--font-size-2);
}
.post__details .heading--1 {
  margin-bottom: 0;
}
.post__details a {
  font-weight: var(--bold);
  color: var(--link-color);
}
.post__view-more {
  max-width: 24rem;
  margin: 0 1.2rem;
  transition: all 360ms ease;
  background: var(--post-view-more-background);
  border: 0.1rem solid var(--border-color);
  border-radius: 0.6rem;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}
.post__view-more:hover,
.post__view-more:focus {
  transform: scale(1.03);
  box-shadow: 0 0 18px 0 var(--shadow);
}
.post__view-more a {
  height: 100%;
  width: 100%;
  transition: none;
  font-weight: var(--bold);
  font-size: 24px;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
}
.post__view-more a:hover,
.post__view-more a:focus {
  text-decoration: none;
}
.post__view-more a:hover:after,
.post__view-more a:focus:after {
  transform: rotate(-45deg);
}
.post__view-more a:before {
  content: "View More";
  margin-bottom: 1.8rem;
  font-size: var(--font-size-2);
  font-weight: 300;
  display: block;
}
.post__view-more a:after {
  content: "\f057";
  transition: all 360ms ease;
  margin-top: 2.4rem;
  font-family: FontAwesomeR;
  font-size: 2.4rem;
  font-weight: 400;
  display: block;
}
