.pv-section-heading {
    max-width: 48rem;
    margin-bottom: 1.5rem;
}

.pv-feature-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.pv-showcase-card {
    border: 1px solid rgba(31, 58, 46, 0.12);
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    text-align: left;
    padding: 0;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

    .pv-showcase-card:hover,
    .pv-showcase-card:focus-visible {
        transform: translateY(-4px);
        border-color: rgba(31, 58, 46, 0.28);
        box-shadow: 0 18px 40px rgba(31, 58, 46, 0.12);
        outline: none;
    }

.pv-showcase-media {
    min-height: 220px;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(196, 165, 116, 0.18), rgba(250, 246, 239, 0.96));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pv-showcase-media img {
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 220px;
        object-fit: contain;
    }

.pv-showcase-body {
    padding: 1.25rem 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pv-showcase-kicker,
.pv-eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--pv-accent-dark, #8f7048);
    margin: 0;
}

.pv-showcase-body h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.35;
    color: var(--color-text-primary, #1f2933);
}

.pv-showcase-body p,
.pv-section-heading p,
.pv-showcase-modal-body p {
    margin: 0;
    color: var(--color-text-secondary, #4b5563);
    line-height: 1.6;
}

.pv-showcase-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.pv-showcase-modal-dialog {
    width: min(1100px, 100%);
    max-height: 100%;
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.35);
}

.pv-showcase-modal-media {
    background: #0f172a;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

    .pv-showcase-modal-media img {
        display: block;
        max-width: 100%;
        max-height: calc(100vh - 7rem);
        width: auto;
        height: auto;
        object-fit: contain;
    }

.pv-showcase-modal-body {
    padding: 1.5rem;
    overflow: auto;
}

    .pv-showcase-modal-body h3 {
        margin: 0.35rem 0 0.75rem;
        font-size: 1.5rem;
        color: var(--color-text-primary, #1f2933);
    }

.pv-showcase-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 1;
}

    .pv-showcase-close:hover,
    .pv-showcase-close:focus-visible {
        background: rgba(15, 23, 42, 0.95);
        outline: none;
    }

@media (max-width: 991.98px) {
    .pv-showcase-modal-dialog {
        grid-template-columns: 1fr;
    }

    .pv-showcase-modal-media {
        min-height: 240px;
    }

        .pv-showcase-modal-media img {
            max-height: 55vh;
        }
}

@media (max-width: 575.98px) {
    .pv-feature-gallery {
        grid-template-columns: 1fr;
    }

    .pv-showcase-body,
    .pv-showcase-modal-body {
        padding: 1rem;
    }

    .pv-showcase-media {
        min-height: 200px;
    }

        .pv-showcase-media img {
            max-height: 180px;
        }
}
