/* Shared styles for title-audit INDUSTRY pages (/title-audit/pets/, etc).
   Loaded after style.css, which owns the tool itself. Only the supporting
   content sections live here - hero, uploader and results stay identical to
   the generic page so there is one uploader design, not one per vertical. */

/* Visible breadcrumb. The BreadcrumbList JSON-LD is only legitimate if there
   is a trail a user can actually see, so the markup and this must ship together. */
.topbar:has(+ .crumbs) { border-bottom: 0; }
.crumbs { background: #fff; border-bottom: 1px solid var(--line); }
.crumbs-inner {
  max-width: 1120px; margin: 0 auto; padding: 9px 32px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft-text);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.crumbs a { color: var(--so-pink-text); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { color: #b6bbc9; }

/* industry chip in the hero, under the policy badge */
.vertical-tag {
  display: inline-block; margin: 0 0 18px; font-size: 12px; font-weight: 700;
  color: rgba(255, 255, 255, .92); letter-spacing: .04em;
}
.vertical-tag::before { content: "\1F43E\00a0\00a0"; }

/* ---- generic content section ---- */
.vsec { margin-top: 56px; }
.vsec > h2 {
  font-size: 24px; font-weight: 700; letter-spacing: -.01em; margin: 0 0 10px;
}
.vsec > .vsec-sub {
  color: #565c70; font-size: 15px; margin: 0 0 22px; font-weight: 500;
}

/* ---- "why pet catalogs get hit hardest" ---- */
.whylist { display: grid; gap: 12px; }
.why {
  background: var(--card); border-radius: 16px; padding: 20px 22px;
  box-shadow: var(--shadow); border-left: 3px solid var(--so-pink);
}
.why h3 { font-size: 15px; font-weight: 700; margin: 0 0 5px; }
.why p { margin: 0; font-size: 14px; color: #565c70; }

/* ---- worked before/after example ---- */
.example { background: var(--card); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); }
.ex-row + .ex-row { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.ex-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--ink-soft-text); margin-bottom: 6px;
}
.ex-title { font-size: 15px; line-height: 1.5; }
.ex-row.before .ex-title { color: #b9536a; }
.ex-row.after .ex-title { font-weight: 700; }
.ex-count { font-size: 12px; font-weight: 700; margin-left: 4px; white-space: nowrap; }
.ex-count.over { color: var(--negative); }
.ex-count.ok { color: var(--positive-text); }
.ex-note { font-size: 13px; color: var(--ink-soft-text); margin: 14px 0 0; font-weight: 500; }

/* ---- case studies: the .com's own OG cover art, self-hosted ---- */
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case {
  background: var(--card); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  text-decoration: none; color: inherit; transition: transform .12s, box-shadow .12s;
}
.case:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(35, 38, 58, .14); }
/* height:auto is load-bearing - without it the img's height attribute wins and
   the cover renders at its natural 397px regardless of the aspect-ratio. */
.case-img {
  width: 100%; height: auto; aspect-ratio: 1200 / 628; object-fit: cover; display: block;
  background: var(--bg); border-bottom: 1px solid var(--line);
}
.case-inner { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.case-stat {
  font-size: 34px; font-weight: 700; letter-spacing: -.02em; line-height: 1;
  background: var(--so-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 8px;
}
.case-what { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.case-body { font-size: 13.5px; color: #565c70; margin: 0 0 14px; flex: 1; }
.case-link { font-size: 12.5px; font-weight: 700; color: var(--so-pink-text); }

/* ---- FAQ ---- */
.faq { background: var(--card); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.faq details { border-top: 1px solid var(--line); }
.faq details:first-child { border-top: 0; }
.faq summary {
  cursor: pointer; padding: 20px 24px; font-size: 15px; font-weight: 700;
  list-style: none; display: flex; justify-content: space-between; gap: 16px;
  align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--so-pink); font-size: 20px; font-weight: 700;
  line-height: 1; flex: none;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { padding-bottom: 8px; }
.faq .answer { padding: 0 24px 22px; font-size: 14px; color: #565c70; }
.faq .answer p { margin: 0 0 10px; }
.faq .answer p:last-child { margin-bottom: 0; }
.faq .answer a { color: var(--so-pink-text); font-weight: 700; text-decoration: none; }
.faq .answer a:hover { text-decoration: underline; }

/* ---- cross-links / breadcrumb ---- */
.crosslinks {
  margin-top: 48px; background: var(--card); border-radius: 20px; padding: 26px 28px;
  box-shadow: var(--shadow);
}
.crosslinks h2 { font-size: 16px; font-weight: 700; margin: 0 0 14px; }
.crosslinks ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.crosslinks a { color: var(--so-pink-text); text-decoration: none; font-weight: 700; font-size: 14px; }
.crosslinks a:hover { text-decoration: underline; }
.crosslinks .cl-note { color: var(--ink-soft-text); font-weight: 500; }

@media (max-width: 520px) {
  .crumbs-inner { padding: 8px 22px; }
  .cases { grid-template-columns: 1fr; }
  .vsec { margin-top: 42px; }
  .vsec > h2 { font-size: 21px; }
  .example, .crosslinks { padding: 22px; }
}
