.socialMediaContainer {
    text-align: center;
    padding: 20px;
}

.socialMediaRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.socialMediaCell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 150px;
    flex: 1 1 120px;
}

    .socialMediaCell svg {
        width: 100%;
        height: auto;
        max-width: 80px;
        max-height: 80px;
    }

.socialMediaLabel {
    margin-top: 10px;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .socialMediaRow {
        flex-wrap: wrap;
        justify-content: center;
    }

    .socialMediaCell {
        width: 25%;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .socialMediaCell {
        width: 50%;
        max-width: 120px;
    }
}
