
/*-------------------------------------------*\
	Section Header Block Styles
\*-------------------------------------------*/

.section-header-block {
    margin-top: 0px;
    margin-bottom: 0px;
}

.section-header-block.bg-default {
	background-color: var(--chartreuse);
}

.section-header-block__container {
	max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-block__content {
	text-align: center;
}

.section-header-block__heading {
	font-size: 3rem;
    font-family: var(--font-alt-2);
	font-weight: 900;
	color: var(--green);
	margin: 0 0 20px 0;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.section-header-block__line {
	width: 100%;
	height: 4px;
	background-color: var(--green);
}

/* Responsive Design */
@media (max-width: 768px) {
	.section-header-block {
		padding: 30px 0;
	}
	
	.section-header-block__heading {
		font-size: 2rem;
		margin-bottom: 15px;
	}
	
	.section-header-block__line {
		height: 3px;
	}
}

@media (max-width: 480px) {
	.section-header-block {
		padding: 25px 0;
	}
	
	.section-header-block__heading {
		font-size: 1.8rem;
	}
}