/* ---------- lexicon header ---------- */

.lex-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1rem 0;
}

.lex-home-link {
  font-family: 'Special Elite', cursive;
  font-size: 1.2rem;
  color: #2b2b2b;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.lex-home-link:hover {
  color: #000000;
}

.lexicon-page .main-nav {
  padding: 0;
  gap: 2rem;
}

/* ---------- main content ---------- */

.lex-main {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1rem 6rem;
}

.lex-title {
  font-family: 'Special Elite', cursive;
  font-size: 2.2rem;
  color: #2b2b2b;
  text-align: center;
  margin-bottom: 0.4rem;
}

.lex-subtitle {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #5a5a5a;
  text-align: center;
  margin-bottom: 2rem;
}

/* ---------- search ---------- */

.lex-search {
  display: block;
  width: 100%;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(43, 43, 43, 0.3);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  color: #2b2b2b;
  margin-bottom: 1.5rem;
}

.lex-search:focus {
  outline: none;
  border-color: #6b4a2a;
  background: rgba(255, 255, 255, 0.75);
}

.lex-search::placeholder {
  color: rgba(43, 43, 43, 0.45);
  font-style: italic;
}

/* ---------- status (loading / empty / error) ---------- */

.lex-status {
  text-align: center;
  font-family: 'Special Elite', cursive;
  font-size: 0.9rem;
  color: #6b4a2a;
  min-height: 1.2rem;
  margin-bottom: 1rem;
}

/* ---------- entries ---------- */

.lex-entries {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.lex-entry {
  border-bottom: 1px solid rgba(43, 43, 43, 0.15);
  padding-bottom: 1.5rem;
}

.lex-entry:last-child {
  border-bottom: none;
}

.lex-term {
  font-family: 'Special Elite', cursive;
  font-size: 1.3rem;
  color: #2b2b2b;
  margin-bottom: 0.25rem;
}

.lex-etymology {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #6b4a2a;
  margin-bottom: 0.5rem;
}

.lex-definition {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2b2b2b;
}

.lex-notes {
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5a5a5a;
  margin-top: 0.5rem;
}

/* ---------- mobile ---------- */

@media (max-width: 600px) {
  .lex-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .lex-title {
    font-size: 1.8rem;
  }
}
