/*
 * 占い師投稿の詳細（single-teller_post.php）
 * Figma: gSYW5Vc8UqTS85wVxg8kpd node-id=3927-37804
 * ユーザー側 SP 375px・モノクロ基調。サイトヘッダー＋タブは get_header() が出す。
 */
.single-tpost {
  background: #F5F5F5;
  min-height: 60vh;
}

/* 見出しバー「投稿詳細」 */
.single-tpost__head {
  padding: 20px 16px;
  background: #F5F5F5;
}
.single-tpost__head-title {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(0,0,0,0.87);
  line-height: 1.5;
}

/* 本文カード */
.single-tpost__article {
  background: #FFFFFF;
  padding: 20px 16px;
}

/* アバター＋投稿日 */
.single-tpost__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.single-tpost__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: #BDBDBD;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.single-tpost__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.single-tpost__avatar svg { width: 18px; height: 18px; }
.single-tpost__date {
  font-size: 13px;
  color: rgba(0,0,0,0.6);
}

/* 見出し（タイトル）— サンセリフ太字 */
.single-tpost__title {
  margin: 0 0 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,0.87);
}

/* サムネ */
.single-tpost__hero {
  margin: 0 -16px 16px;
  background: #EBEBEB;
}
.single-tpost__hero img { display: block; width: 100%; height: auto; }

/* 本文 */
.single-tpost__body {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,0.87);
  word-break: break-word;
}
.single-tpost__body p { margin: 0 0 16px; }
.single-tpost__body p:last-child { margin-bottom: 0; }
.single-tpost__body img { max-width: 100%; height: auto; border-radius: 8px; margin: 12px 0; }
.single-tpost__body b, .single-tpost__body strong { font-weight: 700; }
.single-tpost__body--tweet { font-size: 15px; }

/* 戻るボタン */
.single-tpost__footer {
  padding: 16px;
  background: #F5F5F5;
}
.single-tpost__back-btn {
  width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(0,0,0,0.87);
  cursor: pointer;
}
.single-tpost__back-btn:active { background: #F0F0F0; }
.single-tpost__back-btn svg { color: rgba(0,0,0,0.5); }
