/* Novinit Photo Carousel (front) */
.npc-wrap { width: 100%; }
.npc-viewport{
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  height: var(--npc-h, 160px);
}

.npc-track-wrap{
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
  width: calc(100% - 112px);
  margin: 0 56px;
}

.npc-track{
  display: flex;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.npc-slide{
  flex: 0 0 auto;
  padding: 0px;
  box-sizing: border-box;
  height: 100%;
}

.npc-card{
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  height: var(--npc-h, 160px);
}

.npc-card img{
  min-height: var(--npc-logo-h, 90px) !important;
  height: auto !important;
  width: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain;
  display:block;
}

.npc-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height: 1;
  user-select: none;
}
.npc-nav span{
  font-size: 26px;
  margin-top: -2px;
}
.npc-prev{ left: 8px; }
.npc-next{ right: 8px; }
.npc-nav:disabled{
  opacity: 0.4;
  cursor: default;
}

.npc-bottom{
  margin-top: 10px;
  display:flex;
  align-items:center;
  gap: 14px;
}

.npc-dots{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.npc-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(0,0,0,0.18);
}
.npc-dot[aria-selected="true"]{
  background: rgba(0,0,0,0.55);
}

.npc-bar{
  position: relative;
  height: 6px;
  flex: 1;
  border-radius: 999px;
  background: rgba(0,0,0,0.10);
  overflow:hidden;
}
.npc-bar-fill{
  position:absolute;
  left:0; top:0; bottom:0;
  width: 0%;
  background: rgba(0,0,0,0.35);
  border-radius: 999px;
}


/* Dots/progress removed in this build */
.npc-bottom{display:none !important;}


.npc-link-a{ display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
.npc-link-a:focus{ outline: 2px solid rgba(59,130,246,0.5); outline-offset: 2px; }
