/* Bottom subscription banner */
.bottom-cta {
  padding: 40px 0;
  border-top: 1px solid #ece8e0;
  color: var(--color-text);
}

.bottom-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.5fr);
  gap: 64px;
  align-items: center;
}

.bottom-copy {
  position: relative;
  display: flex;
  align-items: center;
  gap: 34px;
}

.bottom-copy h2 {
  margin: 0;
  max-width: 680px;
  color: var(--color-text);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.26;
}

.bottom-copy h2 span {
  display: block;
}

.bottom-form-panel {
  color: var(--color-text);
}

.bottom-signup-form {
  display: grid;
  gap: 14px;
}

.bottom-signup-form > label {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.bottom-signup-form input[type="email"] {
  width: 100%;
  height: 40px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid var(--color-text);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  outline: none;
}

.bottom-signup-form input[type="email"]:focus {
  border-bottom-color: var(--color-primary-dark);
  outline: none;
}

.consent-row {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 16px;
    align-items: center;
}

.consent-text{
  font-size: 14px;
  color: var(--color-muted);
}

.modal-panel .consent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
}

.modal-panel .subscribe-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  font-size: 16px;
  font-weight: 700;
}

.modal-panel .consent-text {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
  white-space: normal;
}

.modal-panel .consent-row input[type="checkbox"] {
  margin-top: 3px;
  flex: 0 0 auto;
}

.consent-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--color-text);
}

.bottom-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 44px;
  margin-top: 10px;
  padding: 12px 0;
  width: 100%;
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 15px;
}

.bottom-submit:hover {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
  color: #ffffff;
}

.bottom-form-panel .form-message {
  color: var(--color-primary-dark);
}

@media (max-width: 980px) {
  .bottom-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bottom-copy {
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .bottom-cta {
    padding: 46px .875rem;
  }

  .bottom-copy {
    align-items: flex-start;
    gap: 18px;
  }

  .bottom-copy h2 {
    font-size: 25px;
  }

  .consent-row {
    gap: 10px;
  }

  .consent-row label {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .bottom-copy {
    display: grid;
  }

  .bottom-copy h2 {
    font-size: 23px;
  }

}

