* {
  background-color: #0a0a2b;
  color: #e4e4ff !important;
}

.newsletter-body ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-body a {
  text-decoration: underline;
}

.newsletter-body p {
  margin: 1rem 0;
}

.newsletter-body blockquote {
  opacity: 70%;
}

.newsletter-body li {
  margin-bottom: 0.5rem;
}

.newsletter-body blockquote {
  margin: 1rem;
}

.newsletter-body img {
  border: 1px dashed #e4e4ff;
  opacity: 95%;
}

.newsletter-body ol {
  list-style-type: decimal;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.newsletter-single {
  max-width: 800px;
  margin-left: auto;
  padding: 2rem 1rem;
}

/* Newsletter Signup Link */
.newsletter-signup a {
  display: inline-block;
  font-size: var(--base-size);
  color: #e4e4ff !important;
  text-decoration: none;
  border: 1px dashed #e4e4ff;
  padding: 0.25rem 0.75rem;
  transition: transform 0.2s ease-in-out;
  margin-bottom: 1rem;
}

.newsletter-signup a:hover {
  transform: translateY(-0.2rem);
}

/* Newsletter Content */
.newsletter-content {
  border-radius: 8px;
  font-size: var(--base-size);
}

.newsletter-content .newsletter-title {
  text-transform: uppercase;
  font-size: var(--base-size);
  background-color: var(--link) !important;
  color: #ffffff !important;
  display: inline-block;
  padding: 0.2rem 0.4rem;
  margin-bottom: 1rem;
}

/* Typing animation for newsletter title */
.newsletter-title.typing::after,
.newsletter-title.typing-done::after {
  content: '_';
}

.newsletter-title.typing-done::after {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

.newsletter-body {
  line-height: 1.6;
}

.newsletter-body img {
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

#newsletter-link {
  display: none;
}

.newsletter-empty,
.newsletter-loading,
.newsletter-content {
  margin: 1rem 0;
}

/* Newsletter Archive Link */

.newsletter-archive a {
  display: inline-block;
  font-size: var(--base-size);
  color: #e4e4ff !important;
  text-decoration: none;
  border: 1px dashed #e4e4ff;
  padding: 0.25rem 0.75rem;
  transition: transform 0.2s ease-in-out;
}

.newsletter-archive a:hover {
  transform: translateY(-0.2rem);
}