.blog-page .blog-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
}

.blog-page .breadcrumb {
    justify-content: center;
}

.blog-page .breadcrumb ol{
    margin-bottom: 40px;
}

.blog-page .blog-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    transition: .3s ease-in-out;
}
.blog-page .blog-card:hover{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.blog-page .blog-card img {
    width: 100%;
    height: auto;
    max-height: 276px;
}

.blog-page .blog-card .content {
    padding: 20px;
}

.blog-page .blog-card .content p{
    font-size: 18px;
}

.blog-page .custom-read-more-btn{
    font-weight: 500;
    font-size: 17px;
    text-decoration: none;
    transition: .4s ease-in-out;
}
.blog-page .custom-read-more-btn i{
    transition: .4s ease-in-out;
}
.blog-page .custom-read-more-btn:hover i{
    margin-left: 8px;
}


.blog-page .blog-image {
    width: 100%;
    border-radius: 10px;
}

.blog-page .blog-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}
.blog-page .blog-item{
    height: 100%;
}

.blog-page .right-side-content {
    background-color: #fafafa !important;
    padding: 20px;
    border-radius: 5px;
}
.blog-page .right-side-content h4{
    margin-bottom: 0px;
}

.blog-page .right-side-content ul li{
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #ddd;
}
.blog-page .right-side-content ul li:first-child{
    border-top: none;
}

.blog-page .right-side-content ul li a {
    display: block;
    padding-top: 15px;
    color: #333;
    transition: .3s ease-in-out;
}
.blog-page .right-side-content ul li a:hover{
    color: var(--bs-link-color);
}
.blog-page .right-side-content .search input{
    background: none;
    border: 1px solid #665CD6;
    font-size: 18px;
}
.blog-page .right-side-content .search input:focus{
    box-shadow: none;
}

.blog-page .comment-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}