body {
    font-family: 'Inter', sans-serif;
    background-color: #050608;
    color: #e5e7eb;
    margin: 0;
    padding: 0;
}

.blog-post {
    max-width: 720px;
    margin: 2em auto;
    padding: 1.5em 2em;
    background: #0b0d11;
    border-radius: 18px;
    box-shadow: 0 0 22px rgba(30, 45, 35, 0.85);
}

.blog-post h3 {
    color: #4ade80;
    font-weight: 700;
    margin-bottom: 0.4em;
}

.blog-post h4 {
    color: #22c55e;
    margin-top: 1.5em;
}

.blog-post p, .blog-post ul {
    line-height: 1.5rem;
    font-size: 1rem;
    color: #cbd5e1;
}

.blog-post ul li {
    margin-bottom: 0.5em;
}

.blog-post aside {
    border: 1px solid #293d36;
    background: #10131a;
    padding: 1em;
    margin-top: 2em;
    border-radius: 16px;
    color: #61faad;
}

.btn-primary, .btn-ghost {
    padding: 0.7em 1.6em;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.25s ease, color 0.25s ease;
    margin-top: 0.5em;
}

.btn-primary {
    background-color: #4ade80;
    color: #050608;
}

.btn-primary:hover {
    background-color: #22c55e;
    color: #f9fafb;
}

.btn-ghost {
    background-color: transparent;
    color: #4ade80;
    border: 2px solid #4ade80;
}

.btn-ghost:hover {
    background-color: #4ade80;
    color: #050608;
}



.blog-post .article-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid #293d36;
  box-shadow: 0 0 18px rgba(20, 30, 25, 0.45);
  object-fit: cover;
}

.blog-post .article-media figcaption {
  margin-top: 0.7em;
  font-size: 0.92rem;
  line-height: 1.45rem;
  color: #94a3b8;
}

.blog-post .article-media--narrow {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
