/* ================================
   XGSLab › SHIELD (Lightning)
   Consistent teal theme
   ================================ */

:root {
  --shield-accent: #0f766e;
  --shield-accent-2: #155e75;
  --shield-grad: linear-gradient(90deg, #0f766e, #155e75);
}

/* HERO (same colors as others) */
.gsa-hero.shield-hero {
  background: #0b1720 url('../images/xgs/shield-hero.avif') center/cover no-repeat;
}
.gsa-hero.shield-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.35));
}

/* Button color same teal */
.gsa-hero.shield-hero .gsa-btn--primary {
  background: var(--shield-grad) !important;
}

/* Icon chip styling consistent */
.gsa-card__icon {
  color: var(--shield-accent);
  background: linear-gradient(180deg, #f3faf9, #eef6f7);
  border: 1px solid rgba(15, 118, 110, .25);
}

/* Gallery layout – 2x2 web / 1x4 mobile */
.gsa-gallery {
  background: #fff;
  padding: clamp(32px, 6vw, 72px) 0;
}

.gsa-gallery-head {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.gsa-gallery-head h2 {
  margin: 0;
  font-weight: 800;
  color: #0b3b3f;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.gsa-gallery-head h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 84px;
  margin: 10px auto 0;
  background: var(--shield-grad);
  border-radius: 4px;
}

/* Full image display */
.gsa-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.gsa-shot {
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
}
.gsa-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

/* Mobile stack */
@media (max-width: 640px) {
  .gsa-gallery__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 16px;
  }
}
/* Hero buttons – make NETS banner match homepage */
.section-neplan-home--nets .btn-neplan-home {
  /* reset anything weird inherited */
  all: unset;

  /* rebuild same as home hero buttons */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;

  color: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(80deg, #0f766e, #155e75);
  box-shadow: 0 10px 24px rgba(2, 8, 23, .35);

  transition: transform .25s, box-shadow .25s, background .25s, border-color .25s;
}

.section-neplan-home--nets .btn-neplan-home .arrow {
  font-size: 1.05em;
  line-height: 1;
}

.section-neplan-home--nets .btn-neplan-home:hover {
  background-image: none;
  background-color: #0e7490;
  border-color: #0e7490;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(14, 165, 233, .45);
}

.section-neplan-home--nets .btn-neplan-home:active {
  background-image: none;
  background-color: #134e4a;
  border-color: #134e4a;
  transform: translateY(0);
}

/* Extra gap between header and NETS hero on desktop */
@media (min-width: 768px){
  .section-neplan-home--nets{
    margin-top:16px;
  }
}


/* Shrink SHIELD hero logo (right side card) */
.section-neplan-home--shield .device-neplan-home {
  max-width: 260px;     /* control logo block width */
  margin-right: 150px;  /* pull it away from the right edge */
  flex: 0 0 260px;      /* make the flex layout respect this width */
}

.section-neplan-home--shield .device-neplan-home img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
