/* .author-head{
  margin-bottom: 25px;
}

.author-head h1{
  margin-bottom: 0;
} */

.author-head {
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    position: relative;
    padding-bottom: 10px;
}

.author-head:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    background-color: #14151b;
    height: 4px;
}

.author-head .blog-title:after{
    display: none;
}


.author-image {
    width: 100%;
}

.author-image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.author-linkedin {
    width: 20px;
    display: block;
}

.author-head h1 {
    margin-bottom: 0;
    font-size: 20px;
    padding: 0 5px;
}

.author-designation {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
}
@media (min-width: 1200px) {
    .author-head h1{
        font-size: 22px;
    }
}