/* Profile Actions Component
 * Wrapper per pulsanti Share, Follow e Contact
 * Desktop: allineati in una riga
 * Mobile: impilati verticalmente
 */

.mg2025-profile-actions {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
}

.mg2025-profile-actions-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: stretch;
    justify-content: center;
}

.mg2025-profile-action-item {
    flex: 1;
    min-width: 0;
}

.mg2025-action-wrapper {
    width: 100% !important;
    margin: 0;
    padding: 0;
}

.mg2025-action-wrapper > button,
.mg2025-action-wrapper > a {
    width: 100% !important;
    min-width: 0 !important;
}

/* Mobile: impila verticalmente */
@media (max-width: 991.98px) {
    .mg2025-profile-actions-container {
        flex-direction: column;
        gap: 8px;
    }

    .mg2025-profile-action-item {
        width: 100%;
    }
}

/* Desktop: assicura che i pulsanti siano della stessa altezza */
@media (min-width: 992px) {
    .mg2025-profile-actions-container {
        align-items: stretch;
    }

    .mg2025-action-wrapper > button,
    .mg2025-action-wrapper > a {
        height: 100%;
    }
}

