/* Home · Tech rail — template-parts/gf-home-tech-rail.php */
/* ---- Technology stack rail ---- */
.gf-home .home-service__marque.gf-tech-rail {
  position: relative !important;
  padding: 0 !important;
  background: #08080a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.gf-home .gf-tech-rail__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  min-height: 4.5rem;
  height: 4.5rem;
}

.gf-home .gf-tech-rail__label {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 1.15rem 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-body), sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffcc00;
  white-space: nowrap;
}

.gf-home .gf-tech-rail__track {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gf-home .gf-tech-rail__track::before,
.gf-home .gf-tech-rail__track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3.5rem;
  z-index: 2;
  pointer-events: none;
}

.gf-home .gf-tech-rail__track::before {
  left: 0;
  background: linear-gradient(90deg, #08080a, transparent);
}

.gf-home .gf-tech-rail__track::after {
  right: 0;
  background: linear-gradient(270deg, #08080a, transparent);
}

.gf-home .gf-tech-rail .home-service__slider {
  margin: 0 !important;
  width: 100%;
  height: 100%;
}

.gf-home .gf-tech-rail .slick-list {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
}

.gf-home .gf-tech-rail .slick-track {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  margin: 0 !important;
}

.gf-home .gf-tech-rail .slick-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 4.5rem !important;
  float: none !important;
}

.gf-home .gf-tech-rail .slick-slide > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.gf-home .gf-tech-rail .marque__slider--container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.55rem !important;
  margin: 0 auto !important;
  padding: 0 1.1rem !important;
  height: 100%;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.gf-home .gf-tech-rail .marque__slider--container:hover {
  background: transparent !important;
  border: 0 !important;
  transform: none !important;
}

.gf-home .gf-tech-rail .marque__slider--container img {
  width: 1.35rem !important;
  height: 1.35rem !important;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(1) brightness(1.35);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.gf-home .gf-tech-rail .marque__slider--container:hover img {
  opacity: 1;
  filter: none;
}

.gf-home .gf-tech-rail .marque__slider--container h3,
.gf-home .gf-tech-rail__name {
  margin: 0 !important;
  font-family: var(--font-body), sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5) !important;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.gf-home .gf-tech-rail .marque__slider--container:hover h3,
.gf-home .gf-tech-rail .marque__slider--container:hover .gf-tech-rail__name {
  color: #ffffff !important;
}

.gf-home .home-service__marque .slick-arrow,
.gf-home .gf-tech-rail .slick-arrow,
.gf-home .home-service__slider .slick-arrow {
  display: none !important;
}

@media (max-width: 767px) {
  .gf-home .gf-tech-rail__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.55rem;
    height: auto;
    min-height: 0;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .gf-home .gf-tech-rail .slick-slide {
    height: 3.25rem !important;
  }

  .gf-home .gf-tech-rail__label {
    padding: 0;
    border-right: 0;
  }

  .gf-home .gf-tech-rail__track {
    width: 100%;
  }
}

