.ph-hero {
  overflow: hidden;
  border-bottom: 1px solid #eceeef;
  background: #fff;
}

.ph-hero-grid {
  display: grid;
  min-height: 600px;
  padding: 68px 0 48px;
  grid-template-columns: .92fr 1.08fr;
  grid-template-areas:
    "copy media"
    "actions media";
  column-gap: 74px;
  align-content: center;
}

.ph-hero-copy {
  grid-area: copy;
  align-self: end;
  width: min(550px, 100%);
}

.ph-hero-actions {
  grid-area: actions;
  align-self: start;
}

.ph-hero-copy > p:not(.ph-eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: #343a41;
}

.ph-hero-media {
  position: relative;
  grid-area: media;
  align-self: center;
  min-width: 0;
}

.ph-media-stage {
  position: relative;
  height: 438px;
  overflow: hidden;
  border-radius: 6px;
  background: #e9edef;
}

.ph-hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ph-hero-product {
  position: absolute;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(17, 19, 24, .18));
}

.ph-hero-product--1 {
  right: 4%;
  bottom: 2%;
  width: 74%;
  height: 76%;
}

.ph-hero-product--2 {
  top: 4%;
  left: 1%;
  width: 45%;
  height: 47%;
}

.ph-hero-product--3 {
  top: 4%;
  right: -1%;
  width: 39%;
  height: 42%;
}

.ph-media-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(17, 19, 24, .88);
  font-size: 12px;
  font-weight: 900;
}

.ph-proof-line {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #eceeef;
  text-align: center;
}

.ph-proof-line strong {
  max-width: 880px;
  font-size: 17px;
  line-height: 1.6;
}

.ph-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ph-product-card {
  display: grid;
  min-height: 448px;
  overflow: hidden;
  border: 1px solid var(--ph-line);
  border-radius: 4px;
  background: #fff;
  grid-template-rows: 228px 1fr;
  transition: border-color .2s ease, transform .2s ease;
}

.ph-product-card:hover {
  border-color: var(--ph-red);
  transform: translateY(-3px);
}

.ph-product-media {
  display: grid;
  overflow: hidden;
  place-items: center;
  background: #eef1f2;
}

.ph-product-media img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  transition: transform .25s ease;
}

.ph-product-card:hover .ph-product-media img {
  transform: scale(1.035);
}

.ph-product-body {
  display: flex;
  min-width: 0;
  padding: 22px 20px 24px;
  flex-direction: column;
}

.ph-product-body h3 a {
  color: var(--ph-ink);
}

.ph-product-body p {
  margin: 12px 0 20px;
  font-size: 15px;
  line-height: 1.65;
}

.ph-product-body .ph-text-link {
  margin-top: auto;
}

.ph-finish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ph-line);
  border-left: 1px solid var(--ph-line);
}

.ph-finish-card {
  overflow: hidden;
  border-right: 1px solid var(--ph-line);
  border-bottom: 1px solid var(--ph-line);
  background: #fff;
}

.ph-card-media {
  overflow: hidden;
  background: #e9edef;
}

.ph-finish-card .ph-card-media {
  height: 176px;
}

.ph-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.ph-finish-card:hover img,
.ph-case-card:hover img,
.ph-industry-card:hover img {
  transform: scale(1.035);
}

.ph-card-copy {
  padding: 22px 20px 26px;
}

.ph-card-copy > span {
  display: block;
  margin-bottom: 10px;
  color: var(--ph-red);
  font-size: 12px;
  font-weight: 900;
}

.ph-card-copy p {
  margin: 12px 0 0;
  font-size: 15px;
}

.ph-card-copy .ph-text-link {
  margin-top: 20px;
}

.ph-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ph-case-card {
  overflow: hidden;
  border: 1px solid #cfd4d8;
  border-radius: 4px;
  background: #fff;
}

.ph-case-card .ph-card-media {
  height: 282px;
}

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

.ph-industry-card {
  display: grid;
  min-height: 154px;
  overflow: hidden;
  color: var(--ph-ink);
  border: 1px solid var(--ph-line);
  border-radius: 3px;
  background: #fff;
  grid-template-columns: 148px 1fr;
}

.ph-industry-card > div:last-child {
  position: relative;
  padding: 22px 38px 20px 20px;
}

.ph-industry-card h3 {
  font-size: 19px;
}

.ph-industry-card p {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.ph-industry-card > div:last-child > span {
  position: absolute;
  top: 22px;
  right: 18px;
  color: var(--ph-red);
  font-weight: 900;
}

.ph-guide-grid,
.ph-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ph-guide-card,
.ph-resource-card {
  min-height: 270px;
  padding: 30px 28px;
  border: 1px solid var(--ph-line);
  border-radius: 3px;
  background: #fff;
}

.ph-number {
  display: block;
  margin-bottom: 42px;
  color: var(--ph-red);
  font-size: 17px;
  font-weight: 900;
}

.ph-guide-card p,
.ph-resource-card p {
  margin: 14px 0 0;
  font-size: 15px;
}

.ph-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ph-line);
  border-left: 1px solid var(--ph-line);
}

.ph-reason-card {
  min-height: 292px;
  padding: 30px 24px;
  border-right: 1px solid var(--ph-line);
  border-bottom: 1px solid var(--ph-line);
  background: #fff;
}

.ph-reason-card p,
.ph-solution-card p {
  margin: 14px 0 0;
  font-size: 15px;
}

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

.ph-solution-card {
  min-height: 268px;
  padding: 34px 32px;
  border: 1px solid var(--ph-line);
  border-radius: 3px;
}

.ph-solution-card .ph-text-link {
  margin-top: 28px;
}

.ph-resource-card {
  display: flex;
  color: var(--ph-ink);
  flex-direction: column;
}

.ph-resource-card > span {
  margin-bottom: 36px;
  color: var(--ph-red);
  font-size: 12px;
  font-weight: 900;
}

.ph-resource-card strong {
  display: flex;
  gap: 10px;
  margin-top: auto;
  color: var(--ph-red);
  font-size: 14px;
}

.ph-stage-band {
  padding: 92px 0 86px;
  background: var(--ph-peach);
}

.ph-stage-band .ph-section-head {
  margin-bottom: 40px;
}

.ph-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 19, 24, .28);
  border-left: 1px solid rgba(17, 19, 24, .28);
}

.ph-stage-item {
  min-height: 232px;
  padding: 28px 24px;
  border-right: 1px solid rgba(17, 19, 24, .28);
  border-bottom: 1px solid rgba(17, 19, 24, .28);
}

.ph-stage-item > span {
  display: block;
  margin-bottom: 42px;
  color: var(--ph-red);
  font-weight: 900;
}

.ph-stage-item p {
  margin: 12px 0 0;
  color: #353b42;
  font-size: 15px;
}

.ph-stage-band .ph-inline-link {
  margin-top: 28px;
}

.ph-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 74px;
  align-items: center;
}

.ph-split--reverse {
  grid-template-columns: 1.05fr .95fr;
}

.ph-split > div > p:not(.ph-eyebrow) {
  margin: 22px 0 0;
}

.ph-split-media {
  height: 490px;
  overflow: hidden;
  border-radius: 4px;
  background: #e8ecee;
}

.ph-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-stat-grid,
.ph-network-stats {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ph-line);
  border-left: 1px solid var(--ph-line);
}

.ph-stat-grid > div,
.ph-network-stats > div {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--ph-line);
  border-bottom: 1px solid var(--ph-line);
}

.ph-stat-grid strong,
.ph-network-stats strong {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
}

.ph-stat-grid span,
.ph-network-stats span {
  color: var(--ph-muted);
  font-size: 14px;
  line-height: 1.5;
}

.ph-tabs {
  display: grid;
  grid-template-columns: 286px 1fr;
  border: 1px solid var(--ph-line);
  background: #fff;
}

.ph-tab-list {
  display: flex;
  border-right: 1px solid var(--ph-line);
  flex-direction: column;
}

.ph-tab-list button {
  min-height: 74px;
  padding: 16px 22px;
  color: #343940;
  border: 0;
  border-bottom: 1px solid var(--ph-line);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.ph-tab-list button.is-active {
  color: #fff;
  background: var(--ph-red);
}

.ph-tab-panel {
  display: grid;
  min-height: 506px;
  grid-template-columns: 1fr 1fr;
}

.ph-tab-panel[hidden] {
  display: none;
}

.ph-tab-copy {
  padding: 54px 46px;
}

.ph-tab-copy > span {
  display: block;
  margin-bottom: 16px;
  color: var(--ph-red);
  font-size: 13px;
  font-weight: 900;
}

.ph-tab-copy p {
  margin: 16px 0 0;
  font-size: 15px;
}

.ph-tab-copy ul,
.ph-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ph-tab-copy li,
.ph-check-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.55;
}

.ph-tab-copy li::before,
.ph-check-list li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ph-red);
  content: "";
}

.ph-tab-media {
  min-width: 0;
  background: #e9edef;
}

.ph-tab-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 34px;
}

.ph-industry-layout,
.ph-faq-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 74px;
  align-items: start;
}

.ph-industry-layout .ph-section-head,
.ph-faq-layout .ph-section-head {
  margin-bottom: 0;
}

.ph-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ph-line);
}

.ph-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.ph-table th,
.ph-table td {
  padding: 20px 18px;
  border-right: 1px solid var(--ph-line);
  border-bottom: 1px solid var(--ph-line);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.ph-table th {
  color: #fff;
  background: var(--ph-ink);
  font-weight: 900;
}

.ph-table tr:last-child td {
  border-bottom: 0;
}

.ph-project-input {
  padding: 92px 0;
  background: var(--ph-peach);
}

.ph-project-input-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 82px;
  align-items: center;
}

.ph-project-input-grid > div:first-child > p:not(.ph-eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: #343940;
}

.ph-project-actions {
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid rgba(17, 19, 24, .24);
  background: rgba(255, 255, 255, .64);
}

.ph-project-actions > span {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
}

.ph-project-actions .ph-btn {
  width: 100%;
}

.ph-project-actions p {
  margin: 8px 0 0;
  color: #343940;
  font-size: 14px;
  text-align: center;
}

.ph-project-actions p a {
  color: var(--ph-ink);
  font-weight: 900;
}

.ph-quality,
.ph-network,
.ph-final {
  color: #fff;
  background: var(--ph-ink);
}

.ph-quality h2,
.ph-network h2,
.ph-final h2 {
  color: #fff;
}

.ph-quality p,
.ph-network p,
.ph-final p {
  color: #cbd1d7;
}

.ph-quality .ph-check-list li {
  color: #e7ebee;
}

.ph-network-gallery {
  display: grid;
  height: 390px;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 12px;
}

.ph-network-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-network-stats {
  border-color: #444951;
}

.ph-network-stats > div {
  border-color: #444951;
}

.ph-network-stats span {
  color: #cbd1d7;
}

.ph-faq-layout > div:first-child > p:last-child {
  margin: 20px 0 0;
}

.ph-faq-list {
  border-top: 1px solid #cdd2d6;
}

.ph-faq-list details {
  border-bottom: 1px solid #cdd2d6;
}

.ph-faq-list summary {
  display: flex;
  min-height: 78px;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.ph-faq-list summary::-webkit-details-marker {
  display: none;
}

.ph-faq-list summary span {
  flex: 0 0 auto;
  color: var(--ph-red);
  font-size: 24px;
}

.ph-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.ph-faq-list details div {
  padding: 0 40px 24px 0;
}

.ph-faq-list details p {
  margin: 0;
  font-size: 15px;
}

.ph-final {
  padding: 96px 0 104px;
}

.ph-final h2,
.ph-final p {
  max-width: 780px;
}

.ph-final p {
  margin: 20px 0 0;
}

.ph-shell .utility-bar {
  display: block;
}

.ph-shell .site-nav > .mobile-quote,
.ph-shell .site-footer .footer-cta {
  display: none;
}

@media (min-width: 981px) {
  .ph-shell .utility-inner {
    min-height: 32px;
  }

  .ph-shell .header-inner {
    height: 72px;
  }

  .ph-shell .site-nav > a,
  .ph-shell .nav-item > a {
    min-height: 72px;
  }

  .ph-shell .brand img {
    width: 40px;
    height: 40px;
  }
}

.products-hub {
  --ph-red: #b83d31;
  --ph-red-dark: #8f2f27;
  --ph-ink: #111318;
  --ph-muted: #5d646c;
  --ph-line: #d8dce0;
  --ph-soft: #f5f6f7;
  --ph-peach: #fbe8d8;
  color: var(--ph-ink);
  background: #fff;
}

.products-hub *,
.products-hub *::before,
.products-hub *::after {
  box-sizing: border-box;
}

.ph-container {
  width: min(1240px, calc(100vw - 64px));
  margin: 0 auto;
}

.ph-section {
  padding: 104px 0;
}

.ph-section--muted {
  background: var(--ph-soft);
}

.ph-section--soft {
  background: #eef1f2;
}

.products-hub h1,
.products-hub h2,
.products-hub h3,
.products-hub p {
  margin-top: 0;
  letter-spacing: 0;
}

.products-hub h1 {
  margin-bottom: 0;
  font-size: 50px;
  line-height: 1.16;
}

.products-hub h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.2;
}

.products-hub h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.35;
}

.products-hub p {
  color: var(--ph-muted);
  font-size: 17px;
  line-height: 1.72;
}

.ph-section-head {
  max-width: 900px;
  margin: 0 auto 54px;
  text-align: center;
}

.ph-section-head p {
  margin: 20px auto 0;
}

.ph-section-head--left {
  margin-left: 0;
  text-align: left;
}

.ph-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ph-btn {
  display: inline-flex;
  min-width: 216px;
  min-height: 56px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid var(--ph-red);
  border-radius: 3px;
  background: var(--ph-red);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.ph-btn:hover {
  color: #fff;
  border-color: var(--ph-red-dark);
  background: var(--ph-red-dark);
}

.ph-btn--dark {
  border-color: var(--ph-ink);
  background: var(--ph-ink);
}

.ph-btn--outline {
  margin-top: 28px;
  color: var(--ph-ink);
  border-color: #9da2a8;
  background: transparent;
}

.ph-btn--outline:hover {
  color: var(--ph-ink);
  border-color: var(--ph-ink);
  background: #fff;
}

.ph-btn--light {
  color: var(--ph-ink);
  border-color: #fff;
  background: #fff;
}

.ph-btn--light:hover {
  color: var(--ph-ink);
  border-color: #e4e7ea;
  background: #e4e7ea;
}

.ph-eyebrow,
.ph-card-label {
  margin-bottom: 14px !important;
  color: var(--ph-red) !important;
  font-size: 13px !important;
  font-weight: 900;
}

.ph-text-link,
.ph-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ph-red);
  font-size: 14px;
  font-weight: 900;
}

.ph-text-link span,
.ph-inline-link span {
  transition: transform .2s ease;
}

.ph-text-link:hover span,
.ph-inline-link:hover span {
  transform: translateX(4px);
}

.ph-quality .ph-eyebrow,
.ph-network .ph-eyebrow,
.ph-final .ph-eyebrow {
  color: #ff8275 !important;
}

.ph-quality p,
.ph-network p,
.ph-final p {
  color: #cbd1d7;
}

@media (max-width: 1120px) {
  .ph-hero-grid,
  .ph-split {
    gap: 44px;
  }

  .ph-product-grid,
  .ph-finish-grid,
  .ph-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ph-industry-layout,
  .ph-faq-layout {
    grid-template-columns: 290px 1fr;
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .ph-hero-grid,
  .ph-split,
  .ph-split--reverse,
  .ph-project-input-grid,
  .ph-industry-layout,
  .ph-faq-layout {
    grid-template-columns: 1fr;
  }

  .ph-hero-copy {
    width: 100%;
  }

  .ph-hero-grid {
    grid-template-areas: "copy" "media" "actions";
  }

  .ph-hero-actions {
    margin-top: 0;
  }

  .ph-stage-grid,
  .ph-stat-grid,
  .ph-network-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ph-split--reverse .ph-split-media {
    order: 2;
  }

  .ph-industry-layout .ph-section-head,
  .ph-faq-layout > div:first-child {
    max-width: 720px;
  }

  .ph-tabs {
    grid-template-columns: 230px 1fr;
  }

  .ph-tab-panel {
    grid-template-columns: 1fr;
  }

  .ph-tab-media {
    min-height: 340px;
  }

  .ph-network-gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .ph-network-gallery img {
    height: 280px;
  }

  .ph-network-gallery img:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .ph-shell .utility-bar {
    display: none;
  }

  .ph-shell .site-nav > .mobile-quote {
    display: flex;
  }

  .ph-container {
    width: calc(100vw - 32px);
  }

  .ph-section {
    padding: 74px 0;
  }

  .products-hub h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .products-hub h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .products-hub h3 {
    font-size: 20px;
  }

  .products-hub p {
    font-size: 16px;
  }

  .ph-section-head {
    margin-bottom: 38px;
    text-align: left;
  }

  .ph-hero-grid {
    min-height: 0;
    padding: 52px 0 36px;
    row-gap: 28px;
  }

  .ph-hero-copy > p:not(.ph-eyebrow) {
    margin-top: 20px;
  }

  .ph-actions {
    display: grid;
    gap: 11px;
  }

  .ph-btn {
    width: 100%;
    min-width: 0;
  }

  .ph-media-stage {
    height: 300px;
  }

  .ph-media-label {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    font-size: 11px;
  }

  .ph-proof-line {
    min-height: 96px;
    padding: 20px 0;
    text-align: left;
  }

  .ph-proof-line strong {
    font-size: 15px;
  }

  .ph-product-grid,
  .ph-finish-grid,
  .ph-case-grid,
  .ph-industry-grid,
  .ph-guide-grid,
  .ph-reason-grid,
  .ph-solution-grid,
  .ph-resource-grid {
    grid-template-columns: 1fr;
  }

  .ph-product-grid,
  .ph-case-grid,
  .ph-guide-grid,
  .ph-solution-grid,
  .ph-resource-grid {
    gap: 18px;
  }

  .ph-product-card {
    height: 500px;
    min-height: 500px;
    grid-template-rows: 280px 1fr;
  }

  .ph-finish-grid,
  .ph-reason-grid {
    border-left: 1px solid var(--ph-line);
  }

  .ph-finish-card .ph-card-media {
    height: 240px;
  }

  .ph-case-card .ph-card-media {
    height: 250px;
  }

  .ph-stage-band,
  .ph-project-input {
    padding: 72px 0;
  }

  .ph-stage-grid,
  .ph-stat-grid,
  .ph-network-stats {
    grid-template-columns: 1fr;
  }

  .ph-stage-item {
    min-height: 0;
  }

  .ph-split-media {
    height: 340px;
  }

  .ph-tabs {
    display: block;
  }

  .ph-tab-list {
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ph-line);
    flex-direction: row;
  }

  .ph-tab-list button {
    min-width: 156px;
    min-height: 62px;
    border-right: 1px solid var(--ph-line);
    border-bottom: 0;
    text-align: center;
  }

  .ph-tab-panel {
    min-height: 0;
  }

  .ph-tab-copy {
    padding: 34px 24px;
  }

  .ph-tab-media {
    min-height: 300px;
  }

  .ph-tab-media img {
    padding: 24px;
  }

  .ph-industry-card {
    grid-template-columns: 116px 1fr;
  }

  .ph-project-input-grid {
    gap: 38px;
  }

  .ph-project-actions {
    padding: 24px 20px;
  }

  .ph-quality .ph-split-media {
    order: 2;
  }

  .ph-network-gallery {
    grid-template-columns: 1fr;
  }

  .ph-network-gallery img,
  .ph-network-gallery img:first-child {
    height: 230px;
    grid-column: auto;
  }

  .ph-faq-list summary {
    min-height: 72px;
  }

  .ph-final {
    padding: 78px 0 86px;
  }
}

@media (max-width: 420px) {
  .products-hub h1 { font-size: 36px; }
  .ph-media-stage { height: 268px; }
  .ph-product-card { height: 520px; min-height: 520px; grid-template-rows: 250px 1fr; }
  .ph-industry-card { grid-template-columns: 104px 1fr; }
  .ph-industry-card > div:last-child { padding: 18px 32px 18px 16px; }
}
