.acg-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.acg-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.acg-desc {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
}
.acg-profile {
    display: flex;
    align-items: center;
}
.acg-img {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 3px solid #f7a640;
    margin-right: 15px;
}
.acg-info strong {
    color: #f7a640;
}
.acg-info small {
    color: #999;
}
