.contributions-part {
	--bg-color: var(--color-white);
	background: var(--bg-color);
	padding: 15px 15px 37px 15px;
}

.money-pot-overview-frame {
	padding-bottom: 24px;
}

.money_pot_overview {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.money_pot_overview>* {
	margin-bottom: 0;
	margin-top: 0;
}

.money_pot_header {
	display: flex;
	justify-content: end;
}
.money_pot_picture {
	width: 228px;
	height: 228px;
	margin: auto;
}

.money_pot_picture>svg {
	height: inherit;
	width: inherit;
	max-width: 280px;
	width: 100%;
}

.money_pot_picture>* {
	display: block;
	margin: 0 auto;
}

.money_pot_actions {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.money_pot_subtitle {
	font-family: 'Hey August', sans-serif;
	text-rendering: geometricPrecision;
	color: var(--color-mandarin);
	font-size: 30px;
	font-weight: 20;
	line-height: 31px;
	letter-spacing: 0.05em;
	text-align: center;
}

.money_pot_name {
	font-size: 40px;
	font-weight: 400;
	line-height: 42px;
	text-align: center;
	margin-top: 0;
}

@media screen and (min-width: 720px) {
	.money_pot_overview {
		gap: 8px;
	}
	.money_pot_picture {
		margin-bottom: 0;
		width: initial;
		height: initial;
	}
}

/* --- Skeleton loader --- */
@keyframes skeleton-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--color-eggshell)        25%,
        rgba(226, 182, 138, 0.45)    50%,
        var(--color-eggshell)        75%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 2.2s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton--circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: auto;
}

.skeleton--name {
    height: 48px;
    width: 60%;
    margin: 0 auto;
}

.skeleton--summary {
    display: flex;
    gap: 16px;
    justify-content: center;
    background: none;
    animation: none;
}

.skeleton--stat {
    flex: 1;
    height: 64px;
}
@media screen and (min-width: 720px) {
	.contributions-part {
		border-radius: 16px;
		padding: 24px;
		width: 100%;
		box-sizing: border-box;
	}

	.contributions-part:before {
		content: none;
	}
}
