/* ==========================================================================
   Steelhead Composites — Commercial Pressure Vessels
   Shared stylesheet for ALL Commercial Pressure Vessels Drupal pages.

   Recommended page wrapper:
     <div class="sh-commercial">...</div>

   The legacy/current landing-page wrapper .sh-commercial-landing is also
   supported so the existing landing-page HTML does not need to be changed.

   Reuses Bootstrap for containers, rows, columns, spacing and buttons.
   All custom selectors are scoped to Commercial Pressure Vessel content.
   ========================================================================== */
   
body.page-node-type-commercial-pressure-vessels .main-content__section {
    padding-bottom: 0;
}

.sh-commercial,
.sh-commercial-landing {
  --sh-navy: #08243a;
  --sh-navy-2: #0b304b;
  --sh-blue: #1597c5;
  --sh-blue-dark: #0d6f98;
  --sh-sky: #eaf6fb;
  --sh-ink: #1d2a33;
  --sh-muted: #5c6c78;
  --sh-line: #dbe4e9;
  --sh-light: #f6f9fb;
  --sh-white: #fff;
  --sh-radius-sm: 10px;
  --sh-radius: 18px;
  --sh-radius-lg: 24px;
  --sh-shadow: 0 10px 34px rgba(8, 36, 58, .07);
  --sh-shadow-lg: 0 28px 65px rgba(8, 36, 58, .18);
  color: var(--sh-ink);
}

.sh-commercial *,
.sh-commercial *::before,
.sh-commercial *::after,
.sh-commercial-landing *,
.sh-commercial-landing *::before,
.sh-commercial-landing *::after {
  box-sizing: border-box;
}


/* ==========================================================================
   Shared typography
   ========================================================================== */

.sh-commercial .sh-kicker,
.sh-commercial-landing .sh-kicker {
  margin: 0 0 .75rem;
  color: var(--sh-blue-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sh-commercial .sh-section-title,
.sh-commercial-landing .sh-section-title,
.sh-commercial-intro h2,
.sh-commercial-applications h2,
.sh-commercial-engineering h2,
.sh-commercial-cta h2 {
  margin: 0 0 1rem;
  color: var(--sh-navy);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.sh-commercial .sh-section-lead,
.sh-commercial-landing .sh-section-lead,
.sh-commercial-intro .lead {
  color: var(--sh-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.sh-commercial .sh-copy,
.sh-commercial-landing .sh-copy {
  color: var(--sh-muted);
  line-height: 1.72;
}

.sh-commercial .sh-text-link,
.sh-commercial-landing .sh-text-link {
  color: var(--sh-blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.sh-commercial .sh-text-link:hover,
.sh-commercial-landing .sh-text-link:hover {
  text-decoration: underline;
}


/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.sh-commercial .sh-breadcrumbs,
.sh-commercial-landing .sh-breadcrumbs {
  padding: .9rem 0;
  border-bottom: 1px solid var(--sh-line);
  background: #fff;
}

.sh-commercial .sh-breadcrumbs ol,
.sh-commercial-landing .sh-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .9rem;
}

.sh-commercial .sh-breadcrumbs li + li::before,
.sh-commercial-landing .sh-breadcrumbs li + li::before {
  content: "/";
  margin-right: .55rem;
  color: #91a1ab;
}

.sh-commercial .sh-breadcrumbs a,
.sh-commercial-landing .sh-breadcrumbs a {
  color: var(--sh-blue-dark);
  text-decoration: none;
}

.sh-commercial .sh-breadcrumbs [aria-current="page"],
.sh-commercial-landing .sh-breadcrumbs [aria-current="page"] {
  color: var(--sh-muted);
}


/* ==========================================================================
   Hero — landing, family and product pages
   ========================================================================== */

.sh-commercial-hero {
  padding: clamp(4rem, 7vw, 7rem) 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(21, 151, 197, .34),
      transparent 33%
    ),
    linear-gradient(
      120deg,
      #061d30 0%,
      #0a314d 58%,
      #0c759d 100%
    );
  overflow: hidden;
}

.sh-commercial-hero--compact {
  padding: clamp(3.25rem, 6vw, 5.5rem) 0;
}

.sh-commercial-hero .sh-kicker {
  color: #8fd5ef;
}

.sh-commercial-hero h1 {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.sh-commercial-hero .sh-product-series {
  margin: 0 0 .45rem;
  color: #8fd5ef;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sh-commercial-hero .sh-product-subtitle {
  margin: -.45rem 0 1.25rem;
  color: #b9dce9;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
}

.sh-commercial-hero .sh-hero-lead {
  max-width: 780px;
  margin-bottom: 1.75rem;
  color: #d7e9f1;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

/*
  Secondary/supporting copy inside dark heroes.
  Use this instead of .sh-copy inside a hero.
*/
.sh-commercial-hero .sh-hero-copy {
  max-width: 780px;
  margin: 0 0 1.5rem;
  color: #b9d3df;
  font-size: 1rem;
  line-height: 1.72;
}

.sh-commercial-hero .sh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.sh-commercial-hero .sh-hero-image {
  margin: 0;
  padding: 1.15rem;
  border-radius: var(--sh-radius-lg);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
}

.sh-commercial-hero .sh-hero-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.sh-commercial-hero .sh-hero-caption {
  margin: .8rem 0 .05rem;
  color: #61727d;
  font-size: .82rem;
  line-height: 1.45;
  text-align: center;
}


/* ==========================================================================
   Generic section spacing
   ========================================================================== */

.sh-commercial .sh-section,
.sh-commercial-landing .sh-section,
.sh-commercial-intro,
.sh-commercial-engineering {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.sh-commercial .sh-section--tight,
.sh-commercial-landing .sh-section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.sh-commercial .sh-section--light,
.sh-commercial-landing .sh-section--light,
.sh-commercial-applications {
  background: var(--sh-light);
}

.sh-commercial .sh-section--sky,
.sh-commercial-landing .sh-section--sky {
  background: var(--sh-sky);
}

.sh-commercial .sh-section--dark,
.sh-commercial-landing .sh-section--dark {
  color: #fff;
  background: var(--sh-navy);
}

.sh-commercial-intro {
  padding-bottom: 2.5rem;
}


/* ==========================================================================
   Family / product cards
   ========================================================================== */

.sh-commercial-products {
  padding: 2rem 0 clamp(5rem, 8vw, 7rem);
}

.sh-commercial .sh-family-grid,
.sh-commercial-landing .sh-family-grid,
.sh-commercial .sh-product-grid,
.sh-commercial-landing .sh-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.sh-commercial .sh-family-card,
.sh-commercial-landing .sh-family-card,
.sh-commercial .sh-product-card,
.sh-commercial-landing .sh-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  background: #fff;
  box-shadow: var(--sh-shadow);
}

.sh-commercial .sh-family-image,
.sh-commercial-landing .sh-family-image,
.sh-commercial .sh-product-card-image,
.sh-commercial-landing .sh-product-card-image {
  display: block;
  height: 280px;
  background: #eef3f6;
  overflow: hidden;
}

.sh-commercial .sh-family-image img,
.sh-commercial-landing .sh-family-image img,
.sh-commercial .sh-product-card-image img,
.sh-commercial-landing .sh-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.sh-commercial .sh-family-image:hover img,
.sh-commercial-landing .sh-family-image:hover img,
.sh-commercial .sh-product-card-image:hover img,
.sh-commercial-landing .sh-product-card-image:hover img {
  transform: scale(1.025);
}

.sh-commercial .sh-family-image--contain img,
.sh-commercial-landing .sh-family-image--contain img,
.sh-commercial .sh-product-card-image--contain img,
.sh-commercial-landing .sh-product-card-image--contain img {
  object-fit: contain;
  padding: 1.25rem;
  background: #f7fafc;
}

.sh-commercial .sh-family-content,
.sh-commercial-landing .sh-family-content,
.sh-commercial .sh-product-card-content,
.sh-commercial-landing .sh-product-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.65rem;
}

.sh-commercial .sh-family-type,
.sh-commercial-landing .sh-family-type,
.sh-commercial .sh-card-eyebrow,
.sh-commercial-landing .sh-card-eyebrow {
  margin: 0 0 .55rem;
  color: var(--sh-blue-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.sh-commercial .sh-family-card h2,
.sh-commercial-landing .sh-family-card h2,
.sh-commercial .sh-product-card h2,
.sh-commercial-landing .sh-product-card h2,
.sh-commercial .sh-product-card h3,
.sh-commercial-landing .sh-product-card h3 {
  margin: 0 0 .8rem;
  color: var(--sh-navy);
  font-size: 1.65rem;
  line-height: 1.15;
}

.sh-commercial .sh-family-card h2 a,
.sh-commercial-landing .sh-family-card h2 a,
.sh-commercial .sh-product-card h2 a,
.sh-commercial-landing .sh-product-card h2 a,
.sh-commercial .sh-product-card h3 a,
.sh-commercial-landing .sh-product-card h3 a {
  color: var(--sh-navy);
  text-decoration: none;
}

.sh-commercial .sh-family-card p,
.sh-commercial-landing .sh-family-card p,
.sh-commercial .sh-product-card p,
.sh-commercial-landing .sh-product-card p {
  color: var(--sh-muted);
  line-height: 1.6;
}

.sh-commercial .sh-product-list,
.sh-commercial-landing .sh-product-list {
  margin: .25rem 0 1.3rem;
  padding-left: 1.15rem;
  color: #425460;
}

.sh-commercial .sh-product-list li,
.sh-commercial-landing .sh-product-list li {
  margin-bottom: .35rem;
}

.sh-commercial .sh-family-content .sh-text-link,
.sh-commercial-landing .sh-family-content .sh-text-link,
.sh-commercial .sh-product-card-content .sh-text-link,
.sh-commercial-landing .sh-product-card-content .sh-text-link {
  margin-top: auto;
}


/* ==========================================================================
   Key facts / metric strip
   ========================================================================== */

.sh-commercial .sh-facts-grid,
.sh-commercial-landing .sh-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  background: var(--sh-line);
}

.sh-commercial .sh-fact,
.sh-commercial-landing .sh-fact {
  padding: 1.35rem 1.25rem;
  background: #fff;
}

.sh-commercial .sh-fact-label,
.sh-commercial-landing .sh-fact-label {
  display: block;
  margin-bottom: .25rem;
  color: var(--sh-muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.sh-commercial .sh-fact-value,
.sh-commercial-landing .sh-fact-value {
  display: block;
  color: var(--sh-navy);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}


/* ==========================================================================
   Feature / benefit cards
   ========================================================================== */

.sh-commercial .sh-feature-grid,
.sh-commercial-landing .sh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.sh-commercial .sh-feature-card,
.sh-commercial-landing .sh-feature-card {
  height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--sh-line);
  border-radius: 14px;
  background: #fff;
}

.sh-commercial .sh-feature-card h3,
.sh-commercial-landing .sh-feature-card h3 {
  margin: 0 0 .55rem;
  color: var(--sh-navy);
  font-size: 1.15rem;
}

.sh-commercial .sh-feature-card p,
.sh-commercial-landing .sh-feature-card p {
  margin: 0;
  color: var(--sh-muted);
  line-height: 1.58;
}


/* ==========================================================================
   Applications
   ========================================================================== */

.sh-commercial-applications {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.sh-commercial .sh-app-grid,
.sh-commercial-landing .sh-app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.sh-commercial .sh-app-card,
.sh-commercial-landing .sh-app-card {
  height: 100%;
  padding: 1.4rem;
  border: 1px solid var(--sh-line);
  border-radius: 14px;
  background: #fff;
}

.sh-commercial .sh-app-card h3,
.sh-commercial-landing .sh-app-card h3 {
  margin: 0 0 .5rem;
  color: var(--sh-navy);
  font-size: 1.15rem;
}

.sh-commercial .sh-app-card p,
.sh-commercial-landing .sh-app-card p {
  margin: 0;
  color: var(--sh-muted);
  line-height: 1.55;
}


/* ==========================================================================
   Split media/content blocks
   ========================================================================== */

.sh-commercial .sh-media-split,
.sh-commercial-landing .sh-media-split {
  align-items: center;
}

.sh-commercial .sh-media-frame,
.sh-commercial-landing .sh-media-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  background: #fff;
  box-shadow: var(--sh-shadow);
}

.sh-commercial .sh-media-frame img,
.sh-commercial-landing .sh-media-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.sh-commercial .sh-media-frame--contain img,
.sh-commercial-landing .sh-media-frame--contain img {
  max-height: 520px;
  padding: 1.25rem;
  object-fit: contain;
}

.sh-commercial .sh-media-caption,
.sh-commercial-landing .sh-media-caption {
  margin: 0;
  padding: .75rem 1rem;
  border-top: 1px solid var(--sh-line);
  color: var(--sh-muted);
  font-size: .82rem;
  line-height: 1.45;
}


/* ==========================================================================
   Specifications
   ========================================================================== */

.sh-commercial .sh-specs-wrap,
.sh-commercial-landing .sh-specs-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  background: #fff;
  box-shadow: var(--sh-shadow);
}

.sh-commercial .sh-specs-table,
.sh-commercial-landing .sh-specs-table {
  width: 100%;
  min-width: 680px;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.sh-commercial .sh-specs-table th,
.sh-commercial .sh-specs-table td,
.sh-commercial-landing .sh-specs-table th,
.sh-commercial-landing .sh-specs-table td {
  padding: .85rem 1rem;
  border: 0;
  border-bottom: 1px solid var(--sh-line);
  vertical-align: top;
  text-align: left;
}

.sh-commercial .sh-specs-table thead th,
.sh-commercial-landing .sh-specs-table thead th {
  color: #fff;
  background: var(--sh-navy);
  font-size: .82rem;
  letter-spacing: .03em;
}

.sh-commercial .sh-specs-table tbody th,
.sh-commercial-landing .sh-specs-table tbody th {
  width: 32%;
  color: var(--sh-navy);
  background: #f8fafb;
  font-weight: 800;
}

.sh-commercial .sh-specs-table tbody tr:last-child th,
.sh-commercial .sh-specs-table tbody tr:last-child td,
.sh-commercial-landing .sh-specs-table tbody tr:last-child th,
.sh-commercial-landing .sh-specs-table tbody tr:last-child td {
  border-bottom: 0;
}

.sh-commercial .sh-spec-note,
.sh-commercial-landing .sh-spec-note {
  margin-top: .9rem;
  color: var(--sh-muted);
  font-size: .88rem;
  line-height: 1.55;
}


/* ==========================================================================
   Certifications / tags
   ========================================================================== */

.sh-commercial .sh-tag-list,
.sh-commercial-landing .sh-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.sh-commercial .sh-tag-list li,
.sh-commercial-landing .sh-tag-list li {
  padding: .45rem .7rem;
  border: 1px solid #b9dce9;
  border-radius: 999px;
  color: var(--sh-blue-dark);
  background: var(--sh-sky);
  font-size: .82rem;
  font-weight: 700;
}


/* ==========================================================================
   Engineering callouts
   ========================================================================== */

.sh-commercial-engineering p {
  color: var(--sh-muted);
  line-height: 1.7;
}

.sh-commercial .sh-engineering-list,
.sh-commercial-landing .sh-engineering-list {
  display: grid;
  gap: .75rem;
}

.sh-commercial .sh-engineering-list > div,
.sh-commercial-landing .sh-engineering-list > div {
  padding: 1.05rem 1.15rem;
  border-left: 4px solid var(--sh-blue);
  background: var(--sh-sky);
}

.sh-commercial .sh-engineering-list strong,
.sh-commercial-landing .sh-engineering-list strong {
  display: block;
  color: var(--sh-navy);
}

.sh-commercial .sh-engineering-list span,
.sh-commercial-landing .sh-engineering-list span {
  color: var(--sh-muted);
  font-size: .92rem;
}


/* ==========================================================================
   Image gallery
   ========================================================================== */

.sh-commercial .sh-gallery,
.sh-commercial-landing .sh-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sh-commercial .sh-gallery figure,
.sh-commercial-landing .sh-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--sh-line);
  border-radius: 14px;
  background: #fff;
}

.sh-commercial .sh-gallery img,
.sh-commercial-landing .sh-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sh-commercial .sh-gallery figcaption,
.sh-commercial-landing .sh-gallery figcaption {
  padding: .7rem .85rem;
  color: var(--sh-muted);
  font-size: .82rem;
  line-height: 1.4;
}


/* ==========================================================================
   Downloads
   ========================================================================== */

.sh-commercial .sh-download-grid,
.sh-commercial-landing .sh-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sh-commercial .sh-download-card,
.sh-commercial-landing .sh-download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--sh-line);
  border-radius: 12px;
  background: #fff;
}

.sh-commercial .sh-download-card strong,
.sh-commercial-landing .sh-download-card strong {
  display: block;
  color: var(--sh-navy);
}

.sh-commercial .sh-download-card span,
.sh-commercial-landing .sh-download-card span {
  color: var(--sh-muted);
  font-size: .85rem;
}


/* ==========================================================================
   Related products
   ========================================================================== */

.sh-commercial .sh-related-products,
.sh-commercial-landing .sh-related-products {
  padding: 0;
  border-top: 0;
  background: transparent;
}


/* ==========================================================================
   Placeholders for missing imagery
   ========================================================================== */

.sh-commercial .sh-image-placeholder,
.sh-commercial-landing .sh-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 1.5rem;
  border: 2px dashed #9fc6d5;
  background: linear-gradient(135deg, #eef7fa, #dcecf3);
  color: #48616f;
  text-align: center;
}

.sh-commercial .sh-image-placeholder strong,
.sh-commercial-landing .sh-image-placeholder strong {
  display: block;
  margin-bottom: .5rem;
  color: var(--sh-navy);
  font-size: 1.05rem;
}

.sh-commercial .sh-image-placeholder span,
.sh-commercial-landing .sh-image-placeholder span {
  display: block;
  font-size: .9rem;
  line-height: 1.55;
}


/* ==========================================================================
   Notes / warnings
   ========================================================================== */

.sh-commercial .sh-note,
.sh-commercial-landing .sh-note {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--sh-blue);
  background: var(--sh-sky);
  color: #425460;
  line-height: 1.6;
}


/* ==========================================================================
   Final CTA
   ========================================================================== */

.sh-commercial-cta {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  color: #fff;
  background: linear-gradient(
    115deg,
    var(--sh-blue-dark),
    var(--sh-navy)
  );
}

.sh-commercial-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sh-commercial-cta .sh-kicker {
  margin: 0 0 .75rem;
  color: #9bddf3;
  text-align: center;
}

.sh-commercial-cta h2 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 1rem;
  color: #fff;
  text-align: center;
}

.sh-commercial-cta p {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 1.5rem;
  color: #d8e8ef;
  line-height: 1.65;
  text-align: center;
}

.sh-commercial-cta .btn {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {

  .sh-commercial .sh-family-grid,
  .sh-commercial-landing .sh-family-grid,
  .sh-commercial .sh-product-grid,
  .sh-commercial-landing .sh-product-grid,
  .sh-commercial .sh-feature-grid,
  .sh-commercial-landing .sh-feature-grid,
  .sh-commercial .sh-gallery,
  .sh-commercial-landing .sh-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sh-commercial .sh-app-grid,
  .sh-commercial-landing .sh-app-grid,
  .sh-commercial .sh-facts-grid,
  .sh-commercial-landing .sh-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sh-commercial-hero .sh-hero-image {
    margin-top: 1rem;
  }

  .sh-commercial-cta {
    padding: 3.5rem 1.25rem;
  }

  .sh-commercial-cta h2 {
    max-width: 760px;
    font-size: clamp(2rem, 5vw, 2.6rem);
  }

  .sh-commercial-cta p {
    max-width: 680px;
    font-size: 1rem;
  }
}


@media (max-width: 767.98px) {

  .sh-commercial .sh-download-grid,
  .sh-commercial-landing .sh-download-grid {
    grid-template-columns: 1fr;
  }

  .sh-commercial-cta {
    padding: 3rem 1rem;
  }

  .sh-commercial-cta .container {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .sh-commercial-cta .sh-kicker {
    margin-bottom: .65rem;
    font-size: .72rem;
    letter-spacing: .12em;
  }

  .sh-commercial-cta h2 {
    max-width: 100%;
    margin-bottom: .9rem;
    font-size: clamp(1.8rem, 7vw, 2.25rem);
    line-height: 1.15;
  }

  .sh-commercial-cta p {
    max-width: 100%;
    margin-bottom: 1.35rem;
    font-size: .98rem;
    line-height: 1.55;
  }

  .sh-commercial-cta .btn {
    width: auto;
    min-width: 190px;
  }
}


@media (max-width: 575.98px) {

  .sh-commercial .sh-family-grid,
  .sh-commercial-landing .sh-family-grid,
  .sh-commercial .sh-product-grid,
  .sh-commercial-landing .sh-product-grid,
  .sh-commercial .sh-feature-grid,
  .sh-commercial-landing .sh-feature-grid,
  .sh-commercial .sh-app-grid,
  .sh-commercial-landing .sh-app-grid,
  .sh-commercial .sh-facts-grid,
  .sh-commercial-landing .sh-facts-grid,
  .sh-commercial .sh-gallery,
  .sh-commercial-landing .sh-gallery {
    grid-template-columns: 1fr;
  }

  .sh-commercial .sh-family-image,
  .sh-commercial-landing .sh-family-image,
  .sh-commercial .sh-product-card-image,
  .sh-commercial-landing .sh-product-card-image {
    height: 235px;
  }

  .sh-commercial-hero .sh-actions {
    flex-direction: column;
  }

  .sh-commercial-hero .sh-actions .btn {
    width: 100%;
  }

  .sh-commercial .sh-download-card,
  .sh-commercial-landing .sh-download-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .sh-commercial-cta {
    padding: 2.75rem .75rem;
  }

  .sh-commercial-cta h2 {
    font-size: 1.75rem;
  }

  .sh-commercial-cta p {
    font-size: .95rem;
  }

  .sh-commercial-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* =========================================================
   HYDRAULIC ACCUMULATORS
   Featured PowerMax family + configuration cards
   ========================================================= */

/* Featured PowerMax family container */
.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-family-feature {
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(10, 45, 68, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(10, 45, 68, 0.06);
}


/* ---------------------------------------------------------
   PowerMax family heading
   --------------------------------------------------------- */

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-family-feature__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.75rem;
}

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-family-feature__header > div {
  max-width: 850px;
}

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-family-feature__header h3 {
  margin: 0 0 0.75rem;
  color: #082b43;
  font-size: clamp(1.75rem, 2.3vw, 2.5rem);
  line-height: 1.12;
}

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-family-feature__header p:last-child {
  margin-bottom: 0;
}

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-family-feature__link {
  flex: 0 0 auto;
  margin: 0 0 0.25rem;
  white-space: nowrap;
}


/* ---------------------------------------------------------
   Top Repairable / Bottom Repairable cards
   --------------------------------------------------------- */

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-variant {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #f5f8fa;
  border: 1px solid rgba(10, 45, 68, 0.1);
  border-radius: 14px;
}


/* Consistent image area */

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-variant .sh-product-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #eef3f6;
}


/*
 * The source images already contain their photographic
 * backgrounds, so contain prevents unwanted cropping.
 */
.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-variant .sh-product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


/* Configuration text */

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-variant__content {
  flex: 1 1 auto;
  padding: 1.6rem 1.75rem 1.75rem;
}

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-variant__content h4 {
  margin: 0 0 0.75rem;
  color: #082b43;
  font-size: 1.45rem;
  line-height: 1.2;
}

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-variant__content > p {
  margin-bottom: 1rem;
  color: #526777;
  line-height: 1.65;
}


/* Configuration specification bullets */

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-variant .sh-product-list {
  margin: 1.1rem 0 0;
  padding-left: 1.25rem;
}

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-variant .sh-product-list li {
  margin-bottom: 0.5rem;
  color: #405767;
  line-height: 1.5;
}

.sh-commercial-family--hydraulic-accumulators
.sh-accumulator-variant .sh-product-list li:last-child {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   MicroMax / AccuLite / MicroForce row
   --------------------------------------------------------- */

/*
 * Make all three cards behave as equal-height vertical cards,
 * regardless of copy length.
 */
.sh-commercial-family--hydraulic-accumulators
#accumulator-families .col-lg-4 {
  display: flex;
}

.sh-commercial-family--hydraulic-accumulators
#accumulator-families .col-lg-4 .sh-product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sh-commercial-family--hydraulic-accumulators
#accumulator-families .col-lg-4 .sh-product-card-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}


/* Push View MicroMax / AccuLite / MicroForce to same baseline */

.sh-commercial-family--hydraulic-accumulators
#accumulator-families .col-lg-4 .sh-product-card-content > p:last-child {
  margin-top: auto;
  padding-top: 1.25rem;
}


/* Normalize image dimensions for the three family cards */

.sh-commercial-family--hydraulic-accumulators
#accumulator-families .col-lg-4 .sh-product-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: #f1f5f7;
}

.sh-commercial-family--hydraulic-accumulators
#accumulator-families .col-lg-4 .sh-product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 991.98px) {

  .sh-commercial-family--hydraulic-accumulators
  .sh-accumulator-family-feature {
    padding: 1.5rem;
  }

  .sh-commercial-family--hydraulic-accumulators
  .sh-accumulator-family-feature__header {
    display: block;
  }

  .sh-commercial-family--hydraulic-accumulators
  .sh-accumulator-family-feature__link {
    margin-top: 1rem;
  }
}


@media (max-width: 575.98px) {

  .sh-commercial-family--hydraulic-accumulators
  .sh-accumulator-family-feature {
    padding: 1rem;
    border-radius: 14px;
  }

  .sh-commercial-family--hydraulic-accumulators
  .sh-accumulator-variant__content {
    padding: 1.25rem;
  }

  .sh-commercial-family--hydraulic-accumulators
  .sh-accumulator-family-feature__header h3 {
    font-size: 1.65rem;
  }

  .sh-commercial-family--hydraulic-accumulators
  .sh-accumulator-variant__content h4 {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   ORBIT SERIES
   Family product rows / image containment
   ========================================================================== */

.sh-orbit-series .sh-family-products {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.sh-orbit-series .sh-family-products-heading {
  max-width: 900px;
  margin-bottom: 2.25rem;
}

.sh-orbit-series .sh-family-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  border-top: 1px solid var(--sh-line);
}

.sh-orbit-series .sh-family-product-row:last-child {
  border-bottom: 1px solid var(--sh-line);
}

.sh-orbit-series .sh-family-product-row--reverse .sh-family-product-media {
  order: 2;
}

.sh-orbit-series .sh-family-product-row--reverse .sh-family-product-copy {
  order: 1;
}

.sh-orbit-series .sh-family-product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
}

.sh-orbit-series .sh-product-photo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(340px, 34vw, 460px);
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  overflow: hidden;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  background: #f4f8fa;
  box-shadow: var(--sh-shadow);
}

.sh-orbit-series .sh-product-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 560px;
  max-height: 390px;
  object-fit: contain;
  object-position: center;
}

.sh-orbit-series .sh-family-product-copy {
  min-width: 0;
  max-width: 650px;
}

.sh-orbit-series .sh-family-product-copy .sh-card-eyebrow {
  margin-bottom: .45rem;
}

.sh-orbit-series .sh-family-product-copy h3 {
  margin: 0 0 .35rem;
  color: var(--sh-navy);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.sh-orbit-series .sh-product-technical-name {
  margin: 0 0 1rem;
  color: var(--sh-blue-dark);
  font-size: 1.08rem;
  font-weight: 800;
}

.sh-orbit-series .sh-family-product-copy > p:not(.sh-card-eyebrow):not(.sh-product-technical-name) {
  color: var(--sh-muted);
  line-height: 1.68;
}

.sh-orbit-series .sh-product-list--compact {
  margin: 1.1rem 0 1.35rem;
  padding-left: 1.25rem;
}

.sh-orbit-series .sh-product-list--compact li {
  margin-bottom: .45rem;
  color: #425460;
  line-height: 1.5;
}

.sh-orbit-series .sh-media-frame--compact {
  max-width: 560px;
  margin-left: auto;
}

.sh-orbit-series .sh-media-frame--compact img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.sh-orbit-series .sh-applications--compact,
.sh-orbit-series .sh-engineering--compact {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.sh-orbit-series .sh-hero-image--family img {
  max-height: 440px;
  object-fit: contain;
}

@media (max-width: 991.98px) {

  .sh-orbit-series .sh-family-product-row,
  .sh-orbit-series .sh-family-product-row--reverse {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .sh-orbit-series .sh-family-product-row--reverse .sh-family-product-media,
  .sh-orbit-series .sh-family-product-row--reverse .sh-family-product-copy {
    order: initial;
  }

  .sh-orbit-series .sh-product-photo-frame {
    height: 400px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .sh-orbit-series .sh-product-photo-frame img {
    max-height: 340px;
  }

  .sh-orbit-series .sh-family-product-copy {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .sh-orbit-series .sh-media-frame--compact {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575.98px) {

  .sh-orbit-series .sh-family-products {
    padding: 3.25rem 0;
  }

  .sh-orbit-series .sh-family-product-row {
    padding: 2rem 0;
  }

  .sh-orbit-series .sh-product-photo-frame {
    height: 290px;
    padding: 1rem;
    border-radius: 14px;
  }

  .sh-orbit-series .sh-product-photo-frame img {
    max-width: 100%;
    max-height: 250px;
  }

  .sh-orbit-series .sh-family-product-copy h3 {
    font-size: 2rem;
  }

  .sh-orbit-series .sh-product-technical-name {
    font-size: 1rem;
  }
}


/* =========================================================
   ORBIT FINAL CTA
   ========================================================= */

.sh-final-cta {
  background: #082b40;
  color: #fff;
}

.sh-final-cta .sh-kicker {
  color: #38b7e5;
}

.sh-final-cta .sh-section-title {
  color: #fff !important;
}

.sh-final-cta .sh-section-lead {
  color: #e2edf3;
  max-width: 900px;
}

.sh-final-cta .btn-primary {
  color: #fff;
}

/* =========================================================
   CNG — TYPE III TECHNOLOGY
   ========================================================= */

.sh-section--type3-technology {
    background: #fff;
}

.sh-section--type3-technology .sh-feature-grid--single {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.sh-section--type3-technology .sh-feature-card {
    padding: 18px 20px;
}

.sh-section--type3-technology .sh-feature-card h3 {
    margin-bottom: 5px;
}

.sh-section--type3-technology .sh-feature-card p {
    margin-bottom: 0;
}

.sh-technology-figure {
    margin: 0;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(11, 45, 66, 0.10);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(11, 45, 66, 0.08);
}

.sh-technology-figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sh-technology-figure figcaption {
    margin-top: 14px;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.45;
    color: #647786;
}

@media (max-width: 991.98px) {
    .sh-technology-figure {
        margin-top: 10px;
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .sh-technology-figure {
        padding: 12px;
        border-radius: 14px;
    }
}

/* =========================================================
   CNG APPLICATIONS
   ========================================================= */

.sh-cng-applications .sh-cng-application-image {
  margin: 0;
}

.sh-cng-applications .sh-cng-application-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(7, 43, 66, 0.10);
}

.sh-cng-applications .sh-cng-application-image figcaption {
  margin-top: .8rem;
  color: #607482;
  font-size: .9rem;
  line-height: 1.5;
}

.sh-cng-applications .sh-cng-application-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 991.98px) {
  .sh-cng-applications .sh-cng-application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .sh-cng-applications .sh-cng-application-grid {
    grid-template-columns: 1fr;
  }

  .sh-cng-applications .sh-cng-application-image img {
    border-radius: 14px;
  }
}

/* ==========================================================================
   COMMERCIAL PRESSURE VESSELS — LANDING HERO
   Refined single-background version
   ========================================================================== */

.sh-commercial-hero--landing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff;

  /* Softer, wider transition from the copy area into the photographic field. */
  background:
    linear-gradient(
      90deg,
      rgba(2,25,42,.99) 0%,
      rgba(2,25,42,.97) 18%,
      rgba(2,25,42,.88) 30%,
      rgba(2,25,42,.65) 42%,
      rgba(2,25,42,.34) 54%,
      rgba(2,25,42,.12) 66%,
      rgba(2,25,42,0) 78%
    ),
    url("/sites/default/files/commercial-pressure-vessels/hero/commercial-pressure-vessels-single-background.webp")
      center center / cover no-repeat;
}


/* ==========================================================================
   INNER WRAPPER
   ========================================================================== */

.sh-commercial-hero--landing .sh-commercial-hero__inner,
.sh-commercial-hero--landing .container-fluid.sh-commercial-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}


/* ==========================================================================
   SUBTLE TECHNICAL BACKGROUND DETAIL
   ========================================================================== */

.sh-commercial-hero--landing .sh-commercial-hero__tech {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sh-commercial-hero--landing .sh-commercial-hero__tech::before {
  content: "";
  position: absolute;
  left: -270px;
  bottom: -430px;
  width: 880px;
  height: 880px;
  border: 1px solid rgba(67,187,230,.10);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(67,187,230,.020),
    0 0 0 160px rgba(67,187,230,.016),
    0 0 0 240px rgba(67,187,230,.011);
}

.sh-commercial-hero--landing .sh-commercial-hero__tech::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    linear-gradient(rgba(67,187,230,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67,187,230,.018) 1px, transparent 1px);
  background-size: 48px 48px;
}


/* ==========================================================================
   MAIN HERO
   ========================================================================== */

.sh-commercial-hero--landing .sh-commercial-hero__main {
  position: relative;
  width: 100%;
  min-height: 640px;
  margin: 0;
  padding: 0;
}


/* ==========================================================================
   COPY
   ========================================================================== */

.sh-commercial-hero--landing .sh-commercial-hero__content {
  position: relative;
  z-index: 20;
  display: block;
  width: min(500px,34vw);
  max-width: 500px;
  margin: 0 0 0 clamp(3rem,6vw,7rem);
  padding: 3.25rem 0 0;
}

.sh-commercial-hero--landing .sh-kicker {
  margin: 0 0 1.35rem;
  color: #77d2f3;
  font-size: .74rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.sh-commercial-hero--landing h1 {
  width: 100%;
  max-width: 500px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.4rem,3.7vw,4.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.sh-commercial-hero--landing h1 span {
  display: block;
  max-width: 490px;
  margin-top: .22em;
  font-size: .70em;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.sh-commercial-hero--landing .sh-commercial-hero__rule {
  display: block;
  width: 54px;
  height: 2px;
  margin: 1.4rem 0 0;
  background: #1597c5;
}

.sh-commercial-hero--landing .sh-hero-lead {
  width: 100%;
  max-width: 475px;
  margin: 1.65rem 0 0;
  color: #d7e5ec;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
}


/* ==========================================================================
   CTA BUTTONS
   ========================================================================== */

.sh-commercial-hero--landing .sh-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: .8rem;
  margin-top: 2rem;
}

.sh-commercial-hero--landing .sh-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 46px;
  padding: .68rem 1.1rem;
  font-size: .9rem;
  white-space: nowrap;
}

.sh-commercial-hero--landing .sh-actions .btn span {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  transition: transform .2s ease;
}

.sh-commercial-hero--landing .sh-actions .btn:hover span {
  transform: translateX(4px);
}


/* ==========================================================================
   VISUAL FIELD
   ========================================================================== */

.sh-commercial-hero--landing .sh-commercial-hero__visual {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 31%;
  overflow: hidden;
}

/* Localized separation behind the foreground product group.
   This is intentionally subtle so it never reads as a panel. */
.sh-commercial-hero--landing .sh-commercial-hero__visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 76%;
  height: 90%;
  right: -2%;
  top: 4%;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 56% 52%,
      rgba(1,18,31,.20) 0%,
      rgba(1,18,31,.12) 34%,
      rgba(1,18,31,.04) 54%,
      rgba(1,18,31,0) 74%
    );
}

/* Bottom fade ties the product group into the capability strip. */
.sh-commercial-hero--landing .sh-commercial-hero__visual::after {
  content: "";
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(4,27,44,0) 0%,
      rgba(4,27,44,.05) 35%,
      rgba(4,27,44,.20) 62%,
      rgba(4,27,44,.55) 84%,
      rgba(4,27,44,.78) 100%
    );
}


/* ==========================================================================
   FOREGROUND PRODUCT GROUP
   Slightly smaller and farther right than the previous version.
   Explicit positioning avoids dependence on older hero CSS.
   ========================================================================== */

.sh-commercial-hero--landing .sh-commercial-hero__products {
  position: absolute;
  z-index: 6;
  right: 5.5%;
  bottom: 1.75rem;
  width: min(45vw,900px);
  max-width: 900px;
  pointer-events: none;
  transform: none;
}

.sh-commercial-hero--landing .sh-commercial-hero__products::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 12%;
  right: 8%;
  bottom: 1%;
  height: 12%;
  border-radius: 50%;
  background: rgba(0,0,0,.34);
  filter: blur(26px);
}

.sh-commercial-hero--landing .sh-commercial-hero__products img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 22px rgba(0,0,0,.34));
}


/* ==========================================================================
   CAPABILITIES STRIP
   Final heading + descriptor layout
   ========================================================================== */

.sh-commercial-hero--landing .sh-commercial-hero__capabilities {
  position: relative;
  z-index: 10;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));

  width: 100%;
  margin: 0;
  padding: 14px 0;

  border-top: 1px solid rgba(255,255,255,.12);

  background: rgba(2,22,36,.88);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sh-commercial-hero--landing .sh-commercial-hero__capability {
  position: relative;

  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  align-items: center;

  min-width: 0;
  min-height: 58px;

  padding: 0 28px;
  column-gap: 10px;
}

.sh-commercial-hero--landing .sh-commercial-hero__capability:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 6px;
  right: 0;
  bottom: 6px;

  width: 1px;

  background: rgba(255,255,255,.09);
}


/* ICON */

.sh-commercial-hero--landing .sh-commercial-hero__capability-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  margin: 0;
}

.sh-commercial-hero--landing .sh-commercial-hero__capability-icon img {
  display: block;

  width: 32px;
  height: 32px;

  object-fit: contain;
}


/* TEXT */

.sh-commercial-hero--landing .sh-commercial-hero__capability-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start;
  justify-content: center;

  min-width: 0;
  width: 100%;

  margin: 0;
  padding: 0;

  gap: 3px;

  line-height: 1.2;
}

.sh-commercial-hero--landing .sh-commercial-hero__capability-text strong {
  display: block !important;

  width: 100%;

  margin: 0;
  padding: 0;

  color: #fff;

  font-size: 12px;
  font-weight: 650;
  line-height: 1.15;
}

.sh-commercial-hero--landing .sh-commercial-hero__capability-text > span {
  display: block !important;

  width: 100%;

  margin: 0;
  padding: 0;

  font-size: 11.5px;
  color: rgba(255,255,255,.54);
  font-weight: 400;
  line-height: 1.25;
}


/* ==========================================================================
   LARGE DESKTOP
   ========================================================================== */

@media (min-width:1600px) {
  .sh-commercial-hero--landing .sh-commercial-hero__main {
    min-height: 660px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__content {
    width: 520px;
    max-width: 33vw;
    margin-left: clamp(4rem,6vw,8rem);
    padding-top: 3.4rem;
  }

  .sh-commercial-hero--landing h1 {
    max-width: 520px;
    font-size: clamp(3.55rem,3.5vw,4.65rem);
  }

  .sh-commercial-hero--landing h1 span {
    max-width: 510px;
  }

  .sh-commercial-hero--landing .sh-hero-lead {
    max-width: 490px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__visual {
    left: 30%;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products {
    right: 5.5%;
    bottom: 1.9rem;
    width: min(44vw,920px);
    max-width: 920px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products img {
    max-height: 535px;
  }
}


/* ==========================================================================
   STANDARD DESKTOP
   ========================================================================== */

@media (max-width:1399.98px) {
  .sh-commercial-hero--landing .sh-commercial-hero__main {
    min-height: 610px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__content {
    width: 455px;
    max-width: 36vw;
    margin-left: clamp(3rem,5vw,5rem);
    padding-top: 3rem;
  }

  .sh-commercial-hero--landing h1 {
    max-width: 455px;
    font-size: clamp(3rem,3.4vw,3.8rem);
  }

  .sh-commercial-hero--landing h1 span {
    max-width: 445px;
  }

  .sh-commercial-hero--landing .sh-hero-lead {
    max-width: 440px;
    font-size: 1rem;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__visual {
    left: 34%;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products {
    right: 4.5%;
    bottom: 1.5rem;
    width: min(46vw,820px);
    max-width: 820px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products img {
    max-height: 485px;
  }
}


/* ==========================================================================
   NARROW DESKTOP
   ========================================================================== */

@media (max-width:1199.98px) {
  .sh-commercial-hero--landing .sh-commercial-hero__main {
    min-height: 580px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__content {
    width: 410px;
    max-width: 40vw;
    margin-left: clamp(2.5rem,4vw,4rem);
    padding-top: 2.75rem;
  }

  .sh-commercial-hero--landing h1 {
    max-width: 410px;
    font-size: clamp(2.7rem,3.8vw,3.3rem);
  }

  .sh-commercial-hero--landing h1 span {
    max-width: 400px;
  }

  .sh-commercial-hero--landing .sh-hero-lead {
    max-width: 400px;
    margin-top: 1.45rem;
    font-size: .96rem;
    line-height: 1.62;
  }

  .sh-commercial-hero--landing .sh-actions {
    margin-top: 1.7rem;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__visual {
    left: 36%;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products {
    right: 3%;
    bottom: 1.25rem;
    width: min(49vw,720px);
    max-width: 720px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products img {
    max-height: 435px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capabilities {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability {
    padding: 16px 22px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability:nth-child(3)::after {
    display: none;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability:nth-child(n+4) {
    border-top: 1px solid rgba(255,255,255,.08);
  }
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width:991.98px) {
  .sh-commercial-hero--landing {
    background:
      linear-gradient(
        180deg,
        rgba(3,24,39,.98) 0%,
        rgba(3,29,47,.94) 40%,
        rgba(4,34,54,.60) 70%,
        rgba(4,34,54,.24) 100%
      ),
      url("/sites/default/files/commercial-pressure-vessels/hero/commercial-pressure-vessels-single-background.webp")
        center center / cover no-repeat;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__main {
    min-height: auto;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__content {
    width: auto;
    max-width: 680px;
    margin: 0 1.5rem;
    padding: 3.25rem 0 2.5rem;
  }

  .sh-commercial-hero--landing h1 {
    max-width: 630px;
    font-size: clamp(2.65rem,6.6vw,3.8rem);
  }

  .sh-commercial-hero--landing h1 span {
    max-width: 600px;
  }

  .sh-commercial-hero--landing .sh-hero-lead {
    max-width: 610px;
    margin-top: 1.5rem;
  }

  .sh-commercial-hero--landing .sh-actions {
    margin-top: 1.75rem;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__visual {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 480px;
    margin: 0;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__visual::before {
    width: 90%;
    right: 0;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products {
    right: 4%;
    left: 4%;
    bottom: 1rem;
    width: auto;
    max-width: none;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products img {
    max-height: 400px;
  }
}


/* ==========================================================================
   SMALL TABLET / MOBILE LANDSCAPE
   ========================================================================== */

@media (max-width:767.98px) {
  .sh-commercial-hero--landing .sh-commercial-hero__content {
    padding: 3rem 0 2.25rem;
  }

  .sh-commercial-hero--landing h1 {
    font-size: clamp(2.4rem,8.5vw,3.4rem);
  }

  .sh-commercial-hero--landing .sh-hero-lead {
    margin-top: 1.4rem;
  }

  .sh-commercial-hero--landing .sh-actions {
    margin-top: 1.6rem;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__visual {
    min-height: 410px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products {
    right: 1%;
    left: 1%;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products img {
    max-height: 345px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capabilities {
    grid-template-columns: repeat(2,minmax(0,1fr));
    padding: 0;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability {
    min-height: 76px;
    padding: 14px 18px;
    column-gap: 10px;
    border-top: 1px solid rgba(255,255,255,.10);
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability:nth-child(odd)::after {
    display: block;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability:nth-child(even)::after {
    display: none;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability:last-child {
    grid-column: 1 / -1;
  }
}


/* ==========================================================================
   PHONES
   ========================================================================== */

@media (max-width:575.98px) {
  .sh-commercial-hero--landing .sh-commercial-hero__content {
    width: auto;
    max-width: none;
    margin: 0 1rem;
    padding: 2.5rem 0 2rem;
  }

  .sh-commercial-hero--landing .sh-kicker {
    margin-bottom: 1.1rem;
    font-size: .68rem;
  }

  .sh-commercial-hero--landing h1 {
    max-width: 100%;
    font-size: clamp(2.15rem,10vw,2.9rem);
    line-height: 1;
  }

  .sh-commercial-hero--landing h1 span {
    max-width: 100%;
    margin-top: .22em;
    font-size: .82em;
    line-height: 1.08;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__rule {
    width: 48px;
    margin-top: 1.2rem;
  }

  .sh-commercial-hero--landing .sh-hero-lead {
    max-width: 100%;
    margin-top: 1.35rem;
    font-size: .94rem;
    line-height: 1.6;
  }

  .sh-commercial-hero--landing .sh-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.6rem;
  }

  .sh-commercial-hero--landing .sh-actions .btn {
    width: 100%;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__visual {
    width: 100%;
    min-height: 330px;
    margin: 0;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products {
    right: -4%;
    left: -4%;
    bottom: .6rem;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__products img {
    max-height: 270px;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capabilities {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability {
    min-height: 0;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,.09) !important;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability:first-child {
    border-top: 0 !important;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability::after {
    display: none !important;
  }

  .sh-commercial-hero--landing .sh-commercial-hero__capability:last-child {
    grid-column: auto;
  }
}


/* =========================================================
   ATLAS SERIES — REAL PRODUCT PHOTOGRAPHY
   ========================================================= */

.sh-commercial-family--atlas .sh-family-image--atlas-real img,
.sh-commercial-family--atlas .sh-atlas-detail-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sh-commercial-family--atlas .sh-atlas-detail-photo {
  margin: 0;
}

.sh-commercial-family--atlas .sh-image-caption {
  margin-top: .7rem;
  color: #617483;
  font-size: .9rem;
  line-height: 1.45;
}

.sh-commercial-family--atlas .sh-application-image {
  overflow: hidden;
  border-radius: 16px;
}

.sh-commercial-family--atlas .sh-application-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .sh-commercial-family--atlas .sh-application-image img {
    aspect-ratio: 4 / 3;
  }
}

.sh-atlas-product-intro {
    padding: 72px 0 64px;
    background: #f4f8fa;
    overflow: hidden;
}

.sh-atlas-product-intro .sh-section-title {
    max-width: 760px;
    margin-bottom: 22px;
}

.sh-atlas-product-intro .sh-section-lead {
    max-width: 680px;
    margin-bottom: 0;
}

.sh-atlas-product-intro__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 390px;
    margin: 0;
    padding: 20px 0;
}

.sh-atlas-product-intro__visual::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 8%;
    bottom: 45px;
    height: 32px;
    background: rgba(5, 34, 54, .12);
    filter: blur(22px);
    border-radius: 50%;
    z-index: 0;
}

.sh-atlas-product-intro__visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .sh-atlas-product-intro {
        padding: 52px 0;
    }

    .sh-atlas-product-intro__visual {
        min-height: 0;
        padding: 10px 0 0;
    }

    .sh-atlas-product-intro__visual img {
        max-width: 680px;
    }
}

.sh-application-images {
    align-items: stretch;
}

.sh-application-images > div {
    display: flex;
}

.sh-application-images .sh-application-image {
    width: 100%;
    height: 100%;
    min-height: 340px;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
}

.sh-application-images .sh-application-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .sh-application-images .sh-application-image {
        min-height: 0;
        aspect-ratio: 3 / 2;
    }
}

/* =========================================================
   RANGER NECK-MOUNT DETAIL GALLERY
   ========================================================= */

.sh-ranger .sh-ranger-details-heading {
  max-width: 880px;
}

.sh-ranger .sh-ranger-detail-gallery {
  margin-top: 1.75rem !important;
}

.sh-ranger .sh-ranger-detail-card {
  margin: 0;
  height: 100%;
}

.sh-ranger .sh-ranger-detail-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 12px;
  background: #11171b;
  border: 1px solid rgba(6, 42, 65, 0.08);
  box-shadow: 0 10px 28px rgba(6, 42, 65, 0.08);
}

.sh-ranger .sh-ranger-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep the complete studio adapter visible */
.sh-ranger .sh-ranger-detail-media--adapter {
  background: #17191b;
}

.sh-ranger .sh-ranger-detail-media--adapter img {
  object-fit: contain;
}

.sh-ranger .sh-ranger-detail-card .sh-image-caption {
  margin-top: 0.7rem;
  color: #5f7180;
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 991.98px) {
  .sh-ranger .sh-ranger-detail-gallery > div + div {
    margin-top: 0.35rem;
  }
}

@media (max-width: 767.98px) {
  .sh-ranger .sh-ranger-detail-media {
    border-radius: 9px;
  }
}


/* =========================================================
   RELIANCE PATHFINDER INTEGRATION EXAMPLES
   ========================================================= */

.sh-commercial-family--reliance .sh-pathfinder-integration .sh-section-lead {
  max-width: 900px;
}

.sh-pathfinder-integration-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(6, 42, 65, 0.09);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(6, 42, 65, 0.07);
}

.sh-pathfinder-integration-image {
  margin: 0;
  background: #f3f6f8;
  overflow: hidden;
}

.sh-pathfinder-integration-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.sh-pathfinder-integration-copy {
  padding: 1.4rem 1.5rem 1.55rem;
}

.sh-pathfinder-integration-copy h3 {
  margin: 0 0 .65rem;
  color: #082a41;
  font-size: 1.22rem;
  line-height: 1.2;
}

.sh-pathfinder-integration-copy p {
  margin: 0;
  color: #5f7180;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .sh-pathfinder-integration-card {
    border-radius: 10px;
  }

  .sh-pathfinder-integration-copy {
    padding: 1.15rem 1.2rem 1.3rem;
  }
}


/* =========================================================
   RELIANCE GUARDIAN PRODUCTION GALLERY
   ========================================================= */

.sh-guardian-gallery-image {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #eef4f7;
}

.sh-guardian-gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-guardian-gallery-image--feature {
    height: 100%;
    min-height: 560px;
}

.sh-guardian-gallery-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
}

.sh-guardian-gallery-stack .sh-guardian-gallery-image {
    min-height: 268px;
}

.sh-guardian-gallery-image--wide {
    width: 100%;
    aspect-ratio: 3 / 1;
}

.sh-guardian-gallery-image--wide img {
    object-position: center 48%;
}

@media (max-width: 991.98px) {

    .sh-guardian-gallery-image--feature {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .sh-guardian-gallery-stack {
        grid-template-rows: none;
        height: auto;
    }

    .sh-guardian-gallery-stack .sh-guardian-gallery-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .sh-guardian-gallery-image--wide {
        aspect-ratio: 16 / 9;
    }
}