.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 .myOrganization {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: calc(50% - 18px);
    column-gap: 36px;
}

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

.social .selectorsSlot {
    width: calc(50% - 18px);
}

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

.social .selectionContainer .contentSection.hide,
.social .selectionContainer .contentSkeleton.hide {
    display: none;
}

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

.social .selectionContainer .contentSection .load-error-message {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
    padding: 0 24px 32px;
}

.social .selectionContainer .contentSection .load-error-title {
    font-family: "Metropolis Semi Bold";
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: #4b4a4a;
    max-width: 520px;
}

.social .selectionContainer .contentSection .load-error-description {
    margin-top: 8px;
    font-family: "Metropolis Regular";
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.14px;
    color: #666;
    max-width: 520px;
}

@media (max-width: 1024px) {
    .social .selectionContainer .contentSkeleton {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 480px) {
    .social {
        flex-direction: column;
        row-gap: 16px;
    }
    .social .myOrganization,
    .social .selectorsSlot {
        width: 100%;
    }
    .social .selectionContainer {
        margin-top: 0;
    }
    .social .selectionContainer .contentSkeleton {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* DARK MODE */
.dark .social .sectionTitle {
    color: #fff;
}

.dark .social .selectionContainer .contentSection .load-error-title {
    color: #fff;
}

.dark .social .selectionContainer .contentSection .load-error-description {
    color: rgba(255, 255, 255, 0.75);
}
