/* =====================================================================
   PETVERITO — Design Tokens & Hero Section Styles (v2)
   Visual direction: warm, bright, pet-friendly — aligned to the
   CozyPaws reference. See PETVERITO_Design_Blueprint_v2.md for the
   full rationale and how this supersedes Blueprint §16.3.
   ===================================================================== */

:root {
  /* --- Brand colors (v2) ------------------------------------------- */
  --pv-bg: #EFFDF0;           /* soft mint — replaces #F5F8FA */
  --pv-bg-card: #FFFFFF;
  --pv-ink: #1A3D1A;          /* deep warm green — headlines, replaces Navy */
  --pv-ink-soft: #2A5A2A;     /* hover state of ink */
  --pv-accent: #E86A10;       /* warm orange — primary CTA, replaces Teal */
  --pv-accent-hover: #D45E0D;
  --pv-green: #22A06B;        /* kept from v1 — "open now" / verified dot */
  --pv-red: #E5484D;          /* kept from v1 — emergency, must stay distinct */
  --pv-text: #2B3A2B;
  --pv-text-secondary: #5C6B5C;
  --pv-border: #DCEFDD;

  /* --- Type ----------------------------------------------------------
     DM Serif Display: warm, editorial, used ONLY for the hero headline.
     Inter: everything else. This pairing is the CozyPaws reference
     exactly — kept as-is because it's doing real work here (serif
     headline = warmth, sans body = clarity/trust). */
  --pv-font-display: 'DM Serif Display', 'Noto Serif Thai', serif;
  --pv-font-body: 'Inter', 'Noto Sans Thai', sans-serif;

  --pv-radius-sm: 10px;
  --pv-radius-md: 18px;
  --pv-radius-lg: 28px;
  --pv-shadow-card: 0 16px 36px -14px rgba(26, 61, 26, 0.22);
  --pv-shadow-soft: 0 6px 18px -8px rgba(26, 61, 26, 0.14);
}

* { box-sizing: border-box; }

body.pv-hero-page {
  margin: 0;
  background: var(--pv-bg);
  color: var(--pv-text);
  font-family: var(--pv-font-body);
  -webkit-font-smoothing: antialiased;
}

.pv-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------------------------------------------------------------------
   Header / Nav
--------------------------------------------------------------------- */
.pv-header { position: relative; z-index: 30; }
.pv-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }

.pv-logo { display: flex; align-items: center; gap: 8px; font-family: var(--pv-font-display); font-weight: 400; font-size: 22px; color: var(--pv-ink); text-decoration: none; }
.pv-logo-mark { width: 30px; height: 30px; border-radius: 9px; background: var(--pv-ink); flex-shrink: 0; position: relative; }
.pv-logo-mark::after { content:''; position:absolute; inset:8px; border-radius:50%; border:2px solid var(--pv-bg); }

.pv-nav { display: none; gap: 32px; list-style: none; margin: 0; padding: 0; }
.pv-nav a { font-size: 14.5px; font-weight: 500; color: var(--pv-text); text-decoration: none; }
.pv-nav a:hover, .pv-nav a:focus-visible { color: var(--pv-ink); }

.pv-header-actions { display: flex; align-items: center; gap: 10px; }
.pv-icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  border: 1.5px solid rgba(26,61,26,0.18);
  background: transparent; color: var(--pv-ink); cursor: pointer;
  text-decoration: none;
}
.pv-icon-btn-accent { background: var(--pv-accent); border-color: var(--pv-accent); color: #fff; display: flex; }
.pv-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--pv-ink); display: flex; align-items:center; justify-content:center; color:#fff; font-size: 13px; font-weight:700; }

@media (min-width: 640px) { .pv-icon-btn { display: flex; } }
@media (min-width: 1024px) { .pv-nav { display: flex; } }

.pv-btn-outline-sm {
  display: none;
  font-size: 13.5px; font-weight: 600; color: var(--pv-ink);
  border: 1.5px solid var(--pv-ink); border-radius: 999px; padding: 8px 18px;
  text-decoration: none; white-space: nowrap; transition: background 0.15s ease, color 0.15s ease;
}
.pv-btn-outline-sm:hover, .pv-btn-outline-sm:focus-visible { background: var(--pv-ink); color: #fff; }
@media (min-width: 1024px) { .pv-btn-outline-sm { display: inline-block; } }

/* ---------------------------------------------------------------------
   Hero — viewport-tall, photo collage anchors the bottom
--------------------------------------------------------------------- */
.pv-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 0;
}

.pv-hero-text {
  text-align: center;
  padding: clamp(24px, 5vh, 64px) 24px 0;
  position: relative;
  z-index: 5;
}
.pv-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--pv-font-body); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--pv-ink-soft);
}
.pv-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pv-green); box-shadow: 0 0 0 3px rgba(34,160,107,0.18); }

.pv-h1 {
  font-family: var(--pv-font-display);
  font-weight: 400;
  color: var(--pv-ink);
  font-size: clamp(42px, 8vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 14px 0 22px;
}
.pv-h1-line { display: block; overflow: visible; }
.pv-h1-word { display: inline-block; opacity: 0; }

.pv-hero-search {
  max-width: 620px;
  margin: 0 auto;
}
.pv-search {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--pv-bg-card);
  border-radius: var(--pv-radius-lg);
  padding: 8px;
  box-shadow: var(--pv-shadow-card);
}
@media (min-width: 560px) { .pv-search { flex-direction: row; align-items: stretch; } }
.pv-search-field { flex: 1; display: flex; flex-direction: column; gap: 2px; padding: 8px 16px; border-radius: var(--pv-radius-md); text-align: left; }
.pv-search-field:hover { background: rgba(26,61,26,0.04); }
.pv-search-field label { font-size: 11px; font-weight: 600; color: var(--pv-text-secondary); }
.pv-search-field input { border: none; outline: none; background: transparent; font-family: var(--pv-font-body); font-size: 14.5px; color: var(--pv-text); padding: 2px 0; width: 100%; }
.pv-search-field input::placeholder { color: #93A693; }
.pv-search-divider { width: 1px; background: var(--pv-border); display: none; }
@media (min-width: 560px) { .pv-search-divider { display: block; } }
.pv-search-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pv-accent); color: #fff; font-weight: 700; font-size: 14.5px;
  border: none; border-radius: var(--pv-radius-md); padding: 14px 24px; cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease; white-space: nowrap;
}
.pv-search-btn:hover, .pv-search-btn:focus-visible { background: var(--pv-accent-hover); }
.pv-search-btn:active { transform: scale(0.98); }

.pv-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; }
.pv-chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  border-radius: 999px; padding: 8px 15px; text-decoration: none;
  border: 1.5px solid rgba(26,61,26,0.16); color: var(--pv-ink); background: rgba(255,255,255,0.6);
}
.pv-chip:hover { background: #fff; }
.pv-chip-emergency { border-color: rgba(229,72,77,0.4); color: var(--pv-red); background: rgba(229,72,77,0.08); }

/* Floating cards — desktop only, positioned either side of the headline */
.pv-float-card {
  position: absolute; z-index: 6;
  background: var(--pv-bg-card);
  border-radius: var(--pv-radius-md);
  box-shadow: var(--pv-shadow-card);
  padding: 12px;
  display: none;
}
@media (min-width: 1024px) { .pv-float-card { display: block; } }

.pv-card-live { top: 60px; left: 48px; width: clamp(180px, 15vw, 250px); }
.pv-card-live-photo {
  aspect-ratio: 250/230; border-radius: 16px; overflow: hidden; position: relative;
  background: linear-gradient(150deg, #FFD9A8, #FFB37A);
  display: flex; align-items: center; justify-content: center;
}
.pv-card-live-arrow {
  position: absolute; bottom: 8px; right: 8px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--pv-ink); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.pv-card-live-name { font-size: 13.5px; color: var(--pv-text-secondary); margin: 10px 2px 2px; }
.pv-card-live-status { font-size: 14.5px; font-weight: 700; color: var(--pv-ink); margin: 0 2px; }

.pv-card-trust { top: 60px; right: 48px; width: clamp(130px, 10vw, 180px); text-align: center; }
.pv-card-trust-photo {
  aspect-ratio: 180/280; border-radius: 16px; overflow: hidden; position: relative;
  background: linear-gradient(150deg, #BFE8C6, #8FCB9C);
}
.pv-card-trust-badge {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--pv-ink);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.pv-card-trust-caption { font-size: 12px; color: var(--pv-text-secondary); margin-top: 10px; line-height: 1.4; }

/* ---------------------------------------------------------------------
   Bottom photo collage — full-bleed, edge to edge (the CozyPaws signature)
--------------------------------------------------------------------- */
.pv-collage {
  display: flex; align-items: flex-end; width: 100%;
  margin-top: auto;
}
.pv-collage-panel {
  position: relative; flex: 1; overflow: hidden;
  min-height: 200px;
}
.pv-collage-panel.pv-collage-center { flex: 1.28; }
.pv-collage-panel img,
.pv-collage-photo { width: 100%; height: 100%; display: block; object-fit: cover; }

.pv-collage-photo {
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(48px, 8vw, 88px);
}
.pv-collage-left .pv-collage-photo { background: linear-gradient(160deg, #FFDFB0, #FFB37A); aspect-ratio: 3/4; max-height: min(58vh, 46vw); }
.pv-collage-center .pv-collage-photo { background: linear-gradient(160deg, #FFCF8F, #F09A4E); aspect-ratio: 3/4; max-height: min(78vh, 62vw); }
.pv-collage-right .pv-collage-photo { background: linear-gradient(160deg, #CDEFD3, #97D2A6); aspect-ratio: 3/4; max-height: min(58vh, 46vw); }

.pv-collage-overlay { position: absolute; left: 0; right: 0; bottom: clamp(16px, 3.5vh, 40px); padding: 0 20px; z-index: 4; }
.pv-collage-left .pv-collage-overlay { text-align: left; }
.pv-collage-right .pv-collage-overlay { text-align: right; }
.pv-collage-center .pv-collage-overlay { text-align: center; }

.pv-stat-badge { display: inline-flex; align-items: center; gap: 8px; }
.pv-stat-badge-num { font-family: var(--pv-font-display); font-size: clamp(24px, 3vw, 34px); color: #fff; }
.pv-verified-stack { display: flex; }
.pv-verified-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--pv-ink); border: 2px solid #fff; margin-left: -8px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:11px; }
.pv-verified-dot:first-child { margin-left: 0; }
.pv-collage-caption { font-size: 12.5px; color: rgba(255,255,255,0.9); margin-top: 4px; max-width: 220px; }
.pv-collage-right .pv-collage-caption { margin-left: auto; }

.pv-collage-center-heading { font-family: var(--pv-font-display); color: #fff; font-size: clamp(22px, 3vw, 32px); margin: 0 0 16px; line-height: 1.15; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.pv-collage-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pv-accent); color: #fff; font-weight: 700; font-size: 14px;
  border-radius: 999px; padding: 12px 22px; text-decoration: none;
}
.pv-collage-cta:hover { background: var(--pv-accent-hover); }

.pv-rating-star { color: #FFC94D; font-size: 18px; }

/* ---------------------------------------------------------------------
   Mobile hero (below the collage-anchored desktop layout)
--------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .pv-hero { min-height: auto; padding-top: 8px; }
  .pv-hero-text { padding-top: 12px; }
  .pv-h1 { font-size: clamp(32px, 10vw, 44px); }
  .pv-collage-center .pv-collage-photo,
  .pv-collage-left .pv-collage-photo,
  .pv-collage-right .pv-collage-photo { max-height: none; aspect-ratio: 1/1; }
}

/* ---------------------------------------------------------------------
   Trust stat strip (below hero, above the "quick actions" cards)
--------------------------------------------------------------------- */
.pv-trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
  padding: 30px 24px; text-align: center;
}
.pv-trust-item .pv-trust-num { font-family: var(--pv-font-display); font-size: 26px; color: var(--pv-ink); }
.pv-trust-item .pv-trust-label { font-size: 12.5px; color: var(--pv-text-secondary); margin-top: 2px; }

/* ---------------------------------------------------------------------
   Quick-action / "search by need" cards
--------------------------------------------------------------------- */
.pv-showcase { padding: 20px 0 80px; }
.pv-showcase-head { text-align: center; max-width: 560px; margin: 0 auto 34px; }
.pv-showcase-head h2 { font-family: var(--pv-font-display); font-weight: 400; color: var(--pv-ink); font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 10px; }
.pv-showcase-head p { color: var(--pv-text-secondary); font-size: 15px; margin: 0; }

.pv-panels { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .pv-panels { grid-template-columns: repeat(3, 1fr); } }

.pv-panel {
  border-radius: var(--pv-radius-lg); padding: 28px 26px 26px;
  display: flex; flex-direction: column; min-height: 220px;
  text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--pv-shadow-soft); background: var(--pv-bg-card);
}
.pv-panel:hover { transform: translateY(-4px); box-shadow: var(--pv-shadow-card); }
.pv-panel-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 18px; }
.pv-panel-emergency .pv-panel-icon { background: rgba(229,72,77,0.12); }
.pv-panel-specialty .pv-panel-icon { background: rgba(34,160,107,0.12); }
.pv-panel-price .pv-panel-icon { background: rgba(232,106,16,0.12); }
.pv-panel h3 { font-family: var(--pv-font-display); font-weight: 400; font-size: 20px; color: var(--pv-ink); margin: 0 0 8px; }
.pv-panel p { font-size: 14px; color: var(--pv-text-secondary); line-height: 1.55; margin: 0 0 20px; flex: 1; }
.pv-panel-link { font-size: 13.5px; font-weight: 700; color: var(--pv-ink); }
.pv-panel-emergency .pv-panel-link { color: var(--pv-red); }
.pv-panel-price .pv-panel-link { color: var(--pv-accent-hover); }

/* ---------------------------------------------------------------------
   Shared section head (used by every section below, and by Quick Actions)
--------------------------------------------------------------------- */
.pv-section { padding: 20px 0 76px; }
.pv-section-white { background: var(--pv-bg-card); }
.pv-section-head { text-align: center; max-width: 560px; margin: 0 auto 34px; }
.pv-section-head.pv-align-left { text-align: left; margin: 0 0 28px; max-width: none; }
.pv-section-head h2 { font-family: var(--pv-font-display); font-weight: 400; color: var(--pv-ink); font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 10px; }
.pv-section-head p { color: var(--pv-text-secondary); font-size: 15px; margin: 0; }
.pv-section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.pv-section-link { font-size: 13.5px; font-weight: 700; color: var(--pv-ink); text-decoration: none; white-space: nowrap; }
.pv-section-link:hover { color: var(--pv-accent); }

/* ---------------------------------------------------------------------
   4. Near You — hospital cards
--------------------------------------------------------------------- */
.pv-hcard-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .pv-hcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pv-hcard-grid { grid-template-columns: repeat(4, 1fr); } }

.pv-hcard { background: var(--pv-bg-card); border-radius: var(--pv-radius-lg); overflow: hidden; box-shadow: var(--pv-shadow-soft); transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; }
.pv-hcard:hover { transform: translateY(-3px); box-shadow: var(--pv-shadow-card); }
.pv-hcard-photo { aspect-ratio: 4/3; position: relative; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.pv-hcard-status { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,0.92); display: inline-flex; align-items: center; gap: 5px; }
.pv-hcard-status-dot { width: 6px; height: 6px; border-radius: 50%; }
.pv-hcard-status.pv-open .pv-hcard-status-dot { background: var(--pv-green); }
.pv-hcard-status.pv-closed { color: var(--pv-text-secondary); }
.pv-hcard-status.pv-closed .pv-hcard-status-dot { background: #B8C4B8; }
.pv-hcard-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pv-hcard-name { font-size: 15.5px; font-weight: 700; color: var(--pv-ink); margin: 0; }
.pv-hcard-meta { font-size: 12.5px; color: var(--pv-text-secondary); }
.pv-hcard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 2px 0 6px; }
.pv-hcard-actions { display: flex; gap: 8px; margin-top: auto; }
.pv-hcard-call {
  flex: 1; text-align: center; font-size: 13px; font-weight: 700; color: #fff;
  background: var(--pv-accent); border-radius: var(--pv-radius-sm); padding: 9px 10px; text-decoration: none;
}
.pv-hcard-call:hover { background: var(--pv-accent-hover); }
.pv-hcard-view { font-size: 13px; font-weight: 600; color: var(--pv-ink); border: 1.5px solid var(--pv-border); border-radius: var(--pv-radius-sm); padding: 9px 12px; text-decoration: none; }

/* ---------------------------------------------------------------------
   5. Specialty grid
--------------------------------------------------------------------- */
.pv-specialty-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .pv-specialty-grid { grid-template-columns: repeat(4, 1fr); } }

.pv-specialty-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--pv-bg-card); border-radius: var(--pv-radius-md); padding: 22px 12px;
  text-decoration: none; text-align: center; transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--pv-shadow-soft);
}
.pv-specialty-item:hover { transform: translateY(-3px); box-shadow: var(--pv-shadow-card); }
.pv-specialty-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--pv-bg); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.pv-specialty-label { font-size: 13.5px; font-weight: 600; color: var(--pv-ink); }

/* ---------------------------------------------------------------------
   6. Price highlights
--------------------------------------------------------------------- */
.pv-price-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .pv-price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pv-price-grid { grid-template-columns: repeat(4, 1fr); } }

.pv-price-card { background: var(--pv-bg-card); border-radius: var(--pv-radius-md); padding: 20px 20px 18px; box-shadow: var(--pv-shadow-soft); text-decoration: none; display: block; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.pv-price-card:hover { transform: translateY(-3px); box-shadow: var(--pv-shadow-card); }
.pv-price-icon { font-size: 22px; margin-bottom: 12px; }
.pv-price-name { font-size: 14.5px; font-weight: 600; color: var(--pv-text); margin: 0 0 6px; }
.pv-price-value { font-family: var(--pv-font-display); font-size: 24px; color: var(--pv-ink); margin: 0 0 4px; }
.pv-price-caption { font-size: 11.5px; color: var(--pv-text-secondary); }

/* ---------------------------------------------------------------------
   7. Cat focus vertical
--------------------------------------------------------------------- */
.pv-cat-banner {
  background: linear-gradient(120deg, #FFE9D2, #FFF3E6);
  border-radius: var(--pv-radius-lg);
  padding: 40px clamp(24px, 5vw, 56px);
  display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center;
}
@media (min-width: 900px) { .pv-cat-banner { flex-direction: row; text-align: left; } }
.pv-cat-icon { width: 92px; height: 92px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 44px; flex-shrink: 0; box-shadow: var(--pv-shadow-soft); }
.pv-cat-content h2 { font-family: var(--pv-font-display); font-weight: 400; color: var(--pv-ink); font-size: clamp(24px, 3vw, 30px); margin: 0 0 8px; }
.pv-cat-content p { color: var(--pv-text-secondary); font-size: 14.5px; margin: 0 0 18px; max-width: 46ch; }
.pv-cat-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
@media (min-width: 900px) { .pv-cat-links { justify-content: flex-start; } }
.pv-cat-link { font-size: 13.5px; font-weight: 700; color: var(--pv-ink); background: #fff; border-radius: 999px; padding: 10px 18px; text-decoration: none; box-shadow: var(--pv-shadow-soft); }
.pv-cat-link:hover { background: var(--pv-accent); color: #fff; }

/* ---------------------------------------------------------------------
   8. Content hub (articles)
--------------------------------------------------------------------- */
.pv-article-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .pv-article-grid { grid-template-columns: repeat(3, 1fr); } }

.pv-article-card { text-decoration: none; display: block; }
.pv-article-photo { aspect-ratio: 16/10; border-radius: var(--pv-radius-md); display: flex; align-items: center; justify-content: center; font-size: 34px; margin-bottom: 14px; }
.pv-article-tag { font-size: 11px; font-weight: 700; color: var(--pv-ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }
.pv-article-title { font-size: 16.5px; font-weight: 700; color: var(--pv-ink); margin: 6px 0 6px; line-height: 1.4; }
.pv-article-excerpt { font-size: 13.5px; color: var(--pv-text-secondary); line-height: 1.55; margin: 0; }

/* ---------------------------------------------------------------------
   9. Business CTA
--------------------------------------------------------------------- */
.pv-cta-banner {
  background: var(--pv-ink); color: #fff; border-radius: var(--pv-radius-lg);
  padding: clamp(40px, 6vw, 64px) 24px; text-align: center;
}
.pv-cta-banner h2 { font-family: var(--pv-font-display); font-weight: 400; font-size: clamp(26px, 3.6vw, 38px); margin: 0 0 14px; }
.pv-cta-banner p { color: rgba(255,255,255,0.78); font-size: 15px; max-width: 46ch; margin: 0 auto 26px; }
.pv-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pv-cta-primary { background: var(--pv-accent); color: #fff; font-weight: 700; font-size: 14.5px; border-radius: 999px; padding: 13px 26px; text-decoration: none; }
.pv-cta-primary:hover { background: var(--pv-accent-hover); }
.pv-cta-secondary { border: 1.5px solid rgba(255,255,255,0.4); color: #fff; font-weight: 600; font-size: 14.5px; border-radius: 999px; padding: 13px 26px; text-decoration: none; }
.pv-cta-secondary:hover { border-color: #fff; }

/* ---------------------------------------------------------------------
   Motion — page-load choreography for the hero, scroll-reveal below
--------------------------------------------------------------------- */
@keyframes pv-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pv-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pv-word-pop {
  0%   { opacity: 0; transform: translateY(46px) scale(0.75) rotate(-3deg); }
  65%  { opacity: 1; transform: translateY(-5px) scale(1.03) rotate(1deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}
@keyframes pv-slide-in-left { from { opacity: 0; transform: translateX(-32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pv-slide-in-right { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pv-photo-reveal { from { opacity: 0; transform: translateY(60px) scale(1.02); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes pv-scale-in { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }

.pv-anim-fade-in { animation: pv-fade-in 0.6s ease-out both; }
.pv-anim-fade-up { animation: pv-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) both; }
.pv-h1-word { animation: pv-word-pop 0.8s cubic-bezier(0.34,1.56,0.64,1) both; }
.pv-anim-slide-left { animation: pv-slide-in-left 0.8s cubic-bezier(0.16,1,0.3,1) both; }
.pv-anim-slide-right { animation: pv-slide-in-right 0.8s cubic-bezier(0.16,1,0.3,1) both; }
.pv-anim-photo { animation: pv-photo-reveal 1s cubic-bezier(0.16,1,0.3,1) both; }
.pv-anim-scale { animation: pv-scale-in 0.7s cubic-bezier(0.16,1,0.3,1) both; }

.pv-d1 { animation-delay: .1s; } .pv-d2 { animation-delay: .2s; } .pv-d3 { animation-delay: .3s; }
.pv-d4 { animation-delay: .4s; } .pv-d5 { animation-delay: .5s; } .pv-d6 { animation-delay: .6s; }
.pv-d7 { animation-delay: .7s; } .pv-d8 { animation-delay: .8s; } .pv-d9 { animation-delay: .9s; }

[data-pv-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
[data-pv-reveal].pv-in { opacity: 1; transform: translateY(0); }
[data-pv-reveal-delay="1"] { transition-delay: .08s; }
[data-pv-reveal-delay="2"] { transition-delay: .16s; }
[data-pv-reveal-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .pv-h1-word, .pv-anim-fade-in, .pv-anim-fade-up, .pv-anim-slide-left,
  .pv-anim-slide-right, .pv-anim-photo, .pv-anim-scale {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  [data-pv-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* =====================================================================
   10. Hospital Profile — Patch 02 Final QA
   ===================================================================== */
.pv-hospital-profile {
  max-width: 980px;
  margin: 24px auto 96px;
  display: grid;
  gap: 18px;
}

.pv-hospital-header,
.pv-hospital-section {
  background: var(--pv-bg-card);
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-md);
  box-shadow: var(--pv-shadow-soft);
}

.pv-hospital-header {
  padding: clamp(22px, 4vw, 36px);
}

.pv-hospital-section {
  padding: clamp(20px, 3vw, 28px);
}

.pv-hospital-heading-row,
.pv-section-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.pv-hospital-name {
  margin: 0;
  color: var(--pv-ink);
  font-family: var(--pv-font-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
}

.pv-hospital-name-en {
  margin: 8px 0 0;
  color: var(--pv-text-secondary);
  font-size: 14px;
}

.pv-hospital-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 360px;
}

.pv-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
}

.pv-badge-open,
.pv-badge-24h,
.pv-badge-verified {
  background: rgba(34,160,107,.10);
  color: #187a51;
  border-color: rgba(34,160,107,.2);
}

.pv-badge-closed,
.pv-badge-unverified {
  background: #f4f6f4;
  color: var(--pv-text-secondary);
  border-color: var(--pv-border);
}

.pv-badge-emergency {
  background: rgba(229,72,77,.08);
  color: var(--pv-red);
  border-color: rgba(229,72,77,.22);
}

.pv-hospital-address {
  margin: 22px 0 0;
  color: var(--pv-text);
  line-height: 1.65;
}

.pv-hospital-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pv-hospital-actions .pv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.pv-btn-call {
  background: var(--pv-accent);
  color: #fff;
}
.pv-btn-call:hover { background: var(--pv-accent-hover); }

.pv-btn-line,
.pv-btn-directions {
  color: var(--pv-ink);
  background: var(--pv-bg);
  border: 1px solid var(--pv-border);
}
.pv-btn-line:hover,
.pv-btn-directions:hover { background: #fff; }

.pv-hospital-section h2 {
  margin: 0 0 16px;
  color: var(--pv-ink);
  font-size: 21px;
  line-height: 1.35;
}

.pv-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pv-fact,
.pv-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--pv-bg);
  border: 1px solid var(--pv-border);
  font-size: 13px;
}

.pv-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pv-tag small {
  margin-left: 5px;
  color: var(--pv-text-secondary);
}

.pv-tag-verified {
  border-color: rgba(34,160,107,.25);
}

.pv-tag-unverified {
  background: #f7f8f7;
}

.pv-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.pv-hours-table,
.pv-services-table {
  width: 100%;
  border-collapse: collapse;
}

.pv-hours-table th,
.pv-hours-table td,
.pv-services-table th,
.pv-services-table td {
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--pv-border);
}

.pv-hours-table th,
.pv-services-table th {
  color: var(--pv-ink);
  font-weight: 600;
}

.pv-hours-table tr:last-child th,
.pv-hours-table tr:last-child td,
.pv-services-table tr:last-child th,
.pv-services-table tr:last-child td {
  border-bottom: 0;
}

.pv-price-pending,
.pv-verification-pending {
  color: #8a5b19;
}

.pv-price-note,
.pv-price-disclaimer,
.pv-source-item small,
.pv-claim-cta p {
  color: var(--pv-text-secondary);
  font-size: 12.5px;
  line-height: 1.6;
}

.pv-price-note { margin-top: 5px; }
.pv-price-disclaimer { margin: 14px 0 0; }

.pv-doctor-list {
  display: grid;
  gap: 12px;
}

.pv-doctor-card {
  padding: 16px;
  border-radius: var(--pv-radius-sm);
  background: var(--pv-bg);
  border: 1px solid var(--pv-border);
}

.pv-doctor-name {
  color: var(--pv-ink);
  font-weight: 700;
}

.pv-doctor-schedule {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--pv-text-secondary);
  font-size: 13px;
}

.pv-section-heading-row a,
.pv-source-item a {
  color: var(--pv-ink);
  font-weight: 600;
}

.pv-map-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(135deg, #eef9ef, #e3f3e7);
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-md);
  text-decoration: none;
  color: var(--pv-text);
}

.pv-map-pin {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  font-size: 21px;
}

.pv-map-card strong {
  display: block;
  color: var(--pv-ink);
}

.pv-map-card small {
  display: block;
  margin-top: 4px;
  color: var(--pv-text-secondary);
  line-height: 1.45;
}

.pv-map-arrow {
  color: var(--pv-ink);
  font-size: 22px;
}

.pv-verification-status {
  margin: 0 0 14px;
  font-weight: 600;
}

.pv-verification-ok {
  color: #187a51;
}

.pv-source-list {
  display: grid;
  gap: 8px;
}

.pv-source-item {
  margin: 0;
  padding: 12px 14px;
  background: #f8faf8;
  border-radius: var(--pv-radius-sm);
}

.pv-source-item small {
  display: block;
  margin-top: 3px;
}

.pv-claim-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #fff5e8, #fffaf4);
}

.pv-claim-cta strong {
  color: var(--pv-ink);
  font-size: 17px;
}

.pv-claim-cta p {
  margin: 5px 0 0;
}

.pv-claim-button {
  display: inline-block !important;
  flex-shrink: 0;
}

.pv-hospital-similar-grid {
  display: grid;
  gap: 10px;
}

.pv-hospital-similar-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-sm);
  color: var(--pv-ink);
  text-decoration: none;
  background: #fff;
}

.pv-hospital-similar-card:hover {
  background: var(--pv-bg);
}

.pv-hospital-similar-name {
  font-weight: 700;
}

.pv-sticky-bottom-bar {
  display: none;
}

@media (max-width: 720px) {
  .pv-hospital-profile {
    margin-top: 12px;
    margin-bottom: 92px;
    gap: 12px;
  }

  .pv-hospital-heading-row,
  .pv-section-heading-row,
  .pv-claim-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .pv-hospital-status {
    justify-content: flex-start;
    max-width: none;
  }

  .pv-hospital-actions .pv-btn {
    flex: 1 1 calc(50% - 8px);
  }

  .pv-claim-button {
    text-align: center;
  }

  .pv-sticky-bottom-bar {
    position: fixed;
    z-index: 80;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(26,61,26,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 12px 34px rgba(26,61,26,.2);
    backdrop-filter: blur(10px);
  }

  .pv-sticky-action {
    flex: 1;
    min-width: 0;
    text-align: center;
    border-radius: 12px;
    padding: 11px 7px;
    color: var(--pv-ink);
    background: var(--pv-bg);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
  }

  .pv-sticky-action:first-child {
    color: #fff;
    background: var(--pv-accent);
  }
}


/* =====================================================================
   11. Search / Filters MVP — Patch 03
   ===================================================================== */
.pv-search-page {
  padding-top: 34px;
  padding-bottom: 80px;
}

.pv-search-page-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.pv-search-heading {
  margin: 0;
  color: var(--pv-ink);
  font-family: var(--pv-font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
}

.pv-search-count {
  margin: 7px 0 0;
  color: var(--pv-text-secondary);
}

.pv-search-keyword-form {
  display: flex;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 22px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--pv-border);
  border-radius: 18px;
  box-shadow: var(--pv-shadow-soft);
}

.pv-search-keyword-form input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 9px 12px;
  color: var(--pv-text);
  font: inherit;
}

.pv-search-keyword-form button,
.pv-filter-submit {
  border: 0;
  border-radius: 999px;
  background: var(--pv-accent);
  color: #fff;
  padding: 10px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.pv-search-keyword-form button:hover,
.pv-filter-submit:hover {
  background: var(--pv-accent-hover);
}

.pv-search-layout {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.pv-search-filters {
  position: sticky;
  top: 86px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-md);
  box-shadow: var(--pv-shadow-soft);
}

.pv-filter-form,
.pv-filter-group {
  display: grid;
  gap: 10px;
}

.pv-filter-group + .pv-filter-group {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--pv-border);
}

.pv-filter-label {
  color: var(--pv-ink);
  font-weight: 700;
  font-size: 13px;
}

.pv-filter-select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--pv-border);
  border-radius: 11px;
  background: #fff;
  color: var(--pv-text);
  padding: 8px 10px;
  font: inherit;
}

.pv-filter-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--pv-text);
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
}

.pv-filter-check input {
  margin-top: 2px;
  accent-color: var(--pv-ink);
}

.pv-filter-actions {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.pv-filter-clear {
  text-align: center;
  color: var(--pv-text-secondary);
  text-decoration: none;
  font-size: 12px;
  padding: 6px;
}

.pv-search-results {
  min-width: 0;
}

.pv-search-results .pv-hcard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pv-search-results .pv-hcard {
  min-width: 0;
}

.pv-search-empty {
  padding: 34px;
  background: #fff;
  border: 1px dashed var(--pv-border);
  border-radius: var(--pv-radius-md);
  text-align: center;
  color: var(--pv-text-secondary);
}

.pv-search-empty strong {
  display: block;
  margin-bottom: 7px;
  color: var(--pv-ink);
  font-size: 18px;
}

.pv-search-empty p {
  margin: 0;
}

.pv-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 26px;
}

.pv-pagination-link {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--pv-border);
  border-radius: 999px;
  background: #fff;
  color: var(--pv-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.pv-pagination-current {
  background: var(--pv-ink);
  color: #fff;
  border-color: var(--pv-ink);
}

.pv-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 900px) {
  .pv-search-layout {
    grid-template-columns: 1fr;
  }

  .pv-search-filters {
    position: static;
  }

  .pv-filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .pv-filter-group + .pv-filter-group {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .pv-filter-actions {
    align-self: end;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .pv-search-page {
    padding-top: 20px;
  }

  .pv-search-keyword-form {
    border-radius: 14px;
  }

  .pv-search-keyword-form button {
    padding-inline: 14px;
  }

  .pv-filter-form,
  .pv-search-results .pv-hcard-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================================
   12. Search UX compact filters — Patch 03B
   ===================================================================== */
.pv-filter-details { display:block; }
.pv-filter-details > summary { list-style:none; }
.pv-filter-details > summary::-webkit-details-marker { display:none; }

.pv-filter-summary {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding-right:20px;
  color:var(--pv-ink);
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  user-select:none;
}
.pv-filter-summary::after {
  content:"⌄";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-54%);
  color:var(--pv-text-secondary);
}
.pv-filter-details[open] .pv-filter-summary::after { content:"⌃"; }

.pv-filter-count {
  display:inline-grid;
  place-items:center;
  min-width:20px;
  height:20px;
  margin-left:auto;
  border-radius:999px;
  background:var(--pv-ink);
  color:#fff;
  font-size:10px;
  line-height:1;
}

.pv-filter-options {
  display:grid;
  gap:9px;
  margin-top:12px;
}

.pv-filter-options-scroll {
  max-height:220px;
  overflow-y:auto;
  padding-right:5px;
  scrollbar-width:thin;
}

.pv-search-filters {
  max-height:calc(100vh - 108px);
  overflow-y:auto;
  scrollbar-width:thin;
}

.pv-filter-clear {
  border:1px solid var(--pv-border);
  border-radius:999px;
  background:#fff;
}
.pv-filter-clear:hover {
  color:var(--pv-ink);
  background:var(--pv-bg);
}

@media (max-width:900px) {
  .pv-search-filters {
    max-height:none;
    overflow:visible;
  }
  .pv-filter-options-scroll { max-height:190px; }
}


/* =====================================================================
   13. Filter Sidebar Visibility — Patch 03D
   ===================================================================== */

/*
 * Do not create a second scrollable viewport for the whole filter sidebar.
 * Long option lists already scroll inside their own group.
 */
.pv-search-filters {
  max-height: none;
  overflow: visible;
}

/*
 * Keep the sidebar sticky on desktop, but let the page itself scroll.
 * This keeps all collapsed group headers discoverable.
 */
@media (min-width: 901px) {
  .pv-search-filters {
    position: sticky;
    top: 86px;
  }
}

/*
 * Long option groups remain compact.
 */
.pv-filter-options-scroll {
  max-height: 180px;
  overflow-y: auto;
}

/*
 * Closed groups should stay very compact so Equipment/Service are visible.
 */
.pv-filter-details:not([open]) {
  padding-bottom: 0;
}

.pv-filter-details:not([open]) .pv-filter-options {
  display: none;
}


/* =====================================================================
   14. Active Filter Chips — Patch 04
   ===================================================================== */
.pv-active-filters {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin:-4px 0 20px;
}
.pv-active-filters-label {
  color:var(--pv-text-secondary);
  font-size:12px;
  font-weight:600;
}
.pv-filter-chip {
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:30px;
  padding:5px 10px;
  border:1px solid var(--pv-border);
  border-radius:999px;
  background:#fff;
  color:var(--pv-ink);
  text-decoration:none;
  font-size:12px;
  font-weight:600;
}
.pv-filter-chip span {
  color:var(--pv-text-secondary);
  font-size:14px;
  line-height:1;
}
.pv-filter-chip:hover {
  background:var(--pv-bg);
  border-color:rgba(26,61,26,.24);
}
.pv-filter-chip-clear {
  color:var(--pv-text-secondary);
  background:transparent;
  border-style:dashed;
}
@media (max-width:640px) {
  .pv-active-filters { gap:6px; }
  .pv-active-filters-label { flex-basis:100%; }
}


/* =====================================================================
   15. SEO Taxonomy Landing Index — Patch 06
   ===================================================================== */
.pv-taxonomy-index {
  padding-top:42px;
  padding-bottom:84px;
}

.pv-taxonomy-head {
  max-width:820px;
  margin-bottom:26px;
}

.pv-taxonomy-head h1 {
  margin:0;
  color:var(--pv-ink);
  font-family:var(--pv-font-display);
  font-size:clamp(32px,5vw,50px);
  font-weight:400;
  line-height:1.15;
}

.pv-taxonomy-head p {
  max-width:720px;
  margin:12px 0 0;
  color:var(--pv-text-secondary);
  line-height:1.7;
}

.pv-taxonomy-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.pv-taxonomy-card {
  position:relative;
  display:grid;
  grid-template-columns:1fr auto;
  gap:7px 14px;
  min-height:112px;
  padding:20px 48px 20px 20px;
  border:1px solid var(--pv-border);
  border-radius:var(--pv-radius-md);
  background:#fff;
  color:var(--pv-ink);
  text-decoration:none;
  box-shadow:var(--pv-shadow-soft);
  transition:transform .16s ease, box-shadow .16s ease;
}

.pv-taxonomy-card:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(26,61,26,.10);
}

.pv-taxonomy-card-name {
  align-self:end;
  font-size:16px;
  font-weight:700;
  line-height:1.4;
}

.pv-taxonomy-card-meta {
  grid-column:1;
  color:var(--pv-text-secondary);
  font-size:12px;
}

.pv-taxonomy-card-arrow {
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:20px;
}

@media (max-width:900px) {
  .pv-taxonomy-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:600px) {
  .pv-taxonomy-index {
    padding-top:24px;
  }

  .pv-taxonomy-grid {
    grid-template-columns:1fr;
  }
}
