/* Blog detail — floated image; text wraps beside image, then continues below */

.blog-detail-page .WWAGridSection.blog-detail-flow {
    float: none;
    width: 100%;
    padding: 20px 24px 24px;
    box-sizing: border-box;
}

.blog-detail-flow .blog-detail-content {
    float: none;
    width: 100%;
    max-width: 100%;
}

.blog-detail-flow .blog-detail-content::after {
    content: "";
    display: table;
    clear: both;
}

.blog-detail-flow .blog-detail-hero-img {
    float: right;
    width: 42%;
    max-width: 42%;
    height: auto;
    display: block;
    margin: 0 0 0.65rem 2rem;
    object-fit: cover;
    border-radius: 4px;
}

.blog-detail-flow[dir="ltr"] .blog-detail-hero-img {
    float: left;
    margin: 0 2rem 0.65rem 0;
}

.blog-detail-content h1 {
    font-size: 1.6rem;
    line-height: 1.35;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
    text-align: start;
}

.blog-detail-content h2 {
    font-size: 1.15rem;
    margin: 0.65rem 0 0.35rem;
    color: #2c5f2d;
    text-align: start;
}

.blog-detail-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 0.45rem;
    text-align: justify;
    text-justify: inter-word;
}

/* Bullets inside text column so markers don't overlap floated image */
.blog-detail-list {
    margin: 0.2rem 0 0.4rem;
    padding: 0;
    list-style: disc;
    list-style-position: inside;
}

.blog-detail-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 0.4rem;
    text-align: justify;
    text-justify: inter-word;
}

.blog-detail-list li strong {
    color: #333;
}

@media (max-width: 767px) {
    .blog-detail-flow .blog-detail-hero-img {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 0.65rem 0;
    }

}
