/**
 * 🇹🇷 TR: Heading Widget Styles
 * 🇬🇧 EN: Heading Widget Styles
 * 🎯 PURPOSE: Custom heading styles with decorations
 */

.grpc-heading-wrapper {
	position: relative;
}

.grpc-heading-subtitle {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--grpc-primary-color, #2F2483);
	margin-bottom: 15px;
}

.grpc-heading-title {
	margin: 0 0 20px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--grpc-heading-color, #27243b);
}

.grpc-heading-decoration {
	margin-top: 20px;
	background: var(--grpc-primary-color, #2F2483);
}

.grpc-heading-decoration.decoration-line {
	height: 3px;
	width: 60px;
	border-radius: 2px;
}

.grpc-heading-decoration.decoration-dots {
	height: 6px;
	width: 60px;
	background: transparent;
	display: flex;
	gap: 8px;
}

.grpc-heading-decoration.decoration-dots::before,
.grpc-heading-decoration.decoration-dots::after {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--grpc-primary-color, #2F2483);
}

.grpc-heading-decoration.decoration-shape {
	width: 40px;
	height: 40px;
	background: rgba(47, 36, 131, 0.1);
	border-radius: 50% 0 50% 0;
}

@media (max-width: 768px) {
	.grpc-heading-subtitle {
		font-size: 12px;
		margin-bottom: 10px;
	}

	.grpc-heading-title {
		margin-bottom: 15px;
	}
}

