.social-link {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  margin-right: 2rem;
}
.social-link a {
  max-height: 2rem;
  margin-top: auto;
  margin-bottom: auto;
}
.author-box {
  display: flex;
  flex-direction: column;
  flex-wrap: no-wrap;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border: 2px var(--black) solid;
}
.author-box > a {
  width: 100%;
  height: auto;
}
.author-box__image {
  width: 100%;
  height: auto;
  /*background-color: var(--shade-light);*/
  aspect-ratio: 1;
}
@supports not (aspect-ratio: 1) {
  .author-box__image:before {
    float: left;
    padding-top: 100%;
    content: "";
  }
  .author-box__image:after {
    display: block;
    content: "";
    clear: both;
  }
}
.author-box__image img {
  width: 100%;
  min-height: 23.3rem;
  max-height: 23.3rem;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media only screen and (max-width: 992px) and (orientation: portrait) {
  .author-box__image img {
    max-height: 36.4rem;
  }
}
.author-box__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 1rem;
}
.author-box__inner h5, .author-box__inner h6 {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
}
.author-box__inner a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.writer-box {
  display: flex !important;
  flex-direction: row;
  flex-wrap: no-wrap;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border: 2px var(--black) solid;
}
.writer-box > a {
  background-color: var(--shade-light);
  aspect-ratio: 1;
  width: 20rem;
  height: 20rem;
  border-right: 2px var(--black) solid;
  display: block;
}
.writer-box__image {
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  aspect-ratio: 1;
  width: 20rem;
  height: 20rem;
}
.writer-box__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 0;
}
.writer-box__inner--social {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  padding-top: 1rem;
  padding-left: 2rem;
  margin-bottom: 1rem;
  border-top: 2px var(--black) solid;
}
.writer-box__inner--column {
  height: 100%;
  padding: 1rem 2rem;
}
.writer-box__inner--column li {
  display: inline-flex !important;
}
.writer-box__inner h5 {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  padding: 1rem 2rem;
  border-bottom: 2px var(--black) solid;
}
.writer-box__inner a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.ss-author-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: no-wrap;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  /*border: 2px var(--black) solid;*/
  /*background-color: var(--shade-light);*/
  aspect-ratio: 1;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  /*@include devices(tablet) {
            max-height: 36.4rem;
        }*/
}
@supports not (aspect-ratio: 1) {
  .ss-author-box:before {
    float: left;
    padding-top: 100%;
    content: "";
  }
  .ss-author-box:after {
    display: block;
    content: "";
    clear: both;
  }
}
.ss-author-box__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 1rem;
}
.ss-author-box__inner h5, .ss-author-box__inner h6 {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
}
.ss-author-box__inner a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.contri-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.contri-box h5 {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.contri-box a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.view-more-stories-button-wrap {
  margin-top: 20px;
  text-align: center;
  width: 100%;
}
/* limit display of displayed articles in author detail page stories grid to 6 initially */
#_dynamic_list-1132-37683 > .ct-div-block:nth-child(n+7) {
  display: none;
}
a.tag-link {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
  display: inline-flex !important;
  font-family: 'Oswald';
  font-weight: 400;
  margin: 5px 7px 5px 0;
  padding: 3px 10px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
  width: auto;
}
a.tag-link:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
