/*
 * Gutenberg Editor Style CSS
 *
 * Add styling for the Gutenberg Editor
 *
 * @package Wellington
 */

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Editor
2.0 - Typography
3.0 - Blocks
4.0 - Text Colors
5.0 - Background Colors

/*--------------------------------------------------------------
# 1.0 - Editor
--------------------------------------------------------------*/
body.block-editor-page .edit-post-visual-editor .editor-post-title__block,
body.block-editor-page .edit-post-visual-editor .editor-default-block-appender,
body.block-editor-page .edit-post-visual-editor .editor-block-list__block {
    max-width: 820px;
}

.edit-post-visual-editor .editor-post-title__block .editor-post-title__input {
    color: #303030;
    font-size: 36px;
    font-size: 2.25rem;
    font-family: 'Magra', Tahoma, Arial;
    line-height: 1.4;
}

/*--------------------------------------------------------------
# 2.0 - Typography
--------------------------------------------------------------*/
.edit-post-visual-editor .editor-block-list__block {
	color: #303030;
	font-size: 18px;
	font-size: 1.125rem;
	font-family: 'Gudea', Tahoma, Arial;
	line-height: 1.75;
}

.edit-post-visual-editor .editor-block-list__block p {
	font-size: 18px;
	font-size: 1.125rem;
	margin-bottom: 1.5em;
}

.edit-post-visual-editor .editor-block-list__block a {
    color: #ee3333;
}

.edit-post-visual-editor .editor-block-list__block .has-text-color a {
    color: inherit;
}

.edit-post-visual-editor .editor-block-list__block pre {
	overflow: auto;
	padding: 1.5em;
	border: 1px solid #e5e5e5;
	background: #f5f5f5;
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: "Courier 10 Pitch", Courier, monospace;
	line-height: 1.6;
}

.edit-post-visual-editor .editor-block-list__block h1,
.edit-post-visual-editor .editor-block-list__block h2,
.edit-post-visual-editor .editor-block-list__block h3,
.edit-post-visual-editor .editor-block-list__block h4,
.edit-post-visual-editor .editor-block-list__block h5,
.edit-post-visual-editor .editor-block-list__block h6 {
	clear: both;
	margin: 0.75em 0;
	line-height: 1.4;
}

.edit-post-visual-editor .editor-block-list__block h1 {
	font-size: 36px;
	font-size: 2.25rem;
}

.edit-post-visual-editor .editor-block-list__block h2 {
	font-size: 28px;
	font-size: 1.75rem;
}

.edit-post-visual-editor .editor-block-list__block h3 {
	font-size: 24px;
	font-size: 1.5rem;
}

.edit-post-visual-editor .editor-block-list__block h4 {
	font-size: 22px;
	font-size: 1.375rem;
}

.edit-post-visual-editor .editor-block-list__block h5 {
	font-size: 20px;
	font-size: 1.25rem;
}

.edit-post-visual-editor .editor-block-list__block h6 {
	font-size: 19px;
	font-size: 1.1875rem;
}

/*--------------------------------------------------------------
# 3.0 - Blocks
--------------------------------------------------------------*/

/* Separator */
.wp-block-separator {
	margin-bottom: 1.5em;
	height: 2px;
	border: none;
	background-color: #ccc;
}

/* Quote */
.wp-block-quote {
	margin: 0 0 1.5em;
	padding-left: 1.25em;
	border-left: 4px solid #303030;
	color: #777;
	font-style: italic;
	font-size: 18px;
	font-size: 1.125rem;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
	padding-left: 1.25em;
	border-left: 4px solid #303030;
}

.wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
	display: block;
	margin-top: 1em;
	color: #303030;
	font-size: 16px;
	font-size: 1rem;
	font-style: normal;
	line-height: 1.75;
}

.wp-block-quote__citation:before,
.wp-block-quote cite:before,
.wp-block-quote footer:before {
	content: "\2014\00a0";
}

.wp-block-quote.is-style-large {
	border-left: none;
	margin: 0 0 1.5em;
	padding: 0;
	font-size: 28px;
	font-style: italic;
}

.wp-block-quote.is-style-large p {
	margin-bottom: 0.5em;
	font-size: inherit;
	font-style: inherit;
	line-height: inherit;
}

/* Pullquote */
.wp-block-pullquote {
	margin-bottom: 1.5em;
	padding: 1.5em 0;
    border-bottom: 4px solid #ccc;
    border-top: 4px solid #ccc;
}

.wp-block-pullquote blockquote {
	border-left: none;
	margin: 0;
	padding: 0;
	font-size: 28px;
}

.wp-block-pullquote blockquote p {
	margin-bottom: 0.5em;
}

.wp-block-pullquote.alignleft {
	margin-right: 1.5em;
}

.wp-block-pullquote.alignright {
	margin-left: 1.5em;
}

/* Cover */
.edit-post-visual-editor .editor-block-list__block p.wp-block-cover-text {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 2em;
	line-height: 1.25;
}

/* Table */
.wp-block-table td,
.wp-block-table th {
	padding: 0;
    border: 1px solid #ddd;
}

.wp-block-table__cell-content {
	padding: 0.3em 0.6em;
}

/* Captions */
.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption {
	margin-top: 0.3em;
	margin-bottom: 1em;
	font-size: 15px;
	font-size: 0.9375rem;
	color: #777;
    text-align: center;
}

/* Latest Posts */
.wp-block-latest-posts.wp-block-latest-posts__list {
	margin: 0;
	padding: 0;
}

/*--------------------------------------------------------------
# 4.0 - Text Colors
--------------------------------------------------------------*/
.has-primary-color {
	color: #ee3333;
}

.has-white-color {
	color: #ffffff;
}

.has-light-gray-color {
	color: #f0f0f0;
}

.has-dark-gray-color {
	color: #777777;
}

.has-black-color {
	color: #303030;
}

/*--------------------------------------------------------------
# 5.0 - Background Colors
--------------------------------------------------------------*/
.has-primary-background-color {
	background-color: #ee3333;
}

.has-white-background-color {
	background-color: #ffffff;
}

.has-light-gray-background-color {
	background-color: #f0f0f0;
}

.has-dark-gray-background-color {
	background-color: #777777;
}

.has-black-background-color {
	background-color: #303030;
}

/*--------------------------------------------------------------
# 6.0 - Magazine Blocks
--------------------------------------------------------------*/
:root {
	--tz-column-gap: 2em;
}

.edit-post-visual-editor .tz-magazine-block .tz-entry-image {
    margin-bottom: 0.5em;
}

.edit-post-visual-editor .tz-magazine-block .tz-entry-title {
	margin: 0.2em 0;
	font-family: 'Magra', Tahoma, Arial;
	line-height: 1.4;
	font-size: 28px;
	font-size: 1.75rem;
}

.edit-post-visual-editor .tz-magazine-block .tz-entry-title a:link,
.edit-post-visual-editor .tz-magazine-block .tz-entry-title a:visited {
	color: #303030;
	text-decoration: none;
	transition: all 0.2s ease;
}

.edit-post-visual-editor .tz-magazine-block .tz-entry-title a:hover,
.edit-post-visual-editor .tz-magazine-block .tz-entry-title a:active {
	color: #ee3333;
}

.edit-post-visual-editor .tz-magazine-block .tz-magazine-grid-columns-3 .tz-entry-title,
.edit-post-visual-editor .tz-magazine-block .tz-magazine-grid-columns-4 .tz-entry-title,
.edit-post-visual-editor .tz-magazine-block .tz-magazine-thumbnail-list .tz-entry-title {
	font-size: 18px;
	font-size: 1.125rem;
}

.edit-post-visual-editor .tz-magazine-block .tz-entry-meta {
	margin: 0;
	color: #999;
	font-size: 14px;
	font-size: 0.875rem;
	text-decoration: none;
}

.edit-post-visual-editor .tz-magazine-block .tz-entry-meta a:link,
.edit-post-visual-editor .tz-magazine-block .tz-entry-meta a:visited {
	color: #999;
}

.edit-post-visual-editor .tz-magazine-block .tz-entry-meta a:hover,
.edit-post-visual-editor .tz-magazine-block .tz-entry-meta a:active {
	color: #666;
}

.edit-post-visual-editor .tz-magazine-block .tz-meta-field {
	margin-right: 0.5em;
}

.edit-post-visual-editor .tz-magazine-block .tz-meta-field a {
	text-decoration: none;
}

.edit-post-visual-editor .tz-magazine-block .tz-entry-content {
	margin-top: 1em;
	font-size: 17px;
    font-size: 1.0625rem;
}

.edit-post-visual-editor .tz-magazine-block .tz-read-more {
	margin: 1em 0 0;
}

.edit-post-visual-editor .tz-magazine-block .tz-more-link {
	display: inline-block;
	margin: 0;
	padding: 0.5em 1em;
	background: #ee3333;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-size: 0.9375rem;
}

.edit-post-visual-editor .tz-magazine-block .tz-more-link:after {
	content: " \00BB";
}

.edit-post-visual-editor .tz-magazine-block .tz-more-link:link,
.edit-post-visual-editor .tz-magazine-block .tz-more-link:visited  {
	color: #fff;
}

.edit-post-visual-editor .tz-magazine-block .tz-more-link:hover,
.edit-post-visual-editor .tz-magazine-block .tz-more-link:active {
	background: #303030;
}
