/* Promuovi un evento */
/* eventi-umbria-pubblicita */
.frontend-content-pagina-body {
	display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
	gap: 1rem;
	width: 100%;

	.promuovi-evento-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.5rem;
		width: 100%;
		margin-bottom: 3rem;

		.promuovi-evento-col {
			display: flex;
			flex-direction: column;
			gap: 1rem;
			width: 100%;
			padding: 0.75rem 1.5rem;

			&.col-image {
				align-items: center;
				justify-content: center;
				flex-shrink: 0;
				width: 100%;
				max-width: 350px;
				text-align: center;

				img {
					width: auto !important;
					height: auto !important;
					max-width: 100%;
					max-height: 300px;
				}
			}

			&.col-text {
				width: 100%;
				align-items: start;
				justify-content: start;
			}
		}
	}
}

/* Media queries */
@media (max-width: 1024px) {
	.frontend-content-pagina-body {
		.promuovi-evento-row {
			flex-direction: column;

			.promuovi-evento-col {
				padding: 0.5rem 1rem;
			}
		}
	}
}
