.author-card {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px 20px 25px;
    border: 2px solid #c98d66;
    border-radius: 15px;
    background: rgba(242, 226, 213, 0.3686274509803922);
    display: flex;
    align-items: center;
    gap: 30px;
}
.author-image {
    width: 185px;
    flex-shrink: 0;
    text-align: center;
}
.author-image img {
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
}
.author-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.author-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    text-decoration: none !important;
}
.author-social a:nth-child(1) {
    background: #222;
}
.author-social a:nth-child(2) {
    background: #3b5998;
}
.author-social a:nth-child(3) {
    background: #0077b5;
}
.author-content {
    flex: 1;
}
.author-content h2{margin-bottom: 0;}
.warm-btn{
    display: inline-block;
    background: #312626;
    color: #fff;
	font-size:12px;
    text-decoration: none !important;
    padding: 16px 31px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s;
    line-height: 1em;
	  border:1px solid;
}
.warm-btn:hover {
   background-color: transparent;
    border-color: #312626;
    color:#312626;
}
.author-social a{
    text-decoration: none;
}

/* Responsive */
@media(max-width:768px){
    .author-card{
        flex-direction:column;
        text-align:center;
        padding:30px 20px;
    }

}