/* CSA Link Button — text label with an underline rule beneath it. */

.csa-link-button {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.csa-link-button:hover,
.csa-link-button:focus-visible {
	opacity: 0.85;
}

.csa-link-button__label {
	display: block;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: inherit;
}

.csa-link-button__rule {
	display: block;
	width: 100%;
	height: 2px;
	background-color: currentColor;
}

/* Centered / right-aligned variants flip the cross-axis and text alignment. */
.csa-link-button--center {
	align-items: center;
	text-align: center;
}

.csa-link-button--right {
	align-items: flex-end;
	text-align: right;
}
