/* README powered home page */
.readme-home-page{
  min-height:calc(100dvh - 96px);
}
.readme-hero-card{
  position:relative;
  overflow:hidden;
}
.readme-hero-card::after{
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:260px;
  height:260px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(31,95,191,.16) 0%, rgba(31,95,191,0) 72%);
  pointer-events:none;
}
.readme-dashboard-card{
  padding:24px;
}
.readme-dashboard-header{
  align-items:flex-start;
}
.readme-source-note{
  margin:8px 0 0 0;
  color:var(--muted);
  line-height:1.55;
}
.readme-toolbar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.readme-toolbar a.secondary{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.readme-status{
  margin:0 0 16px 0;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid #cfe0ff;
  background:#eef5ff;
  color:#1e3a8a;
  font-weight:700;
}
.readme-toc{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 18px 0;
  padding:12px;
  border-radius:16px;
  background:#f8fbff;
  border:1px solid var(--border);
}
.readme-toc a{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:6px 10px;
  border-radius:999px;
  text-decoration:none;
  color:#1d4ed8;
  background:#fff;
  border:1px solid #dbe8ff;
  font-weight:700;
  font-size:13px;
}
.readme-toc a:hover{
  background:#eaf2ff;
}
.readme-section-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}
.readme-generated-card,
.readme-intro-card{
  min-width:0;
}
.readme-generated-card h3,
.readme-intro-card h3{
  color:#102544;
}
.readme-generated-card h4{
  margin:16px 0 8px;
  font-size:15px;
  color:#1f4f91;
}
.readme-generated-card p,
.readme-intro-card p{
  margin:0 0 10px 0;
}
.readme-generated-card p:last-child,
.readme-intro-card p:last-child{
  margin-bottom:0;
}
.readme-generated-card code,
.readme-intro-card code,
.readme-source-note code{
  padding:2px 5px;
  border-radius:6px;
  background:#eef2f7;
  color:#0f172a;
}
.readme-generated-card pre,
.readme-intro-card pre{
  max-height:260px;
  overflow:auto;
  white-space:pre;
}
.readme-table-wrap{
  max-width:100%;
  overflow:auto;
  border:1px solid var(--border);
  border-radius:14px;
  margin:10px 0;
}
.readme-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}
.readme-table th,
.readme-table td{
  padding:10px 12px;
  text-align:left;
  vertical-align:top;
  border-bottom:1px solid #edf2f7;
  color:#30415f;
}
.readme-table th{
  color:#102544;
  font-weight:800;
  background:#f6f9ff;
}
.readme-table tr:last-child td{
  border-bottom:0;
}
@media (max-width: 980px){
  .readme-section-grid{
    grid-template-columns:1fr;
  }
  .readme-section-grid .markdown-card-wide{
    grid-column:span 1;
  }
  .readme-dashboard-header{
    flex-direction:column;
  }
  .readme-toolbar{
    justify-content:flex-start;
  }
}

