body {
    .postShow-content-img {
        background-color: rgba(var(--bs-text-color-rgb), 0.1);
        border-radius: 30px;
        padding: 10px;


        > figure {
            border-radius: 25px;
            overflow: hidden;

            > img {
                height: 100%;
                width: 100%;
                object-fit: cover;
                object-position: center;
            }
        }
    }

    .postShow-content-detail {
        display: flex;
        height: 100%;
        flex-direction: column;
    }

    .postShow-content-detail-category {
        opacity: 0.8;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .postShow-content-detail-text {
        background-color: rgba(var(--bs-text-color-rgb), 0.1);
        border-radius: 15px;
        padding: 20px;
        width: 100%;
        flex-grow: 1;

        @media (min-width: 1200px) {
            padding: 45px;
        }
    }
}
