/* #region Base Layout */

:root 
{
	--armstrong-default:#3c4043;
	--armstrong-orange: #FF6633;
	--armstrong-blue: #0A1F44;
	--armstrong-type:#666666;
	--armstrong-solution:#999999;
	--armstrong-businessneeds:#596FB7;
	--armstrong-industry:#339989;
	--container-radius:15px;
	--container-boxshadow:12px 12px 12px rgba(0,0,0,0.1);
	--container-boxshadow-hover:0 0 0 rgba(0,0,0,0.1),0 0 0 white;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { overflow-x: hidden; 	font-size:16px;}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--armstrong-default);
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

*, h1, h2, h3, h4, h5, h6, a { margin: 0; padding: 0; text-decoration: none; }

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; }




/* #endregion */

/* #region Base Styles */

.armstrong {color:var(--armstrong-orange) !important}

a 
{
	color:var(--armstrong-orange) ;
}


a.btn
{
	 background: #FF6633;
    color: #ffffff;
    border-radius: 8px;  
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

a.btn:hover
{
	 background: #e85a2c;
    box-shadow: 0 4px 10px rgba(0,0,0,.10);
}

h1 {
	font-size: clamp(2.25rem, 4vw, 3.25rem); /* 36–52px */
	line-height: 1.15;
	font-weight: 600;
	margin: 0 0 1.5rem 0;
	color:var(--armstrong-blue);
}

h2
{
	font-size: clamp(1.75rem, 3vw, 2.25rem); /* 28–36px */
	line-height: 1.4;
	font-weight: 600;
	margin: 0 0 1.25rem 0;
	color:var(--armstrong-blue);
}

h3
{
	font-size: clamp(1.375rem, 2.5vw, 1.75rem); /* 22–28px */
	line-height: 1.25;
	font-weight: 500;
	margin: 0 0 1rem 0;
}

h4
{
	font-size: 1.25rem; /* 20px */
	line-height: 1.3;
	font-weight: 500;
	margin: 1.5rem 0 0.75rem 0;
}

p,li,label,span,td,th
{
	font-size: 1.125rem; /* 18px */
	line-height: 1.8;
	font-weight: 300;
}

p 
{

	margin: 0 0 1.25rem 0;
}

ul
{
	margin-bottom: 2rem;

}



strong
{
	font-weight:700;
}

p.limit
{
  max-width:80ch;
  margin-left:auto;
  margin-right:auto;
}

/* #endregion */

/* #region Combinations */

p:last-child,li:last-child 
{
	margin-bottom: 0;
}

p+h2, ul+h2, ol+h2, p+h3, ul+h3, ol+h3, div+h3, p+h4 , ul+h4,ol+h4, div+p, h3+div.row
{
	margin-top: 3rem;
}

h1:has(+ div) {
    margin-bottom: 3rem;
}

h2:has(+ div) {
    margin-bottom: 3rem;
}

p:has(+ div) {
    margin-bottom: 3rem;

}

.container + .container {
  margin-top: 3rem; /* adjust as needed */
}
/* #endregion */

/* #region Helpers */

.text-start  { text-align: left; }
.text-center { text-align: center; }
.text-end    { text-align: right; }

.allcenter
{
	display: flex;
	flex-direction: column; 
    justify-content: center;
	align-items: center;
	text-align: center;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px; /* optional */
}
/* #endregion */

/* #region Container */

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.container-full {
  width:100%;
  padding-inline: 2rem;
}

/* #endregion */

/* #region Topbar */

#topbar { display: none; font-size: 0.875rem; padding: 0.5rem 0;  }

@media (min-width: 993px) {#topbar { display: block;height:40px; }
}

#topbar .topbar-inner{ display:flex; justify-content:flex-end; align-items:center; gap:1rem;}

#topbar ul{list-style:none; display:flex; gap:1rem; margin:0; padding:0;}

#topbar a{ text-decoration:none; color:inherit; }

.topbar-fullwidth #topbar .container{ width:100%; padding-inline:2rem;}

#topbar.topbar-transparent{ background:transparent; }

#topbar:not(.topbar-transparent){ background:#111; color:#fff;}

body.header-dark #topbar { color: #fff; }
body.is-stuck #topbar { color: #111; background: #fff; }

body.is-stuck #topbar { display: none; }

/* #endregion */

/* #region Logo */

.logo-dark { display: none; }
.logo-light { display: block; }

body.header-dark .site-header { background-color:#111;color: #fff; }
body.header-dark .site-header a { color: inherit; }


body.header-dark .logo-light { display: none; }
body.header-dark .logo-dark  { display: block; }

/* #endregion */

/* #region Sticky  */

body.header-sticky .site-header {
  position: sticky;
  top: 0;
  z-index: 3000;
}

body.is-stuck .site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  color: #111; 
}

body.is-stuck .logo-light { display: block; }
body.is-stuck .logo-dark  { display: none; }


body.header-overlay .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

body.header-overlay.is-stuck .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
/* #endregion */

/* #region Header  */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-fullwidth header .container
{

    width:100%;
    padding-inline:2rem;

}

.site-header ul,
.site-header li {
  list-style: none;
  margin: 0;
  padding: 0;
}


.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem 0;
}

.header-inner > * {
  grid-row: 1;
}


.logo {
  grid-column: 1;
  justify-self: start;
}

.main-nav {
  grid-column: 2;
  justify-self: center;
}

.header-controls-left {
  grid-column: 3;
  justify-self: end; 
}

.header-controls-right {
  display: none; 
   align-self: center;
}

.logo,
.main-nav,
.header-controls-left,
.header-controls-right {
  align-self: center;
}


.search-toggle,
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}


.logo img {
  height: 32px;
}


.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 400;
  text-transform: uppercase;
}


.has-dropdown {
  position: relative;
}

.has-dropdown > .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  z-index: 1000;
}

.has-dropdown.open > .dropdown {
  display: block;
}

.has-dropdown > .dropdown a {
  padding-left: 2rem;
  font-size: 0.9rem;
}



.dropdown li a {
  display: block;
  padding: 0.5rem 1.25rem;
  color:#222 !important;
  text-transform: none;
}


.search-panel {
  display: none;
  border-top: 1px solid #eee;
  padding: 1rem 0;
}

.search-panel.active {
  display: block;
}

.search-panel input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
}


@media (max-width: 768px) {

  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    
  }

  .header-controls-left {
    grid-column: 1;
    justify-self: start;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
  }

  .header-controls-right {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    display: none;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid #f0f0f0;
    width:100%;
  }

  .main-nav li:last-child {
  border-bottom: none;
}

  .main-nav a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;

  }

.main-nav a:not(.armstrong) {
    color:black !important;

  }


  .has-dropdown > .dropdown {
  display: none;
  position: static;
  box-shadow: none;
  }

  .has-dropdown:hover > .dropdown {
    display: none;
  }

  .has-dropdown.open > .dropdown {
  display: block;
}

/* Base chevron */
.has-dropdown > a {
  position: relative;
}

.has-dropdown > a::after {
  content: "▾";
  position: absolute;
  right: 1.5rem;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

/* Rotate when open (mobile) */
.has-dropdown.open > a::after {
  transform: rotate(180deg);
}
}

@media (min-width: 769px) {

  .has-dropdown > .dropdown {
    display: none;
  }

  .has-dropdown:hover > .dropdown {
    display: block;
  }

}

body.header-overlay .site-header {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  z-index: 2000;
}

/* Topbar in overlay mode */
body.header-overlay #topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 2100;
  
}

body.header-overlay.is-stuck .site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  color: #111;
}

body.header-overlay.is-stuck .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* #endregion */

/* #region Row Grid  */


.row {
  --gap: 2rem;
  --cols: 4;              /* default */
  --align: flex-start;    /* flex-start | center | flex-end */
  --min: 0px;             /* optional minimum column width */

  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);

  justify-content: var(--align);

  /* If you want items to be equal height like Bootstrap cards-in-cols */
  align-items: stretch;
}

/* Each direct child becomes a column */
.row > * {
  /* Column width based on --cols */
  flex: 0 0 calc((100% - (var(--gap) * (var(--cols) - 1))) / var(--cols));
  max-width: calc((100% - (var(--gap) * (var(--cols) - 1))) / var(--cols));
}

/* Column count modifiers */
.row--1 { --cols: 1; }
.row--2 { --cols: 2; }
.row--3 { --cols: 3; }
.row--4 { --cols: 4; }
.row--5 { --cols: 5; }
.row--6 { --cols: 6; }

/* Alignment modifiers */
.row--left   { --align: flex-start; }
.row--center { --align: center; }
.row--right  { --align: flex-end; }

/* Optional min-width presets (helps wrapping feel nicer) */
.row--xs { --min: 160px; }
.row--sm { --min: 220px; }
.row--md { --min: 260px; }
.row--lg { --min: 320px; }

@media (max-width: 992px) {
  .row--6 { --cols: 2; }
  .row--4 { --cols: 2; }
  .row--3 { --cols: 2; }
}


@media (max-width: 768px) {
  .row--6 { --cols: 1; }
  .row--4 { --cols: 1; }
  .row--3 { --cols: 1; }
  .row--2 { --cols: 1; }
}


/* Responsive overrides (example: 6-col collapses like Bootstrap) */
@media (max-width: 1200px) { .row--6 { --cols: 4; } }
@media (max-width: 992px)  { .row--6 { --cols: 3; } }
@media (max-width: 768px)  { .row--6 { --cols: 2; } }
@media (max-width: 520px)  { .row--6 { --cols: 1; } }


/* #endregion */

/* #region Breadcrumbs  */

.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.875rem;
}



.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem; 
}


.breadcrumbs__item {
  margin: 0;
  padding: 0;
  display: flex;
}


.breadcrumbs__item > a,
.breadcrumbs__item > span {
  display: flex;
  align-items: center;
  height: 28px;             
  padding: 0 5px;
  line-height: 1;          
  font-size: 1rem;
  font-weight: 200;
  text-transform: uppercase;
  text-decoration: none;
  color: #334155;
}


.breadcrumbs__sep{
  display: flex;
  align-items: center;
  height: 28px;          
  line-height: 1;
  opacity: .45;
  user-select: none;
}


@media (max-width: 992px) {
  .breadcrumbs {
    display: none;
  }
}

/* #endregion */

/* #region Sections  */

section li 
{
	margin-bottom: 0.5rem;
  margin-left:2rem;
}

.section
{
  padding: 6rem 0;
}

.section-head
{
  padding: 3rem 0 4rem 0;
}


.section-light 
{
  background: #F9FAFB;
  padding: 6rem 0;
}

.section-standard
{
  background: #F3F4F6;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.01);
  padding: 6rem 0;
}

.section-dark 
{
  background: linear-gradient(
  180deg,
  #40464F 0%,
  #343940 100%);
  padding: 6rem 0;
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p
{
  color: #FFFFFF;
}


.section-products
{
	background: #f6f8fb;
	padding: 6rem 0;
}

.section-armstrong
{
  background:var(--armstrong-blue);
  padding: 6rem 0;
}

.section-armstrong h1, .section-armstrong h2, .section-armstrong h3, .section-armstrong p
{
  color: #FFFFFF;
}


.section-audit
{
	background-color:var(--armstrong-default);
  padding: 6rem 0;
}

.section-alert
{
	background-color:#ffffaa;
  padding: 0.5rem 0;
  border-bottom:1px solid #ccccaa;
}


.section-audit h3, .section-audit h4, .section-audit p
{
	color:white;
}

.guidance 
{
  border-left: 4px solid #D1D5DB;
  padding-left: 1.5rem;
}

.section-emphasis h2::after
{
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: #D1D5DB;
  margin-top: 0.75rem;
}

.section-smaller p,.section-smaller h2,.section-smaller h1
{
max-width: 900px;
}


section.cta
{
	background-color:#FF6633;
	padding: 6rem 0;
}

section.cta .container>h1, section.cta .container>h2,section.cta .container>p
{
	color:rgba(255, 255, 255, 1);
}


/* #endregion */

/* #region Hero  */
.hero {
  position: relative;
  overflow: hidden;

  /* allow hero to shrink to content */
  min-height: 0;

  /* tune per page if needed */
  --hero-overlay-left: .60;  /* dark at left */
  --hero-overlay-mid:  .40;
  --hero-overlay-right:.22;

  /* Hero presence comes from padding */
  padding-block: clamp(4rem, 10vh, 7rem);

  display: flex;
  align-items: center;
  color: #fff;
}

/* Background layer (parallax-friendly) */
.hero__bg {
  position: absolute;
  inset: -40px 0 0 0;
  height: calc(100% + 80px);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: translateY(calc(var(--scroll, 0) * -0.08));
  will-change: transform;
  z-index: 0;
}

/* Gradient overlay */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,var(--hero-overlay-left)) 0%,
    rgba(0,0,0,var(--hero-overlay-mid)) 45%,
    rgba(0,0,0,var(--hero-overlay-right)) 100%
  );
}

/* Foreground stacking */
.hero .container,
.hero__content {
  position: relative;
  z-index: 1;
}

/* Content width + alignment */
.hero__content {
  max-width: 68ch;
  text-align: left;
}

/* Kicker */
.hero__kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 500;
  font-size: clamp(.95rem, .9vw, 1.1rem);
  opacity: .95;
  margin-bottom: 1rem;
}

/* Heading */
.hero h1 {
  margin: 0 0 1rem 0;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.12;
  font-weight: 600;
  color: #fff;
  text-wrap: balance; /* supported in modern browsers */
}

.hero h2 {
  margin: 0 0 1rem 0;
 
  color: #fff;
  text-wrap: balance; /* supported in modern browsers */
}

/* Body copy */
.hero p {
  margin: 0 0 1rem 0;
  font-size: clamp(1.15rem, 1.35vw, 1.35rem);
  line-height: 1.6;
  max-width: 62ch;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

/* Actions */
.hero__actions {
  margin-top: 2rem;
}

/* Optional logo animation */
.hero__logo {
  animation: fadeInRight .6s ease-out both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__bg { transform: none !important; }
  .hero__logo { animation: none; }
}
/* =========================================================
   HEADER OVERLAY MODE
   Adds space so hero content clears topbar/header
   ========================================================= */

body.header-overlay .hero {
  /* add header height onto the normal top padding */
  padding-top: calc(clamp(4rem, 10vh, 7rem) + 56px + 44px); /* topbar + header */
}

/* If topbar not shown (mobile), reduce */
@media (max-width: 992px) {
  body.header-overlay .hero {
    padding-top: calc(clamp(3.5rem, 9vh, 6rem) + 64px); /* header only */
  }

  body.header-overlay #topbar {
    display: none;
  }
}

/* #endregion */

/* #region Marquee  */

.logo-marquee {
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
}

.logo-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  width: max-content;
  animation: scroll 35s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
}

.logo-item a {
  display: block;           
}

.logo-item img {
  display: block;           
  height: 48px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.logo-item img:hover {
  filter: none;
  opacity: 1;
}


@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
/* #endregion */

/* #region Footer  */

.site-footer {
  background: #0f1b2d;
  color: rgba(255,255,255,.86);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}




.footer-main {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}


.footer-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}


@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.footer-tagline {
  margin: 1rem 0 0 0;
  color: rgba(255,255,255,.75);
}


.footer-cols {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

@media (min-width: 768px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-title {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.footer-list li
{
margin:0;


}

.footer-list--icons a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.footer-list--icons i {
  width: 1.25rem; 
  text-align: center;
  opacity: .9;
}


.footer-meta {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 1.5rem 0;
}

.footer-smallprint {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.68);
}


/* #endregion */

/* #region Tiles  */



.tile_container
{
	background-color:white;
	border: 1px solid #e9edf2;
	border-radius: 15px;
	display:flex;
  flex-direction: column;
	justify-content: flex-start;
	width:100%;
	height:100%;  
}

a.tile_container 
{
    color: var(--armstrong-default);
	  border:1px solid #cccccc;
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.tile_container.notlive
{
	border:1px dashed red;
}

a.tile_container:hover 
{
    box-shadow: 0 14px 32px rgba(0,0,0,.14);
    border: 1px solid rgba(255,102,51,.8);
    transform: translateY(-3px);
}

.tile_logo
{
	padding: 2rem;	
  display: block;
}

.tile_logo.wcenter
{
	display: flex;
	flex-direction: column; 

	align-items: center;
	text-align: center;
}

.tile_logo.vcenter
{
	display: flex;
	flex-direction: column; 
  justify-content: center;

}


.tile_logo img
{
	height:2rem;
	max-width:100%;
	 display: block;
}

.tile_image
{
	border-bottom:1px solid #cccccc;
	background-color:#666666;
	height:60px;
	overflow: hidden;
	display: flex; 
	align-items: center;
	border-radius:15px 15px 0 0;

	position:relative;
}

.tile_image img
{
	width:100% !important;
  filter: saturate(0.85);

}

.tile_image::after
{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.25),
    rgba(0,0,0,0)
  );
}

.tile_image span
{
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
   background: rgba(0,0,0,0.6);
  padding: 4px 8px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  border-radius: 3px;
  color:white;
}

.tile_content
{
	padding: 2rem;
	flex-grow: 1;	
}

.kicker {
  margin-bottom:1rem !important;
  line-height: 1.2;

}

.kicker-type {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280; /* muted */
  margin-bottom:0.5rem;
}

.kicker-date {
  display: block;
  font-size: 1rem;
  font-weight: 500;

  color: #9ca3af; /* slightly lighter */
}

.tile_logo + .tile_content {
    padding-top: 0;
}

.tile_minheight .tile_content
{
	min-height: 200px !important;
}

.tile_content.wcenter
{
	display: flex;
	flex-direction: column; 

	align-items: center;
	text-align: center;
}

.tile_content.vcenter
{
	display: flex;
	flex-direction: column; 
  justify-content: center;

}

.tile_type
{
	font-variation-settings: "wght" 300;
	text-transform:uppercase;
	display:block;
	font-size:1rem;
	margin-bottom:2rem;
}

.tile_content h3
{
	font-weight:600;
	font-size:1.2rem;
	line-height: 1.3;
	margin: 0 0  0rem 0;
	color:var(--armstrong-blue);
}

a.tile_container:hover  .tile_content h3
{
  color:var(--armstrong-orange);
}

.tile_content h3:first-child:not(:last-child) {
    margin-bottom: 1rem;
}

.tile_content p
{
	font-size:1.1rem;
	margin-bottom:0;
	color:black;

}

.tile_content ul
{
	margin:1rem 0;
	padding-left:1rem;

}

.tile_content li
{
	font-size:1rem;

}

.tile_icon
{
	margin:  0 0 2rem 0;
	display: flex;
	flex-direction: column; 

	align-items: center;
	text-align: center;


}

.tile_icon svg,.tile_icon i
{
	font-size:3rem;
  max-width:100%;
  padding:0;
  margin:0;

}

.tile_icon img
{
  width:25%;
}


.tile_footer
{
display: flex;
 justify-content : flex-end;
align-items: center;
  margin-top: auto;
  padding: 0 1.5rem 1.5rem 1.5rem;
	font-size:0.9rem;
	text-transform:uppercase;
	text-align:right;
  font-weight: 500;
  
}

a.tile_container:hover .tile_footer

{
  color:var(--armstrong-orange);
}




.tile_footer::after
{
  content: "\2192";
  margin-left:0.2rem;
  transition: transform .2s ease;
}

a.tile_container:hover .tile_footer::after 
{
  transform: translateX(4px);
}

/* #endregion */

/* #region Solutions  */
.solutions-filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0 40px 0;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

.filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-list li {
    margin: 0;
}

.filter-list a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    color: #2B2F36;
    background-color: #f1f3f6;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.filter-list a:hover {
    background-color: #e2e6ec;
}

.filter-list a.active {
    background-color: #2B2F36;
    color: #ffffff;
}
/* #endregion */

/* #region Products  */
.product_header
{
	background-color:#FFFFFF;
}

.product_header h1
{
	font-weight:700;
}

.product_header p
{
	font-size:1.4rem;
	font-weight:300;
}


.product_header_inner
{
	display:flex;align-items: center;width:100%;justify-content:space-between;align-items: center;flex-wrap:wrap;
}

.product_header_logo
{
	width:30%;margin-bottom:4em;
}

.product_header_logo img
{
	width:100%;
}

.product_overview
{
	background-color:#f0f0f0;
  padding: 6rem 0;

}

.product_resources
{

  padding: 6rem 0;

}

.product_screenshots .portfolio-image
{
	max-height:200px;
}

ul.challenges_solution_list 					
{margin:0;padding:0;}

ul.challenges_solution_list li.solution-item 
{list-style:none;margin:0;padding:0;display:block;}

ul.challenges_solution_list li.solution-item a 
{
	font-size:1.2rem;opacity:0.7;font-weight:300;
	color:var(--armstrong-blue) ;
}

ul.challenges_solution_list li.solution-item a:hover 
{
		color:var(--armstrong-orange) ;
}

ul.challenges_solution_list li.solution-item span 
{font-size:1.2rem;opacity:0.7;font-weight:300;}

/* #endregion */

/* #region Industry  */

.industry-hero-image {
    width: 260px;
    height: 260px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.industry-hero-wrap {
    position: relative;
    display: inline-block;
}

.industry-hero-wrap::before {
    content: "";
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    background: rgba(13, 40, 74, 0.04);
    border-radius: 14px;
    z-index: -1;
}

/* #endregion */

/* #region Modal  */
.modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;

	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
}

.modal.is-active {
	opacity: 1;
	pointer-events: auto;
}

.modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.5);
}

.modal__dialog {
	position: relative;
	background:#dfdfdf;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0,0,0,.25);

	width: 90%;
	max-height: 85vh;
	overflow: auto;
	transform: translateY(10px);
	transition: transform .2s ease;
	padding: 4rem;
}

.modal.is-active .modal__dialog {
	transform: translateY(0);
}

.modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

body.modal-open {
	overflow: hidden;
}

/* #endregion */

/* #region Datatables  */
.datatable_container {background-color:white;padding:2rem;}

.datatable td.centered 	{text-align:center !important;}
.datatable th.centered 	{text-align:center !important;}
.datatable td.expand 	{width:100%;}
.datatable th.expand 	{width:100%;text-align:left;}
.datatable td.nowrap 	{white-space:nowrap;}
.datatable th.nowrap 	{white-space:nowrap;text-align:left;}

.datatable_container .form {margin-bottom:4rem;}

.ui-menu {z-index:10000;}

/* #endregion */

/* #region Form  */
/* =========================================================
   FORM BASE
========================================================= */

.form {
  --fg: #1f2937;
  --muted: #6b7280;
  --border: #d6dde8;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --focus: rgba(59,130,246,.35); /* blue focus glow */
  --radius: 12px;

  color: var(--fg);
}

/* =========================================================
   LAYOUT HELPERS
========================================================= */

.form-row { display: grid; gap: 1rem; }
.form-row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 720px) {
  .form-row--2, .form-row--3 { grid-template-columns: 1fr; }
}

/* =========================================================
   FIELD WRAPPER (bootstrap-ish .form-group)
========================================================= */

.field { margin-bottom: 1rem; }
.field:last-child { margin-bottom: 0; }

.label {
  display: inline-block;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .4rem;
}

.help {
  display: none;
  margin-top: .35rem;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.35;
}

.error {
  margin-top: .35rem;
  font-size: .875rem;
  color: #b91c1c;
  line-height: 1.35;
}

/* =========================================================
   CONTROLS (inputs, selects, textareas)
========================================================= */

.control,
select.control,
textarea.control {
  appearance: none;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius);
  padding: .7rem .9rem;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--fg);
  transition: box-shadow .15s ease, border-color .15s ease, transform .05s ease;
}

textarea.control { min-height: 120px; resize: vertical; }
.control::placeholder { color: #9aa6b2; }

.control:focus,
select.control:focus,
textarea.control:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px var(--focus);
}

/* Disabled */
.control:disabled,
select.control:disabled,
textarea.control:disabled {
  background: var(--bg-soft);
  color: #8191a2;
  cursor: not-allowed;
}

/* Select caret */
select.control {
  padding-right: 2.4rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #7b8794 50%),
    linear-gradient(135deg, #7b8794 50%, transparent 50%);
  background-position:
    calc(100% - 1.05rem) 55%,
    calc(100% - .75rem) 55%;
  background-size: .35rem .35rem, .35rem .35rem;
  background-repeat: no-repeat;
}

/* =========================================================
   BUTTON (for use standalone or in .group)
========================================================= */

.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: #f97316;  /* Armstrong-ish orange */
  color: #fff;
  font-weight: 600;
  padding: .7rem 1rem;  /* matches .control vertical rhythm */
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: filter .15s ease, box-shadow .15s ease, border-color .15s ease, transform .05s ease;
}

.btn:hover { filter: brightness(0.96); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(249,115,22,.25);
}

.btn:disabled {
  background: var(--bg-soft);
  color: #8191a2;
  cursor: not-allowed;
  filter: none;
}

/* Optional secondary button */
.btn.btn--soft{
  background: var(--bg-soft);
  color: var(--fg);
}

/* =========================================================
   INPUT GROUPS (select + input + button etc.)
========================================================= */

.group {
  display: flex;
  width: 100%;
  align-items: stretch;
}

/* Let text controls grow, keep buttons/addons natural width */
.group > .control { flex: 1; min-width: 0; }
.group > .addon,
.group > .btn { flex: 0 0 auto; }

/* Shared segment styling (addon is like bootstrap input-group-text) */
.group > .addon {
  display: inline-flex;
  align-items: center;
  padding: 0 .85rem;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--muted);
  white-space: nowrap;
}

/* Remove double borders at joins */
.group > *:not(:last-child) { border-right: 0; }

/* Flatten all segment radii... */
.group > .control,
.group > .addon,
.group > .btn { border-radius: 0; }

/* ...then re-apply ONLY outer corners */
.group > :first-child {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.group > :nth-last-child(1) {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  
}

/* If there’s only one child, keep it rounded */
.group > :only-child { border-radius: var(--radius); }

/* Make the whole group feel focused when any child is focused */
.group:focus-within > .control,
.group:focus-within > .addon,
.group:focus-within > .btn {
  border-color: #60a5fa;
}

/* One unified outer glow (cleaner than each segment glowing) */
.group:focus-within {
  border-radius: var(--radius);
  box-shadow: 0 0 0 4px var(--focus);
}

/* Prevent inner focused controls adding their own glow inside a group */
.group .control:focus,
.group select.control:focus,
.group textarea.control:focus {
  box-shadow: none;
}

/* =========================================================
   CHECKBOXES / RADIOS (single consistent version)
========================================================= */

.check {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: .6rem 0;
}

.check input[type="checkbox"],
.check input[type="radio"]{
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.check input[type="checkbox"]{ border-radius: 6px; }
.check input[type="radio"]{ border-radius: 999px; }

.check label {
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
}

/* Hover / checked */
.check input[type="checkbox"]:hover,
.check input[type="radio"]:hover{
  border-color: #f97316;
}

.check input[type="checkbox"]:checked{
  background: #f97316;
  border-color: #f97316;
}

.check input[type="checkbox"]:checked::after{
  content:"";
  position:absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Simple radio dot */
.check input[type="radio"]:checked{
  border-color:#f97316;
}
.check input[type="radio"]:checked::after{
  content:"";
  position:absolute;
  inset: 3px;
  background:#f97316;
  border-radius:999px;
}

/* Focus */
.check input[type="checkbox"]:focus-visible,
.check input[type="radio"]:focus-visible{
  outline: none;
  border-color:#f97316;
  box-shadow: 0 0 0 4px rgba(249,115,22,.25);
}

/* Disabled */
.check input[type="checkbox"]:disabled,
.check input[type="radio"]:disabled{
  background: var(--bg-soft);
  border-color: var(--border);
  cursor: not-allowed;
  opacity: .7;
}

.check input:disabled + label{
  cursor: not-allowed;
  opacity: .7;
}

/* Don’t apply text-input styling to checkboxes/radios if someone adds .control */
input.control[type="checkbox"],
input.control[type="radio"]{
  width: auto;
  padding: 0;
  border: 0;
  box-shadow: none;
}

/* =========================================================
   VALIDATION STATES
========================================================= */

.field.is-error .control,
.field.is-error select.control,
.field.is-error textarea.control,
.field.is-error .group > .control,
.field.is-error .group > .addon,
.field.is-error .group > .btn {
  border-color: #ef4444;
}

.field.is-error .control:not(.group .control),
.field.is-error select.control:not(.group select.control),
.field.is-error textarea.control:not(.group textarea.control) {
  box-shadow: 0 0 0 4px rgba(239,68,68,.18);
}

/* Red glow for grouped controls */
.field.is-error .group{
  box-shadow: 0 0 0 4px rgba(239,68,68,.18);
}

.field.is-ok .control,
.field.is-ok select.control,
.field.is-ok textarea.control,
.field.is-ok .group > .control,
.field.is-ok .group > .addon,
.field.is-ok .group > .btn {
  border-color: #22c55e;
}

.field.is-ok .control:not(.group .control),
.field.is-ok select.control:not(.group select.control),
.field.is-ok textarea.control:not(.group textarea.control) {
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
}

/* Green glow for grouped controls */
.field.is-ok .group{
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
}

/* Help text visibility */
.field.is-error .help {
  display: block;
  color: #b91c1c;
}
.field.is-ok .help { display: none; }

addon--icon{
  padding: 0 .75rem;
  display: flex;
  align-items: center;
}

.addon--icon i{
  font-size: .9rem;
  opacity: .7;
}

.control-wrap{
  position: relative;
}

.control-wrap svg,
.control-wrap .fa-solid{
  position: absolute;
  top: 50%;
  left: .9rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #9aa6b2;
  pointer-events: none;
  z-index: 2;
}

/* Make space for icon */
.control-wrap--icon-left .control{
  padding-left: 2.4rem;
}

/* #endregion */

/* #region Buttons  */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: .7rem 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
  user-select: none;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: #f97316; /* Armstrong orange vibe */
  color: #fff;
  box-shadow: 0 10px 22px rgba(249,115,22,.25);
}

.btn-primary:hover { box-shadow: 0 16px 30px rgba(249,115,22,.32); }

.btn-secondary {
  background: #ffffff;
  border-color: var(--border);
  color: var(--fg);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.btn-secondary:hover { box-shadow: 0 14px 28px rgba(0,0,0,.12); }

.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
}

/* #endregion */

/* #region Accordion  */

.accordion {
  --ac-border: #d6dbe2;
  --ac-bg: #fff;
  --ac-bg-hover: #f6f8fb;
  --ac-radius: 12px;
  --ac-pad-y: 1rem;
  --ac-pad-x: 1.25rem;
  --ac-icon: #3b3f45;

  display: grid;
  gap: .75rem;
}

/* each item is a rounded “card” */
.ac-item {
  background: var(--ac-bg);
  border: 1px solid var(--ac-border);
  border-radius: var(--ac-radius);
  overflow: hidden;
   box-shadow: 0 6px 16px rgba(0,0,0,.06);
   transition: box-shadow .2s ease, transform .2s ease;
}



/* header row */
.ac-title {
  /* kill global h3 defaults */
  margin: 0 !important;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: var(--ac-pad-y) var(--ac-pad-x);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;

  cursor: pointer;
  user-select: none;

  transition: background .15s ease;
}

.ac-title img
{
  width:2rem !important;
}

.ac-title:hover {
  background: var(--ac-bg-hover);
}

/* plus/minus icon (Bootstrap vibe) */
.ac-title::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: .5rem;

  display: grid;
  place-items: center;

  font-size: 1.4rem;
  line-height: 1;

  color: var(--ac-icon);
}

.ac-item.is-open {
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

/* open state icon */
.ac-item.is-open .ac-title::after {
  content: "–";
}

/* collapsible outer wrapper (we animate height here) */
.ac-content {
  height: 0;
  overflow: hidden;
  transition: height .28s ease;
}

/* padding belongs on inner wrapper, not the animated element */
.ac-inner {
  padding: 0 var(--ac-pad-x) var(--ac-pad-y);
  color: #4b5563;
}

/* stop margin “phantom height” inside content */
.ac-inner > *:first-child { margin-top: 0; }
.ac-inner > *:last-child  { margin-bottom: 0; }


/* #endregion */

/* #region Screenshot  */

/* =========================
   Screenshot Carousel
========================= */

.shot-carousel {
  --gap: 1rem;
  --items: 3;               /* default fallback */
  --radius: 14px;

  position: relative;
}

/* Progressive enhancement:
   Default (no JS) = responsive grid */
.shot-track {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Enhanced mode (JS adds .is-enhanced) */
.shot-carousel.is-enhanced .shot-track {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: .5rem;
  -webkit-overflow-scrolling: touch;
}

.shot-carousel.is-enhanced .shot {
  flex: 0 0 calc((100% - (var(--gap) * (var(--items) - 1))) / var(--items));
  scroll-snap-align: start;
}

.shot {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}

.shot:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.14);
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Arrow buttons */
.shot-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.shot-nav:hover { background: #fff; }
.shot-nav:active { transform: translateY(-50%) scale(.98); }

.shot-nav[data-dir="prev"] { left: .5rem; }
.shot-nav[data-dir="next"] { right: .5rem; }

.shot-nav[disabled] {
  opacity: .35;
  cursor: default;
}

/* Dots */
.shot-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: .75rem;
}

.shot-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.25);
  cursor: pointer;
}

.shot-dot.is-active { background: rgba(0,0,0,.75); }

/* #endregion */

/* #region Lightbox  */

.lb {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  display: none;
  z-index: 9999;
}

.lb.is-open { display: grid; }
.lb__inner {
  position: relative;
  max-width: min(1100px, 92vw);
  margin: auto;
}

.lb__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background: #000;
}

.lb__caption {
  color: rgba(255,255,255,.92);
  margin-top: .5rem;
  font-size: .95rem;
  line-height: 1.3;
  text-align: center;
}

.lb__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lb__btn:hover { background: rgba(0,0,0,.5); }
.lb__btn[data-dir="prev"] { left: -56px; }
.lb__btn[data-dir="next"] { right: -56px; }

.lb__close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

@media (max-width: 720px) {
  .lb__btn[data-dir="prev"] { left: 8px; }
  .lb__btn[data-dir="next"] { right: 8px; }
  .lb__close { top: 8px; right: 8px; }
}

.drag-overlay
{
  position: fixed;       /* cover the card */
  inset: 0; /* top/right/bottom/left: 0 */
  background: rgba(128,128,128,0.6); /* grey overlay */
  display: flex;              /* enable flexbox */
  justify-content: center;    /* horizontal centring */
  z-index: 10000;
  pointer-events: none;       /* don’t block drag/drop */
  border-radius: var(--card-border-radius);
}

.drag-overlay .overlay-icon
{
  color: #fff;
  opacity : 0.8;
  font-size: 6rem;      /* or just use a fixed size */
  margin-top: 80px;  
}

.overlay-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: none !important; /* breaks inheritance of any parent transform */
}

/* #endregion */

/* #region Team  */
.team-member {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom:1px solid #eeeeee;
}

.team-member:first-of-type {

    padding-top: 0;
}

.team-member:last-of-type {

    border-bottom:0;
    padding-bottom: 0;
}

.team-photo {
    max-width: 180px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 14px;
}

.team-name {
    margin-bottom: .25rem;
}

.team-role {
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.team-icons i {
    font-size: 2rem;
    color: #ff6a2d; /* your Armstrong orange */
    transition: 0.2s ease;
    
}

.team-icons a {
margin-right:0.5rem;
}



.team-icons a:hover i {
    opacity: .7;
}


/* #endregion */

/* #region Pagination  */



.pagination {
  --pg-border: #e5e7eb;
  --pg-bg: #fff;
  --pg-text: #333;
  --pg-hover-bg: #f5f5f5;
  --pg-active-bg: #111;
  --pg-active-text: #fff;
  --pg-radius: 6px;

  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 4rem 0;
}

/* Optional centering modifier */
.pagination.pagination--center {
  justify-content: center;
}

.pagination.pagination--right {
  justify-content: flex-end;
}

.page-item {
  display: flex;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 40px;
  height: 40px;
  padding: 0 0.85rem;

  font-size: 0.95rem;
  text-decoration: none;
  color: var(--pg-text);

  background: var(--pg-bg);
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius);

  transition: 
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.05s ease;
}

/* Hover */
.page-link:hover {
  background: var(--pg-hover-bg);
  border-color: #d1d5db;
}

/* Active state */
.page-item.active .page-link {
  background: var(--pg-active-bg);
  color: var(--pg-active-text);
  border-color: var(--pg-active-bg);
  font-weight: 600;
  pointer-events: none;
}

/* Disabled state (optional if you use it) */
.page-item.disabled .page-link {
  opacity: 0.5;
  pointer-events: none;
}

/* Subtle click feedback */
.page-link:active {
  transform: scale(0.97);
}


/* #endregion */




.series {
  background: #f3f4f6;
  border: 1px solid #e2e6ee;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.series h2 {
  margin: 0 0 .25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.series p {
  margin: 0 0 1rem 0;
  font-size: .95rem;
  color: #6b7280;
}

.series ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.series li {
  font-size: .90rem;
  padding: .35rem 0;

}


.series a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

.series li.current {
  font-weight: 600;
}

.series li.current a {
  color: var(--armstrong-orange);
  text-decoration: none;
  pointer-events: none;
}



.hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }






.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-lightbox.is-open {
  display: flex;
}

.video-lightbox-inner {
  width: min(960px, 92vw);
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-lightbox iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  background: #000;
}

.video-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 18px;
}