.project-scale {
	position: relative;
	padding: 140px 0;

    @media screen and (max-width: 768px) {
        padding: 60px 0;
        overflow: hidden;
    }
}

.ps-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
    width: 100%;
    max-height: 650px;
    top: 295px;
    left: 50%;
    transform: translateX(-50%);

    @media screen and (max-width: 768px) {
        top: 215px;
        background-repeat: no-repeat;
    }
}

.ps-bg-blur {
    position: absolute;
    width: 100%;
    height: 210px;
    z-index: 2;
    bottom: 40px;
    background: #FFFFFF;
    filter: blur(40px);

    @media screen and (max-width: 768px) {
        bottom: -70px;
        z-index: 1;
        width: 2000px;
        left: -100px;
    }
}
/* Контент поверх фону */
.project-scale .container {
	position: relative;
	z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;

    @media screen and (max-width: 768px) {
        padding: 0 20px;
    }
}

/* Заголовки */
.ps-section-title {
	font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: #004735;
    padding-bottom: 14px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 74, 51, 0.1);

    @media screen and (max-width: 768px) {
        margin-bottom: 30px;
        font-size: 16px;
    }
}

.ps-main-title {
	font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 110%;
    letter-spacing: -0.02em;
	color: #013026;
	max-width: 460px;
    margin: 0;

    @media screen and (max-width: 768px) {
        font-size: 32px;
        letter-spacing: -0.01em;
    }
}

/* Сітка карток */
.ps-cards {
	position: relative;
	display: grid;
	gap: 40px;
    margin: -45px 0 0;
    /* max-width: 430px; */
    max-width: 100%;

    .ps-card {
        max-width: 430px;

        @media screen and (max-width: 768px) {
            max-width: unset;
        }
    }
    
    @media screen and (max-width: 768px) {
        margin: 70px 0 0;
        gap: 14px;
        max-width: unset;
    }
}

.ps-card-inner {
	background: #F1F5F8;
	padding: 26px 32px 26px 26px;
	border-radius: 20px;

    @media screen and (max-width: 768px) {
        padding: 20px;
    }
}

.ps-number {
	font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #004735;
    margin: 0 0 16px;

    @media screen and (max-width: 768px) {
        font-size: 21px;
        margin: 0 0 20px;
    }
}

.ps-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #004d40;
}

.ps-desc {
	font-family: 'Closer Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: #004735;

    @media screen and (max-width: 768px) {
        font-size: 14px;
    }
}

/* Позиціонування (імітація дизайну) */
.pos-left  { justify-self: start; }
.pos-right { justify-self: end; }
.pos-center{ 
    padding-top: 40px; 
    justify-self: center;
    
    @media screen and (max-width: 768px) {
        padding-top: 0; 
    }
}

/* Мобільна адаптація */
@media (max-width: 992px) {
	/* .ps-main-title { font-size: 30px; } */
	.ps-cards { grid-template-columns: 1fr; }
	.pos-left, .pos-right, .pos-center { justify-self: stretch; }
}





