/* Post Element */
blockquote {
    padding: 32px 36px;
    background: #fff;
    border: 1px solid var(--e-global-color-6606447);
    border-radius: 12px;
    margin: 0;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;

    & p {
        margin-block-end: 0 !important;
        font-weight: bold;
        color: #292929;
        font-size: 17px;
    }

    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--e-global-color-d49ac81);
    }
}