/* Make site name in header less bold */
.md-header__topic:first-child {
  font-weight: 400;
}

/* Announcement banner */
.md-banner {
  text-align: center;
  background: #f0f0f0;
  color: #333;
}
[data-md-color-scheme="slate"] .md-banner {
  background: rgba(255, 255, 255, 0.06);
  color: var(--md-default-fg-color);
}
.md-banner a {
  color: #1aab5a;
}
[data-md-color-scheme="slate"] .md-banner a {
  color: #23d175;
}

/* Newsletter signup box */
.newsletter-signup {
  background: var(--md-code-bg-color);
  border-top: 1px solid var(--md-default-fg-color--lightest);
  padding: 2rem 1rem;
  text-align: center;
}
.newsletter-content {
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-content h3 {
  margin: 0 0 0.5rem;
  color: var(--md-default-fg-color);
  font-size: 1.1rem;
}
.newsletter-content p {
  margin: 0 0 1rem;
  color: var(--md-default-fg-color--light);
  font-size: 0.8rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1;
  max-width: 300px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.25rem;
  background: var(--md-default-bg-color);
  color: var(--md-default-fg-color);
  font-size: 0.8rem;
}
.newsletter-form button {
  padding: 0.5rem 1.25rem;
  background: #1aab5a;
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.8rem;
}
[data-md-color-scheme="slate"] .newsletter-form button {
  background: #23d175;
  color: #1a1a1a;
}
.newsletter-form button:hover {
  background: #158a48;
}
[data-md-color-scheme="slate"] .newsletter-form button:hover {
  background: #2d7a30;
}

