/* ── Section ── */
.ns-section {
  background: #0d0d0d;
  padding-bottom: 70px;
  overflow: hidden;
}

/* ── Ticker ── */
.ns-ticker {
  display: flex;
  align-items: center;
  background: var(--lpu-orange);
  height: 38px;
  overflow: hidden;
  margin-bottom: 0;
}

.ns-ticker-label {
  background: var(--lpu-black);
  color: var(--lpu-orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-right: 2px solid rgba(0,0,0,0.2);
}

.ns-ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.ns-ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: nsTicker 40s linear infinite;
  gap: 0;
}

@keyframes nsTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ns-ticker-item {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lpu-black);
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.ns-ticker-cat {
  background: var(--lpu-black);
  color: var(--lpu-orange);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.65rem;
  margin-right: 6px;
}

.ns-ticker-sep {
  margin-left: 24px;
  opacity: 0.4;
  font-size: 0.5rem;
}

/* ── Header ── */
.ns-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 50px 0 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.ns-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  margin: 0 0 6px;
  line-height: 1.1;
}

.ns-title em {
  color: var(--lpu-orange);
  font-style: normal;
}

.ns-sub {
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
}

/* Controls */
.ns-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ns-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.ns-btn:hover {
  background: var(--lpu-orange);
  border-color: var(--lpu-orange);
  color: var(--lpu-black);
}

.ns-counter {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-heading);
  min-width: 52px;
  text-align: center;
}

/* ── Magazine layout ── */
.ns-magazine {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

/* ── Featured card ── */
.ns-featured {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  animation: nsFeatIn 0.55s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes nsFeatIn {
  from { opacity: 0; transform: scale(0.97) translateY(16px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.ns-feat-img-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.ns-feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  animation: nsZoom 8s ease forwards;
}

@keyframes nsZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.ns-feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}

.ns-feat-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--lpu-orange);
  color: var(--lpu-black);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Progress ring */
.ns-ring {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
}

.ns-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.15);
  stroke-width: 3;
}

.ns-ring-fill {
  fill: none;
  stroke: var(--lpu-orange);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.ns-feat-body {
  padding: 28px 30px 30px;
}

.ns-feat-date {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 400;
}

.ns-feat-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.35;
  margin-bottom: 12px;
}

.ns-feat-excerpt {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ns-feat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lpu-orange);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
}

.ns-feat-link:hover { border-color: var(--lpu-orange); gap: 14px; }
.ns-feat-link.muted { opacity: 0.3; cursor: default; }

/* ── Side stack ── */
.ns-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ns-side-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  background: #161616;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  animation: nsSideIn 0.4s ease both;
  position: relative;
  overflow: hidden;
}

@keyframes nsSideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.ns-side-card:hover {
  background: #222;
  border-color: var(--lpu-orange);
  transform: translateX(-4px);
}

.ns-side-img {
  width: 80px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.ns-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ns-side-img-placeholder {
  width: 100%;
  height: 100%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.ns-feat-img.ns-img-placeholder {
  background: linear-gradient(135deg, #1a2a4a, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  animation: none;
}

.ns-side-card:hover .ns-side-img img { transform: scale(1.1); }

.ns-side-body {
  flex: 1;
  min-width: 0;
}

.ns-side-cat {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--lpu-orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 4px;
}

.ns-side-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.ns-side-date {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 400;
}

.ns-side-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  font-family: var(--font-heading);
  flex-shrink: 0;
  line-height: 1;
}

/* ── Dots ── */
.ns-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.ns-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.ns-dot.active {
  background: var(--lpu-orange);
  width: 28px;
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ns-magazine { grid-template-columns: 1fr; }
  .ns-side { flex-direction: row; flex-wrap: wrap; }
  .ns-side-card { flex: 1 1 calc(50% - 4px); }
}

@media (max-width: 600px) {
  .ns-feat-img-wrap { height: 240px; }
  .ns-side-card { flex: 1 1 100%; }
  .ns-header { flex-direction: column; align-items: flex-start; }
  .ns-controls { width: 100%; }
}
