/**
 * Full Height Testimonial Block Styles
 */

.full-height-testimonial {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--rvn-spacing-section) var(--rvn-spacing-lg);
	background-color: var(--rvn-color-secondary);
}

.full-height-testimonial__container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.full-height-testimonial__content {
	display: flex;
	flex-direction: column;
	gap: var(--rvn-spacing-xl);
}

.full-height-testimonial__quote {
	font-family: var(--rvn-font-family-primary);
	font-size: var(--rvn-font-size-h3);
	font-weight: var(--rvn-font-weight-black);
	line-height: var(--rvn-line-height-h3);
	color: var(--rvn-color-navy);
	margin: 0;
	text-transform: uppercase;
  max-width: 1100px;
}

.full-height-testimonial__quote p {
	margin: 0 0 1em;
}

.full-height-testimonial__quote p:last-child {
	margin-bottom: 0;
}

.full-height-testimonial__attribution {
	display: flex;
	flex-direction: column;
	gap: var(--rvn-spacing-xs);
	align-self: flex-end;
	text-align: left;
  margin-top: 120px;
}

.full-height-testimonial__author-name {
	color: var(--rvn-color-navy);
	margin: 0;
	text-transform: uppercase;
}

.full-height-testimonial__author-title {
	color: var(--rvn-color-navy);
	margin: 0;
}

/* Alignment Support */
.full-height-testimonial.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Responsive */
@media (max-width: 1023px) {
	.full-height-testimonial {
		min-height: 100%;
		padding: var(--rvn-spacing-3xl) var(--rvn-spacing-md);
		justify-content: flex-start;
	}

	.full-height-testimonial__content {
		align-items: flex-start;
	}

	.full-height-testimonial__quote {
		font-size: var(--rvn-font-size-h4);
		line-height: var(--rvn-line-height-h4);
		text-align: left;
	}

	.full-height-testimonial__attribution {
		align-self: flex-start;
		text-align: left;
		margin-top: 0;
	}
}

@media (max-width: 767px) {
	.full-height-testimonial {
		min-height: 100%;
		padding: var(--rvn-spacing-3xl) var(--rvn-spacing-sm);
	}

	.full-height-testimonial__quote {
		font-size: var(--rvn-font-size-h5);
		line-height: var(--rvn-line-height-h5);
	}

	.full-height-testimonial__attribution {
		gap: var(--rvn-spacing-xxs);
		margin-top: 0;
	}

	.full-height-testimonial__author-name,
	.full-height-testimonial__author-title {
		font-size: var(--rvn-font-size-body-2);
	}
}
