$image-height: 230px;
main[data-block="pixelthrone/onepage--temp-01"] {
	height: auto;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: center;
	padding: 30px 0;
	position: relative;
	box-sizing: border-box;

	@include media(tablet-portrait) {
		justify-content: flex-end;
	}

	/**
	 * Content
	 */
	.content__container {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 50px;
		z-index: 2;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: flex-start;

		@include media(tablet-portrait) {
			padding-right: 30px;
			padding-left: 30px;
		}

		h1 {
			color: inherit;
			margin: 0;
		}

		p {
			margin-top: 60px;
			opacity: 0.7;
			color: inherit;
			padding-bottom: 0;
			@extend %inherit-typography;

			@include media(tablet-portrait) {
				margin-top: 30px;
			}

			a {
				transition: all 0.6s $easeOutQuart;
				text-decoration: none;
				box-shadow: 0 0 0 inset;

				/* ---- hover ---- */

				&:hover {
					box-shadow: 0 -0.1em 0 inset;
				}
			}
		}

	}
}

