.search-hero {
  padding-bottom: 3rem;
}

.search-hero .search-form {
  display: flex;
  max-width: 560px;
  margin: 1.75rem auto 0;
  gap: 0;
}

.search-form input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid #111;
  border-right: 0;
  background: #fff;
  outline: none;
}

.search-form input:focus {
  border-color: var(--color-red);
  box-shadow: inset 0 0 0 1px var(--color-red);
}

.search-form button {
  padding: 0.85rem 1.4rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.search-form button:hover {
  background: #111;
  border-color: #111;
}

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

.search-results {
  padding: 3rem 1.5rem 5rem;
  background: #fff;
}

.search-results-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.search-summary {
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.search-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #111;
  background: #fff;
  min-height: 100%;
}

.search-card-cover {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #111;
  aspect-ratio: 16 / 9;
  background: #f3f3f3;
}

.search-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.search-card:hover .search-card-cover img {
  transform: scale(1.03);
}

.search-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem;
  flex: 1;
}

.search-card-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
}

.search-card-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.search-card-title a {
  color: #111;
  text-decoration: none;
}

.search-card-title a:hover {
  color: var(--color-red);
}

.search-card-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #444;
  flex: 1;
}

.search-card-link {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red);
  text-decoration: none;
}

.search-card-link:hover {
  color: #111;
}

.search-empty {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem 0 1rem;
}

.search-empty h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.75rem;
}

.search-empty p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.search-pagination {
  margin-top: 2.5rem;
}

.search-pagination .pagination {
  justify-content: center;
}

@media (max-width: 760px) {
  .search-grid {
    grid-template-columns: 1fr;
  }

  .search-hero .search-form {
    flex-direction: column;
    max-width: 100%;
  }

  .search-form input {
    border-right: 1px solid #111;
    border-bottom: 0;
  }

  .search-form input:focus {
    box-shadow: none;
  }

  .search-form button {
    width: 100%;
  }
}
