.ar-quotes {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: 36px 56px;
	align-items: center;
	padding: 48px 40px;
	border-radius: 28px;
}

.ar-quotes__heading {
	margin: 0 0 22px;
	font-family: "Montserrat", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	color: #fbf2e3;
}

.ar-quotes__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ar-quotes__item-btn {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 14px;
	align-items: center;
	width: 100%;
	padding: 10px 16px 10px 10px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: background-color 0.2s ease;
}

.ar-quotes__item-btn:hover {
	background: #1f4d32 !important;
}

.ar-quotes__item.is-active .ar-quotes__item-btn {
	background: #1f4d32;
}

.ar-quotes__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	overflow: hidden;
	border-radius: 50%;
	background: #8dc63f;
	color: #013a1c;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.ar-quotes__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ar-quotes__meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 2px;
}

.ar-quotes__name {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	color: #fbf2e3;
}

.ar-quotes__role {
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
	color: #93a89c;
}

.ar-quotes__time {
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	color: #93a89c;
	white-space: nowrap;
}

.ar-quotes__media {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	aspect-ratio: 16 / 8;
	overflow: hidden;
	border-radius: 36px;
	background: #0b1f16;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.ar-quotes__image,
.ar-quotes__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ar-quotes__placeholder {
	background: #12442a;
}

.ar-quotes__image[hidden],
.ar-quotes__placeholder[hidden] {
	display: none;
}

.ar-quotes__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: #8dc63f;
	color: #013a1c;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.ar-quotes__play i,
.ar-quotes__play svg {
	display: block;
	width: 34px;
	height: 34px;
}

.ar-quotes__play svg {
	fill: currentColor;
}

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

.ar-quotes__play--custom {
	background: transparent;
	border-radius: 0;
	color: inherit;
}

@media (max-width: 991px) {
	.ar-quotes {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.ar-quotes__col-media {
		order: -1;
	}
}
