/* News Page - Scout Purple Accordion */
:root{
  --np-purple-1:#4c1d95;
  --np-purple-2:#6d28d9;
  --np-purple-3:#7c3aed;
  --np-white:#ffffff;
}

.np-accordion{
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Outer bar */
.np-acc-item{
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(90deg,var(--np-purple-2),var(--np-purple-3));
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/* Clickable header row */
.np-acc-header{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--np-white);
}

.np-acc-header:focus{
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: -2px;
}

.np-acc-left{min-width:0}
.np-acc-title{
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--np-white);
}
.np-acc-sub{
  display:flex;
  gap:10px;
  align-items:center;
  font-size:.9rem;
  color: rgba(255,255,255,.85);
}

.np-acc-badge{
  display:inline-block;
  font-size:.75rem;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.08);
}

/* Right + button like pill/circle */
.np-acc-icon{
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--np-white);
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.10);
}

/* Expanded panel */
.np-acc-panel{
  background: rgba(255,255,255,.96);
  padding: 14px 16px 16px;
  color: rgba(0,0,0,.9);
}

.np-acc-media{margin: 6px 0 12px}
.np-acc-image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.np-acc-content{padding-top: 6px}
.np-acc-content a{ text-decoration: underline; }

.np-acc-links{
  margin-top: 10px;
  font-size: .95rem;
}
.np-acc-links a{ text-decoration: underline; }

/* Single news page expiry notice (if used) */
.np-expiry-notice{
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  padding:10px 12px;
  margin:0 0 14px;
  background:rgba(0,0,0,.02);
}