.angie-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.angie-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	box-sizing: border-box;
}

.angie-btn-text {
	line-height: 1;
}

.angie-btn-icon {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.angie-btn-icon svg {
	width: 1em;
	height: 1em;
}

.angie-btn-icon-left {
	margin-right: 8px;
}

.angie-btn-icon-right {
	margin-left: 8px;
}

/* Hover effects */
.angie-cta-btn:hover {
	opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 767px) {
	.angie-cta-buttons {
		flex-direction: column;
		width: 100%;
	}
	
	.angie-cta-btn {
		width: 100%;
		margin-bottom: 12px;
	}
	
	.angie-cta-btn:last-child {
		margin-bottom: 0;
	}
}
