/* Case Study */

.main__title {
	font-family: var(--font-surplus);
	font-style: var(--font-surplus-style);
	font-weight: var(--font-surplus-weight);
}

@media (min-width: 1200px) {
	.main__title {
		font-size: 5em;
	}
}

.main__subtitle {
	font-size: 2em;
}

.datum__item {
	min-width: 7.5em;
}

.datum__label {
	font-weight: 700;
}

.gallery {
	display: grid;
	gap: 0.45em;
	grid-template-areas:
		"a b"
		"a c";
	grid-template-columns: 1fr 1fr;
}

@media (min-width: 1000px){
	.gallery {
		gap: 2.7em;
	}
}

.gallery__image {
	overflow: hidden;
	position: relative;
}

.gallery__image--1 {
	grid-area: a;
}

.gallery__image--2 {
	grid-area: b;
}

.gallery__image--3 {
	grid-area: c;
}

.gallery__image--1 .placeholder,
.gallery__img--1 {
	left: 0;
	min-height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

.quote {
	text-align: center;
}

.quote__body {
	font-family: var(--font-heading);
	font-style: var(--font-heading-style);
	font-weight: var(--font-heading-weight);
	font-size: 1.75em;
	margin: 0 auto;
	max-width: 100%;
	width: 27.5em;
}

.quote__body .textBlockEdit,
.quote__body .textBlockEdit form,
.quote__body .textBlockEdit form .content,
.quote__body .textBlockEdit form .cke_editable_inline::after {
	display: inline;
}

.post__quote br[type="_moz"] {
	display: none;
}

.quote__body:before {
	content: open-quote;
}

.quote__body:after {
	content: close-quote;
}

.quote__author {
	color: var(--primary);
	font-weight: 700;
}
