#main .container {
  max-width: 1600px;
}

.node-author-info-top-block-container {
  display: block;
}

.node-author-info-top-block-container img.author-image-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.article-info p {
  display: flex;
  align-items: center;
  margin: 0;
}

.article-info .status-bar {
  display: inline-block;
  width: 5px;
  height: 30px;
  background-color: rgb(73, 128, 0);
  margin: 0 10px;
}

.article-info .status {
  display: inline-block;
}

.article-info p + p {
  display: block;
  margin-top: 5px;
}

.article-info em {
  font-style: italic;
}

.node-author-info-side-container {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.node-author-info-side-container img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
}

/* contributing authors */
div.contributing-authors-container {
  margin-top: 16px;
}

ul.contributing-authors {
  padding: 0;
}

ul.contributing-authors li {
  margin-bottom: 8px;
  width: 100%;
  list-style-type: none;
}

ul.contributing-authors li a {
  background-color: white;
  display: flex;
  align-items: center;
  box-shadow: 0 .5px 2px rgba(0, 0, 0, .25);
  padding: 16px;
  text-decoration: none;
  gap: 4px;
  transition: .5s;
}

ul.contributing-authors li a:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, .15);
}

ul.contributing-authors li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* black line */
div.top-black-line-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-bottom: 8px;
}

div.top-black-line-container>span {
  font-size: 70px;
  margin-bottom: -26px;
  color: #002200;
  opacity: 0.2;
  font-weight: 900;
}

div.top-black-line {
  width: 100%;
  height: 4px;
  background: black;
}

@media screen and (max-width: 1100px) {
  .node-author-info-top-block-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
    margin-bottom: 32px;
  }
}


@media screen and (max-width: 781px) {
  .node-author-info-top-block-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
