.search_null_wrapper {
  max-width: 600px;
  width: 100%;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.7em;
  margin-bottom: 3.7em;
  box-sizing: border-box;
}

.search_null {
  text-align: center;
  margin-bottom: 3rem;
}

.search-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #7cc440;
  position: relative;
}

.search-icon::after {
  content: "×";
  position: absolute;
  right: -5px;
  top: -10px;
  font-size: 28px;
  color: #e53e3e;
  transform: rotate(45deg);
}

.search_null > h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.search_null > p {
  color: #718096;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.cta-button_null_search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  color: #7cc440;
  text-decoration: none;
  border: 1px solid #7cc440;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cta-button_null_search:hover {
  background: rgba(124, 196, 64, 0.05);
  transform: translateY(-1px);
}

.divider {
  height: 1px;
  background: #E2E8F0;
  margin: 3rem 0;
}

.search_null_instr {
  text-align: left;
}

.search_null_instr-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #718096;
  margin-bottom: 1.5rem;
}

.search_null_instr-tips {
  display: grid;
  gap: 1rem;
}

.search_null_instr-tip-item {
  padding: 1rem;
  border-radius: 8px;
  background: rgba(124, 196, 64, 0.03);
}

.search_null_instr-tip-item-title {
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: #7cc440;
}

.search_null_instr-tip-item-text {
  color: #718096;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.5rem;
  }
            
  .cta-button_null_search {
    justify-content: center;
  }
}





