/* ==========================================================================
   TGC Button Widget — Structural Layout CSS
   All design values (colours, sizes, typography) are set via Elementor.
   ========================================================================== */

.cwb-btn-wrap {
	display: flex;
}

.cwb-btn {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	box-sizing: border-box;
	cursor: pointer;
	transition: background-color .25s ease, transform .2s ease, box-shadow .25s ease;
}


.cwb-btn:active {
	transform: translateY(0);
}

.cwb-btn__label {
	flex: 1;
	white-space: nowrap;
	line-height: 1;
}

.cwb-btn__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	transition: transform .25s ease;
}


.cwb-btn__icon svg {
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	display: block;
}
