.social {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    column-gap: 36px;
}

.social .sectionTitle {
    text-align: center;
    font-family: "Metropolis Semi Bold";
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.2px;
}
.social .sectionTitle.hide {
    display: none;
}
.social .searchContainer {
    width: 47%;
}

.social .myOrganization,
.social .selectors {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: calc(50% - 18px);
    column-gap: 36px;
}

.social .selectionContainer {
    display: flex;
    width: 100%;
    flex-direction: column;
    row-gap: 16px;
    margin-top: 60px;
}

.social .selectionContainer .headerSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.social .selectionContainer .headerSection .title {
    color: #4b4a4a;
    font-family: "Metropolis Semi Bold";
    font-size: 24px;
    line-height: 32px; /* 133.333% */
    letter-spacing: 0.36px;
}

.social .selectionContainer .contentSection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    column-gap: 24px;
    row-gap: 16px;
    padding-bottom: 5%;
}

.social .selectionContainer .contentSection.friends {
    grid-template-columns: repeat(1, 1fr);
}

.social .myOrganization .largecard {
    cursor: default;
}

@media (max-width: 1024px) {
    .social .selectionContainer .headerSection {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 30px;
    }

    .social .selectionContainer .searchContainer {
        width: 100%;
    }
    
    
}

@media (max-width: 480px) {
    .social{
        flex-direction: column;
        row-gap: 16px;
    }

    .social .myOrganization,
    .social .selectors {
        width: 100%;
        column-gap: 12px;
    }

    .social .selectionContainer .contentSection {
        grid-template-columns: repeat(1, 1fr);
    }
    
}

.dark .social .selectionContainer .headerSection .title,
.dark .social .sectionTitle {
    color: #fff;
}
