.blog-post-hero-img {
    height: 18rem;
}

/* Points grid: Tailwind grid gap-4 md:grid-cols-2; Bootstrap row g-3 uses gutters, not CSS Grid gap. */
.page-blog-post-v2-points-grid {
    display: grid;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.page-blog-post-v2-points-grid > * {
    min-width: 0;
}

@media (min-width: 768px) {
    .page-blog-post-v2-points-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

