* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #202124;
  background: #fff;
}

.search-home {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(52px, 14vh, 120px) 0 48px;
}

.brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #202124;
  font-size: clamp(38px, 8vw, 58px);
  letter-spacing: -3px;
  line-height: 1;
}

.brand-mark { color: #245edb; }

.search-form { margin: 34px auto 0; max-width: 590px; }
.search-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-row { display: flex; gap: 6px; }

#search-input {
  flex: 1;
  min-width: 0;
  height: 38px;
  padding: 7px 10px;
  color: #202124;
  background: #fff;
  border: 1px solid #9aa0a6;
  border-radius: 2px;
  font: inherit;
  font-size: 16px;
}

#search-input:focus { outline: 2px solid #245edb; outline-offset: 1px; }

button {
  height: 38px;
  padding: 0 16px;
  color: #000;
  background: #d4d0c8;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  font: 12px Tahoma, sans-serif;
}

button:active { border-top-color: #404040; border-left-color: #404040; border-right-color: #fff; border-bottom-color: #fff; }
.search-hint { margin: 8px 0 0; color: #5f6368; font-size: 12px; text-align: center; }

.home-note, .results { max-width: 590px; margin-left: auto; margin-right: auto; }
.home-note { margin-top: 54px; margin-bottom: 8px; color: #5f6368; font-size: 12px; border-bottom: 1px solid #d4d0c8; padding-bottom: 5px; }
.main-sites { max-width: 590px; margin: 0 auto; }
.site-link { display: block; padding: 9px 10px; color: #0038b8; text-decoration: none; border-bottom: 1px solid #eee; }
.site-link:hover, .site-link:focus { background: #f5f8fc; text-decoration: underline; }
.site-link strong { font-size: 14px; }
.site-link span { display: block; margin-top: 3px; color: #5f6368; font-size: 12px; }

.results { margin-top: 28px; }
.results:empty { display: none; }
.results-heading { margin: 0 0 10px; color: #5f6368; font-size: 12px; font-weight: normal; }
.result { margin: 0 0 17px; }
.result a { color: #0038b8; font-size: 16px; }
.result-url { margin: 3px 0; color: #188038; font-size: 12px; }
.result p { margin: 0; color: #4d5156; font-size: 13px; line-height: 1.35; }
.no-results { margin: 0; color: #4d5156; font-size: 13px; }

@media (max-width: 460px) {
  .search-home { width: calc(100% - 24px); padding-top: 48px; }
  .brand { font-size: 42px; }
  .search-row { display: block; }
  #search-input, button { width: 100%; }
  button { margin-top: 7px; }
  .home-note { margin-top: 40px; }
}
