.search-bar input {
  width: 150px;
  height: 22px;
  border: 1px solid #8b8b8b;
  font-size: 11px;
}

.where-card {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 145px auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.where-object {
  font-size: 14px;
}

.where-location {
  margin: 5px 0 0;
  color: #444444;
  font-size: 12px;
}

.where-location::before {
  content: "→ ";
}

.where-age span {
  display: block;
  margin-bottom: 3px;
  color: #666666;
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 1px;
}

.where-age strong {
  font-size: 11px;
}

.where-actions {
  display: grid;
  gap: 5px;
}

@media (max-width: 620px) {
  .where-card {
    grid-template-columns: 1fr auto;
  }

  .where-age {
    grid-column: 1;
    grid-row: 2;
  }

  .where-actions {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}
