.project-detail-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.project-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.project-meta {
    margin-bottom: 15px;
}

.project-location {
    display: inline-block;
    background: #f1f5ff;
    color: #1e40af;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.project-description {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* ✅ Gallery giữ chuẩn đẹp */
.project-gallery .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.project-gallery a {
    border-radius: 10px;
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.project-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.3s;
}

.project-gallery img:hover {
    transform: scale(1.05);
}

/* ✅ Responsive mobile */
@media (max-width: 992px) {
    .project-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .project-title {
        font-size: 24px;
    }

    .project-gallery img {
        height: 140px;
    }
}
