.blog-card-image {
    width: 100%;
    height: auto;
    /* Reserve space for user-uploaded blog images of unknown dimensions.
       `auto` lets modern browsers swap in the intrinsic ratio once known;
       the 3/2 fallback bounds the shift until the bytes arrive. */
    aspect-ratio: auto 3 / 2;
}

.blog-card-body {
    padding: 40px;
    background-color: #f8f6f2;
    border-bottom: 6px solid #e8e8e8;
}

.blog-sidebar-header {
    padding: 20px;
    background-color: #e8e8e8;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.blog-sidebar-content {
    padding: 20px;
    background-color: #f8f6f2;
    border-bottom: 6px solid #e8e8e8;
}

.blog-share-header {
    padding: 20px;
    background-color: #e8e8e8;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.blog-share-body {
    padding: 20px;
    background-color: #f8f6f2;
    border-bottom: 6px solid #e8e8e8;
    font-size: 25px;
    text-align: center;
}

.blog-pagination {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
}

.blog-pagination .btn {
    width: initial;
    min-width: initial;
    margin-right: 5px;
}

.blogcontent img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
