.san-popular {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: popular;
}

.san-popular li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #dbe3ee;
  counter-increment: popular;
}

.san-popular li::before {
  content: counter(popular);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #07172f;
  color: #fff;
  font-weight: 900;
}

.san-popular a {
  font-weight: 850;
}

.san-popular span {
  grid-column: 2;
  color: #5b6980;
  font-size: 0.88rem;
}

.san-ad {
  display: grid;
  min-height: 120px;
  place-items: center;
  border: 1px dashed #8da2bd;
  border-radius: 8px;
  background: #eef3f8;
  color: #5b6980;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.san-next-admin .nav-tab-wrapper {
  margin-bottom: 18px;
}

.san-next-admin textarea.large-text {
  max-width: 760px;
}
