.inf-big-with-cover-section {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin: 16px 16px 0;

	@include desktop {
		grid-template-columns: 1fr 615px;
		align-items: center;
		align-self: center;
		gap: 40px;
		margin: 30px 0 0;
		width: calc(100% - 32px);
		max-width: $width-desktop;
	}
}

.inf-big-with-cover-section__cover {
	width: 100%;
	aspect-ratio: 328 / 245;
	border-radius: 28px;
	background-color: $color-surface;

	@include desktop {
		aspect-ratio: 123 / 92;
	}
}

.inf-big-with-cover-section__content {
	display: flex;
	flex-flow: column;

	@include desktop {
		order: -1;
		max-width: 469px;
	}
}

.inf-big-with-cover-section__title {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -0.03em;

	@include desktop {
		font-size: 56px;
	}
}

.inf-big-with-cover-section__desc {
	margin-top: 14px;
	font-size: 14px;
	line-height: 150%;

	@include desktop {
		margin-top: 16px;
		font-size: 16px;
	}
}

.inf-big-with-cover-section__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	margin-top: 20px;
	padding: 0px 18px;
	border-radius: 14px;
	background-color: $color-green;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	color: $color-white;
	box-sizing: border-box;

	@include desktop {
		max-width: 323px;
		min-height: 64px;
		padding: 0px 24px;
		margin-top: 56px;
		border-radius: 16px;
		font-size: 16px;
		line-height: 18px;

		&:hover {
			background-color: $color-green-hover;
		}
	}
}
