.layout {
  display: grid;
}

.list-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.list-search,
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.list-search {
  padding: 0 var(--space-4);
  border-radius: var(--space-3);
  background: var(--gray100);
}

.list-search img {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

.list-search input[type="search"] {
  width: 100%;
  background: transparent;
  padding: var(--space-3) 0;
}

.filter-bar {
  justify-content: space-between;
  padding: var(--space-4);
}

.filter-bar__copy {
  display: grid;
  gap: 4px;
}

.filter-bar__eyebrow {
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-results {
  display: flex;
  flex-direction: column;
}

.search-result {
  display: flex;
  align-items: center;
  padding: var(--space-2) var(--space-4) var(--space-2) 0;
  border-bottom: 0.5px solid var(--black025);
  background: none;
  cursor: pointer;
}

.search-result:last-child {
  border-bottom: none;
  padding-bottom: 48px;
}

.search-result__title {
  margin-bottom: var(--space-1);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-align: left;
  color: var(--black100);
}

.search-result__meta {
  color: var(--gray200);
}
