/* Reviews section */

.reviews-section .section-header__heading {
	max-width: 1248px;
}

.reviews-section .section-header__desc {
	max-width: 1004px;
}

.reviews__grid {
	display: flex;
	gap: 44px;
	align-items: flex-start;
	margin-top: 65px;
	margin-left: -60px;
	margin-right: -60px;
}

.reviews__col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 17px;
}

.reviews__col:nth-child(2n){
	flex-direction: column-reverse;
}

/* Base card */
.reviews__card {
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.03);
	padding: 40px 40px 40px 38px;
}

/* Large review text card */
.reviews__card--review {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 432px;
	height: -webkit-fill-available;
}

.reviews__text {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 30px;
	line-height: 36px;
	color: #fff;
	margin: 0;
}

.reviews__card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 32px;
}

.reviews__stars {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #d3b00f;
}
.reviews__stars svg{
	width: 29px;
	height: 29px;
}

.reviews__star {
	flex-shrink: 0;
}

.reviews__quote {
	display: block;
	color: rgba(255, 255, 255, 0.12);
	height: 35px;
}

/* Small author card */
.reviews__card--author {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 156px;
}

.reviews__author {
	display: flex;
	align-items: center;
	gap: 17px;
}

.reviews__avatar {
	width: 64px;
	height: 64px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Helvetica Neue', sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: #fff;
	flex-shrink: 0;
}

.reviews__author-name {
	font-family: 'Helvetica Neue', sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.3;
	color: #fff;
	margin: 0;
}

.reviews__author-role {
	font-size: 19px;
	line-height: 1.4;
	color: #7f7e83;
	margin: 12px 0 0;
}

.reviews__brand-logo {
	width: 85px;
	height: auto;
	flex-shrink: 0;
	opacity: 0.85;
}

/* ============================================================
   # MEDIA: 1200px
   ============================================================ */

@media screen and (max-width: 1200px) {
	.reviews__grid {
		margin-left: 0;
		margin-right: 0;
	}

	.reviews__col {
		align-self: stretch;
	}

	.reviews__card--review {
		min-height: auto;
	}

	.reviews__card {
		padding: 30px 30px 30px 28px;
	}

	.reviews__card--author {
		min-height: 125px;
	}

	.reviews__text,
	.reviews__author-name {
		font-size: 22px;
		line-height: 30px;
	}

	.reviews__brand-logo {
		width: 54px;
	}

	.reviews__stars svg {
		width: 24px;
		height: 24px;
	}
}

/* ============================================================
   # MEDIA: 992px
   ============================================================ */

@media (max-width: 992px) {
	.reviews__grid {
		flex-direction: column;
	}

	.reviews__col {
		flex-direction: column-reverse;
	}
	
	.reviews__card--review {
		height: auto;
	}
}

/* ============================================================
   # MEDIA: 576px
   ============================================================ */

@media (max-width: 576px) {
}