/*
 * 個別投稿アイキャッチ タイトル中央表示
 * 対象: 通常投稿の個別ページで post-common-eyecatch-cats.jpeg が使われているメインアイキャッチ
 */

body.single-post .eye-catch.oyanakiato-single-eyecatch-overlay__figure {
  position: relative;
  overflow: hidden;
  background: #f7f1e8;
}

body.single-post .eye-catch.oyanakiato-single-eyecatch-overlay__figure img {
  display: block;
  width: 100%;
  height: auto;
}

body.single-post .eye-catch.oyanakiato-single-eyecatch-overlay__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 27%,
    rgba(255, 252, 244, 0.48) 0%,
    rgba(255, 252, 244, 0.30) 38%,
    rgba(255, 252, 244, 0) 70%
  );
}

body.single-post .oyanakiato-single-eyecatch-overlay__title {
  position: absolute;
  left: 50%;
  top: 26%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-sizing: border-box;
  width: min(66%, 760px);
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 0.62em 0.9em;
  border-radius: 14px;
  background: rgba(255, 252, 244, 0.80);
  color: #47382f;
  box-shadow: 0 2px 8px rgba(70, 54, 38, 0.12);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
  pointer-events: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Cocoonのアイキャッチ右上カテゴリラベルは、この表示では邪魔になりやすいため非表示にする。 */
body.single-post .eye-catch.oyanakiato-single-eyecatch-overlay__figure .cat-label {
  display: none !important;
}

/*
 * 元のh1はSEOと文書構造のためDOMに残し、オーバーレイ挿入が成功した場合だけ視覚的に隠す。
 * JavaScriptが動かない場合は通常のh1がそのまま表示される。
 */
body.single-post.oyanakiato-single-eyecatch-overlay-ready .entry-header .entry-title.oyanakiato-single-eyecatch-overlay__source-title {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media screen and (max-width: 834px) {
  body.single-post .oyanakiato-single-eyecatch-overlay__title {
    top: 27%;
    width: 72%;
    max-width: calc(100% - 28px);
    padding: 0.52em 0.72em;
    border-radius: 12px;
    font-size: clamp(1rem, 4vw, 1.42rem);
    line-height: 1.38;
  }
}

@media screen and (max-width: 480px) {
  body.single-post .oyanakiato-single-eyecatch-overlay__title {
    top: 28%;
    width: 78%;
    max-width: calc(100% - 20px);
    padding: 0.45em 0.62em;
    border-radius: 10px;
    font-size: clamp(0.92rem, 4.8vw, 1.16rem);
    line-height: 1.34;
  }
}
