/*  --------------------------------------------------------------  */
/*  BLOCK   : content                                               */
/*  ELEMENTS:                                                       */
/*  MODS    :                                                       */
/*  VARS    : --c-bg-content, --c-tx-content                        */
/*  --------------------------------------------------------------  */
.b-content {
    /*    grid-area: content;*/
    /*    width: 100%;*/
    max-width: 500px;

    padding: 0 2rem;

    background-color: #ffffff;
    background-color: var(--c-bg-content, #ffffff);
}

@supports (display: grid) {
    .b-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-gap: 1rem;
        grid-row-gap: calc(var(--grid-row-gap-base));
        max-width: none;
    }
}
/*  ========================== END BLOCK =========================  */
