/* Language-aware green contact card slider */
.c-author-contact__viewport {
	position: relative;
}

.c-author-contact-slide {
	display: none;
	animation: sfc-author-fade 0.35s ease;
}

.c-author-contact-slide.is-active {
	display: block;
}

@keyframes sfc-author-fade {
	from {
		opacity: 0;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.c-author-contact-slide {
		animation: none;
	}
}

.c-author-contact__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.c-author-contact__dots[hidden] {
	display: none !important;
}

.c-author-contact__dot {
	appearance: none;
	width: 8px;
	height: 8px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.15s ease, width 0.15s ease;
}

.c-author-contact__dot:hover,
.c-author-contact__dot:focus {
	background: rgba(255, 255, 255, 0.7);
	outline: none;
}

.c-author-contact__dot.is-active {
	width: 18px;
	background: #fff;
}
