.ot-cb9bc020-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.ot-cb9bc020-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.ot-cb9bc020-img-wrap {
    width: 195px; /* Increased by 30% from 150px */
    height: 195px; /* Increased by 30% from 150px */
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.ot-cb9bc020-card:hover .ot-cb9bc020-img-wrap {
    border-color: #0073e6;
}

.ot-cb9bc020-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ot-cb9bc020-card:hover .ot-cb9bc020-img {
    transform: scale(1.1);
}

.ot-cb9bc020-name {
    margin: 0 0 5px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.ot-cb9bc020-title {
    margin: 0 0 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ot-cb9bc020-bio {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    text-align: left; /* Added left alignment */
}