
/* Card */
.doctor-card.panel {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transition: transform .12s ease, box-shadow .12s ease;
    overflow: hidden;
}

.doctor-card.panel:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.doctor-card .panel-body{
    padding: 18px;
}

/* Foto */
.doctor-photo{
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,.10);
    margin-bottom: 10px;
}

/* Textos */
.doctor-name{
    font-weight: 700;
    margin: 6px 0 4px;
    min-height: 55px;
}

.doctor-area{
    color: #6b7280;
    margin: 0 0 12px;
}

/* Ícones */
.doctor-links{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 60px;
    margin: 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(0,0,0,.08);
    overflow: hidden;     
}

.doctor-links > li{
    list-style: none;
    padding: 0 3px;
    margin: 0;
    flex: 0 0 auto;  
}

.doctor-links .icon a{
    display: inline-block;
    padding: 8px;
    border-radius: 50%;
    background: #f5f7fa;
    transition: background .12s ease, transform .12s ease;
}

.doctor-links .icon a:hover{
    background: #e9eef5;
    transform: translateY(-1px);
    text-decoration: none;
}

.doctor-links .icon img{
    width: 22px;
    height: 22px;
    display: block;
}

.doctor-avatar-placeholder{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.doctor-avatar-placeholder .glyphicon{
    font-size: 42px;
    color: #ffffff;
}