/* Ashraellen — support thought arc/index pages
   Used by: /public/thoughts/, /public/thoughts/index-000N.html
*/

.thoughts-page{
  max-width:980px;
}

.thoughts-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:24px;
}

.thought-card{
  border:1px solid rgba(242,242,244,.13);
  border-radius:18px;
  background:rgba(0,0,0,.18);
  padding:18px;
  text-decoration:none;
  color:var(--fg);
  display:block;
}

.thought-card:hover{
  background:rgba(255,255,255,.05);
  text-decoration:none;
}

.thought-card img{
  width:100%;
  border-radius:14px;
  margin-bottom:14px;
  border:1px solid rgba(242,242,244,.12);
}

.thought-kicker{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(242,242,244,.55);
  margin:0 0 8px;
}

.arc-label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(242,242,244,.5);
  margin:0 0 10px;
}

.thought-card h2{
  margin:0 0 10px;
  font-size:20px;
}

.thought-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.35;
  margin:0 0 10px;
}

.thought-card p:last-child{
  margin-bottom:0;
}

.thought-card .formula-open{
  margin-top:14px;
}

.intro-block{
  margin-top:22px;
  border:1px solid rgba(242,242,244,.13);
  border-radius:18px;
  background:rgba(0,0,0,.18);
  padding:18px;
}

.intro-block p{
  color:var(--muted);
  font-size:14px;
  line-height:1.35;
  margin:0 0 10px;
}

.intro-block p:last-child{
  margin-bottom:0;
}

.nav-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(242,242,244,.16);
  background:rgba(255,255,255,.04);
  font-size:13px;
  font-weight:700;
  color:var(--fg);
  text-decoration:none;
}

@media(max-width:760px){
  .thoughts-grid{
    grid-template-columns:1fr;
  }
}
