.blog-container {
    padding: 10px 65px;
    gap: 90px;
    display: flex;
    align-items: flex-start;
}


.blog-left {
    width: 60%;
}

.blog-right {
    width: 40%;
    position: sticky;
    top: 0;
    height: auto;
}


.blog-img img {
    width: 360px;
    height: 250px;
    border-radius: 3px;
}

.left-blog-contant {
    display: flex;
    gap: 44px;
    border-bottom: 1px solid hsl(0, 0%, 95%);
    padding: 15px 0px;
}

.left-blog-details {
    padding-top: 10px;
}

.left-blog-details h3 {
    color: black;
    font-weight: 500;
    line-height: 1.3;
    font-size: 1.17em;
    padding: 10px 1px;
}

.left-blog-details a {
    color: hsl(0deg 2.84% 31.14%);
    font-size: 14px;
    cursor: pointer;
    transition: width 8s ease;
}

.left-blog-details a:hover {
    text-decoration-line: underline;
    text-decoration-color: hsl(60, 6%, 93%);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}


.share-blog {
    border: 1px solid gray;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-top: 10px;
    cursor: pointer;
    display: flex;
    text-align: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.share-blog:hover {
    background: black;
}

.share-blog:hover .share-icon {
    color: white;
}

.right-blog-contant-one {
    display: flex;
    gap: 10px;
    color: black;
    font-weight: 500;
    border-bottom: 1px solid hsl(0, 0%, 95%);
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.right-blog-img img {
    height: 87px;
    border-radius: 3px;
}

.right-blog-details span {
    color: hsl(0deg 0% 37.27%);
    font-size: 12px;
}

.right-blog-details p:hover {
    text-decoration: underline;
}

.categories button {
    border: 1px solid hsl(0, 0%, 95%);
    padding: 5px;
    border-radius: 3px;
    font-size: 13px;
}

.categories button:hover {
    background: black;
    color: white;
    border-radius: 0px;
}

.categories {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 20px;
}

.h2-large,
.top-subheading {
    text-align: center;
    margin: 20px;
    color: black;
}

span.right-blog-heading {
    color: black;
    padding-bottom: 10px;
}

.right-blog-details p {
    line-height: 1;
    padding-bottom: 5px;
}

.left-blog-pagination span {
    width: 30px;
    height: 30px;
    border: 1px solid gray;
    border-radius: 50%;
    text-align: center;
    font-size: 15px;
    padding: 3px 0px;
    cursor: pointer;
}

.left-blog-pagination {
    display: flex;
    gap: 10px;
    margin: 22px 28%;
}

.left-blog-pagination span:hover {
    background: black;
    border: none;
    color: white;
}

.share-icon {
    font-size: 24px;
    padding: 2px;
}

@media (max-width:768px) {
    .blog-container {
        display: block;
        padding: 10px;
    }

    .blog-img img {
        height: 100px;
        width: 120px;
    }

    .left-blog-contant {
        gap: 10px;
    }

    .left-blog-para {
        display: none;
    }

    .blog-left {
        width: 100%;
    }

    .left-blog-details {
        padding-top: 0px;
    }

    .left-blog-details h3 a {
        padding: 2px;
        font-size: 16px;
    }


    .share-blog {
        width: 25px;
        height: 25px;
    }


    .blog-right {
        width: 100%;
    }

    .share-icon {
        font-size: 18px;
        padding: 2px;
    }

    .right-blog-img img {
        height: 66px;
    }
}