.why-players-block {
	width: 100%;
}

.why-players {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	width: 100%;
}

.why-players__title {
	font-family: var(--font-homepage-section-title);
	color: #231d58;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.75rem;
	line-height: 1.1;
	margin: 0;
}

@media (min-width: 768px) {
	.why-players__title {
		font-size: 2rem;
	}
}

@media (min-width: 1024px) {
	.why-players__title {
		font-size: 2.5rem;
	}
}

@media (max-width: 767px) {
	.why-players__title-brand {
		display: block;
		font-size: 1.35em;
		line-height: 1;
	}
}

.why-players__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	width: 100%;
}

@media (min-width: 768px) {
	.why-players__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
	}
}

.why-players__card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1rem 1rem;
	background-color: #fff;
	border: 2px solid #e3e2fb;
	border-radius: 1.75rem;
}

.why-players__card-arc {
	position: absolute;
	top: 46%;
	left: 50%;
	transform: translateX(-50%);
	width: 200%;
	aspect-ratio: 821 / 643;
	border-radius: 50%;
	background-color: #ecebfb;
	z-index: 0;
	pointer-events: none;
}

@media (max-width: 767px) {
	.why-players__card-arc {
		top: 52%;
	}
}

.why-players__card-title {
	position: relative;
	z-index: 1;
	color: #221a5b;
	text-align: center;
	font-weight: 500;
	font-size: 0.9375rem;
	line-height: 1.2;
	margin: 0;
}

@media (min-width: 768px) {
	.why-players__card-title {
		font-size: 1rem;
	}
}

@media (min-width: 1024px) {
	.why-players__card-title {
		font-size: 1.25rem;
	}
}

.why-players__card-icon {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-players__card-icon img {
	width: 112px;
	height: 112px;
	object-fit: contain;
}

@media (min-width: 768px) {
	.why-players__card-icon img {
		width: 128px;
		height: 128px;
	}
}

@media (min-width: 1024px) {
	.why-players__card-icon img {
		width: 150px;
		height: 150px;
	}
}
