.author-element a {
  display: flex;
  flex-direction: column;
}

.author-element a,
.author-element a:hover,
.author-element a:active,
.author-element a:visited,
.author-element a:focus {
  color: inherit;
}

.author-element .author-more-posts {
  margin-bottom: 15px;
}

.author-element .author-more-posts .author-cta-link {
  font-size: 1em;
  transition: background-color 0.5s;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
}

.author-element .author-image img {
  width: 100%;
  height: auto;
  padding-bottom: 0;
  filter: grayscale(100);
  transition: filter 0.5s;
}

.author-element.full-color .author-image img {
  filter: none;
}

.author-element:hover .author-image img {
  filter: grayscale(0);
}

.author-element .author-info {
  padding: 0.7em 0;
}

.author-element .author-info .author-name {
  font-weight: bold;
}

.author-element .bar-container {
  width: 100%;
}

.author-element .bar-container .bar {
  width: 40%;
  border-bottom: 2px solid #000;
}

.author-element .post-date {
  padding-top: 5px;
  font-size: 13px;
  font-style: italic;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .author-element .author-more-posts .author-cta-link {
    font-size: 0.9em;
    padding: 3px 6px;
  }
}

@media screen and (max-width: 991px) {
  .author-element .author-more-posts .author-cta-link {
    font-size: 1em;
    padding: 5px 10px;
  }
  .author-element a {
    flex-direction: row;
    margin-bottom: 15px;
  }
  .author-element .author-info {
    padding-top: 0;
  }
  .author-element .author-image {
    width: 100px;
  }
  .author-element .author-info-container {
    padding-left: 15px;
  }
}

@media screen and (max-width: 300px) {
  .author-element a {
    flex-direction: column;
  }
  .author-element .author-info {
    padding-top: 0.7em;
  }
  .author-element .author-image {
    width: 100%;
  }
  .author-element .author-info-container {
    padding-left: 0;
  }
}
