/* Scholarships LP – namespace .schlp */
:root{
  --schlp-primary:#5b5bf7; 
  --schlp-accent:#c6ff1a; 
  --schlp-text:#0f172a; 
  --schlp-muted:#475569; 
  --schlp-border:#e5e7eb;
}

.schlp{
  max-width:920px;
  margin:0 auto;
  padding:18px 12px;
  color:var(--schlp-text);
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.5;
}

/* Títulos e parágrafos compactos */
.schlp h1{font-size:26px;margin:0 0 8px}
.schlp h2{font-size:19px;margin-top:18px;margin-bottom:6px}
.schlp p{margin:6px 0}

/* Caixa de nota */
.schlp .note{
  background:#f8fafc;
  border-left:4px solid var(--schlp-primary);
  padding:6px 10px;
  border-radius:4px;
  color:var(--schlp-muted);
  font-size:14px;
  margin-bottom:10px;
}

/* Subtítulo “Related searches” mais próximo */
.schlp .subtag{
  font-size:13px;
  color:var(--schlp-muted);
  margin:8px 0 4px;
}

/* Menor espaço entre os botões */
.schlp .links6{
  display:flex;
  flex-direction:column;
  gap:3px; /* antes 10px */
  margin:4px 0;
}

/* Botões visivelmente mais finos */
.schlp .linkbtn{
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-decoration:none;
  background:var(--schlp-primary);
  color:#fff;
  padding:6px 12px; /* antes 12px 16px */
  border-radius:6px; /* antes 10px */
  font-weight:600;
  border:1px solid #4a4ae6;
  transition:filter .2s ease;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
  min-height:32px; /* força altura mínima menor */
}

/* Ícone e texto alinhados com menos espaçamento */
.schlp .linkbtn span{
  display:flex;
  align-items:center;
  gap:4px; /* antes 8px */
}
.schlp .dot{
  background:var(--schlp-accent);
  width:5px; /* antes 8px */
  height:16px; /* antes 22px */
  border-radius:6px;
}

/* Imagem e listas também mais justas */
.schlp img{
  width:100%;
  height:auto;
  border-radius:8px;
  margin:8px 0;
}
.schlp ul{margin:4px 0 4px 16px}

/* Rodapé compacto */
.schlp footer{
  font-size:13px;
  color:var(--schlp-muted);
  margin-top:16px;
  border-top:1px solid var(--schlp-border);
  padding-top:8px;
  text-align:center;
}
.schlp footer a{
  text-decoration:none;
  color:var(--schlp-primary);
}

/* Remove espaçamento adicional do tema */
.page .entry-content .schlp{padding-top:0;padding-bottom:0}