.scholarship-search-wrap {
  /* max-width: 1280px; */
  width: 100%;
  /* margin-left: 0; */
  /* margin-right: auto; */
  padding: 0;
  align-self: flex-start;
  justify-self: start;
}

.ss-form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* Description Styles */
.ss-section-heading {
  margin: 1rem 0 0.5rem;
  font-weight: 600;
  color: var(--midnight);
}

/* Labels */
.ss-label,
.ss-filter-label {
  margin: 0;
  white-space: nowrap;
  text-transform: uppercase;
  flex: 0 0 auto;
  font-weight: 600;
}

.ss-filter-label {
  margin: 0 0.5em 0 0;
  font-weight: 600;
}

/* Input */
.ss-input,
#ss-query {
  flex: 1 1 400px;
  padding: 0.5rem;
  font-size: 1rem;
  background-color: #fff !important;
  border-radius: 0px !important;
}

/* Filter */
.ss-filter-tag {
  font-weight: 400 !important;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  margin-right: 8px;
}

.ss-filter-tag input[type='checkbox'] {
  accent-color: #007fa3;
  border-radius: 0px;
}

/* Button */
.ss-button {
  flex: 0 0 auto;
  padding: 10px 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  background-color: var(--ocean);
  letter-spacing: 0.035em;
  font-weight: 600;
}

/* Spinner */
.ss-spinner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-style: italic;
  margin: 1rem 0;
}

.ss-spinner-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px dotted #007fa3;
  animation: ss-spin 2s linear infinite;
  box-sizing: border-box;
}

@keyframes ss-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ss-items {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.ss-item {
  padding: 1.5rem;
  border: 1px solid var(--cream);
  background: #fff;
}

.ss-title {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
}

.ss-description {
  margin: 0 0.5rem 0.5rem;
}

/* Section subhead styling inside description blocks */
.ss-description .ss-subhead {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--midnight, #101820);
  letter-spacing: 0.03em;
  margin: 0.75rem 0 0.25rem;
}


.ss-tags {
  color: #666;
  font-size: 0.875rem;
}

.ss-no-results,
.ss-error {
  text-align: left;
  color: #d14214 !important;
}
