.share-image {
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
}

.share-image svg {
	height: 150px;
}

.share-title {
	font-family: var(--title-l-ff);
	font-weight: var(--title-l-fw);
	line-height: var(--title-l-lh);
	text-rendering: var(--title-l-tr);
	letter-spacing: var(--title-l-ls);
	font-size: var(--title-l-fs);
	text-align: center;
	margin: 0 0 10px 0;
}

.share-subtitle {
	font-family: var(--body-regular-l-ff);
	font-weight: var(--body-regular-l-fw);
	line-height: var(--body-regular-l-lh);
	text-rendering: var(--body-regular-l-tr);
	letter-spacing: var(--body-regular-l-ls);
	font-size: var(--body-regular-l-fs);
	text-align: center;
	margin: 0;
}

.share-qr-code-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 16px 0 8px;
}

.share-qr-code-label {
	font-family: var(--body-regular-l-ff);
	font-weight: var(--body-regular-l-fw);
	line-height: var(--body-regular-l-lh);
	text-rendering: var(--body-regular-l-tr);
	letter-spacing: var(--body-regular-l-ls);
	font-size: var(--body-regular-l-fs);
	text-align: center;
	margin: 0 0 12px 0;
}

.share-qr-code {
	width: 160px;
	height: 160px;
	max-width: 100%;
	padding: 8px;
	background: #fff;
	border-radius: 16px;
}

.share-qr-code-download-link {
	margin-top: 0;
	color: var(--color-raspberry);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-family: var(--body-regular-m-ff);
	font-weight: var(--body-regular-m-fw);
	line-height: var(--body-regular-m-lh);
	text-rendering: var(--body-regular-m-tr);
	letter-spacing: var(--body-regular-m-ls);
	font-size: var(--body-regular-m-fs);
}

.share-social-container {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(2, 1fr);
	margin: 16px 0;
	grid-column-gap: 8px;
	grid-row-gap: 16px;
}

.share-social-container>a:last-child:nth-child(odd) {
	grid-column: span 2;
	/* Make the last element span both columns */
	justify-self: center;
	/* Center the last element */
}

.share-social-container a {
	margin: auto;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--body-regular-xl-ff);
	font-weight: var(--body-regular-xl-fw);
	line-height: var(--body-regular-xl-lh);
	text-rendering: var(--body-regular-xl-tr);
	letter-spacing: var(--body-regular-xl-ls);
	font-size: var(--body-regular-xl-fs);
	color: currentColor;
	text-decoration: none;
}

.share-social-container a img {
	height: 24px;
}

@media screen and (min-width: 720px) {
	.modal-share {
		width: min(460px, calc(100vw - 32px));
	}
}
