.petsons-historias {
  --phh-bg: #fffaf5;
  --phh-surface: rgba(255,255,255,.94);
  --phh-ink: #24201d;
  --phh-muted: #6d625a;
  --phh-line: rgba(82, 62, 46, .16);
  --phh-accent: #8b5e3c;
  --phh-accent-dark: #5a3a27;
  --phh-soft: #f6eadf;
  color: var(--phh-ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(139,94,60,.14), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(185,134,83,.12), transparent 32%),
    linear-gradient(180deg, #fffdf9 0%, var(--phh-bg) 100%);
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  overflow: hidden;
}
.petsons-historias * { box-sizing: border-box; }
.phh-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.phh-hero { padding: clamp(52px, 7vw, 96px) 0 44px; }
.phh-hero .phh-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}
.phh-hero-card,
.phh-proof-panel,
.phh-video-card,
.phh-cta-box,
.phh-empty-state {
  border: 1px solid var(--phh-line);
  background: var(--phh-surface);
  box-shadow: 0 22px 70px rgba(47, 35, 26, .10);
  border-radius: 30px;
}
.phh-hero-card { padding: clamp(30px, 5vw, 56px); position: relative; }
.phh-hero-card:after {
  content: "";
  position: absolute;
  inset: auto 34px 28px auto;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139,94,60,.16), rgba(255,255,255,.2));
  filter: blur(.2px);
  pointer-events: none;
}
.phh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--phh-accent-dark);
  background: var(--phh-soft);
  border: 1px solid rgba(139,94,60,.18);
  border-radius: 999px;
  padding: 10px 14px;
  margin-bottom: 18px;
}
.phh-hero h1,
.phh-section-head h2,
.phh-cta h2 {
  margin: 0;
  color: var(--phh-ink);
  letter-spacing: -.04em;
}
.phh-hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: .92;
  max-width: 760px;
}
.phh-subtitle {
  margin: 20px 0 0;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.18;
  color: var(--phh-accent-dark);
  max-width: 760px;
  font-weight: 700;
}
.phh-intro,
.phh-section-head p,
.phh-cta p,
.phh-empty-state p {
  color: var(--phh-muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.72;
}
.phh-intro { max-width: 820px; margin: 18px 0 0; }
.phh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.phh-actions-center { justify-content: center; }
.phh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.phh-btn:hover { transform: translateY(-2px); }
.phh-btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--phh-accent-dark), var(--phh-accent));
  box-shadow: 0 16px 32px rgba(90,58,39,.22);
}
.phh-btn-secondary {
  color: var(--phh-accent-dark) !important;
  background: #fff;
  border: 1px solid var(--phh-line);
}
.phh-proof-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  align-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(246,234,223,.72));
}
.phh-proof-item {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(82,62,46,.12);
}
.phh-proof-item strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.03em;
  color: var(--phh-accent-dark);
}
.phh-proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--phh-muted);
  line-height: 1.5;
}
.phh-video-section { padding: 34px 0 58px; }
.phh-section-head { max-width: 850px; margin: 0 auto 26px; text-align: center; }
.phh-section-head h2,
.phh-cta h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
}
.phh-section-head p { margin: 18px auto 0; }
.phh-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px auto 30px;
}
.phh-filter {
  appearance: none;
  border: 1px solid var(--phh-line);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255,255,255,.82);
  color: var(--phh-accent-dark);
  font-weight: 800;
  cursor: pointer;
}
.phh-filter.is-active,
.phh-filter:hover {
  background: var(--phh-accent-dark);
  border-color: var(--phh-accent-dark);
  color: #fff;
}
.phh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.phh-video-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.phh-video-card.is-hidden { display: none; }
.phh-video-frame {
  background: linear-gradient(135deg, #f2e6d9, #fffaf5);
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--phh-line);
}
.phh-video-frame iframe,
.phh-video-frame blockquote,
.phh-video-frame .wp-embedded-content {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}
.phh-video-frame iframe { border: 0; min-height: 430px; }
.phh-video-fallback {
  min-height: 430px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}
.phh-play-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--phh-accent-dark);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 18px 34px rgba(90,58,39,.18);
}
.phh-video-link {
  color: var(--phh-accent-dark) !important;
  font-weight: 900;
}
.phh-card-copy { padding: 22px; }
.phh-chip {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--phh-soft);
  color: var(--phh-accent-dark);
  font-size: 12px;
  font-weight: 900;
}
.phh-card-copy h3 {
  margin: 14px 0 8px;
  font-size: 22px;
  letter-spacing: -.03em;
  color: var(--phh-ink);
}
.phh-card-copy p {
  color: var(--phh-muted);
  line-height: 1.6;
  margin: 0 0 14px;
}
.phh-card-copy a {
  color: var(--phh-accent-dark) !important;
  font-weight: 900;
  text-decoration: none !important;
}
.phh-empty-state {
  text-align: center;
  padding: clamp(30px, 5vw, 54px);
  max-width: 760px;
  margin: 32px auto 0;
}
.phh-empty-state h3 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0;
  letter-spacing: -.03em;
}
.phh-cta { padding: 10px 0 clamp(64px, 8vw, 108px); }
.phh-cta-box {
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(139,94,60,.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,234,223,.75));
}
.phh-cta p { max-width: 760px; margin: 18px auto 0; }
@media (max-width: 980px) {
  .phh-hero .phh-shell { grid-template-columns: 1fr; }
  .phh-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .phh-shell { width: min(100% - 24px, 1160px); }
  .phh-hero { padding-top: 36px; }
  .phh-hero-card,
  .phh-proof-panel,
  .phh-video-card,
  .phh-cta-box,
  .phh-empty-state { border-radius: 24px; }
  .phh-hero-card { padding: 26px 20px; }
  .phh-grid { grid-template-columns: 1fr; }
  .phh-actions { flex-direction: column; }
  .phh-btn { width: 100%; }
  .phh-video-frame,
  .phh-video-fallback { min-height: 380px; }
  .phh-video-frame iframe { min-height: 380px; }
}

.phh-external-feed {
  margin: 32px auto 0;
  max-width: 980px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--phh-line);
  border-radius: 30px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 70px rgba(47, 35, 26, .08);
  overflow: hidden;
}
.phh-external-feed iframe,
.phh-external-feed video,
.phh-external-feed img {
  max-width: 100%;
}
.phh-feed-notice {
  margin: 32px auto 0;
  max-width: 760px;
  padding: 22px;
  border: 1px solid var(--phh-line);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  color: var(--phh-muted);
  text-align: center;
}
.phh-feed-notice strong,
.phh-feed-notice span {
  display: block;
}
.phh-feed-notice strong {
  color: var(--phh-accent-dark);
  margin-bottom: 6px;
}
@media (max-width: 680px) {
  .phh-external-feed {
    border-radius: 24px;
    padding: 16px 10px;
  }
}
