.jhp-project-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.jhp-project-title {
    text-align: center;
    color: #DE480A;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jhp-project-content {
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #333;
}

.jhp-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.jhp-gallery-item a {
    display: block;
    overflow: hidden;
}

.jhp-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.jhp-gallery-item img:hover {
    transform: scale(1.04);
}

/* Shortcode list */
.jhp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jhp-list li {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.jhp-list li a {
    color: #DE480A;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.jhp-list li a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .jhp-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .jhp-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .jhp-gallery-item img {
        height: 150px;
    }

    .jhp-project-title {
        font-size: 1.4rem;
    }
}
