.blog-sidebar .search-box {
  display: grid;
  gap: 8px;
}

.blog-sidebar .blog-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 10px;
  align-items: center;
}

.blog-sidebar .blog-search-row input {
  min-width: 0;
}

.blog-sidebar .blog-search-button {
  min-height: 44px;
  border: 1px solid rgba(0, 160, 233, 0.75);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #00a0e9, #007cc0);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(0, 160, 233, 0.28);
}

.blog-sidebar .blog-search-button:hover {
  background: #00a0e9;
  box-shadow: 0 0 26px rgba(0, 160, 233, 0.48);
}

@media (max-width: 420px) {
  .blog-sidebar .blog-search-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
