/* ==========================================================================
   SP13EPIC89 — Editorial Summary visual (matches your reference)
   Scope: ONLY .sp13-* (no regression)
   ========================================================================== */

.sp13-article-strip--editorial{
  display: grid;
  grid-template-columns: minmax(420px, 820px) minmax(260px, 520px);
  justify-content: start;
  gap: 1rem;
  align-items: start;
  margin: 1rem 0 0.85rem;
}

@media (max-width: 900px){
  .sp13-article-strip--editorial{
    grid-template-columns: 1fr;
  }
}

/* -----------------------------
   LEFT: Summary panel (editorial)
   ----------------------------- */
.sp13-summary{
  position: relative;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 2.1rem 2.2rem 1.6rem;
  border: 0;
  box-shadow: none;
}

/* Small accent bar (top-left) */
.sp13-summary__accent{
  position: absolute;
  top: 0.05rem;
  left: 2.2rem;
  width: 92px;
  height: 6px;
  border-radius: 10px;
  background: #7B94A3;
}

/* Title */
.sp13-summary__title{
  margin: 0.75rem 0 1.2rem;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 700;

  /* keeps it “human”, not “UI” */
  font-family: "Roboto", sans-serif;
}

/* Bullets */
.sp13-summary__bullets{
  margin: 0 0 1.9rem;
  padding-left: 1.35rem;
  max-width: 44rem;
}

.sp13-summary__bullets li{
  margin: 0 0 1.15rem;
  line-height: 1.45;
  font-size: 1rem;
  /* keeps it “human”, not “UI” */
  font-family: "Roboto", sans-serif;
}

.sp13-summary__bullets li:last-child{
  margin-bottom: 0;
}

/* Keep emphasis minimal (avoid “code vibe”) */
.sp13-summary__bullets b{
  font-weight: 700;
}

/* Meta row at bottom */
.sp13-summary__meta{
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.95rem;
  opacity: 0.95;
  /* keeps it “human”, not “UI” */
  font-family: "Roboto", sans-serif;
}

.sp13-summary__meta-strong{
  font-weight: 700;
}

.sp13-summary__meta-sep{
  opacity: 0.6;
}

/* -----------------------------
   RIGHT: Jump to (harmonize style)
   ----------------------------- */
.sp13-article-jump--editorial{
  /*background: rgba(255,255,255,0.14);*/
  border-radius: 10px;
  border: 0;
  padding: 1.25rem 1.4rem;
  box-shadow: none;
}

.sp13-article-jump--editorial .sp13-article-jump__title{
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  
  opacity: 0.8;
  letter-spacing: 0.02em;
  /* keeps it “human”, not “UI” */
  font-family: "Roboto", sans-serif;
}

.sp13-article-jump--editorial .sp13-article-jump__list{
  margin: 0;
  padding-left: 1rem;
    /* keeps it “human”, not “UI” */
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

.sp13-article-jump--editorial .sp13-article-jump__list li{
  margin: 0.45rem 0;
  line-height: 1.35;
    /* keeps it “human”, not “UI” */
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

.sp13-article-jump--editorial .sp13-article-jump__list a{
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding-bottom: 1px;
}

.sp13-article-jump--editorial .sp13-article-jump__list a:hover{
  border-bottom-color: rgba(0,0,0,0.35);
}

/* Mobile tuning */
@media (max-width: 520px){
  .sp13-summary{
    padding: 1.8rem 1.3rem 1.25rem;
  }
  .sp13-summary__accent{
    left: 1.3rem;
  }
  .sp13-summary__title{
    font-size: 1.65rem;
  }
  .sp13-summary__bullets li{
    font-size: 1.02rem;
  }
}


/* ==========================================================================
   SP13EPIC89 — Article Header (Right-aligned return link)
   Fully scoped. No regression.
   ========================================================================== */

.sp13-article-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

/* Return link (rightmost) */
.sp13-return-link {
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #4D555B;
  opacity: 0.85;
  white-space: nowrap;
}

.sp13-return-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Ensure tab spacing remains intact */
.sp13-article-header .section-tab {
  margin: 0;
}


/* ==========================================================================
   SP13EPIC89 — Header row (force right-aligned return link)
   ========================================================================== */

.section-one > .sp13-article-header{
  display: flex !important;
  align-items: center;
  width: 100%;
}

.section-one > .sp13-article-header .sp13-return-link{
  margin-left: auto;          /* pushes it to the far right */
  white-space: nowrap;
  text-align: right;
}

.section-one > .sp13-article-header .section-tab{
  margin: 0;
}
