/* yd-supervisor: 記事下の監修医師カード
 *
 * 親サイト準拠カラー（#F5F4F0 / #61564F / #c87c6b / Shippori Mincho B1）
 */

.yd-article-supervisors {
  margin: 56px 0 32px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #EDE8E1;
  border-radius: 6px;
}

.yd-article-supervisors__heading {
  font-family: "Shippori Mincho B1", "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  color: #61564F;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c87c6b;
  letter-spacing: 0.5px;
}

.yd-article-supervisors__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yd-article-supervisors__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #FAF8F4;
  border: 1px solid #EDE8E1;
  border-radius: 6px;
  text-decoration: none;
  color: #61564F;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yd-article-supervisors__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  opacity: 1;
}

.yd-article-supervisors__photo {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #EFEAE3;
}

.yd-article-supervisors__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yd-article-supervisors__body {
  flex: 1 1 auto;
  min-width: 0;
}

.yd-article-supervisors__name {
  font-family: "Shippori Mincho B1", "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.4;
  color: #61564F;
}

.yd-article-supervisors__honorific {
  font-size: 14px;
  color: #c87c6b;
  margin-right: 4px;
  font-weight: 600;
}

.yd-article-supervisors__job {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 2px;
  color: #61564F;
}

.yd-article-supervisors__clinic {
  font-size: 12px;
  margin: 0 0 6px;
  color: #807468;
}

.yd-article-supervisors__more {
  font-size: 12px;
  color: #c87c6b;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 599px) {
  .yd-article-supervisors {
    padding: 16px;
    margin: 40px 0 24px;
  }

  .yd-article-supervisors__heading {
    font-size: 16px;
  }

  .yd-article-supervisors__card {
    padding: 12px;
    gap: 12px;
  }

  .yd-article-supervisors__photo {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }

  .yd-article-supervisors__name {
    font-size: 16px;
  }
}
