.community-list .home-page:nth-child(n+5) {
    display: none;
}

@media screen and (max-width:1400px) {
    .custome-community-container {
        width: 100% !important;
        max-width: unset !important;
        padding: 0 20px !important;
    }
}

@media screen and (max-width:1024px) {
    .community-list {
        gap: 3% !important;
    }

        .community-list .community-item {
            width: 31.3% !important;
            flex-basis: 31.3% !important;
        }

        .community-list .home-page:nth-child(n+4) {
            display: none;
        }
}

@media screen and (max-width:768px) {
    .community-list {
        gap: 4% !important;
    }

        .community-list .community-item {
            width: 48% !important;
            flex-basis: 48% !important;
        }

        .community-list .home-page:nth-child(n+4) {
            display: block;
        }
}

@media screen and (max-width:480px) {
    .community-page h1 {
        font-size: 27px !important;
    }

    .custome-community-container {
        padding: 0 10px !important;
    }

    .community-list .community-item {
        padding: 10px !important;
        margin-bottom: 20px !important;
    }

    .community-list {
        gap: 2% !important;
    }

        .community-list .community-item {
            width: 49% !important;
            flex-basis: 49% !important;
        }

    .community-item-info {
        padding-top: 5px !important;
        padding-bottom: 6px !important;
    }

        .community-item-info .category {
            margin-bottom: 5px !important;
        }

        .community-item-info .description {
            font-size: 17px !important;
            height: 40px !important;
        }

        .community-item-info .author,
        .community-item-info .author a,
        .community-item-info .report {
            font-size: 13px !important;
        }

        .community-item-info button {
            right: 0px !important;
            bottom: -6px !important;
            padding: 3px 10px;
            border-radius: 6px !important;
            font-size: 14px;
        }
}

.community-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
}

    .community-list .community-item {
        display: inline-block;
        width: 22.75%;
        flex-basis: 22.75%;
        overflow: hidden;
        background-color: white;
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 30px;
    }

    .community-list h3 {
        font-size: 20px !important;
        /*height: 48px !important;*/
    }

.community-item-img {
    border-radius: 15px;
    overflow: hidden;
}

    .community-item-img img {
        width: 100%;
        height: auto;
        max-height: 180px;
        transition: transform 0.5s ease;
    }

        .community-item-img img:hover {
            transform: scale(1.1);
            transform-origin: center center;
        }

.community-item-info {
    padding-top: 15px;
}

    .community-item-info .report {
        position: relative;
        margin-left: -5px;
    }

    .community-item-info button {
        position: absolute;
        right: 0px;
        bottom: 0px;
        border-radius: 10px;
    }

.community-item-info .author a {
    color: #462507;
}

.community-item-info .author a:hover {
    text-decoration: underline;
}

.text-color {
    color: #414040 !important;
}

.dropdown-menu .dropdown-item {
    font-size: 14px !important;
    color: #414040 !important;
}

.dropdown-toggle {
    font-size: 14px !important;
    color: #414040 !important;
}

.shawdow-community {
    box-shadow: -1px 2px 10px 1px rgb(245 220 192 / 75%);
    -webkit-box-shadow: -1px 2px 10px 1px rgb(245 220 192 / 75%);
    -moz-box-shadow: -1px 2px 10px 1px rgb(245 220 192 / 75%);
}