.button-with-desc {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	padding: 10px 16px;
	border-radius: 16px;
	border: 1px solid $color-border;
	box-sizing: border-box;

	@include desktop {
		&:hover {
			border-color: $color-green;

			.button-with-desc__main span {
				color: $color-green;
			}
		}
	}
}

.button-with-desc__main {
	flex: 1;
	display: flex;
	flex-flow: column;
	gap: 4px;

	span {
		font-weight: 700;
		letter-spacing: -0.03em;
	}

	p {
		font-size: 14px;
		line-height: 16px;
		color: $color-gray-md;
	}
}

.button-with-desc__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: $color-green;

	svg {
		width: 20px;
		height: 20px;
		color: $color-white;
	}
}
