/*
Theme Name: Deep Self Library
Theme URI: https://plus-human.net/
Author: Plus Human
Description: 深い自己理解の図書館のためのオリジナルWordPressテーマ。淡い光、金の線、上品な明朝体を基調に、既存記事装飾と収益導線を美しく統合します。
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: deep-self-library
*/

:root {
  --ph-ink: #18243a;
  --ph-ink-soft: #41506a;
  --ph-muted: #7b8290;
  --ph-teal: #0d5b52;
  --ph-teal-dark: #083d38;
  --ph-blue: #102746;
  --ph-gold: #c9a764;
  --ph-gold-soft: #eadcc0;
  --ph-cream: #fbf8f1;
  --ph-paper: #fffdf9;
  --ph-white: #ffffff;
  --ph-line: rgba(32, 43, 64, .12);
  --ph-line-gold: rgba(201, 167, 100, .42);
  --ph-shadow: 0 18px 42px rgba(21, 30, 48, .08);
  --ph-shadow-soft: 0 10px 24px rgba(21, 30, 48, .06);
  --ph-radius: 8px;
  --content-size: 1180px;
  --article-size: 780px;
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ph-cream); }
body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9) 0%, var(--ph-cream) 42%, #f7f1e7 100%);
  color: var(--ph-ink);
  font-family: var(--sans);
  letter-spacing: 0;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: var(--ph-teal);
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}
a:hover { color: var(--ph-blue); }
img { max-width: 100%; height: auto; vertical-align: middle; }
button, input, textarea, select { font: inherit; }

.ph-container {
  width: min(var(--content-size), calc(100% - 42px));
  margin-inline: auto;
}

.reveal,
.post-card,
.topic-card,
.feature-card,
.widget,
.ph-theme-pr-card,
.ph-post-link-card,
.motion-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .72s ease, transform .72s ease, box-shadow .28s ease, border-color .28s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.is-visible,
.post-card.is-visible,
.topic-card.is-visible,
.feature-card.is-visible,
.widget.is-visible,
.ph-theme-pr-card.is-visible,
.ph-post-link-card.is-visible,
.motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, .93);
  border-bottom: 1px solid rgba(201, 167, 100, .24);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .85);
  backdrop-filter: saturate(125%) blur(16px);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--ph-gold), var(--ph-teal), var(--ph-blue));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  opacity: .72;
}
.site-header.is-scrolled { box-shadow: 0 12px 28px rgba(21, 30, 48, .08); }
.site-header__top {
  min-height: 34px;
  border-bottom: 1px solid rgba(32, 43, 64, .08);
  color: var(--ph-muted);
  font-size: 12px;
}
.site-header__top-inner,
.site-header__top-links,
.site-header__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header__top-inner { justify-content: space-between; min-height: 34px; }
.site-header__top a { color: var(--ph-muted); text-decoration: none; }
.site-header__social { gap: 13px; font-weight: 700; color: #4f5c73; }
.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.social-icon {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 18px rgba(21, 30, 48, .1);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.social-icon svg { width: 15px; height: 15px; display: block; }
.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(21, 30, 48, .16);
  filter: saturate(1.06);
}
.social-icon--instagram { background: radial-gradient(circle at 28% 100%, #f9d86a 0 18%, #f05a69 44%, #7b4bd1 78%, #315bd8 100%); }
.social-icon--x { background: #18243a; }
.social-icon--facebook { background: #2f67b2; }
.social-icon--youtube { background: #cf2f2f; }
.social-icon--rss { background: #d58a2f; }
.social-icons--footer .social-icon {
  width: 31px;
  height: 31px;
}
.social-icons--footer .social-icon svg { width: 17px; height: 17px; }
.site-header__main {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--ph-ink);
  text-decoration: none;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ph-gold);
  border: 1px solid var(--ph-line-gold);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8, #f6eddd);
  box-shadow: 0 8px 20px rgba(201, 167, 100, .15);
}
.brand__mark svg { width: 33px; height: 33px; display: block; }
.brand__text { display: grid; gap: 4px; line-height: 1.1; }
.brand__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ph-ink);
  white-space: nowrap;
}
.brand__sub {
  font-family: var(--serif);
  font-size: 11px;
  color: #7a705e;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--ph-blue);
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  border-radius: 999px;
}
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  color: var(--ph-ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: var(--ph-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-search {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--ph-blue);
  text-decoration: none;
  border-radius: 50%;
}
.header-search svg { width: 20px; height: 20px; display: block; }
.header-search:hover {
  background: rgba(201, 167, 100, .14);
  transform: translateY(-1px);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ph-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(16, 39, 70, .14);
}
.header-cta:hover { color: #fff; background: var(--ph-teal); transform: translateY(-1px); }

.site-main { min-height: 62vh; }
.home-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .98) 0%, rgba(255, 253, 249, .88) 38%, rgba(255, 253, 249, .36) 72%, rgba(255, 253, 249, .18) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid var(--ph-line-gold);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .06)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 84px);
  pointer-events: none;
}
.home-hero__inner {
  position: relative;
  z-index: 1;
  padding: 78px 0 86px;
}
.home-hero__kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--ph-gold);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}
.home-hero__title {
  margin: 0 0 18px;
  color: var(--ph-blue);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.32;
}
.home-hero__lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: #49556a;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2.05;
}
.home-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid transparent;
}
.home-btn::after { content: "→"; margin-left: 10px; transition: transform .2s ease; }
.home-btn:hover::after { transform: translateX(3px); }
.home-btn--primary { background: var(--ph-teal); color: #fff; box-shadow: 0 14px 26px rgba(13, 91, 82, .16); }
.home-btn--primary:hover { color: #fff; background: var(--ph-teal-dark); transform: translateY(-1px); }
.home-btn--ghost { background: rgba(255, 255, 255, .7); color: var(--ph-blue); border-color: var(--ph-line-gold); }
.home-btn--ghost-dark { background: #fff; color: var(--ph-blue); border-color: var(--ph-line-gold); }

.home-stats {
  background: rgba(255, 253, 249, .9);
  border-bottom: 1px solid var(--ph-line);
}
.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat-item {
  min-height: 78px;
  display: grid;
  grid-template-columns: 34px auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-right: 1px solid var(--ph-line);
}
.stat-item:first-child { border-left: 1px solid var(--ph-line); }
.stat-item__icon { color: var(--ph-gold); font-size: 24px; }
.stat-item strong {
  color: var(--ph-blue);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}
.stat-item span:last-child { color: var(--ph-muted); font-size: 12px; font-weight: 700; }

.home-promise { padding: 28px 0 8px; background: var(--ph-paper); }
.home-promise__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.promise-item {
  padding: 8px 0 12px 38px;
  position: relative;
}
.promise-item::before {
  content: "✧";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--ph-gold);
  font-size: 25px;
}
.promise-item span {
  display: block;
  color: var(--ph-ink);
  font-family: var(--serif);
  font-weight: 700;
  margin-bottom: 4px;
}
.promise-item p { margin: 0; color: var(--ph-muted); font-size: 13px; line-height: 1.7; }

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  padding: 38px 0 76px;
  align-items: start;
}
.home-layout { padding-top: 28px; }
.layout--narrow { grid-template-columns: minmax(0, 1fr); max-width: 920px; }
.home-section { margin-bottom: 38px; }
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-heading a {
  color: var(--ph-blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.section-title {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--ph-blue);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .22em;
  bottom: .22em;
  width: 3px;
  border-radius: 999px;
  background: var(--ph-gold);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.post-grid--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.post-card {
  overflow: hidden;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: rgba(255, 253, 249, .94);
  box-shadow: var(--ph-shadow-soft);
}
.post-card:hover { border-color: rgba(201, 167, 100, .6); box-shadow: var(--ph-shadow); transform: translateY(-3px); }
.post-card__thumb {
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: #efe6d8;
}
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .7s ease; }
.post-card:hover .post-card__thumb img { transform: scale(1.045); filter: saturate(1.04) brightness(1.02); }
.post-card__body { padding: 16px 16px 17px; }
.post-card__cat {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(13, 91, 82, .08);
  color: var(--ph-teal);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.post-card__title {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}
.post-card__title a { color: var(--ph-ink); text-decoration: none; }
.post-card__excerpt { margin: 0 0 12px; color: var(--ph-ink-soft); font-size: 13px; line-height: 1.85; }
.post-card__meta { color: var(--ph-muted); font-size: 12px; }

.topic-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.topic-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-height: 128px;
  padding: 18px 10px;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: #fff;
  color: var(--ph-ink);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(21, 30, 48, .04);
}
.topic-card:hover { transform: translateY(-3px); border-color: var(--ph-line-gold); box-shadow: var(--ph-shadow-soft); }
.topic-card span { color: var(--ph-gold); font-size: 30px; line-height: 1; }
.topic-card strong { font-family: var(--serif); font-size: 14px; line-height: 1.35; }
.topic-card em { color: var(--ph-muted); font-size: 11px; font-style: normal; line-height: 1.55; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 18px;
}
.feature-card {
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: rgba(255, 253, 249, .96);
  padding: 24px;
  box-shadow: var(--ph-shadow-soft);
}
.feature-card--image { padding: 0; overflow: hidden; }
.feature-card--image img { width: 100%; height: 100%; object-fit: cover; min-height: 248px; }
.eyebrow {
  display: inline-flex;
  color: var(--ph-gold);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}
.feature-card h2,
.feature-card h3 {
  margin: 0 0 12px;
  color: var(--ph-blue);
  font-family: var(--serif);
  line-height: 1.55;
}
.feature-card p { margin: 0 0 18px; color: var(--ph-ink-soft); font-size: 14px; }
.pickup-list ol {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  counter-reset: pickup;
}
.pickup-list li {
  counter-increment: pickup;
  padding: 10px 0 10px 36px;
  border-bottom: 1px solid var(--ph-line);
  position: relative;
  color: var(--ph-ink-soft);
}
.pickup-list li::before {
  content: counter(pickup, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--ph-gold);
  font-family: var(--serif);
  font-weight: 700;
}

.guide-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.guide-steps__grid div {
  position: relative;
  min-height: 150px;
  padding: 24px 22px;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: #fff;
  text-align: center;
}
.guide-steps__grid div + div::before {
  content: "›";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ph-gold);
  font-size: 34px;
}
.guide-steps__grid span { color: var(--ph-gold); font-family: var(--serif); font-size: 12px; font-weight: 800; }
.guide-steps__grid strong { display: block; margin: 8px 0; color: var(--ph-blue); font-family: var(--serif); font-size: 18px; }
.guide-steps__grid p { margin: 0; color: var(--ph-muted); font-size: 13px; }

.theme-feature__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.theme-feature__grid a {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--ph-shadow-soft);
}
.theme-feature__grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) brightness(.9); transition: transform .7s ease; }
.theme-feature__grid span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.45;
}
.theme-feature__grid a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(8, 61, 56, .72)); }
.theme-feature__grid a:hover img { transform: scale(1.05); }

.voices-row {
  display: grid;
  grid-template-columns: 200px 1fr 1.3fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--ph-shadow-soft);
}
.voice-profile img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin-bottom: 12px;
}
.voices-row h2,
.voices-row h3 { margin: 0 0 10px; color: var(--ph-blue); font-family: var(--serif); }
.voices-row p { margin: 0 0 14px; color: var(--ph-ink-soft); font-size: 14px; }
.reader-voices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.reader-voices div {
  padding: 16px;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: var(--ph-cream);
}
.reader-voices span { color: var(--ph-muted); font-size: 12px; }

.faq-contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}
.faq-list,
.contact-panel {
  padding: 24px;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--ph-shadow-soft);
}
.faq-list details {
  border-bottom: 1px solid var(--ph-line);
  padding: 13px 0;
}
.faq-list summary {
  cursor: pointer;
  color: var(--ph-blue);
  font-weight: 700;
}
.faq-list p,
.contact-panel p { color: var(--ph-ink-soft); font-size: 14px; }
.contact-panel {
  background:
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    url("https://plus-human.net/wp-content/uploads/2026/05/chatgpt-self-analysis-prompts-gpt-image-2.png") center / cover;
}
.contact-panel h2 { margin: 0 0 10px; color: var(--ph-blue); font-family: var(--serif); }

.article-shell { padding: 36px 0 76px; }
.breadcrumb { margin: 0 0 24px; color: var(--ph-muted); font-size: 13px; }
.breadcrumb a { color: var(--ph-teal); }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--article-size)) 300px;
  gap: 46px;
  align-items: start;
}
.article { min-width: 0; }
.article-head {
  padding: 42px 42px 18px;
  border: 1px solid var(--ph-line);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: rgba(255, 253, 249, .96);
  box-shadow: 0 10px 24px rgba(21, 30, 48, .04);
}
.article-title {
  margin: 0;
  color: var(--ph-blue);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.48;
  font-weight: 700;
}
.article-lead {
  margin: 18px 0 0;
  color: var(--ph-ink-soft);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  padding: 0 42px 26px;
  border-left: 1px solid var(--ph-line);
  border-right: 1px solid var(--ph-line);
  background: rgba(255, 253, 249, .96);
  color: var(--ph-muted);
  font-size: 13px;
}
.date-badge {
  display: grid;
  place-items: center;
  min-width: 64px;
  min-height: 58px;
  border-right: 1px solid var(--ph-line-gold);
  margin-right: 8px;
  color: var(--ph-blue);
  line-height: 1.1;
}
.date-badge span:first-child { font-size: 13px; }
.date-badge span:last-child { font-family: var(--serif); font-size: 30px; font-weight: 800; }
.term-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(13, 91, 82, .16);
  border-radius: 999px;
  background: rgba(13, 91, 82, .08);
  color: var(--ph-teal);
  font-size: 12px;
  padding: 4px 10px;
  text-decoration: none;
}
.term-chip--top { margin-bottom: 14px; }
.article-thumb-wrap {
  padding: 0 42px 30px;
  border-left: 1px solid var(--ph-line);
  border-right: 1px solid var(--ph-line);
  background: rgba(255, 253, 249, .96);
}
.article-thumb {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(21, 30, 48, .1);
}
.article-share-top { border-left: 1px solid var(--ph-line); border-right: 1px solid var(--ph-line); background: rgba(255, 253, 249, .96); padding: 0 42px; }
.share-row { display: flex; gap: 10px; flex-wrap: wrap; padding: 20px 0 28px; }
.share-btn {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 50%;
  background: var(--ph-teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(21, 30, 48, .06);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.share-btn svg { width: 16px; height: 16px; display: block; }
.share-btn--facebook { background: #2f67b2; }
.share-btn--x { background: #18243a; }
.share-btn--hatena { background: #2f82c9; }
.share-btn--pocket { background: #d84b63; }
.share-btn--line { background: #18a058; }
.share-btn--copy {
  grid-auto-flow: column;
  gap: 5px;
  min-width: 76px;
  border-radius: 999px;
  background: #fffaf1;
  color: var(--ph-blue);
  border: 1px solid var(--ph-line-gold);
}
.share-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 26px rgba(21, 30, 48, .14); }
.share-btn--copy:hover { background: var(--ph-blue); color: #fff; border-color: var(--ph-blue); }

.article-toc {
  margin: 0;
  padding: 20px 42px 28px;
  border-left: 1px solid var(--ph-line);
  border-right: 1px solid var(--ph-line);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, .96), rgba(250, 246, 237, .96)),
    radial-gradient(circle at 94% 18%, rgba(201, 167, 100, .12), transparent 32%);
}
.article-toc__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ph-blue);
  font-family: var(--serif);
}
.article-toc__head span {
  color: var(--ph-gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-toc__head strong {
  font-size: 16px;
  font-weight: 700;
}
.article-toc__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-toc__list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(201, 167, 100, .28);
  border-radius: 6px;
  background: rgba(255, 255, 255, .7);
  color: var(--ph-ink-soft);
  text-decoration: none;
}
.article-toc__list a span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 91, 82, .08);
  color: var(--ph-teal);
  font-size: 11px;
  font-weight: 800;
}
.article-toc__list a em {
  font-style: normal;
  font-size: 12.5px;
  line-height: 1.48;
}
.article-toc__list a:hover {
  border-color: var(--ph-gold);
  background: #fffdf9;
  box-shadow: 0 10px 22px rgba(21, 30, 48, .06);
  transform: translateY(-1px);
}

.post_content,
.entry-content {
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: rgba(255, 253, 249, .98);
  padding: 42px 46px 50px;
  color: var(--ph-ink);
  font-size: 16px;
  line-height: 2.08;
  overflow-wrap: anywhere;
}
.article .post_content { border-radius: 0 0 6px 6px; }
.post_content p,
.entry-content p { margin: 1.15em 0; color: var(--ph-ink); }
.post_content h2,
.entry-content h2 {
  margin: 3.2em 0 1.15em;
  padding: 0 0 .65em 18px;
  border-bottom: 1px solid var(--ph-line-gold);
  color: var(--ph-blue);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.55;
}
.post_content h2::before,
.entry-content h2::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.1em;
  margin: 0 14px 0 -18px;
  background: var(--ph-gold);
  vertical-align: -.14em;
  border-radius: 999px;
}
.post_content h3,
.entry-content h3 {
  margin: 2.3em 0 .9em;
  padding: 0 0 0 16px;
  border-left: 3px solid var(--ph-gold);
  color: var(--ph-blue);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
}
.post_content h4,
.entry-content h4 { color: var(--ph-teal); font-family: var(--serif); font-size: 18px; }
.post_content ul,
.post_content ol,
.entry-content ul,
.entry-content ol { padding-left: 1.45em; }
.post_content li,
.entry-content li { margin: .45em 0; }

.swl-marker,
.mark_yellow,
.mark_orange,
.mark_blue,
.mark_green,
.mark_red {
  padding: 0 .1em;
  border-radius: 2px;
  background: linear-gradient(transparent 64%, rgba(234, 220, 192, .95) 0%);
}
.mark_orange { background: linear-gradient(transparent 64%, rgba(201, 167, 100, .36) 0%); }
.mark_blue { background: linear-gradient(transparent 64%, rgba(154, 179, 202, .35) 0%); }
.mark_green { background: linear-gradient(transparent 64%, rgba(13, 91, 82, .18) 0%); }
.mark_red { background: linear-gradient(transparent 64%, rgba(176, 107, 89, .22) 0%); }

[class*="is-style-icon_"],
.swell-block-capbox,
.cap_box,
.is-style-section_ttl,
.wp-block-group.has-background {
  padding: 20px 22px;
  border: 1px solid var(--ph-line-gold);
  border-left: 4px solid var(--ph-gold);
  border-radius: 6px;
  background: linear-gradient(180deg, #fffdf9, #faf4e9);
  box-shadow: 0 10px 24px rgba(21, 30, 48, .05);
}
.is-style-icon_caution { border-left-color: #b26a53; background: #fff8f2; }
.is-style-icon_good { border-left-color: var(--ph-teal); background: #f5fbf7; }
.swell-block-capbox__title,
.cap_box_ttl {
  margin: -20px -22px 16px;
  padding: 10px 16px;
  background: #fbf6ec;
  color: var(--ph-blue);
  border-bottom: 1px solid var(--ph-line-gold);
  font-family: var(--serif);
  font-weight: 700;
}

ul.is-style-check_list,
ul.is-style-good_list,
ul.is-style-note_list,
ul.is-style-bad_list,
ul.is-style-num_circle {
  padding: 18px 22px;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: #fffaf2;
  box-shadow: 0 10px 22px rgba(21, 30, 48, .04);
  list-style-position: inside;
}
.wp-block-table {
  margin: 2em 0;
  overflow: auto;
  border-radius: 6px;
  border: 1px solid var(--ph-line);
  background: #fff;
  box-shadow: var(--ph-shadow-soft);
}
.wp-block-table table { margin: 0; border-collapse: collapse; width: 100%; }
.wp-block-table th { background: var(--ph-blue); color: #fff; font-weight: 800; }
.wp-block-table th,
.wp-block-table td { border: 1px solid var(--ph-line); padding: 13px 15px; }
.wp-block-table tr:nth-child(even) td { background: #fbf7ef; }

.swell-block-step { margin: 2em 0; padding: 8px 0; }
.swell-block-step__item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  margin: 0 0 14px;
  padding: 18px;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: #fffdf9;
  box-shadow: var(--ph-shadow-soft);
}
.swell-block-step__number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ph-teal);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}
.swell-block-step__title { color: var(--ph-blue); font-family: var(--serif); font-weight: 800; margin-bottom: 6px; }
.swell-block-step__body { grid-column: 2; color: var(--ph-ink); }

blockquote {
  margin: 2em 0;
  padding: 1.35em 1.55em;
  border: 1px solid var(--ph-line-gold);
  border-left: 4px solid var(--ph-gold);
  border-radius: 6px;
  background: #fbf5e9;
  color: #4e5360;
}
pre {
  border-radius: 6px;
  border: 1px solid rgba(16, 39, 70, .16);
  background: var(--ph-blue);
  color: #fff;
  padding: 18px;
  overflow: auto;
  line-height: 1.75;
}
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.wp-block-button__link,
.post_content .is-style-btn_normal a,
.post_content .is-style-btn_solid a {
  border-radius: 999px;
  background: var(--ph-teal);
  color: #fff;
  box-shadow: 0 12px 24px rgba(13, 91, 82, .12);
}
.wp-block-image figcaption,
.wp-block-gallery figcaption { color: var(--ph-muted); font-size: 13px; text-align: center; }
.faq_q,
.faq_a,
.swell-block-faq__item {
  border-color: var(--ph-line);
  border-radius: 6px;
  background: #fffdf9;
}

.ph-post-link-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin: 2em 0;
  padding: 12px;
  border: 1px solid var(--ph-line-gold);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, .98), rgba(250, 244, 233, .98)),
    radial-gradient(circle at 96% 8%, rgba(201, 167, 100, .16), transparent 34%);
  color: var(--ph-ink);
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(21, 30, 48, .06);
  overflow: hidden;
}
.ph-post-link-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: var(--ph-gold);
}
.ph-post-link-card:hover {
  color: var(--ph-ink);
  border-color: rgba(201, 167, 100, .7);
  box-shadow: 0 20px 42px rgba(21, 30, 48, .1);
  transform: translateY(-2px);
}
.ph-post-link-card__media {
  position: relative;
  display: block;
  min-height: 124px;
  overflow: hidden;
  border-radius: 6px;
  background: #f4ecdf;
}
.ph-post-link-card__image {
  width: 100%;
  height: 100% !important;
  min-height: 124px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.ph-post-link-card:hover .ph-post-link-card__image { transform: scale(1.035); }
.ph-post-link-card__image--empty {
  display: grid;
  place-items: center;
  color: var(--ph-gold);
}
.ph-post-link-card__body {
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
  padding: 4px 4px 4px 0;
}
.ph-post-link-card__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 2px 9px;
  border: 1px solid rgba(13, 91, 82, .16);
  border-radius: 999px;
  background: rgba(13, 91, 82, .07);
  color: var(--ph-teal);
  font-size: 11px;
  font-weight: 800;
}
.ph-post-link-card__title {
  color: var(--ph-blue);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}
.ph-post-link-card__excerpt {
  color: var(--ph-ink-soft);
  font-size: 13px;
  line-height: 1.65;
}
.ph-post-link-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ph-muted);
  font-size: 12px;
}
.ph-post-link-card__meta span:last-child {
  color: var(--ph-teal);
  font-weight: 800;
}

.ph-theme-pr-card,
.ph-kimochi-a8,
.ph-single-kimochi-a8 {
  position: relative;
  overflow: hidden;
  padding: 24px !important;
  border: 1px solid var(--ph-line-gold) !important;
  border-left: 4px solid var(--ph-gold) !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, #fffdf9, #f8f0e2) !important;
  box-shadow: var(--ph-shadow-soft) !important;
}
.ph-theme-pr-card__label,
.ph-kimochi-a8__label,
.ph-single-kimochi-a8__label {
  display: inline-flex !important;
  padding: 3px 10px !important;
  border: 1px solid rgba(13, 91, 82, .18) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--ph-teal) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}
.ph-theme-pr-card h2 { margin: 12px 0 10px; color: var(--ph-blue); font-family: var(--serif); font-size: 22px; }
.ph-theme-pr-card p { color: var(--ph-ink-soft); margin: 0 0 16px; }
.ph-theme-pr-card a,
.ph-kimochi-a8__button,
.ph-single-kimochi-a8__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: var(--ph-teal) !important;
  color: #fff !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.sidebar { position: sticky; top: 122px; align-self: start; }
.widget,
.sidebar-card {
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: rgba(255, 253, 249, .97);
  box-shadow: var(--ph-shadow-soft);
  padding: 18px;
  margin-bottom: 20px;
  overflow: hidden;
}
.widget-title,
.widgettitle,
.c-widget__title,
.sidebar-card__title,
.l-articleBottom__title {
  margin: 0 0 1em;
  padding: 0 0 .75em;
  border-bottom: 1px solid var(--ph-line-gold);
  color: var(--ph-blue);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  background: none;
}
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { margin: 0; padding: .52em 0; border-bottom: 1px solid rgba(32, 43, 64, .08); }
.widget_search form,
.search-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  overflow: hidden;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: #fff;
}
.widget_search input,
.search-field {
  min-height: 46px;
  border: 0;
  padding: 0 13px;
  background: #fff;
}
.widget_search button,
.search-submit {
  border: 0;
  background: var(--ph-blue);
  color: #fff;
  cursor: pointer;
}
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list a { display: block; padding: .52em 0; color: var(--ph-ink-soft); text-decoration: none; border-bottom: 1px solid rgba(32, 43, 64, .08); font-size: 13px; line-height: 1.55; }
.popular-list { display: grid; gap: 12px; }
.popular-item { display: grid; grid-template-columns: 62px 1fr; gap: 12px; text-decoration: none; color: var(--ph-ink); }
.popular-item img { width: 62px; height: 50px; object-fit: cover; border-radius: 4px; }
.popular-item span { font-size: 13px; line-height: 1.55; font-weight: 700; }

.after-content,
.related-posts,
.comments-area { margin-top: 34px; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.comment-list { margin: 0 0 28px; padding: 0; list-style: none; }
.comment-list .comment-body {
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: rgba(255, 253, 249, .94);
}
.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--ph-line);
  border-radius: 6px;
  background: #fffdf9;
  padding: 11px 13px;
}

.footer-newsletter {
  padding: 0 0 36px;
  background: var(--ph-cream);
}
.footer-newsletter__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(13, 91, 82, .96), rgba(16, 39, 70, .94)),
    url("https://plus-human.net/wp-content/uploads/2026/05/chatgpt-self-analysis-prompts-gpt-image-2.png") center / cover;
  color: #fff;
  box-shadow: var(--ph-shadow);
}
.footer-newsletter__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: var(--ph-gold);
  background: rgba(255, 255, 255, .08);
}
.footer-newsletter__icon svg { width: 23px; height: 23px; display: block; }
.footer-newsletter h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 24px; }
.footer-newsletter p { margin: 0; color: rgba(255, 255, 255, .8); }
.footer-newsletter__form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.footer-newsletter__form input {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
}
.footer-newsletter__form input[type="email"] {
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .96);
  color: var(--ph-blue);
}
.footer-newsletter__form input[type="email"]:focus {
  outline: 3px solid rgba(201, 167, 100, .34);
  border-color: var(--ph-gold);
}
.footer-newsletter__form input[type="email"].is-invalid {
  outline: 3px solid rgba(207, 47, 47, .28);
}
.footer-newsletter__form input[type="hidden"] { display: none; }
.footer-newsletter__form button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  background: var(--ph-gold);
  color: var(--ph-blue);
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.footer-newsletter__form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
  background: #d8b86f;
}
.footer-newsletter__form small { grid-column: 1 / -1; color: rgba(255, 255, 255, .76); }

.site-footer {
  background: #fffaf1;
  color: var(--ph-ink-soft);
  border-top: 1px solid var(--ph-line-gold);
  padding: 42px 0 22px;
}
.site-footer a { color: var(--ph-ink-soft); text-decoration: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr 1fr;
  gap: 34px;
}
.footer-grid p { color: var(--ph-ink-soft); font-size: 14px; }
.footer-social { display: flex; gap: 13px; color: var(--ph-blue); font-weight: 800; }
.footer-posts { display: grid; gap: 12px; }
.footer-posts a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
}
.footer-posts img { width: 58px; height: 46px; object-fit: cover; border-radius: 4px; }
.footer-posts span { font-size: 13px; line-height: 1.45; }
.footer-copy {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--ph-line);
  color: var(--ph-muted);
  font-size: 12px;
}

.pagination { margin: 34px 0 0; display: flex; justify-content: center; gap: 8px; }
.pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--ph-line);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
}
.pagination .current { background: var(--ph-teal); color: #fff; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .site-nav a { padding: 0 8px; font-size: 12px; }
  .layout,
  .article-layout { gap: 30px; grid-template-columns: minmax(0, 1fr) 286px; }
  .topic-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .post-grid--featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 959px) {
  .ph-container { width: min(100% - 32px, var(--content-size)); }
  .site-header__top { display: none; }
  .site-header__main { min-height: 72px; justify-content: space-between; }
  .brand__name { font-size: 19px; }
  .brand__sub,
  .header-cta { display: none; }
  .nav-toggle { display: block; order: -1; }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    margin: 0;
    background: rgba(255, 253, 249, .98);
    border-top: 1px solid var(--ph-line-gold);
    box-shadow: var(--ph-shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  body.nav-open .site-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav ul { display: grid; gap: 0; padding: 12px 20px 22px; }
  .site-nav a { min-height: 48px; border-bottom: 1px solid var(--ph-line); }
  .home-hero { min-height: 390px; background-position: 64% center; }
  .home-hero__inner { padding: 58px 0; }
  .home-hero__title { font-size: 42px; }
  .home-stats__grid,
  .home-promise__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .layout,
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .post-grid,
  .post-grid--featured,
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-row,
  .voices-row,
  .faq-contact,
  .footer-newsletter__inner { grid-template-columns: 1fr; }
  .theme-feature__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-head,
  .article-meta,
  .article-thumb-wrap,
  .article-share-top,
  .article-toc { padding-left: 24px; padding-right: 24px; }
  .post_content,
  .entry-content { padding: 32px 24px 40px; }
}

@media (max-width: 599px) {
  .ph-container { width: min(100% - 28px, var(--content-size)); }
  .brand__mark { width: 42px; height: 42px; }
  .brand__name { font-size: 17px; }
  .home-hero {
    min-height: 430px;
    background:
      linear-gradient(180deg, rgba(255, 253, 249, .97) 0%, rgba(255, 253, 249, .9) 48%, rgba(255, 253, 249, .6) 100%),
      var(--hero-image);
    background-size: cover;
    background-position: 64% center;
  }
  .home-hero__title { font-size: 34px; }
  .home-hero__lead { font-size: 14px; }
  .home-hero__actions { display: grid; grid-template-columns: 1fr; }
  .home-stats__grid,
  .home-promise__grid,
  .post-grid,
  .post-grid--featured,
  .topic-grid,
  .guide-steps__grid,
  .theme-feature__grid,
  .reader-voices,
  .related-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .stat-item { border-left: 1px solid var(--ph-line); }
  .guide-steps__grid div + div::before { display: none; }
  .article-title { font-size: 30px; }
  .article-meta { display: block; }
  .date-badge { margin: 0 0 12px; width: 72px; }
  .share-row { justify-content: space-between; }
  .article-toc__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .article-toc__list a { grid-template-columns: 26px minmax(0, 1fr); min-height: 42px; padding: 7px 8px; }
  .article-toc__list a span { width: 23px; height: 23px; font-size: 10px; }
  .article-toc__list a em { font-size: 11.4px; line-height: 1.42; }
  .ph-post-link-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ph-post-link-card__media { min-height: 172px; }
  .ph-post-link-card__body { padding: 0 2px 2px; }
  .swell-block-step__item { grid-template-columns: 46px minmax(0, 1fr); padding: 16px; }
  .swell-block-step__number { width: 38px; height: 38px; font-size: 10px; }
  .swell-block-step__body { grid-column: 1 / -1; }
  .footer-newsletter__form { grid-template-columns: 1fr; }
  .footer-copy { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal,
  .post-card,
  .topic-card,
  .feature-card,
  .widget,
  .ph-theme-pr-card,
  .ph-post-link-card,
  .motion-item {
    opacity: 1;
    transform: none;
  }
}
