/* ═══════════════════════════════════════════════════════════════════════
   subpages.css — Novus Labs Website
   Shared styles for all sub-pages (hero, breadcrumb, navbar, layouts)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── SUB-PAGE HEADER ────────────────────────────────────────────────── */
/* Sub-pages inherit the homepage's fixed transparent navbar from
   components.css. No overrides needed; rules below are intentionally
   removed so the same hover/scroll-to-navy behavior applies sitewide. */

/* ── SUB-PAGE HERO ──────────────────────────────────────────────────── */
.subpage-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.subpage-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* Per-image vertical-position modifiers (apply alongside .subpage-hero-bg
   when a hero photo's subject sits above or below the vertical center).
   Default is center (50%) — no class needed. */
.subpage-hero-bg.pos-top        { background-position: center top; }
.subpage-hero-bg.pos-top-15     { background-position: center 15%; }
.subpage-hero-bg.pos-top-25     { background-position: center 25%; }
.subpage-hero-bg.pos-top-33     { background-position: center 33%; }
.subpage-hero-bg.pos-bottom-33  { background-position: center 67%; }
.subpage-hero-bg.pos-bottom-30  { background-position: center 70%; }
.subpage-hero-bg.pos-bottom-25  { background-position: center 75%; }
.subpage-hero-bg.pos-bottom-15  { background-position: center 85%; }
.subpage-hero-bg.pos-bottom     { background-position: center bottom; }
.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,20,20,.72) 35%, rgba(20,20,20,.35) 100%);
  z-index: 1;
}
.subpage-hero-content {
  position: relative;
  z-index: 2;
  max-width:1440px;
  margin: 0 auto;
  padding: 9rem 2rem 4rem;
  width: 100%;
}
.subpage-hero-content .eyebrow {
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.subpage-hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 600px;
}
.subpage-hero-content p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ── BREADCRUMB BAR ─────────────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: .75rem 0;
}
.breadcrumb-bar nav {
  max-width:1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--gray-400);
}
.breadcrumb-bar a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb-bar a:hover {
  color: var(--red);
}
.breadcrumb-bar .separator {
  font-size: .65rem;
  opacity: .5;
  margin: 0 .15rem;
}
.breadcrumb-bar .current {
  color: var(--navy);
  font-weight: 600;
}

/* ── OVERVIEW / TWO-COLUMN SECTIONS ─────────────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.overview-grid.reversed {
  direction: rtl;
}
.overview-grid.reversed > * {
  direction: ltr;
}
/* When two .overview-grid callouts stack inside one section, space them apart. */
.overview-grid + .overview-grid {
  margin-top: 4rem;
}
.overview-text .eyebrow {
  margin-bottom: .6rem;
}
.overview-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #555555;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.overview-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.overview-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ── SPEC LIST (bullet points with red dots) ────────────────────────── */
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.spec-list li {
  font-size: .925rem;
  color: var(--gray-600);
  padding: .4rem 0;
  display: flex;
  align-items: center;
  gap: .65rem;
  line-height: 1.5;
}
.spec-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── ECOSYSTEM ICON GRID ────────────────────────────────────────────── */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ecosystem-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}
.ecosystem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ecosystem-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  stroke-width: 1.75;
  fill: none;
}
.ecosystem-item span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
}
/* Brand-logo variant (e.g. Matter "Ecosystems Supported"): center a brand
   logo above the label instead of the icon-square + inline label. Logos are
   capped to a uniform height so mixed marks/wordmarks line up. */
.ecosystem-grid--logos .ecosystem-item {
  flex-direction: column;
  text-align: center;
  gap: .9rem;
  padding: 1.5rem 1rem;
}
.ecosystem-logo {
  height: 52px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
}

/* ── VIDEO SECTION ──────────────────────────────────────────────────── */
.video-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-container video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

/* ── VIRTUAL TOUR (Matterport Embed) ────────────────────────────────── */
.virtual-tour-wrap {
  max-width:1440px;
  margin: 0 auto;
}
.virtual-tour-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.virtual-tour-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── MONITORING IMAGE GRID ──────────────────────────────────────────── */
.monitoring-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.monitoring-photos .fphoto {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.monitoring-photos .fphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.monitoring-photos .fphoto:hover img {
  transform: none; /* hover zoom removed (overrides the global .fphoto:hover zoom too) */
}

/* ── CORE EXPERTISE GRID (4-column) ─────────────────────────────────── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
/* Intermediate step so the 4-col grid doesn't overflow on tablets / landscape
   phones (~769-1024px): its 4-col min-content (~740px) exceeds a viewport just
   above the 768px breakpoint. Phones <=768px stay 1-col via the components.css
   !important rule. */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}
.expertise-col {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.expertise-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}
.expertise-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  stroke-width: 1.75;
  fill: none;
}
.expertise-title {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--gray-100);
}
.expertise-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.expertise-sublist li {
  font-size: .9rem;
  color: var(--gray-600);
  padding: .35rem 0;
  line-height: 1.4;
}

/* ── ENGAGEMENT GRID (3-column feature row) ─────────────────────────── */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.engagement-item {
  text-align: center;
  padding: 0 1rem;
}
.engagement-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.engagement-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
  stroke-width: 1.75;
  fill: none;
}
.engagement-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #555555;
  margin-bottom: .6rem;
  letter-spacing: .01em;
}
.engagement-item p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}
/* Centered variant: when the item count doesn't fill the last row (e.g. 5 items
   across 3 columns), switch from a rigid grid to a centered flex wrap so the
   trailing row is centered rather than left-aligned. */
.engagement-grid--centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.engagement-grid--centered .engagement-item {
  flex: 0 1 calc((100% - 5rem) / 3);
}
@media (max-width: 768px) {
  .engagement-grid--centered .engagement-item { flex-basis: 100%; }
}
/* "Why Choose Us" (USB / SATA cert pages) has no .section-sub, so its header
   ends on the headline (.75rem margin) and the grid sits too close. Match the
   2.5rem gap a .section-sub would give (cf. staffing "Streamlined Engagement"). */
#why .section-headline { margin-bottom: 2.5rem; }

/* ── BLOG: category filter + year groupings ─────────────────────────── */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.blog-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.blog-filter:hover { border-color: var(--gray-400); color: var(--navy); }
.blog-filter.active { background: var(--red); border-color: var(--red); color: #fff; }
.blog-year { margin-bottom: 2.5rem; }
.blog-year:last-child { margin-bottom: 0; }
.blog-year-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--gray-200);
}
/* Hidden by the category filter — overrides .document-card { display:flex } */
.document-card[hidden], .blog-year[hidden] { display: none !important; }

/* ── DOCUMENT GRID (PDF resource cards) ─────────────────────────────── */
.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.document-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.document-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.document-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.document-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  stroke-width: 1.75;
  fill: none;
}
.document-card-category {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}
.document-card-category.company {
  color: var(--gray-400);
}
.document-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.document-card-desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.document-card-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
}
.document-card-meta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.document-card-meta .size {
  margin-left: auto;
  color: var(--gray-600);
  font-weight: 500;
  font-size: .78rem;
}

/* ── PARTNER CARDS ──────────────────────────────────────────────────── */
.partner-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
/* Partner cards use the (former hover) elevated look as their default —
   darker border + drop shadow — and do not change on hover. */
.partner-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-md);
}
/* Buttons inside partner-text cards, and buttons that sit directly after
   a paragraph inside .overview-text (e.g. industries-master cards), get a
   small top margin for breathing room. Buttons that follow a .spec-list
   are left alone — the list's own bottom margin handles spacing there. */
.partner-text .btn,
.overview-text > p + .btn {
  margin-top: 1rem;
}
.partner-logo {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}
.partner-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.partner-text p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.partner-text p:last-child {
  margin-bottom: 0;
}
.partner-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--transition);
  text-decoration: none;
}
.partner-link:hover {
  color: var(--navy);
}

/* ── PRESS RELEASE ARTICLE ──────────────────────────────────────────── */
.press-article {
  max-width: 820px;
  margin: 0 auto;
}
.press-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--red);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: gap var(--transition);
}
.press-back-link:hover {
  gap: .6rem;
}
.press-article-meta {
  color: var(--gray-400);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.press-article h2.release-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.press-article .release-subhead {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.press-article .dateline {
  font-size: .95rem;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 1rem;
}
.press-article p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}
.press-article blockquote {
  font-size: 1.1rem;
  font-style: italic;
  border-left: 4px solid var(--red);
  padding: .75rem 0 .75rem 1.5rem;
  margin: 1.75rem 0;
  color: var(--navy);
  line-height: 1.6;
}
.press-article blockquote cite {
  display: block;
  font-size: .9rem;
  font-style: normal;
  color: var(--gray-400);
  margin-top: .6rem;
}
.media-contact-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.media-contact-box h3 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.media-contact-box a {
  color: var(--red);
  text-decoration: none;
}
.media-contact-box a:hover {
  text-decoration: underline;
}
.about-box {
  border-top: 1px solid var(--gray-100);
  padding-top: 2rem;
  margin-top: 3rem;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.about-box h3 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .75rem;
}
.about-box p {
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.press-end-marker {
  text-align: center;
  color: var(--gray-400);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .2em;
  margin: 2rem 0;
}

/* ── CAROUSEL (image / video gallery) ───────────────────────────────── */
.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  margin: 0 auto;
}
.carousel-stage {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #1A1A1A;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #1A1A1A;
  display: block;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .75rem 4rem;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,0));
  color: #fff;
  font-size: .85rem;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  padding: 0;
}
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-prev:hover,
.carousel-next:hover {
  background: var(--red);
}
.carousel-prev svg,
.carousel-next svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  background: #fff;
  border-top: 1px solid var(--gray-100);
}
.carousel-dots {
  display: flex;
  gap: .5rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot:hover {
  background: var(--gray-400);
}
.carousel-dot.active {
  background: var(--red);
  transform: scale(1.3);
}
.carousel-counter {
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 60px;
  text-align: right;
}

/* ── CAREERS PAGE: AVIONTE IFRAME WRAPPER ─────────────────────────── */
.careers-iframe-wrap {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-top: 1rem;
}
.careers-iframe-wrap iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  display: block;
}

/* ── ENGINEERING SERVICES MASTER PAGE: subpage link list ─────────── */
.es-master-links {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}
.es-master-links li {
  margin: 0;
}
.es-master-links a {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem 0;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
  text-decoration: none;
}
.es-master-links a::before {
  content: "›";
  color: var(--red);
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1;
}
.es-master-links a:hover {
  color: var(--red);
}

/* ── LEGAL / POLICY PAGES ── */
.legal-content{max-width:820px;margin:0 auto}
.legal-content .legal-updated{font-size:.9rem;color:var(--gray-600);margin-bottom:2rem}
.legal-content h2{font-size:1.5rem;font-weight:800;color:var(--navy);margin:2.5rem 0 1rem;line-height:1.25}
.legal-content h3{font-size:1.15rem;font-weight:700;color:var(--navy);margin:1.75rem 0 .75rem}
.legal-content p{font-size:1rem;color:#2e2e2e;line-height:1.75;margin-bottom:1.1rem}
.legal-content ul{list-style:disc;margin:0 0 1.25rem 1.5rem}
.legal-content li{font-size:1rem;color:#2e2e2e;line-height:1.7;margin-bottom:.5rem}
.legal-content a{color:var(--red);text-decoration:underline}
.legal-content a:hover{color:var(--navy)}

/* Data-graphic in an overview-image column (e.g. USB-IF oscilloscope graphic):
   sit at natural proportions, centered, capped to roughly the copy column height
   rather than filling/cropping the column the way a photo does. */
.overview-image--fit img{width:auto;height:auto;max-width:100%;max-height:660px;object-fit:contain;margin:0 auto;display:block;border-radius:var(--radius-lg)}
