.project-energy-chart {
	padding: 0;
    max-width: 1320px;
    margin: 0 auto;

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

.pec-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: center;

    @media screen and (max-width: 768px) {
        grid-template-columns: 1fr;
        position: relative;
        z-index: 1;
    }
}

/* LEFT SIDE */
.pec-left {
    position: relative;
}

.pec-image-wrap {
	background: #004735;
	border-radius: 20px;
	overflow: hidden;
    min-height: 635px;
    
    @media screen and (max-width: 768px) {
        min-height: 600px;
    }

    @media screen and (max-width: 480px) {
        min-height: 410px;
    }
        
}

.pec-image-wrap img {
    width: 100%;
    max-height: 525px;
    height: auto;
    object-fit: cover;
    object-position: 20px 20px;
}

.pec-left-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: calc(100% - 115px);
    font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: #CFE2E0;

    @media screen and (max-width: 768px) {
        bottom: 20px;
        left: 20px;
        width: calc(100% - 50px);
        font-size: 14px;
    }
}

/* RIGHT SIDE */
.pec-right {
    background: #CFE2E0;
    border-radius: 20px;
    padding: 40px 40px 30px;
    min-height: 565px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

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

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

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

.pec-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 330px;

    @media screen and (max-width: 768px) {
        gap: 4px;
        height: 220px;
    }
}

.pec-bar {
	text-align: center;
	flex: 1;
}

.pec-bar-value {
    font-family: 'Closer Text', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #004735;

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

.pec-bar-fill {
	width: 100%;
	border-radius: 6px;
	transition: height .3s;
    border: 1px solid #004735;
    background: linear-gradient(180deg, #F1CB44 0%, #42AE8E 100%);
    margin: 10px 0 10px;

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

.pec-bar-label {
	font-family: 'Closer Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.01em;
    text-align: center;
    color: rgba(0, 71, 53, 0.6);

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

/* Mobile */
@media (max-width: 768px) {
	.pec-grid {
		grid-template-columns: 1fr;
        gap: 12px;
	}
}
