.author-detail {
  color: #ffffff;
  padding: 38px 0 70px;
}

.author-detail .mb-b01__container {
  margin: 116px 0 0;
}

.author-card {
  border: 1px solid rgba(255, 255, 255, 0.41);
  border-radius: 40px;
  padding: 45px;
  background: linear-gradient(98deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.author-card__header {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.author-card__photo {
  overflow: hidden;
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: 24px;
  background: #ffffff;
}

.author-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card__intro {
  display: flex;
  flex-direction: column;
}

.author-card__title {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 51px;
}

.author-card__position {
  max-width: 90%;
  margin-top: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.author-card__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.50);
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
}

.author-card__badge sup {
  top: .09em;
  margin-left: 3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.author-card__body {
  overflow: hidden;
  padding: 32px 40px;
  border: 3px solid rgba(0, 0, 0, 0.00);
  border-radius: 32px;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.25;
}

.author-card__body p,
.author-card__body li {
  color: #000000;
}

.author-card__body h2 {
  position: relative;
  margin-bottom: 16px;
  padding: 20px 0 0 10px;
  color: #005caa;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.author-card__body h2::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 2px;
  height: 22px;
  border-radius: 2px;
  background: #ffa800;
}

.author-card__body p {
  margin: 0 0 12px;
}

.author-card__body ul {
  padding: 0;
  list-style: none;
}

.author-card__body ul:not(:last-child) {
  margin: 0 0 24px;
}

.author-card__body li {
  position: relative;
  margin-top: 16px;
  padding-left: 18px;
}

.author-card__body li:first-child {
  margin-top: 0;
}

.author-card__body li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Ccircle cx='4' cy='4' r='3' stroke='%23A2B948' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateY(-50%);
}

.author-detox-banner {
  margin-top: 50px;
}

.author-detox-banner__image img {
  display: block;
  width: 100%;
  height: auto;
}

.author-detox-banner__tablet,
.author-detox-banner__mobile {
  display: none !important;
}

.author-detox-banner__notice {
  padding: 12px 50px 18px;
  background: #e9e9e9;
}

.author-detox-banner__notice p {
  margin: 0 0 16px;
  color: #1f1f1f;
  text-align: center;
  font-size: 20px;
  line-height: 1.22;
}

.author-detox-banner__contra {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(90deg, #3a71b4 0%, #537e52 100%);
  background-clip: text;
  color: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.18;
  -webkit-background-clip: text;
}

.author-detail__contra {
  max-width: 980px;
  margin: 78px auto 0;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.45;
}

.author-detail + .section-articles {
  display: none;
}

@media (max-width: 1024px) {
  .author-card {
    border-radius: 28px;
    padding: 32px 28px;
  }

  .author-card__header {
    gap: 26px;
  }

  .author-card__photo {
    width: 180px;
    height: 180px;
  }

  .author-card__title {
    font-size: 34px;
    line-height: 1.18;
  }

  .author-card__position {
    font-size: 16px;
  }

  .author-detox-banner__desktop,
  .author-detox-banner__mobile {
    display: none !important;
  }

  .author-detox-banner__tablet {
    display: block !important;
  }

  .author-detox-banner__notice p {
    font-size: 16px;
  }

  .author-detox-banner__contra,
  .author-detail__contra {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .author-detail {
    padding: 22px 0 46px;
  }

  .author-detail .mb-b01__container {
    margin-top: 26px !important;
  }

  .author-detail .container-mini {
    padding-right: 8px;
    padding-left: 8px;
  }

  .author-card {
    padding: 13px;
  }

  .author-card__header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .author-card__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 317 / 240;
    border-radius: 24px;
  }

  .author-card__photo img {
    object-position: center;
    object-fit: contain;
  }

  .author-card__intro {
    padding: 0 2px;
  }

  .author-card__title {
    font-size: 24px;
    line-height: 32px;
  }

  .author-card__position {
    max-width: none;
    margin-top: 8px;
    font-size: 14px;
    line-height: 18px;
  }

  .author-card__badge {
    margin-top: 16px;
    font-size: 12px;
    line-height: 12px;
  }

  .author-card__badge sup {
    font-size: 10px;
    line-height: 12px;
  }

  .author-card__body {
    padding: 16px;
    border-radius: 30px;
    font-size: 15px;
    line-height: 20px;
  }

  .author-card__body h2:first-child {
    margin-top: 0;
  }

  .author-card__body p {
    margin-bottom: 8px;
  }

  .author-card__body ul:not(:last-child) {
    margin-bottom: 18px;
  }

  .author-card__body li {
    margin-top: 10px;
    padding-left: 14px;
  }

  .author-card__body li::before {
    top: 0.48em;
    width: 6px;
    height: 6px;
  }

  .author-detox-banner {
    margin-top: 34px;
  }

  .author-detox-banner__desktop,
  .author-detox-banner__tablet {
    display: none !important;
  }

  .author-detox-banner__mobile {
    display: block !important;
  }

  .author-detox-banner__notice {
    padding: 10px 14px 14px;
  }

  .author-detox-banner__notice p {
    font-size: 11px;
  }

  .author-detox-banner__contra,
  .author-detail__contra {
    font-size: 18px;
  }

  .author-detail__contra {
    margin-top: 42px;
  }
}
