.gsh-static-form {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  background: #fff;
  color: #1d2e1e;
  border: 1px solid rgba(29, 46, 30, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.gsh-static-form__row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .gsh-static-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gsh-static-form label {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  font-family: adobe-kis-variable, serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
}

.gsh-static-form input,
.gsh-static-form select,
.gsh-static-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: #1d2e1e;
  background: #fff;
  border: 2px solid #d1d6dc;
  border-radius: 3px;
}

.gsh-static-form textarea {
  min-height: 140px;
}

.gsh-static-form button {
  width: fit-content;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  justify-self: start;
  border: 1px solid #dde23e;
  border-radius: 999px;
  background: #dde23e;
  color: #000;
  font-family: adobe-kis-variable, serif;
  font-weight: 700;
  cursor: pointer;
}

.gsh-static-form button:hover,
.gsh-static-form button:focus {
  background: #1a334e;
  border-color: #1a334e;
  color: #fff;
}

.gsh-static-form__note {
  margin: 0;
  color: rgba(29, 46, 30, 0.72);
  font-size: 0.85rem;
  line-height: 1.45;
}

.gsh-static-form--thanks {
  gap: 0.5rem;
}

.gsh-static-form--thanks h3,
.gsh-static-form--thanks p {
  margin: 0;
}

.gsh-static-form--thanks h3 {
  font-size: 1.6rem;
}

.newsletter-form .gsh-static-form {
  max-width: 900px;
  padding: 0;
  grid-template-columns: 1fr auto;
  align-items: end;
  background: transparent;
  color: #fff;
  border: 0;
  box-shadow: none;
}

.newsletter-form .gsh-static-form label {
  color: #fff;
}

.newsletter-form .gsh-static-form input {
  border-color: transparent;
}

.newsletter-form .gsh-static-form button {
  min-width: 56px;
  padding-inline: 1rem;
}

.newsletter-form .gsh-static-form__note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 640px) {
  .newsletter-form .gsh-static-form {
    grid-template-columns: 1fr;
  }
}

.gsh-static-blog-empty {
  max-width: 760px;
  margin: 2rem auto;
  padding: 1.25rem;
  background: #fff;
  color: #1d2e1e;
  border: 1px solid rgba(29, 46, 30, 0.12);
}
