/* In Category */
.Quick__info {
    max-width: var(--premary_width);
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    align-items: center;
    padding: 0 7px;
    overflow: hidden;
    font-family: "Inria Sans";

    /*  */
    &:has(.with_desc) {
        align-items: flex-end;
        max-width: 100%;
        position: relative;
        margin: 0;
        height: 20rem;
        padding: 0;

        & img {
            position: absolute;
            filter: blur(4px);
            z-index: -1;
        }

        & .with_desc {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            width: var(--premary_width);
            flex-direction: column;
            margin: 14px auto;
            gap: 1rem;
            padding: 0 7px;

            & .Home__ {
                font-size: 13px;
                font-weight: bold;
                padding: 5px 1rem;
                border-radius: 100px;
                background: #e2e2e2;
            }

            & .You__In {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;

                & .posts__Count {
                    width: fit-content !important;
                }
            }
        }
    }

    /*  */
    & .cat {
        font-weight: bold;
        font-family: "Inria Sans";
        font-style: italic;
        padding: 5px 1rem;
        border-radius: 100px;
        background: #e2e2e2;
        color: black;
    }

    & .posts__Count {
        border: 2px solid #cccaca;
        padding: 9px 10px 10px;
        border-radius: 100px;
        font-weight: bold;
        font-size: 13px;
        font-family: monospace;
        background: #e2e2e2;
    }
}