main {
  background: #fff;
  color: #231F20;
}

.author-page {
  padding-top: 242px;
}

.author-profile {
  display: flex;
  justify-content: center;
  gap: 0 33px;
  padding-left: 152px;
}

.author-avatar {
  flex-shrink: 0;
}

.author-bio {
  max-width: 572px;
  padding-top: 13px;
}

.author-avatar img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.author-name {
  font-size: 41px;
  font-weight: 700;
  margin-bottom: 16px;
}

.job-title {
  font-size: 17px;
  font-style: italic;
}

.sep {
  font-size: 17px;
  margin: 0 5px;
}

.linkedin {
  margin-top: 4px;
  display: block;
}

.bottom {
  margin-top: 20px;
  line-height: 25px;
}

.author-email {
  font-size: 17px;
  color: #FC671D;
}

.author-posts h2 {
  font-size: 20px;
  font-weight: 700;
  color: #FC671D;
}

.post .cat {
  display: block;
  color: #77787B;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.post .post-title {
  max-width: 620px;
  letter-spacing: 0;
  display: block;
  color: #595A60;
}

.post .post-title:hover {
  opacity: .3;
}

#posts {
  margin-top: 71px;
  padding-bottom: 76px;
}

#posts .back {
  color: #000;
  text-decoration: underline;
  margin-top: 40px;
}

#posts .inner {
  padding-bottom: 30px;
}

#posts .inner .post:nth-child(1) {
  /* border-top: 1px solid var(--orange); */
}

#posts .post {
  padding: 31px 0;
  border-bottom: 1px solid var(--orange);
  gap: 20px;
}

#posts .post > a {
  flex-basis: 287px;
  flex-shrink: 0;
  height: 129px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  display: grid;
  place-items: center;
}

#posts .post img {
  object-fit: cover;
  width: 100%;
  height: 129px;
  display: block;
}

#posts .post .img.placeholder img {
  height: auto;
  width: auto;
  max-width: 41px;
  max-height: 52px;
}

.loadmore {
  margin-top: 32px;
}

.bottom-cta {
  color: #fff;
}

@media screen and (max-width: 1200px ) {
  .author-profile {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .author-page {
    padding-top: 136px;
  }

  .author-profile {
    flex-direction: column;
  }

  #posts {
    margin-top: 50px;
    padding-bottom: 50px;
  }

  #posts .post {
    flex-direction: column;
    justify-content: start;
  }

  #posts .post * {
    flex-basis: 100%;
    width: 100%;
  }

  .post .post-title {
    max-width: unset;
    font-size: 26px;
  }

  #posts .post > a {
    flex-basis: 129px;
  }
}