/* ============================================
   ParkCo Gallery — Front-End Styles
   ============================================ */

.pcg-gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.pcg-gallery-title {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
    color: #58595b;
    margin: 0 0 40px;
    line-height: 63px;
}

.pcg-gallery-grid {
    display: grid;
    gap: 30px;
}

.pcg-gallery-item {
    display: flex;
    flex-direction: column;
}

.pcg-gallery-image {
    overflow: hidden;
    background: #f0f0f0;
    line-height: 0;
}

.pcg-gallery-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.pcg-gallery-image:hover img {
    transform: scale(1.03);
}

.pcg-gallery-caption {
    padding: 12px 0 0;
}

.pcg-caption-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.pcg-caption-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #555;
    line-height: 1.5;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .pcg-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .pcg-gallery-grid {
        grid-template-columns: 1fr !important;
    }
    .pcg-gallery-title {
        font-size: 1.5rem;
    }
}
