.single-blog-wraper .column-left {
    width: 70%;
}

.single-blog-wraper .column-right {
    width: 27%;
}

.blog-main .featured-image {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-main .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.social-link a {
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--yellow);
    border-radius: 50%;
    transition: all 0.6s;
}

.social-link {
    display: flex;
    align-items: center;
}

.social-link a:not(:last-child) {
    margin-right: 10px;
}
.social-link a:hover {
    transform: scale(1.1);
}
aside.blog-sidebar h4 {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--text-color);
}

aside.blog-sidebar > div:not(:last-child) {
    margin-bottom: 50px;
}
.blog-sidebar li {
    margin-left: 20px;
}
.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.blog-meta .meta-item:not(:first-child) {
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
}
.blog-meta .meta-item:not(:first-child):before {
    content: "";
    display: block;
    background: var(--yellow);
    height: 5px;
    width: 5px;
    border-radius: 50%;
    position: absolute;
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
}
.meta-item p {
    color: var(--white);
}
.meta-item p a {
    color: var(--yellow);
}
.blog-meta .meta-item {
    text-transform: capitalize;
}


@media only screen and (max-width:1199px){
    .single-blog-wraper .column-left {
        width: 62%;
    }
    .single-blog-wraper .column-right {
        width: 35%;
    }
}
@media only screen and (max-width:991px){
    .single-blog-wraper .column-left {
        width: 100%;
    }
    .single-blog-wraper .column-right {
        width: 100%;
        margin-top: 40px;
    }
}
@media only screen and (max-width:767px){
    
}