body {
    .postList-results-filter {
        @media (min-width: 992px) {
            background-color: rgba(var(--bs-text-color-rgb), 0.1);
            top: 90px;
            padding: 20px;
            border: none;
            border-radius: 30px;
        }
    }

    .postList-results-filter-title {
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: bold;
        opacity: 0.8;
        color: var(--bs-text-color) !important;
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        justify-content: end;
        @media (min-width: 992px) {
            justify-content: space-between;
        }
    }

    .postList-results-filter-wrapper {
        background-color: rgba(var(--bs-secondary-rgb), 0.15);
        border-radius: 20px;
        padding: 10px;
        @media (min-width: 992px) {
            background-color: transparent;
            border-radius: 0;
            padding: 0;
        }
    }

    .postList-results-item {
        background-color: rgba(var(--bs-text-color-rgb), 0.1);
        border-radius: 30px;
        padding: 10px;
        height: 100%;
        outline: none;
        transition: 0.3s;

        &:hover {
            box-shadow: 0 20px 45px 0 rgba(var(--bs-text-color-rgb), 0.1);
            transform: translateY(-10px);
        }
    }

    .postList-results-item-figure {
        border-radius: 25px;
        overflow: hidden;
        margin-bottom: 0;
        @media (min-width: 768px) {
            margin-bottom: 1rem;
        }
    }

    .postList-results-item-figure-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .postList-results-item-body {

        @media (min-width: 768px) {
            padding: 0 10px 10px;
        }
    }

    .postList-results-item-body-title {
        margin-bottom: 0;
        font-weight: bold;
    }

    .postList-results-item-body-category {
        opacity: 0.8;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 0.25rem;
    }

    .postList-results-item-body-text {
        font-size: 0.9rem;
        overflow: hidden;
        -webkit-box-orient: vertical;
        display: block;
        display: -webkit-box;
        text-overflow: ellipsis;
        word-break: break-word;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        height: calc(1.2 * 0.9rem * 2);
        -webkit-line-clamp: 2;
        @media (min-width: 768px) {
            height: calc(1.2 * 0.9rem * 4);
            -webkit-line-clamp: 4;
        }
    }
}
