.wp-block-tenchokaigi-interview .interview{
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: start;
}

.wp-block-tenchokaigi-interview .interview__media{
  margin: 0;
  width: 96px;
  height: auto; /* 高さを自動にして中身が隠れないように */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  flex-direction: column;
}

.wp-block-tenchokaigi-interview .interview__figure{
  width: 96px;
  min-height: 96px; /* 画像分の高さは確保 */
  height: auto; /* キャプションが見えるように */
  margin: 0;
  overflow: visible; /* キャプションを隠さない */
  background-image: url('../../dist/img/common/icon_human.svg');
  background-repeat: no-repeat;
  background-position: center 8px;
  background-size: 64px 64px; /* アイコンのように */
}

.wp-block-tenchokaigi-interview .interview__img{
  width: 96px;
  height: 96px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  margin: 0 auto;
}

.wp-block-tenchokaigi-interview .interview__content{
  line-height: 1.8;
}

.wp-block-tenchokaigi-interview .interview__alt{
  font-size: 12px;
  line-height: 1.4;
  color: #666;
  margin-top: 6px;
}

@media (max-width: 767px){
  .wp-block-tenchokaigi-interview .interview{
    grid-template-columns: 72px 1fr;
    gap: 12px;
  }
  .wp-block-tenchokaigi-interview .interview__media{
    width: 72px;
    height: auto;
  }
  .wp-block-tenchokaigi-interview .interview__figure{
    width: 72px;
    min-height: 72px;
  }
  .wp-block-tenchokaigi-interview .interview__img{
    width: 72px;
    height: 72px;
  }
}
