
.bst-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0;
    font-family: sans-serif;
}

.bst-card {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.bst-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.bst-img-container img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #f8f8f8;
}

.bst-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: #222;
}

.bst-role {
    color: #0073aa;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bst-bio {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.bst-meta {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.bst-meta a, .bst-meta span {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-decoration: none;
    margin-bottom: 5px;
}

.bst-meta a:hover {
    color: #0073aa;
}
