/* ==========================================================
   Services Slider — styles
   ========================================================== */
.nrss-slider {
  --nrss-copper: rgb(255 255 255 / 80%);
  --nrss-teal-soft: rgb(43 118 231 / 10%);
  --nrss-no: #EE0028;
  --nrss-ok: #00bb6a;

  width: 100%;
  color: var(--light);
  font-family: var(--font-family-main);
  box-sizing: border-box;
}
.nrss-slider *,
.nrss-slider *::before,
.nrss-slider *::after {
  box-sizing: border-box;
}

/* Topbar / tabs */
.nrss-topbar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 20px;
  padding: 0 6px;
}
.nrss-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--dark);
  border: 1px solid var(--text-color);
  border-radius: 100px;
  padding: 4px;
}
.nrss-tab {
  font-family: var(--font-family-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
  padding: 5px 15px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
  border: none;
  background: var(--text-color);
}
.nrss-tab:hover {
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, .2);
  outline: none;  
}
.nrss-tab.nrss-active, .nrss-tab:focus {
  background: var(--light);
  color: var(--dark);
  outline: none;
}

/* Card */
.nrss-card {
  background: linear-gradient(180deg, var(--dark), var(--text-color));
  border: 1px solid var(--text-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .6);
}
.nrss-track {
  display: flex;
  transition: transform .6s cubic-bezier(.7, 0, .3, 1);
}
.nrss-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 30% 70%;
}

/* Photo column */
.nrss-photo {
  position: relative;
  overflow: hidden;
  background: var(--light);
}
.nrss-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.9) contrast(1.03);
}
.nrss-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 21, 27, .15) 0%, rgba(16, 21, 27, .8) 100%),
    linear-gradient(100deg, rgba(255, 106, 61, .28), rgba(78, 197, 232, .24));
  mix-blend-mode: multiply;
}
.nrss-photo-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 2;
}
.nrss-photo-index {
  font-family: var(--font-family-secondary);
  font-size: 100px;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 15px;
  color: transparent;
  -webkit-text-stroke: 1.4px rgb(255 255 255 / 50%);
}
.nrss-sub-title {
  font-family: var(--font-family-secondary);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  margin: 0;
}

/* Content column */
.nrss-content {
  color: var(--light);
  font-size: 16px;
  padding: 20px 42px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.nrss-title {
  font-family: var(--font-family-secondary);
  font-weight: 600;
  font-size: 32px;
  margin: 0 0 12px;
}
.nrss-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.nrss-services span {
  font-size: 14px;
  font-weight: 500;
  color: var(--light);
  background: var(--nrss-teal-soft);
  border: 1px solid var(--nrss-teal-soft);
  border-radius: 100px;
  padding: 10px 15px;
}

.nrss-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.nrss-list-title {
  font-family: var(--font-family-secondary);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.nrss-list-block.nrss-stuck .nrss-list-title { color: var(--nrss-no); }
.nrss-list-block.nrss-change .nrss-list-title { color: var(--nrss-ok); }

.nrss-badge {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.nrss-list-block.nrss-stuck .nrss-badge { background: rgba(255, 106, 106, .14); }
.nrss-list-block.nrss-change .nrss-badge { background: rgba(108, 212, 139, .14); }
.nrss-badge svg { width: 14px; height: 14px; }

.nrss-list-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nrss-list-block li {
  font-size: 14px;
  padding-left: 16px;
  margin: 0;
  position: relative;
  color: var(--light);
}
.nrss-list-block.nrss-stuck li { color: var(--light); }
.nrss-list-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.nrss-list-block.nrss-stuck li::before { background: var(--nrss-no); opacity: .55; }
.nrss-list-block.nrss-change li::before { background: var(--nrss-ok); }

/* Nav */
.nrss-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 6px;
}
.nrss-nav-btns {
  display: flex;
  gap: 10px;
}
.nrss-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--text-color);
  background: var(--dark);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
  padding: 0;
}
.nrss-nav-btn:hover {
  border-color: var(--nrss-copper);
  color: #fff;
}
.nrss-nav-btn svg { width: 17px; height: 17px; }

/* Dial progress */
.nrss-dial-progress {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nrss-dials { display: flex; gap: 10px; }
.nrss-dial {
  position: relative;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: 100%;
}
.nrss-dial:hover {background: var(--nrss-teal-soft);}
.nrss-dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.nrss-dial circle.nrss-bg { stroke: var(--nrss-teal-soft); fill: none; stroke-width: 3; }
.nrss-dial circle.nrss-fg {
  stroke: var(--text-color);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 88;
  stroke-dashoffset: 88;
  transition: stroke-dashoffset .4s ease, stroke .3s ease;
}
.nrss-dial.nrss-active circle.nrss-fg { stroke: var(--nrss-copper); stroke-dashoffset: 22; }
.nrss-dial.nrss-done circle.nrss-fg { stroke: var(--light); stroke-dashoffset: 0; }
.nrss-dial-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
}
.nrss-dial.nrss-active .nrss-dial-label { color: var(--nrss-copper); }
.nrss-dial.nrss-done .nrss-dial-label { color: var(--light); }

.nrss-counter {
  font-family: var(--font-family-main);
  font-size: 12px;
  color: var(--light);
  min-width: 52px;
}

@media (max-width: 880px) {
  .nrss-slide { grid-template-columns: 1fr; }
  .nrss-photo { height: 220px; }
  .nrss-content { padding: 20px 25px; }
  .nrss-lists { grid-template-columns: 1fr; }
  .nrss-tabs { display: none; }
}
