.vocab-page-top{
  max-width: 760px;
}

.vocab-back-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #198754;
  font-weight: 600;
  transition: .2s ease;
}

.vocab-back-link:hover{
  color: #146c43;
}

.vocab-eyebrow{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #198754;
  margin-bottom: 10px;
}

.vocab-lead{
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6c757d;
  max-width: 720px;
}

.vocab-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  transition: .2s ease;
}

.vocab-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
}

.vocab-word{
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  color: #212529;
  margin: 0;
}

.vocab-translation{
  font-size: 14px;
  font-weight: 600;
  color: #198754;
}

.vocab-example-wrap{
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.vocab-example-label{
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #6c757d;
  margin-bottom: 8px;
}

.vocab-example{
  font-size: 15px;
  line-height: 1.7;
  color: #495057;
}

.vocab-empty{
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed rgba(0,0,0,.12);
  border-radius: 24px;
  background: #fcfcfc;
}

.vocab-empty-icon{
  font-size: 32px;
  line-height: 1;
  color: #adb5bd;
  margin-bottom: 14px;
}

@media (max-width: 767.98px){
  .vocab-card{
    padding: 18px;
    border-radius: 18px;
  }

  .vocab-word{
    font-size: 1.2rem;
  }

  .vocab-lead{
    font-size: 1rem;
  }
}