.ppv-page {
    width: min(1500px, calc(100% - 32px));
    margin: 28px auto 54px;
}

.ppv-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.ppv-back-link,
.ppv-navigation a {
    color: #175f3c;
    font-weight: 800;
    text-decoration: none;
}

.ppv-navigation {
    display: flex;
    gap: 18px;
}

.ppv-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    min-height: min(760px, calc(100vh - 150px));
    overflow: hidden;
    border-radius: 20px;
    background: #111714;
    box-shadow: 0 20px 60px rgba(13, 30, 20, .18);
}

.ppv-stage {
    min-width: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(
            circle at center,
            #27322c,
            #090c0a 72%
        );
}

.ppv-stage img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 190px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
}

.ppv-information {
    padding: 30px 26px;
    background: #fff;
    color: #1d2b23;
}

.ppv-kicker {
    display: block;
    color: #15754a;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.ppv-information h1 {
    margin: 7px 0 8px;
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    line-height: 1.05;
}

.ppv-location {
    margin: 0 0 21px;
    color: #66736b;
    line-height: 1.5;
}

.ppv-credit {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px;
    padding: 15px 0;
    border-top: 1px solid #e2e8e4;
    border-bottom: 1px solid #e2e8e4;
}

.ppv-credit span {
    color: #768078;
}

.ppv-credit a,
.ppv-credit strong {
    color: #125d3b;
    font-weight: 900;
    text-decoration: none;
}

.ppv-caption {
    margin: 18px 0;
    color: #34453b;
    font-size: 1rem;
    line-height: 1.65;
}

.ppv-meta {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.ppv-meta div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.ppv-meta dt {
    color: #78827b;
}

.ppv-meta dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.ppv-private-notice {
    margin: 16px 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff4d8;
    color: #755514;
    font-size: .88rem;
    line-height: 1.5;
}

.ppv-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 11px;
    margin-top: 22px;
}

.ppv-like-button {
    min-height: 42px;
    padding: 8px 14px;
    font: inherit;
    font-weight: 800;
}

.ppv-report-box {
    position: relative;
    padding-top: 9px;
}

.ppv-report-box summary {
    color: #657068;
    font-size: .84rem;
    cursor: pointer;
}

.ppv-report-box select,
.ppv-report-box textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid #ccd7cf;
    border-radius: 8px;
    padding: 8px;
    font: inherit;
}

.ppv-report-box textarea {
    min-height: 78px;
    resize: vertical;
}

.ppv-report-box button {
    margin-top: 8px;
    border: 0;
    border-radius: 8px;
    padding: 8px 11px;
    background: #43564b;
    color: #fff;
    cursor: pointer;
}

.ppv-sign-in,
.ppv-place-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 10px;
    padding: 0 15px;
    font-weight: 900;
    text-decoration: none;
}

.ppv-sign-in {
    border: 1px solid #cbd7cf;
    color: #24583e;
}

.ppv-place-button {
    width: 100%;
    margin-top: 24px;
    background: #125d3b;
    color: #fff;
}

@media (max-width: 980px) {
    .ppv-layout {
        grid-template-columns: 1fr;
    }

    .ppv-stage {
        min-height: 58vh;
    }

    .ppv-stage img {
        max-height: 68vh;
    }
}

@media (max-width: 620px) {
    .ppv-page {
        width: 100%;
        margin: 0 0 34px;
    }

    .ppv-toolbar {
        padding: 13px 14px;
        margin: 0;
    }

    .ppv-navigation {
        gap: 11px;
        font-size: .88rem;
    }

    .ppv-layout {
        min-height: 0;
        border-radius: 0;
    }

    .ppv-stage {
        min-height: 52vh;
        padding: 10px;
    }

    .ppv-stage img {
        max-height: 70vh;
    }

    .ppv-information {
        padding: 24px 18px 30px;
    }
}
