.moments {
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 30px;

	.moments-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px;
		background-color: var(--color-white);
		border-radius: 16px;
		box-shadow: 6px 6px var(--color-eggshell);
	}

	.moment-card {
		display: flex;
		flex-direction: column;
		gap: 20px;
		text-align: left;
		padding-bottom: 20px;
		border-bottom: 1px solid var(--color-eggshell);
		&:last-child {
			padding-bottom: 0;
			border-bottom: none;
		}
	}

	.icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 64px;
		height: 64px;
		border-radius: 16px;
		background-color: var(--color-eggshell);
		img {
			width: 48px;
			height: 48px;
			object-fit: contain;
		}
	}

	.card-title {
		font-size: 20px;
		line-height: 24px;
		font-weight: 700;
		color: var(--color-carbone);
		margin: 0;
	}

	.card-description {
		font-size: 16px;
		line-height: 24px;
		color: var(--color-chestnut);
		margin: 0;
	}

	.highlight {
		margin-top: auto;
		padding: 20px;
		border-radius: 16px;
		background-color: var(--color-eggshell);
	}

	.badge {
		display: inline-flex;
		align-items: center;
		gap: 4px;
		margin-bottom: 8px;
		padding: 4px 10px;
		border-radius: 50px;
		background-color: var(--color-raspberry);
		color: var(--color-white);
		font-size: 12px;
		line-height: 16px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: .02em;
		.tribeecon {
			font-size: .9em;
		}
	}

	.highlight-title {
		font-size: 16px;
		line-height: 22px;
		font-weight: 700;
		color: var(--color-carbone);
		margin: 0;
	}

	.highlight-description {
		margin: 0;
		font-size: 14px;
		line-height: 20px;
		color: var(--color-chestnut);
	}

	.create-money-pot-button {
		width: 100%;
		box-sizing: border-box;
	}

	@media (min-width: 720px) {
		align-items: center;
		.title > .background-brush-text {
			mask-size: 100% auto
		}
		.moments-grid {
			grid-template-columns: repeat(4, 1fr);
			gap: 0;
			padding: 40px 0;
		}

		.moment-card {
			padding: 0 20px;
			border-bottom: none;
			border-right: 1px solid var(--color-eggshell);
			display: flex;
			flex-direction: column;
			&:last-child {
				border-right: none;
			}
		}
		.create-money-pot-button {
			max-width: 270px;
		}
	}
}
