/* ============================================
   Industrial Control Solutions — Shared Styles
   ============================================ */

:root {
  --navy: #0b2545;
  --navy-dark: #071a30;
  --navy-mid: #123a63;
  --steel: #2f6690;
  --steel-light: #eaf1f7;
  --amber: #e8890c;
  --amber-dark: #c76f00;
  --gray-900: #1a1f26;
  --gray-700: #3c4450;
  --gray-600: #5b6472;
  --gray-300: #c9d1d9;
  --gray-200: #e2e6ea;
  --gray-100: #eef1f4;
  --gray-50: #f7f9fb;
  --white: #ffffff;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 20px 48px rgba(11, 37, 69, 0.18);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.75em;
}

.eyebrow.on-dark { color: var(--amber); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  max-width: 1360px;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.brand-logo {
  display: flex;
  flex-direction: column;
  color: var(--white);
  gap: 2px;
  flex-shrink: 0;
}
.brand-logo .logo-mark {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.brand-logo .logo-mark .sq {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 0.8rem;
}
.logo-mark-img {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.brand-logo .logo-sub {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  padding-left: 36px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.main-nav a {
  color: var(--gray-300);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  border-bottom-color: var(--amber);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
}

/* ---------- Brands dropdown ---------- */
.nav-item.dropdown { position: relative; }
.dropdown-head { display: flex; align-items: center; }
.dropdown-caret {
  background: none;
  border: none;
  color: var(--gray-300);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 2px 8px 4px;
  margin: 0;
}
.dropdown-caret:hover { color: var(--white); }
.dropdown-caret .chev { transition: transform 0.15s ease; }
.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 200;
}
.main-nav .dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  border-bottom: none;
  font-size: 0.86rem;
  white-space: nowrap;
}
.main-nav .dropdown-menu a:hover,
.main-nav .dropdown-menu a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item.dropdown:hover .chev,
.nav-item.dropdown.open .chev {
  transform: rotate(180deg);
}

@media (max-width: 1360px) {
  .nav-item.dropdown { width: 100%; }
  .main-nav .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.04);
    margin-top: 6px;
    width: 100%;
  }
  .nav-item.dropdown.open .dropdown-menu { display: block; }
}

@media (max-width: 1360px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 24px 20px;
    gap: 14px;
    display: none;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 560px) {
  .logo-sub { display: none; }
}

@media (max-width: 440px) {
  .logo-text { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 500px at 85% -10%, rgba(232,137,12,0.18), transparent 60%), linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  max-width: 820px;
}
.hero .lede {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber);
}
.hero-stats .stat-label {
  font-size: 0.8rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-feed { display: flex; justify-content: center; }
  .hero-feed-card { width: 100%; max-width: 560px; }
}
.hero-feed-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 20px;
  min-width: 0;
}
.hero-feed-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-feed-embed {
  min-height: 520px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}
.hero-feed-embed > div { min-width: 0; }

.hero.brand-hero { padding: 64px 0 72px; }
.hero.brand-hero .lede { max-width: 720px; }
.hero-tagline {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 0.6em;
}

/* ---------- Real brand logos (on dark backgrounds) ---------- */
.hero-logo-white {
  height: 38px;
  width: auto;
  display: block;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}
.hero-logo-card {
  display: flex;
  width: fit-content;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 22px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
}
.hero-logo-card img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

/* ---------- Real brand logos on brand cards (home page) ---------- */
.card-logo {
  height: 38px;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.card-logo img {
  max-height: 100%;
  max-width: 170px;
  width: auto;
  object-fit: contain;
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p { color: var(--gray-600); font-size: 1.05rem; }

.bg-tint { background: var(--gray-50); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-head p { color: var(--gray-300); }
.bg-navy h2 { color: var(--white); }

/* ---------- Brand Grid (Home) ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--steel-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
}
.brand-icon svg { width: 26px; height: 26px; }
.brand-card h3 { font-size: 1.25rem; margin-bottom: 0; }
.brand-card .brand-desc { color: var(--gray-600); font-size: 0.95rem; flex-grow: 1; }
.brand-card .brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 4px;
}
.pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--steel);
  background: var(--steel-light);
  padding: 4px 10px;
  border-radius: 999px;
}
.brand-card .card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.brand-card .card-link .arrow { transition: transform 0.15s ease; }
.brand-card:hover .card-link .arrow { transform: translateX(4px); }
.brand-card .card-loc {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ---------- Industry / feature grids ---------- */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
}
.bg-navy .chip {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  color: var(--gray-300);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature-item h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.feature-item .num {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item p { color: var(--gray-600); font-size: 0.94rem; margin-left: 44px; }

/* ---------- Product / info cards on brand pages ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
}
.info-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.info-card p { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .label {
  width: 88px;
  flex-shrink: 0;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.contact-row a {
  color: var(--steel);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(47, 102, 144, 0.35);
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.contact-row a:hover {
  color: var(--amber-dark);
  text-decoration-color: currentColor;
}
.disclosure a {
  color: var(--steel);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(47, 102, 144, 0.35);
  text-underline-offset: 2px;
}
.disclosure a:hover { color: var(--amber-dark); text-decoration-color: currentColor; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat-strip .stat-num { font-size: 1.7rem; font-weight: 800; color: var(--navy); }
.stat-strip .stat-label { font-size: 0.82rem; color: var(--gray-600); margin-top: 2px; }

.crumb {
  font-size: 0.82rem;
  color: var(--gray-300);
  margin-bottom: 18px;
}
.crumb a { color: var(--gray-300); }
.crumb a:hover { color: var(--white); }
.crumb .sep { margin: 0 8px; opacity: 0.5; }

/* ---------- Sister brands strip ---------- */
.sister-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.sister-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.sister-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sister-card .s-name { font-weight: 700; font-size: 0.98rem; margin-bottom: 4px; }
.sister-card .s-tag { font-size: 0.82rem; color: var(--gray-600); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: 18px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h3 { font-size: 1.5rem; margin-bottom: 6px; }
.cta-band p { color: var(--gray-300); margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--gray-300);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-grid h5 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--gray-300); }
.footer-links a:hover { color: var(--white); }
.footer-about p { font-size: 0.88rem; color: var(--gray-300); max-width: 340px; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.disclosure {
  font-size: 0.78rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
  margin-top: 8px;
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 0; }
.value-quote {
  border-left: 3px solid var(--amber);
  padding-left: 16px;
  margin: 0;
  font-style: italic;
  color: var(--gray-700);
  font-size: 0.98rem;
}
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 12px 0;
}
.brand-strip img {
  height: 32px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity 0.15s ease, filter 0.15s ease;
}
.brand-strip img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- Leadership ---------- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.leader-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--gray-100);
}
.leader-body { padding: 22px 24px 26px; }
.leader-name { font-size: 1.15rem; margin-bottom: 2px; }
.leader-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}
.leader-bio { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Industries ---------- */
.industry-desc { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 4px; }

/* ---------- Blogs ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card h4 { font-size: 1.02rem; margin-bottom: 0; color: var(--navy); }
.blog-card:hover h4 { color: var(--steel); }
.blog-card .card-link { margin-top: auto; }
.blog-note {
  font-size: 0.85rem;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 28px;
}

/* ---------- News ---------- */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 30px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.news-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.news-date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.news-source {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber-dark);
  background: #fdf1e0;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.news-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.news-item h3 a { color: var(--navy); }
.news-item h3 a:hover { color: var(--steel); }
.news-item p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 10px; }
.news-item .news-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-item .news-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.news-note {
  font-size: 0.85rem;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 28px;
}

/* ---------- Narrow-phone overflow guard ---------- */
/* Grid/flex items default to min-width:auto, which floors their size at their content's
   min-content width (e.g. a long email address or heading) and can push the whole layout
   wider than the viewport. Letting them shrink, plus wrapping long unbreakable strings like
   emails, prevents horizontal overflow at small widths. Placed at end of file to win the cascade. */
.two-col > div,
.brand-grid > .brand-card,
.info-grid > .info-card,
.values-grid > .value-card,
.leadership-grid > .leader-card,
.feature-grid > .feature-item,
.sister-grid > .sister-card,
.blog-grid > .blog-card,
.footer-grid > *,
.contact-row,
.contact-row > span {
  min-width: 0;
}
.contact-row span:not(.label) {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Collapse card grids to a single column before their minimum track width would crowd narrow phones */
@media (max-width: 480px) {
  .brand-grid,
  .info-grid,
  .values-grid,
  .leadership-grid,
  .feature-grid,
  .sister-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
