/**
 * Circular Info Box Widget Styles
 *
 * @package Dove Agency
 * @since 1.0.0
 */

.dove-circular-box-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.dove-circular-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	background-color: #ffffff;
	box-sizing: border-box;
	/* Default size - can be overridden by Elementor controls */
	width: 350px;
	height: 350px;
	min-width: 350px;
	min-height: 350px;
	max-width: 350px;
	max-height: 350px;
	padding: 40px;
	position: relative;
	aspect-ratio: 1 / 1;
}

.dove-circular-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}

.dove-circular-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.dove-circular-heading {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 15px 0;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.dove-circular-description {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

/* Mobile Responsive Styles - Size controlled by Elementor */
@media (max-width: 768px) {
	/* Padding adjustments for tablet */
	.dove-circular-box {
		padding: 30px;
	}
	
	.dove-circular-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 15px;
	}
	
	.dove-circular-heading {
		font-size: 15px;
		margin-bottom: 12px;
	}
	
	.dove-circular-description {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	/* Padding adjustments for mobile */
	.dove-circular-box {
		padding: 25px;
	}
	
	.dove-circular-icon {
		width: 40px;
		height: 40px;
		margin-bottom: 12px;
	}
	
	.dove-circular-heading {
		font-size: 14px;
		margin-bottom: 10px;
	}
	
	.dove-circular-description {
		font-size: 13px;
		line-height: 1.5;
	}
}
