.sh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sh-button:hover,
.sh-button:focus-visible {
  transform: translateY(-1px);
}

.sh-button--primary {
  background: #193956;
  color: #fff;
}

.sh-button--secondary {
  background: #fff;
  border-color: #193956;
  color: #193956;
}

.sh-button--ghost {
  color: #193956;
}

.sh-search,
.sh-form-card,
.sh-empty-state {
  border: 1px solid rgba(17, 32, 50, 0.12);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.96));
  box-shadow: 0 20px 60px rgba(17, 32, 50, 0.08);
}

.sh-search {
  padding: 1.5rem;
}

.sh-search,
.sh-form-card {
  position: relative;
  overflow: hidden;
}

.sh-search::before,
.sh-form-card::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.12), transparent 68%);
  pointer-events: none;
}

.sh-search__grid,
.sh-form__grid,
.sh-list__grid {
  display: grid;
  gap: 1rem;
}

.sh-search__field,
.sh-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sh-search label,
.sh-form label {
  font-weight: 600;
}

.sh-search input,
.sh-search select,
.sh-form input,
.sh-form select,
.sh-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 32, 50, 0.16);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sh-search__actions {
  margin-top: 1rem;
}

.sh-form-card {
  padding: 1.5rem;
}

.sh-form-card__header {
  margin-bottom: 1.25rem;
}

.sh-form-card__header--center {
  text-align: center;
}

.sh-form-card__header h2 {
  margin-bottom: 0.35rem;
}

.sh-form__field--full {
  grid-column: 1 / -1;
}

.sh-form__field--hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.sh-form__field--consent {
  margin-top: 0.25rem;
}

.sh-form__checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.sh-form__checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.sh-form__message {
  display: none;
  margin-bottom: 1rem;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font-weight: 600;
}

.sh-form__message.is-visible {
  display: block;
}

.sh-form__message.is-success {
  background: #e8f7ef;
  color: #13633d;
}

.sh-form__message.is-error {
  background: #feeced;
  color: #9a2430;
}

.sh-list__grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sh-card {
  overflow: hidden;
  border: 1px solid rgba(17, 32, 50, 0.1);
  border-radius: 1.4rem;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 32, 50, 0.07);
}

.sh-card__image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.sh-card__body {
  padding: 1.25rem;
}

.sh-card__eyebrow {
  margin-bottom: 0.4rem;
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sh-card__title {
  margin: 0 0 0.5rem;
}

.sh-card__title a {
  color: inherit;
  text-decoration: none;
}

.sh-card__meta {
  margin: 0.35rem 0;
}

.sh-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.sh-wizard {
  margin-bottom: 1.2rem;
}

.sh-wizard__progress {
  overflow: hidden;
  height: 0.55rem;
  border-radius: 999px;
  background: #edf2f7;
}

.sh-wizard__progress-bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #193956, #0f766e);
  transition: width 0.25s ease;
}

.sh-wizard__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: #697586;
}

.sh-wizard__steps li.is-active {
  color: #193956;
  font-weight: 700;
}

.sh-form__step {
  display: none;
}

.sh-form__step.is-active {
  display: block;
}

.sh-form__step h3 {
  margin-bottom: 1rem;
}

.sh-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.sh-form-card--newsletter {
  padding: 1.85rem;
  background:
    radial-gradient(circle at top left, rgba(25, 57, 86, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.08), transparent 30%),
    #fff;
}

.sh-form-card--newsletter .sh-form__field label {
  letter-spacing: 0.02em;
}

.sh-form-card--newsletter .sh-form__message {
  text-align: center;
}

.sh-empty-state {
  padding: 2rem;
  text-align: center;
}

.sh-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.sh-pagination a,
.sh-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  border: 1px solid rgba(17, 32, 50, 0.14);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  text-decoration: none;
}

@media (min-width: 768px) {
  .sh-search__grid,
  .sh-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sh-search__field:first-child {
    grid-column: 1 / -1;
  }

  .sh-form-card--newsletter .sh-form__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sh-form-card--newsletter .sh-form__grid .sh-form__field--hp {
    grid-column: auto;
  }
}
