/* Minimal custom styles for Vapor CMS */
.post-content img,
.page-content img {
    max-width: 100%;
    height: auto;
}

.post-content,
.page-content {
    line-height: var(--theme-line-height, 1.8);
}

/* Ensure all images are constrained to their container */
img {
    max-width: 100%;
    height: auto;
}

/* ---- Mobile Adjustments ---- */

@media (max-width: 767.98px) {
    /* Prevent long words and URLs from overflowing content area */
    .post-content,
    .page-content {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* Allow inline code to break across lines on narrow screens */
    code {
        word-break: break-all;
    }
}
