.project-detail {
    padding: 5rem 0;
    background: #ffffff;
}

/* TITLE */
.project-title {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: left;
}

/* LAYOUT */
.project-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* IMAGE */
.project-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* TEXT */
.project-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
    color: #444;
}

/* QUOTE */
.project-quote {
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding: 2.5rem 2.5rem;
    border-left: 5px solid #1f7ae0;
    background: #f6f9ff;
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
    border-radius: 12px;
}



/* RESPONSIVE */
@media (max-width: 900px) {
    .project-layout {
        grid-template-columns: 1fr;
    }

    .project-title {
        text-align: center;
    }
}

