/**
 * Header CTA Widget Styles
 *
 * Layout styles for the Header CTA widget - typography, colors, and sizes 
 * are handled by Elementor controls
 *
 * @package WellSpring
 * @since 1.0.0
 * @version 1.3.1
 */

/* Main CTA Container */
.wellspring-header-cta {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.wellspring-header-cta:hover {
	text-decoration: none;
	opacity: 0.9;
}

.wellspring-header-cta:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Icon Column */
.wellspring-cta-icon-column {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 12px;
}

.wellspring-cta-icon {
	display: block;
	flex-shrink: 0;
}

/* Text Column */
.wellspring-cta-text-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
}

.wellspring-cta-text {
	margin: 0;
	line-height: 1.2;
}

.wellspring-cta-phone {
	margin: 0;
	margin-top: 4px; /* Fixed 4px spacing between CTA text and phone */
	line-height: 1.1;
}

/* Responsive Design */
@media (max-width: 768px) {
	.wellspring-cta-icon-column {
		margin-right: 8px;
	}
}