.largecard {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    height: 187px;
    width: 100%;
    border-radius: 8px;
    background: #fff;
    box-shadow: 4px 4px 4px 0px #dff4ff;
    padding: 8px 16px 8px 60px;
    column-gap: 16px;
    cursor: pointer;
}

.largecard > div:first-child {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.largecard .rightContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: calc(100% - 134px);
}

.largecard .title {
    color: #4b4a4a;
    font-family: "Metropolis Bold";
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.24px;
}
.largecard .newPosts {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    background: #1683ff;
    padding: 4px 8px;
    width: fit-content;
}

.largecard .newPosts.hide {
    display: none;
}

.largecard .newPosts .label {
    color: white;
    font-family: "Metropolis Regular";
    font-size: 17px;
    line-height: 120%; /* 20.4px */
}

.largecard .newPosts .bellIcon {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/navigation/wihte_bell_with_dot.png);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.largecard .organization {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.largecard .organization.hide {
    display: none;
}

.largecard .organization .label {
    color: #4b4a4a;
    font-family: "Metropolis Regular";
    font-size: 20px;
    line-height: 21px; /* 20.4px */
    letter-spacing: 0.2px;
}

.largecard .organization .organizationIcon {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/navigation/my_organization_lm.png);
    width: 44px;
    height: 44px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.largecard .members {
    display: flex;
    align-items: center;
    gap: 5px;
}

.largecard .members.hide {
    display: none;
}

.largecard .membersIcon {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/navigation/communities_icon.png);
    width: 24px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.largecard .members .count {
    color: #1683ff;
    font-family: "Metropolis Regular";
    font-size: 17px;
    line-height: 16px;
    letter-spacing: 0.17px;
}

@media (max-width: 1024px) {
    .largecard .organization .organizationIcon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 820px) {
    .largecard {
        height: 108px;
        padding: 8px 16px;
    }

    .largecard .rightContainer {
        gap: 8px;
        width: calc(100% - 134px);
    }

    .largecard .title {
        font-size: 18px;
        line-height: 18px;
    }

    .largecard .members,
    .largecard .organization .label {
        font-size: 15px;
        line-height: 15px;
    }

    .largecard .newPosts .label {
        font-size: 14px;
        line-height: 14px;
    }
    .largecard .membersIcon {
        width: 18px;
        height: 11px;
    }

    .largecard .organization .organizationIcon {
        width: 24px;
        height: 24px;
    }
}

.dark .largecard {
    background-color: #1f2120;
    box-shadow: none;
}

.dark .largecard .title,
.dark .largecard .organization .label {
    color: #fff;
}

.dark .largecard .newPosts {
    background: #1683ff;
}

.dark .largecard .organization .organizationIcon {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/navigation/my_organization_dm.png);
}
