:root {
  --ink: #10202f;
  --muted: #60717d;
  --line: #dbe5e8;
  --soft: #f3f7f7;
  --panel: #ffffff;
  --brand: #2f7b78;
  --brand-dark: #235f5d;
  --accent: #f2c35f;
  --shadow: 0 18px 45px rgba(16, 32, 47, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  padding: 16px clamp(20px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--brand);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 38px);
  justify-content: center;
  font-weight: 750;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.language-select {
  display: grid;
  gap: 4px;
  min-width: 170px;
}

.language-select span {
  font-size: 0.72rem;
  font-weight: 850;
  color: var(--muted);
  text-transform: uppercase;
}

select,
input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid #cbd8dd;
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 88px));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0.2) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 82%, #ffffff 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 92vw);
  padding: clamp(56px, 8vw, 118px) clamp(20px, 4vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #314554;
  font-size: clamp(1.06rem, 1.6vw, 1.34rem);
}

.hero-actions,
.detail-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.icon-button,
.small-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.icon-button {
  color: white;
  background: var(--brand);
}

.button.primary:hover,
.icon-button:hover {
  background: var(--brand-dark);
}

.button.secondary,
.small-link {
  color: #335267;
  background: #f7fbfb;
  border-color: #d1dee2;
}

.button.wide {
  width: 100%;
}

.affiliation-note,
.form-note,
.market-note,
.availability {
  color: var(--muted);
}

.affiliation-note {
  max-width: 720px;
  margin-top: 24px;
  font-size: 0.95rem;
}

.proof-strip,
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip > div,
.stats-strip > div {
  display: grid;
  gap: 6px;
  padding: 26px clamp(20px, 4vw, 72px);
  background: white;
}

.proof-strip strong,
.stats-strip strong {
  font-size: 1.08rem;
}

.proof-strip span,
.stats-strip span {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin-bottom: 30px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.browse-band,
.finder-band,
.popular-band,
.coverage,
.scope-band,
.process-band,
.quote-band,
.detail-hero,
.cross-reference-band,
.detail-band,
.related-band,
.seo-copy-band,
.faq-band,
.reference-index,
.breadcrumb {
  padding: clamp(42px, 6vw, 82px) clamp(20px, 4vw, 72px);
}

.browse-band {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  border-bottom: 1px solid var(--line);
}

.browse-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.family-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.family-card,
.top-product-list a,
.popular-link,
.cross-reference-table,
.related-card,
.seo-card,
.coverage article,
.result-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(16, 32, 47, 0.05);
}

.family-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  padding: 14px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.family-card:hover,
.popular-link:hover,
.top-product-list a:hover {
  transform: translateY(-2px);
  border-color: #9fc4c2;
  box-shadow: var(--shadow);
}

.family-card-image,
.result-image,
.related-image {
  position: relative;
  display: grid;
  min-height: 92px;
  place-items: center;
  overflow: hidden;
  background: #eef5f5;
  border: 1px solid #d9e6e9;
  border-radius: 8px;
}

.family-card-image img,
.result-image img,
.related-image img,
.top-product-list img,
.detail-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

img.is-broken {
  display: none;
}

.image-fallback,
.is-missing .image-fallback {
  display: none;
  place-items: center;
  min-height: 100%;
  width: 100%;
  padding: 12px;
  color: var(--brand-dark);
  background:
    linear-gradient(135deg, rgba(47, 123, 120, 0.12), rgba(242, 195, 95, 0.12)),
    #f7fbfb;
  font-size: 0.94rem;
  font-weight: 900;
}

.is-missing .image-fallback {
  display: grid;
}

.family-card-copy {
  display: grid;
  gap: 5px;
}

.family-card-copy strong {
  font-size: 1.05rem;
}

.family-card-copy em,
.top-product-list em,
.popular-link em {
  color: var(--muted);
  font-style: normal;
}

.family-card-copy small {
  color: #435765;
}

.browse-aside {
  display: grid;
  gap: 18px;
}

.standard-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.standard-pill-grid a,
.chip-row span,
.tag-grid span,
.active-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #36566a;
  background: #edf6f6;
  border: 1px solid #d6e5e8;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.top-product-list {
  display: grid;
  gap: 10px;
}

.top-product-list a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  min-height: 86px;
  padding: 10px;
  text-decoration: none;
}

.top-product-list img {
  height: 66px;
  background: #eef5f5;
  border-radius: 8px;
}

.finder-band {
  background: #f7faf9;
}

.finder-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.15fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.search-panel,
.results-panel {
  padding: clamp(20px, 3vw, 34px);
}

.search-panel {
  border-right: 1px solid var(--line);
}

.search-panel label,
.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.suggestions button,
.filter-button-row button {
  min-height: 38px;
  padding: 8px 13px;
  color: #38596c;
  background: #eef6f6;
  border: 1px solid #d3e1e5;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.bulk-panel {
  margin: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.bulk-panel summary {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 850;
}

.bulk-panel small {
  color: var(--muted);
  font-weight: 700;
}

.facet-panel {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.facet-panel > div:first-child {
  display: grid;
  gap: 3px;
}

.facet-panel span {
  color: var(--muted);
}

.select-fallback,
.select-fallback select {
  display: none !important;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.active-filters[hidden] {
  display: none;
}

.facet-buttons {
  display: grid;
  gap: 16px;
}

.filter-button-group {
  display: grid;
  gap: 8px;
}

.filter-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button-row button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.filter-button-row button em {
  color: #6d7f89;
  font-size: 0.78rem;
  font-style: normal;
}

.filter-button-row button.is-active {
  color: white;
  background: var(--brand);
  border-color: var(--brand);
}

.filter-button-row button.is-active span {
  color: white;
}

.filter-button-row button.is-active em {
  color: rgba(255, 255, 255, 0.78);
}

.reset-filter {
  justify-self: start;
}

.results-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.results-header h3 {
  font-size: 1.8rem;
}

.data-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 13px;
  color: #315f5d;
  background: #e7f4f1;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

.results-list {
  display: grid;
  gap: 18px;
}

.load-more-row {
  display: flex;
  justify-content: center;
  padding: 8px 0 2px;
}

.load-more-row .button {
  gap: 10px;
  min-width: min(100%, 280px);
}

.load-more-row span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.result-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 22px;
}

.result-image {
  min-height: 142px;
}

.result-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.result-topline h4 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1;
}

.result-topline p,
.result-main h3,
.availability {
  margin: 6px 0 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.mini-specs,
.spec-table,
.structured-facts dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.mini-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-specs div,
.spec-table div,
.structured-facts dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) 1fr;
  gap: 12px;
  padding: 10px 12px;
  background: #fbfdfd;
  border: 1px solid #e0e9eb;
  border-radius: 8px;
}

dt {
  color: var(--muted);
  font-weight: 850;
}

dd {
  margin: 0;
  font-weight: 750;
}

.empty-state {
  display: grid;
  gap: 6px;
  min-height: 190px;
  place-content: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed #cbd8dd;
  border-radius: 8px;
  background: #fbfdfd;
}

.popular-grid,
.coverage-grid,
.seo-copy-grid,
.related-grid,
.index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.popular-link {
  display: grid;
  gap: 8px;
  padding: 18px;
  text-decoration: none;
}

.popular-link span {
  color: var(--brand-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.index-cta {
  margin-top: 20px;
}

.coverage article,
.seo-card,
.related-card {
  padding: 22px;
}

.scope-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  color: var(--brand);
  font-weight: 900;
}

.quote-band {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: #10202f;
  color: white;
}

.quote-band .eyebrow,
.quote-band .market-note,
.quote-band .form-note {
  color: #b9d7d5;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  color: var(--ink);
  background: white;
  border-radius: 8px;
}

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

.site-footer {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px clamp(20px, 4vw, 72px);
  color: #dbe5e8;
  background: #0c1824;
}

.site-footer div {
  display: grid;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
}

.analytics-consent {
  position: fixed;
  right: clamp(14px, 3vw, 36px);
  bottom: clamp(14px, 3vw, 36px);
  left: clamp(14px, 3vw, 36px);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 1060px;
  padding: 20px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-left: 6px solid var(--brand);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.analytics-consent strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.analytics-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.analytics-consent small {
  display: block;
  margin-top: 8px;
  color: #2f6865;
  font-size: 0.82rem;
  font-weight: 800;
}

.analytics-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.analytics-consent .button {
  min-height: 44px;
  padding-right: 18px;
  padding-left: 18px;
  white-space: nowrap;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--brand-dark);
  text-decoration: none;
}

.breadcrumb a::after {
  margin-left: 8px;
  color: #9aacb5;
  content: "/";
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.detail-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.detail-title {
  color: #314554;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 850;
}

.detail-intro-callout {
  max-width: 760px;
  margin: 20px 0 0;
  padding: 16px 18px;
  color: #1d3d4f;
  background: #edf7f6;
  border: 1px solid #cde3e1;
  border-left: 5px solid var(--brand);
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.context-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.context-links a {
  padding: 9px 13px;
  color: var(--brand-dark);
  background: #edf6f6;
  border: 1px solid #cfe1e3;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.detail-card {
  position: sticky;
  top: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-product-image {
  width: 100%;
  height: min(360px, 40vw);
  min-height: 240px;
  margin-bottom: 20px;
  padding: 12px;
  background: #eef5f5;
  border: 1px solid #dbe8ea;
  border-radius: 8px;
}

.detail-kpis {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.detail-kpis div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: #f8fbfb;
  border: 1px solid #e0e9eb;
  border-radius: 8px;
}

.cross-reference-table {
  overflow: hidden;
  margin-top: 22px;
}

.cross-reference-head,
.cross-reference-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.cross-reference-head {
  border-top: 0;
  color: var(--muted);
  background: #f7fbfb;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cross-reference-row strong {
  color: var(--ink);
}

.cross-reference-row span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cross-reference-row code,
.result-crossrefs code {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px solid #d9e5e8;
  border-radius: 8px;
  color: var(--brand-dark);
  background: #eef6f7;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 850;
}

.result-crossrefs {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.result-crossrefs strong {
  color: var(--ink);
}

.result-crossrefs code {
  margin: 0 4px 4px 0;
  min-height: 24px;
  font-size: 0.86rem;
}

.seo-copy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.structured-facts {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.faq-list summary {
  font-weight: 850;
  cursor: pointer;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-card {
  display: grid;
  gap: 12px;
}

.related-image {
  min-height: 150px;
}

.related-label,
.related-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.reference-index h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.index-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.index-link {
  display: grid;
  gap: 7px;
  padding: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.index-link span {
  color: var(--brand-dark);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .popular-grid,
  .coverage-grid,
  .index-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .finder-layout,
  .browse-layout,
  .detail-hero,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .search-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .language-select {
    min-width: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%);
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .proof-strip,
  .stats-strip,
  .family-card-grid,
  .popular-grid,
  .coverage-grid,
  .seo-copy-grid,
  .related-grid,
  .scope-layout,
  .process-list,
  .form-grid,
  .index-grid,
  .mini-specs {
    grid-template-columns: 1fr;
  }

  .family-card,
  .result-card,
  .top-product-list a {
    grid-template-columns: 1fr;
  }

  .search-row,
  .result-topline {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-footer {
    display: grid;
  }

  .cross-reference-head,
  .cross-reference-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .analytics-consent {
    grid-template-columns: 1fr;
  }

  .analytics-consent-actions {
    justify-content: stretch;
  }

  .analytics-consent .button {
    flex: 1 1 180px;
  }
}

@media (max-width: 420px) {
  .browse-band,
  .finder-band,
  .popular-band,
  .coverage,
  .scope-band,
  .process-band,
  .quote-band,
  .detail-hero,
  .cross-reference-band,
  .detail-band,
  .related-band,
  .seo-copy-band,
  .faq-band,
  .reference-index,
  .breadcrumb {
    padding-left: 14px;
    padding-right: 14px;
  }

  .finder-layout {
    overflow: visible;
  }

  .search-panel,
  .results-panel,
  .result-card,
  .quote-form,
  .detail-card {
    padding: 16px;
  }

  .button,
  .icon-button,
  .small-link {
    width: 100%;
  }
}
