/**
 * AWYB Quote Block Widget Styles
 *
 * @package AWYB
 * @since 1.0.0
 */

.awyb-quote-block {
	position: relative;
	width: 100%;
	padding: 90px var(--spacing-margins-l);
	overflow: hidden;
}

.awyb-quote-block::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0b6fcc;
	mask-image: url("/wp-content/themes/awyb2025/assets/atlanta-pattern.svg");
	-webkit-mask-image: url("/wp-content/themes/awyb2025/assets/atlanta-pattern.svg");
	mask-size: 50% auto;
	-webkit-mask-size: 50% auto;
	mask-repeat: repeat;
	-webkit-mask-repeat: repeat;
	mask-position: top left;
	-webkit-mask-position: top left;
	z-index: 0;
}

.awyb-quote-block__image-layer {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	max-width: 1300px;
	margin: 0 auto;
}

.awyb-quote-block__content {
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-margins-base, 80px);
	align-items: center;
	text-align: center;
	padding: 120px 60px;
	background-color: rgba(0, 0, 0, 0.25);
}

.awyb-quote-block__quote {
	max-width: 862px;
	font-family: var(--font-family-headings);
	font-size: var(--text-7xl-font-size, 72px);
	line-height: var(--text-7xl-line-height, 72px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--neutrals-white);
}

@media (max-width: 820px) {
	.awyb-quote-block::before {
		mask-size: 75% auto;
		-webkit-mask-size: 75% auto;
	}
}

@media (max-width: 600px) {
	.awyb-quote-block {
		padding: 60px var(--spacing-margins-s);
	}

	.awyb-quote-block__content {
		padding: 70px 30px 50px;
	}

	.awyb-quote-block__quote {
		font-size: 40px;
		line-height: 42px;
	}

	.awyb-quote-block__logo img {
		max-width: 160px;
	}
}
