/**
 * Gutenberg Text blocks category
 *
 * Contents:
 ** core/paragraph
 ** core/heading
 ** core/list
 ** core/quote
 ** core/classic
 ** core/table
*/

/* core/paragraph */

.has-drop-cap:first-letter {
    float: left;
    font-size: 5.2em;
    line-height: .68;
    font-weight: 100;
    margin: .05em .1em 0 0;
    text-transform: uppercase;
    font-style: normal;
}
p.has-background {
    padding: 1.25em 1.875em;
}

/* core/heading */

/**/

/* core/list */

/**/

/* core/quote */

.bl-quote cite{
    color: var(--color-underemphasize);
    font-size: .875em;
    font-style: normal;
}
.bl-quote.is-style-large{
    font-size: 1.35em;
    font-style: italic;
}
blockquote.has-text-align-right{
    border-width: 0 3px 0 0;
}

/* core/classic */

.bl-tinymce>:first-child {
    margin-top: 0;
}
.bl-tinymce>:last-child {
    margin-bottom: 0;
}

/* core/table */

.bl-table table {
    margin: 0;
}

.bl-table.is-style-stripes th,
.bl-table.is-style-stripes td{
    border:none;
}
.bl-table .has-subtle-light-gray-background-color {
    background-color: #f3f4f5
}
.bl-table .has-subtle-pale-green-background-color {
    background-color: #e9fbe5
}
.bl-table .has-subtle-pale-blue-background-color {
    background-color: #e7f5fe
}
.bl-table .has-subtle-pale-pink-background-color {
    background-color: #fcf0ef
}

.bl-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: var(--color-emphasize);
}
.bl-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
    background-color: #f3f4f5
}
.bl-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
    background-color: #e9fbe5
}
.bl-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
    background-color: #e7f5fe
}
.bl-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
    background-color: #fcf0ef
}