.page--search .content {
  padding: 24px 20px 32px;
}

.search-panel__title {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
}

.search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.search-form__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #fafafa;
}

.search-form__input:focus {
  outline: none;
  border-color: #c41e3a;
  background: #fff;
}

.search-form__submit {
  flex-shrink: 0;
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: #c41e3a;
  cursor: pointer;
}

.search-form__submit:hover {
  background: #a81832;
}

.search-status {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: #666;
  min-height: 1.25em;
}

.search-results .card--list {
  margin-bottom: 12px;
}

.search-results .card--list:last-child {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 520px) {
  .search-form {
    flex-direction: column;
  }

  .search-form__submit {
    width: 100%;
  }
}
