.ev_eventos-scb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    padding: 10px;
}

.palestrante-card {
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.palestrante-card:hover {
    transform: scale(1.05);
}

.palestrante-imagem {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 8px;
    border-radius: 5px;
}

.palestrante-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.palestrante-nome {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222;
}

.palestrante-job {
    color: #232323;
    margin-bottom: 8px;
    line-height: 18px;
    font-size: 12px;
    font-weight: 500;
}

.palestrante-linkedin {
    display: inline-block;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.palestrante-linkedin img{
    width: 20px;
}

