.find-advisor-form {
  width: 100%;
}

.find-advisor-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: center;
}

/* Left field wrapper */
.find-advisor-field {
  width: 100%;
}

.find-advisor-select {
  width: 100%;
  height: 58px;
  padding: 0 22px;

  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;

  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-size: 18px;
  color: #444;

  outline: none;

  /* Hide Arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding-right: 3rem;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath d='M2 2l8 8 8-8' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 8px;
}

/* Focus */
.find-advisor-select:focus {
  border-color: #01426a;
}

/* Button pill */
.find-advisor-btn {
  height: 58px;
  border: none;
  border-radius: 999px;

  background: #01426a;
  color: #fff;

  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-weight: 400;
  font-size: 18px;

  cursor: pointer;
  padding: 0 22px;
  white-space: nowrap;
}

.find-advisor-btn:hover {
  background: #022f4b;
}

/* Screen-reader only label */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive: stack on smaller screens */
@media (max-width: 900px) {
  .find-advisor-row {
    grid-template-columns: 1fr;
  }

  .find-advisor-btn {
    width: 100%;
    white-space: normal;
  }
}
