.address-autocomplete {
  position: relative;
}

.place-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  overflow: hidden;
  border: 1px solid #cbd1d5;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 10, 10, .16);
}

.place-suggestions button {
  width: 100%;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 9px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.place-suggestions button:hover,
.place-suggestions button:focus {
  background: #f1f6fb;
  outline: 0;
}

.place-suggestions strong { font-size: 14px; }
.place-suggestions small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-attribution {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 5px 9px;
  background: #fff;
}

.google-attribution img { width: 120px; height: auto; display: block; }

@media (max-width: 700px) {
  .place-suggestions { position: relative; top: 4px; margin-bottom: 7px; }
  .place-suggestions button { min-height: 62px; }
  .google-attribution { height: 30px; }
}
