﻿/* Area Page */
.area-page {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-block-start: var(--xxxl);
	margin-block-end: var(--xxxl);
}
	.area-page h1 {
		margin-block-start: 0;
	}

	.area-page .window-svg {
		width: 100%;
		max-width: 1100px;
		display: block;
		margin: auto;
		height: auto;
	}

	.area-page .text-content, .area-page .image-content {
		flex: 1 1 50%;
	}

	.area-page .text-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin-right: var(--xxxl);
		color: var(--sd-color-primary-110);
	}

		.area-page .text-content h1 {
			margin-bottom: var(--xss);
		}

		.area-page .text-content .lead {
			margin-bottom: 0;
			font-size: var(--sd-typography-fontSize-text-lg);
		}

@media (max-width: 700px) {
	.area-page {
		flex-direction: column;
	}

		.area-page .image-content, .area-page .text-content {
			width: 100%;
		}

		.area-page .text-content {
			margin-right: 0;
		}
}