/* Basic styles for the Gutenberg editor */
body.gutenberg-editor-page {
	font-family: Arial, sans-serif;
}
.editor-styles-wrapper {
	background-color: #f9f9f9;
	padding: 20px;
}
.wp-block {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.wp-block-paragraph {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
}
.wp-block-image {
	margin-bottom: 20px;
	text-align: center;
}
.wp-block-image img {
	max-width: 100%;
	height: auto;
}
.wp-block-gallery {
	margin-bottom: 20px;
}
.wp-block-gallery .blocks-gallery-image {
	margin: 5px;
}
.wp-block-gallery .blocks-gallery-image img {
	max-width: 100%;
	height: auto;
}
.wp-block-quote {
	border-left: 4px solid #0073AA;
	margin: 20px 0;
	padding: 10px 20px;
	font-style: italic;
	background-color: #f0f0f0;
}
.wp-block-button {
	margin-bottom: 20px !important;
}
.has-avatars .wp-block-latest-comments__comment article{
	padding-top:0px;
}
.wp-block-button__link {
	background-color: #0073AA;
	color: #fff;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 4px;
	display: inline-block;
}
.wp-block-columns {
	display: flex;
	gap: 20px;
}
.wp-block-column {
	flex: 1;
	border-radius: 4px;
}
.wp-block-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}
.wp-block-table th, .wp-block-table td {
	padding: 10px;
	text-align: left;
}
.wp-block-code {
	padding: 10px;
	border-radius: 4px;
	font-family: monospace;
}
.wp-block-preformatted {
	background-color: #f0f0f0;
	padding: 10px;
	border-radius: 4px;
	font-family: monospace;
}
.alignwide {
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
}
.alignfull {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.wp-block-group {
	margin: 20px 0;
}
p {
	margin-bottom: 0 !important;
}
.has-strong-red-color {
	color: #FF0000;
}
.has-strong-blue-color {
	color: #0000FF;
}
.has-strong-green-color {
	color: #00FF00;
}
.has-light-gray-color {
	color: #F0F0F0;
}
.has-strong-red-background-color {
	background-color: #FF0000;
}
.has-strong-blue-background-color {
	background-color: #0000FF;
}
.has-strong-green-background-color {
	background-color: #00FF00;
}
.has-light-gray-background-color {
	background-color: #F0F0F0;
}
.editor-styles-wrapper {
	margin: 0 auto;
}
.alignwide {
	margin-left: auto;
	margin-right: auto;
}
.alignfull {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.block-custom{
	padding-top:10%;
	padding-bottom:10%;
}
/* Media query per schermi medi */
@media (max-width: 1024px) {
	.wp-block {
		padding: 10px;
	}
	.block-custom{
		padding-top:10%;
		padding-bottom:10%;
	}
}

/* Media query per schermi piccoli */
@media (max-width: 768px) {
	.wp-block {
		padding: 5px;
	}
	.block-custom{
		padding-top:10%;
		padding-bottom:10%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.custom-subtitle{
		font-size: 20px !important;
	}
	.custom-title{
		font-size: 45px !important;
	}
}

/* Media query per schermi molto piccoli */
@media (max-width: 480px) {
	.wp-block {
		padding: 2px;
	}
	.block-custom{
		padding-top:10%;
		padding-bottom:10%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.custom-title{
		font-size: 25px !important;
	}
	.custom-subtitle{
		font-size: 16px !important;
	}
	.custom-text{
		font-size: 14px !important;
	}
}