.aed-widget-wrapper {
    display: grid !important;
    gap: 30px;
    justify-content: center;
    /* grid-template-columns será definido pelo Elementor, mas adicionamos fallback abaixo */
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
    .aed-widget-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .aed-widget-wrapper {
        grid-template-columns: 1fr;
    }
}
.aed-autor {
    /*border: 1px solid #ccc;*/
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 20px 20px 30px;
    text-align: center;
    /* width: 280px; removed for grid flexibility */
    position: relative;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 0;
}
.aed-foto {
    position: relative;
    top: -60px;
}
.aed-foto img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    /*border: 5px solid #fff;*/
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.aed-nome {
    margin: -40px 0 10px;
}
.aed-desc {
    margin-bottom: 20px;
}
.aed-btn {
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    background: #0073e6;
    color: #fff;
    border: none;
    transition: background 0.2s, color 0.2s;
}
.aed-btn-outline {
    background: transparent;
    color: #0073e6;
    border: 2px solid #0073e6;
}
.aed-btn:hover, .aed-btn-outline:hover {
    background: #005bb5;
    color: #fff;
}
