/* Standardized Typography System */
/* This file ensures consistent fonts, sizes, weights, and styles across all sections */

/* Base font settings */
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}

/* Headings - Consistent sizing and styling */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto Flex', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: var(--theme-heading-margin-bottom);
}

/* Specific heading sizes and weights */
h1 {
	font-size: 32px;
	font-weight: 900;
}

h2 {
	font-size: 28px;
	font-weight: 800;
}

h3 {
	font-size: 24px;
	font-weight: 700;
}

h4 {
	font-size: 20px;
	font-weight: 700;
}

h5 {
	font-size: 18px;
	font-weight: 600;
}

h6 {
	font-size: 16px;
	font-weight: 600;
}

/* Paragraphs */
p {
	margin-top: 0;
	margin-bottom: var(--theme-p-margin-bottom);
	font-size: 16px;
	line-height: 1.6;
}

/* Special text elements */
strong,
b {
	font-weight: 700;
}

em,
i {
	font-style: italic;
}

/* Lists */
ul,
ol {
	margin-top: 0;
	margin-bottom: var(--theme-p-margin-bottom);
}

li {
	font-size: 16px;
	line-height: 1.6;
}

/* Links */
a {
	font-family: inherit;
	font-weight: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

/* Buttons - inherit base font but can have specific styling */
.btn {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
}

/* Section-specific overrides to maintain consistency */

/* Welcome section */
.welcome-section .welcome-section__container .title h1 {
	font-size: 32px;
	font-weight: 900;
}

.welcome-section .welcome-section__container .description p {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

/* Rating section */
.rating-section h2 {
	font-size: 28px;
	font-weight: 800;
}

.rating-header h2 {
	font-size: 28px;
	font-weight: 800;
}

.overall-rating .rating-score {
	font-size: 18px;
	font-weight: 700;
}

.category-name {
	font-size: 16px;
	font-weight: 600;
}

/* Pros/Cons section */
.pros-cons-section h2 {
	font-size: 32px;
	font-weight: 800;
}

.pros-column h3,
.cons-column h3 {
	font-size: 24px;
	font-weight: 700;
}

.pros-list li span:last-child,
.cons-list li span:last-child {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

/* Registration guide */
.registration-guide-section h2 {
	font-size: 32px;
	font-weight: 800;
}

.registration-guide-text p {
	font-size: 18px;
	line-height: 1.6;
}

.step-content h3 {
	font-size: 18px;
	font-weight: 700;
}

.step-content p {
	font-size: 16px;
	line-height: 1.5;
}

.step-content li {
	font-size: 18px;
	font-weight: 700;
}

/* Other sections */
.onewin-block-hc-alternate-group-section .title h2 {
	font-size: 28px;
	font-weight: 800;
}

.onewin-block-hc-alternate-group-section ol>li {
	font-size: 16px;
	line-height: 1.6;
}

.onewin-block-hc-alternate-group-section ul>li {
	font-size: 16px;
	line-height: 1.6;
}

.onewin-block-hc-alternate-group-section ol>li:before {
	font-size: 12px;
	font-weight: 700;
}

.onewin-block-hc-alternate-group-section ul>li:before {
	font-size: 12px;
	font-weight: 700;
}

.media_block_v2 .title h2 {
	font-size: 28px;
	font-weight: 800;
}

.faq-section .item .faq_question {
	font-size: 20px;
	font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	h1 {
		font-size: 28px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 20px;
	}

	.welcome-section .welcome-section__container .description p {
		font-size: 16px;
	}

	.faq-section .item .faq_question {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 18px;
	}

	.pros-cons-section h2 {
		font-size: 26px;
	}

	.registration-guide-section h2 {
		font-size: 26px;
	}

	.pros-column h3,
	.cons-column h3 {
		font-size: 20px;
	}
}