.author-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.author-detail > div:first-child {
  margin-bottom: 1rem;
}
.author-detail > div:first-child img {
  border-radius: 50%;
  border: 1px solid #ccc;
  width: 10rem;
  height: auto;
}
.author-detail > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.author-detail > div:last-child h1 {
  font-size: 2rem;
}
.author-body {
  margin-top: 0.5rem;
}
.author__no-column {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.5rem;
}
.c-card {
  position: relative;
}
.new-badge--overlay {
  position: absolute;
  top: 0;
  /* 既存の .new-badge と組み合わせれば完了 */
  background: linear-gradient(90deg, #ffb500, #ec7c0d);
  color: #fff;
  font-weight: bold;
  z-index: 10;
  font-size: 2rem;
  left: -1rem;
  display: flex;
  align-items: center;
  margin: 0 0.1em 0.6em 0;
  padding: 0.5em;
  line-height: 1;
  text-decoration: none;
  border-radius: 50%;
  /* font-size: 1.6rem; */
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -0.03rem;
}

@media print, screen and (min-width: 560px) {
  .author-detail {
    flex-direction: row;
  }
  .author-detail > div:first-child {
        width: 17%;
  }
  .author-detail > div:last-child {
    width: 83%;
    align-items: start;
  }
  .author-detail > div:last-child h1 {
    font-size: 2.5rem;
  }
  .author-detail > div:first-child img {
    width: 15rem;
  }
  .author__no-column {
    margin-top: 5rem;
  }
}
@media print, screen and (min-width: 960px) {
    .new-badge--overlay {
    font-size: 1.8rem;
    left: -2.8rem;
    width: 5rem;
    height: 5rem;
  }
}
