/* hero.css — 첫 화면 문구와 검색 입력창 */

.hero {
  padding: 57px 0 37px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  margin: 0 0 15px;
  color: #7d806e;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 780;
  letter-spacing: -2px;
  margin: 0 0 13px;
}

.hero h1 mark {
  background: linear-gradient(transparent 57%,var(--yellow) 57%);
  color: inherit;
}

.hero p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

form.search {
  display: flex;
  border: 1.5px solid #383a31;
  background: #fff;
  border-radius: 13px;
  padding: 7px;
  gap: 8px;
  align-items: center;
  box-shadow: 0 4px 0 #ecece3;
}

.search svg {
  margin-left: 10px;
  flex: none;
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: none;
  outline: none;
  font-size: 14px;
  padding: 12px 0;
  letter-spacing: -.03em;
}

.search button {
  background: var(--ink);
  color: white;
  border-radius: 8px;
  padding: 13px 19px;
  white-space: nowrap;
  font-size: 13px;
}

.suggestions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 15px;
  font-size: 12px;
  color: var(--muted);
}

.suggestions button {
  padding: 5px 9px;
  border-radius: 5px;
  background: #eeeee6;
  font-size: 12px;
}
