/* Alignment hubs — Products / Industries (Option B Phase 1) */
.align-hub-hero h1 {
  max-width: min(100%, 16em);
  word-break: keep-all;
  line-break: strict;
  text-wrap: pretty;
}
.align-pillar-band {
  padding: 72px 0;
  border-top: 1px solid var(--border, rgba(0,0,0,.08));
}
.align-pillar-band--a {
  background: #F5F6F7;
}
.align-pillar-band--b {
  background: #ECEFF2;
}
.align-pillar-kicker {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A3211B;
  margin: 0 0 10px;
}
.align-pillar-band h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 6px;
}
.align-pillar-en {
  font-size: 14px;
  color: var(--text-secondary, #5F6F7C);
  margin: 0 0 18px;
}
.align-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.align-product-card {
  background: #fff;
  border: 1px solid #D5DBE0;
  border-radius: 3px;
  padding: 24px;
  /* Static container — nested CTAs are interactive; no card lift (false affordance). */
}
.align-product-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #D5DBE0;
}
.align-product-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
}
.align-product-card p {
  font-size: 14.5px;
  color: var(--text-secondary, #5F6F7C);
  margin: 0 0 12px;
  line-height: 1.7;
}
.align-status {
  font-size: 13px;
  font-weight: 600;
  color: #30363b;
  margin: 0 0 16px !important;
}
.align-industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
/* 5-card industries: 3 + 2 with the second row visually centered on wide desktop */
@media (min-width: 1181px) {
  .align-industries-grid:has(> :nth-child(5)) {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .align-industries-grid:has(> :nth-child(5)) > .align-industry-card {
    grid-column: span 2;
  }
  .align-industries-grid:has(> :nth-child(5)) > .align-industry-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .align-industries-grid:has(> :nth-child(5)) > .align-industry-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}
.align-industry-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #D5DBE0;
  border-radius: 3px;
  padding: 28px 24px;
  min-height: 160px;
  /* Hover/focus from interaction-system.css (a.align-industry-card / a.corp-card) */
}
.align-industry-card--photo {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #142634;
  border-color: transparent;
  padding: 0;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}
.align-industry-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.align-industry-card__media img,
.align-industry-card__media .corp-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.align-industry-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(20, 38, 52, 0.92) 0%,
    rgba(20, 38, 52, 0.66) 46%,
    rgba(20, 38, 52, 0.18) 78%
  );
}
.align-industry-card__body {
  position: relative;
  z-index: 2;
  padding: 28px 24px 26px;
  width: 100%;
}
.align-industry-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
}
.align-industry-card--photo h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}
.align-industry-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary, #5F6F7C);
  line-height: 1.7;
}
.align-industry-card--photo p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  line-height: 1.75;
}
.align-industry-card--photo .align-industry-products {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
a.align-industry-card--photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20, 38, 52, 0.22);
}
a.align-industry-card--photo:hover .align-industry-card__media img,
a.align-industry-card--photo:hover .align-industry-card__media .corp-ph {
  transform: none;
}
.align-industry-card--photo .align-industry-card__media .corp-ph {
  background: #142634;
}
.align-industry-card--photo .align-industry-card__media .corp-ph__id,
.align-industry-card--photo .align-industry-card__media .corp-ph__label {
  opacity: 0;
}
.align-support-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.align-support-list a {
  color: #A3211B;
  font-weight: 600;
  text-decoration: none;
}
.align-support-list a:hover {
  text-decoration: underline;
}
@media (prefers-reduced-motion: reduce) {
  /* interaction-system.css owns reduced-motion for linked cards */
}
@media (max-width: 900px) {
  .align-product-grid,
  .align-industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   V2 — peer-level product list (products hub, 4 products same level)
   ========================================================================== */
.product-list-grid {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}
.product-list-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 24px;
  align-items: start;
  padding: 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.product-list-num {
  font-family: var(--f-label);
  font-size: 22px;
  font-weight: 700;
  color: var(--red, #B2302C);
  line-height: 1;
  padding-top: 4px;
}
.product-list-item h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 0 0 10px;
}
.product-list-item p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 12px;
  max-width: 76ch;
}
.product-list-item .align-status {
  margin-bottom: 16px;
}
.product-list-item__media {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-tertiary);
  overflow: hidden;
}
.product-list-item__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.product-list-item__media .corp-ph {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  background: var(--bg-tertiary);
  gap: 5px;
}
.product-list-item__media .corp-ph__id {
  font-family: var(--f-label);
  font-weight: 700;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.product-list-item__media .corp-ph__label {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.45;
}
@media (max-width: 1023px) {
  .product-list-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .product-list-item__media {
    grid-column: 2;
  }
}
@media (max-width: 640px) {
  .product-list-item { grid-template-columns: 1fr; }
  .product-list-num { font-size: 18px; }
  .product-list-item__media { grid-column: auto; }
}
