/* =============================================================
   SEARCH RESULTS
   ============================================================= */

.search-results {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem;
  margin-top: 80px;
  min-height: 60vh;
}

.search-results__title {
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--sage);
}

.search-results__count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sage);
  margin-bottom: 1rem;
}

.search-results__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-result {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: var(--dark);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.search-result:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: var(--sage);
}

.search-result__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: var(--white);
  padding: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  font-weight: 600;
}

.search-result__content {
  flex: 1;
}

.search-result__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark);
  text-decoration: none;
}

.search-result__url {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.search-results__empty {
  color: #666;
  font-style: italic;
  margin-top: 2rem;
}


@media(max-width: 800px){
  .search-results__title{
    font-size: 48px;
  }
}