/**
 * Promo Block - Frontend Styles
 *
 * @package Quinn
 */

.quinn-promo {
}

.quinn-promo__inner {
	display: flex;
	align-items: center;
	gap: 48px;
	background-color: #ef2236;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    background-blend-mode: multiply;
	padding: 72px 48px 72px 0;
}

.quinn-promo__image {
	width: 38%;
	flex-shrink: 0;
    height: 248px;
}

.quinn-promo__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.quinn-promo__content {
	flex: 1;
}

.quinn-promo__title {
	font-weight: 500;
	font-size: 32px;
	line-height: 40px;
	letter-spacing: 0;
	text-transform: uppercase;
	margin: 0 0 24px 0;
	color: #fff;
}

.quinn-promo__text {
	margin: 0 0 48px 0;
}

.quinn-promo__text p {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    color: #fff;
}

.quinn-promo__text p:last-child {
	margin-bottom: 0;
}

.quinn-promo__button {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	text-transform: uppercase;
	padding: 24px 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	background-color: #353B3F;
	color: #fff;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
	border-radius: 0;
}

.quinn-promo__button:hover {
	background-color: #252A2E;
	color: #fff;
}

/* Mobile */
@media screen and (max-width: 768px) {
	.quinn-promo__inner {
		flex-direction: column;
		padding: 48px 24px;
		gap: 32px;
	}

	.quinn-promo__image {
		width: 100%;
	}

	.quinn-promo__title {
		font-size: 22px;
		line-height: 28px;
	}

	.quinn-promo__text {
		margin-bottom: 32px;
	}

	.quinn-promo__text p {
		font-size: 18px;
		line-height: 24px;
	}

	.quinn-promo__button {
		padding: 16px 45px;
		font-size: 14px;
		line-height: 20px;
	}
}

