/*
Theme Name:  Mindalyx Blog
Theme URI:   https://blog.mindalyx.com
Description: Blog theme for blog.mindalyx.com — dark design matching www.mindalyx.com
Author:      Mindalyx
Version:     1.0.0
Text Domain: mindalyx-blog
*/

/* ---- Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #0f111a;
    color: #f1f5f9;
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #3b66f5;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ---- Blog card image ---- */
.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* ---- Prose (single post body) ---- */
.prose {
    max-width: 72ch;
    line-height: 1.75;
    color: #cbd5e1;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #f1f5f9;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.prose p { margin-bottom: 1.25rem; }
.prose a { color: #3b66f5; }
.prose code {
    background: #161b2c;
    border-radius: 0.25rem;
    padding: 0.1rem 0.35rem;
    font-size: 0.875em;
}
.prose pre {
    background: #161b2c;
    border: 1px solid #2d324d;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    overflow-x: auto;
}
.prose blockquote {
    border-left: 3px solid #3b66f5;
    padding-left: 1rem;
    color: #94a3b8;
    margin: 1.5rem 0;
}
.prose ul, .prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.prose li { margin-bottom: 0.4rem; }
.prose img {
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}
