.portfolio-grid-9fbf2744 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.portfolio-card-9fbf2744 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Slider */
.pg-slider-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e0e0e0;
}

.pg-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    height: 100%;
}

.pg-slide {
    min-width: 100%;
    height: 100%;
}

.pg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pg-placeholder {
    background: #ccc;
}

.pg-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-card-9fbf2744:hover .pg-nav-btn {
    opacity: 1;
}

.pg-nav-prev { left: 10px; }
.pg-nav-next { right: 10px; }

.pg-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 2;
}

.pg-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s;
}

.pg-dot.active {
    background: #fff;
}

/* Content */
.pg-card-link-wrapper, .pg-card-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pg-card-content {
    background: #fbf7f3;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.pg-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: sans-serif;
    font-size: 0.9em;
    color: #333;
    margin-bottom: 20px;
}

.pg-loc-icon {
    display: block;
}

.pg-title {
    font-family: serif;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #111;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.pg-link {
    font-family: sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-top: auto;
}

.pg-card-link-wrapper:hover .pg-link {
    color: #000;
}
