.markdown {
    /* ─── Colour Palette ─────────────────────────────── */
    --white-smoke:      #F4F4F4;
    --sky-reflection:   #7BAFD4;
    --graphite:         #333333;
    --deep-space-blue:  #19374D;
    --soft-fawn:        #C9B083;

    /* ─── Typography ─────────────────────────────────── */
    --font-heading: "Inter", "Space Grotesk", "Satoshi", sans-serif;
    --font-body:    "IBM Plex Sans", "Source Sans Pro", "Manrope", sans-serif;

    /* ─── Radius / Shape Language ────────────────────── */
    --radius-base: 4px;
    --radius-sm:   2px;
    --radius-lg:   6px;




    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: white;

    text-decoration: none;
    border: none;   
    
}

.markdown h1 {
    font-family: var(--font-heading);
    color: var(--deep-space-blue);
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 2.5em;
}

.markdown h2 {
    font-family: var(--font-heading);
    color: var(--deep-space-blue);
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 2em;
    border: none;   
}

.markdown h3 {
    font-family: var(--font-heading);
    color: var(--deep-space-blue);
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 1.5em;
}

.markdown p {
    color: var(--graphite);
    font-size: 1em;
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.markdown a {
    color: var(--sky-reflection);
    text-decoration: none;
    font-weight: 500;
}

.markdown a:hover {
    text-decoration: underline;
}

.markdown img {
    max-width: 60%;
    height: auto;
    border-radius: var(--radius-lg);
    max-height: 400px;
}

@media (max-width: 768px) {
    .markdown img {
        max-width: 100%;
    }
}