/* Erinnerungsportal – Teilen */

.ep-share {
	margin: 1.5em 0;
}

.ep-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border: 0;
	border-radius: 6px;
	background: var(--gcid-primary-color, #4a4a4a);
	color: #fff;
	font-size: 15px;
	line-height: 1.2;
	cursor: pointer;
	transition: opacity .2s ease;
}
.ep-share-btn:hover,
.ep-share-btn:focus {
	opacity: .9;
	color: #fff;
}

.ep-share-fallback {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}
.ep-share-fallback[hidden] {
	display: none;
}

.ep-share-link,
.ep-share-copy {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
	color: #1d2327;
	font-size: 14px;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
}
.ep-share-link:hover,
.ep-share-copy:hover {
	background: #f6f7f7;
	color: #1d2327;
}

@media (max-width: 600px) {
	.ep-share-btn {
		width: 100%;
	}
	.ep-share-fallback {
		flex-direction: column;
	}
	.ep-share-link,
	.ep-share-copy {
		justify-content: center;
	}
}
