:root{
  --bg: #06070d;
  --bg2: #0a0d15;
  --panel: #0d111a;
  --panel2: #0b0f17;
  --text: #e9edf7;
  --muted: rgba(233,237,247,.66);
  --line: rgba(255,255,255,.10);
  --lineSoft: rgba(255,255,255,.06);
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --accent: #8aa8ff;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
}

.newsWrap{
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 34px;
}

.newsTop{
  margin-bottom: 18px;
}

.backLink{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(233,237,247,.78);
  text-decoration:none;
  font-size: 14px;
}

.backLink:hover{
  color: rgba(233,237,247,.95);
}

.newsHero{
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
}

.newsEyebrow{
  margin:0 0 6px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(233,237,247,.52);
}

.newsTitle{
  margin:0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 700;
}

.newsIntro{
  max-width: 880px;
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.storyCard{
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  box-shadow: var(--shadow);
}

.featuredStory{
  border-color: rgba(138,168,255,.22);
  background:
    linear-gradient(180deg, rgba(138,168,255,.06), rgba(255,255,255,.01)),
    linear-gradient(180deg, var(--panel), var(--panel2));
}

.storyTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap:wrap;
}

.storyType{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.05);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(233,237,247,.82);
}

.storyMeta{
  color: rgba(233,237,247,.56);
  font-size: 13px;
}

.storyTitle{
  margin:0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 700;
}

.storySubtitle{
  margin: 8px 0 0 0;
  color: rgba(233,237,247,.60);
  font-size: 14px;
  line-height: 1.6;
}

.storyBody{
  margin-top: 16px;
}

.storyBody p,
.expandBody p{
  margin: 0 0 16px 0;
  color: rgba(233,237,247,.90);
  line-height: 1.85;
  font-size: 16px;
}

.storyExpand{
  margin-top: 6px;
  border-top: 1px solid var(--lineSoft);
  padding-top: 16px;
}

.storyExpand summary{
  list-style: none;
  cursor: pointer;
  user-select: none;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(233,237,247,.92);
  font-size: 14px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.storyExpand summary::-webkit-details-marker{
  display:none;
}

.storyExpand summary::after{
  content: "▾";
  font-size: 13px;
  opacity:.8;
  transition: transform .18s ease;
}

.storyExpand[open] summary::after{
  transform: rotate(180deg);
}

.storyExpand summary:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

.expandBody{
  padding-top: 16px;
}

@media (max-width: 760px){
  .newsWrap{
    width: min(100% - 20px, 1240px);
    padding-top: 18px;
  }

  .newsHero,
  .storyCard{
    padding: 18px;
  }

  .storyBody p,
  .expandBody p{
    font-size: 15px;
  }
}