/* ↓スタッフカード */

/* 外枠（セクション全体） */
.article-staff{
  margin:24px 0;
  padding:16px;
  border:1px solid #cfd8d3;   /* 枠 */
  border-radius:12px;
  background:#fff;            /* 背景 */
}

/* ラベル */
.article-staff__label{
  font-weight:700;
  margin-bottom:12px;
  padding-bottom:10px;
  border-bottom:1px solid #e6ece8;  /* 見出し下の細い線 */
}

/* 内枠（スタッフカード） */
.article-staff__card{
  display:flex;
  gap:16px;
  align-items:flex-start;

  padding:14px;               /* カード内余白 */
  border:1px solid #e6ece8;   /* カード枠 */
  border-radius:12px;
  background:#f8fbfa;         /* うっすら背景 */

  text-align: left;
}

/* 画像サイズ固定 */
.article-staff__thumb{
  flex:0 0 84px;
  width:84px;
  height:84px;
}
.article-staff__thumb img{
  width:84px !important;
  height:84px !important;
  object-fit:cover;
  border-radius:50%;
  display:block;
  border:1px solid #e6ece8;   /* 画像にも薄い枠 */
}

/* 文字 */
.article-staff__name{ font-weight:700; margin:0 0 4px; }
.article-staff__name-en{ margin:0 0 12px; opacity:.75; font-size:14px; }
.article-staff__career{ font-size:14px; margin:0 0 10px; line-height:1.6; }
.article-staff__certifications{ font-size:14px; margin:0 0 10px; line-height:1.6; }
.article-staff__sns,
.article-staff__services{ margin:6px 0 0; font-size:14px; }


/* ↓記事一覧 */

/* ↓このスタッフの過去の記事 */
.article-staff__postlinks{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e6ece8;
}

.article-staff__postlinks-title{
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 14px;
}

.article-staff__postlinks-list{
  margin: 0;
  padding-left: 18px;
}

.article-staff__postlinks-item{
  margin: 6px 0;
  font-size: 14px;
}

/* リンクの見た目 */
.article-staff__postlinks-item a{
  text-decoration: none;
}
.article-staff__postlinks-item a:hover{
  text-decoration: underline;
}


/* スマホ：画像を上、文章を下に */
@media (max-width: 767px){

  .article-staff__card{
    flex-direction: column;     /* 縦並び */
    align-items: stretch;       /* 横幅いっぱい */
    gap: 12px;
  }

  .article-staff__thumb{
    flex: none;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;    /* 画像を中央 */
  }

  .article-staff__thumb img{
    width: 96px !important;     /* スマホ時だけ少し大きく/好みで */
    height: 96px !important;
  }

  .article-staff__body{
    width: 100%;
    min-width: 0;               /* 長い文字で崩れるの防止 */
  }

  /* はみ出し対策（URLや長文がある場合） */
  .article-staff__career,
  .article-staff__certifications,
  .article-staff__sns,
  .article-staff__services,
  .article-staff__postlinks{
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}