.bp-author-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box
}

.bp-author-card {
    text-align: center;
    padding: 50px 25px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1),0 1px 2px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    transition: all .1s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden
}

.bp-author-card img {
    width: 100px!important;
    height: 100px!important;
    border-radius: 50% !important;
    object-fit: cover;
    margin: 0 auto 20px!important;
    display: block;
    box-shadow: 0 0 0 4px #fff,0 0 0 5px #f1f5f9;
    transition: all .4s ease
}

.bp-author-card h3 {
    font-size: 18px;
    margin: 0 0 8px!important;
    letter-spacing: -0.02em
}

.bp-author-card h3 a {
    color: #0f172a!important;
    text-decoration: none;
    transition: color 0.3s ease
}

.bp-author-card h3 a:hover {
    color: #253A7C!important
}

.bp-author-card div,.bp-author-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #64748b
}

@media(max-width: 768px) {
    .bp-author-grid {
        grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
        gap: 10px;
    }

    .bp-author-card {
        padding: 35px 15px
    }

    .bp-author-card img {
        width: 80px!important;
        height: 80px!important;
        margin-bottom: 15px!important
    }

    .bp-author-card h3 {
        font-size: 16px
    }
}
