#servicesDiv {
	min-height: 474px; /* Or however tall you need */
	position: relative;
	background-color: black;
}

.plow-img {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	object-fit: contain;
	z-index: 1;
}

.overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	
	/* Gradient background */
	background: radial-gradient(circle at 50% -25%, var(--color-primary) 0%, #1F1F25 50%, #1F1F25 50%);
	
	/* Mask the gradient using the transparent PNG */
	mask-image: url('/images/service/slant-grid.png');
	mask-size: cover;
	mask-repeat: no-repeat;
	mask-position: left center;
	
	-webkit-mask-image: url('/images/service/slant-grid.png'); /* For Safari */
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: left center;
}

/* Mobile: just use black */
@media (max-width: 767.98px) {
	#test {
	    min-height: auto;
	  }
	.overlay {
		position: absolute;
    	height: 100%;
		background: black;
		mask-image: none;
		-webkit-mask-image: none;
	}
	.content-layer {
	    align-items: flex-start; /* Optional: move text to top on mobile */
	    padding: 1rem;
	    position: relative !important; /* Breaks out of absolute and grows with content */
	    height: auto;
	  }
}

.content-layer {
	position: absolute;
	inset: 0;
	z-index: 3;
	padding: 2rem;
	pointer-events: none; /* Optional: allows clicks to pass through */
	color: white;
	width: 70%;
	height: 100%;
}

.service-title {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	word-break: break-word;
    font-family: "Gantari", serif;
	color: #FFFFFF;
}

.service-text {
	font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
    font-weight: var(--p-regular);
    color: #FFFFFF;
}

@media (max-width: 768px) {
	.content-layer {
		width: 100%;
	}
}

@media (max-width: 575px) {
    .service-title {
        font-size: 22px;
    }
}

@media (min-width: 768px) {
    .service-container {
        max-width: unset;
    }
}

@media (min-width: 576px) {
    .service-container {
        max-width: unset;
    }
}

@media (max-width: 767px) {
    .service-text {
        margin: 0 0 20px;
        font-size: 16px;
        line-height: 28px;
    }
}