.photo-review-list-page .page-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: 90px;
    background: #fff;
    z-index: 10;
    border-bottom: 1px solid #e6e6e6;
    justify-content: space-between;
}

.photo-review-list-page .page-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.photo-review-gallery {
    flex: 1;
    overflow-y: auto;
    padding-top: 63px;
}

.photo-gallery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.photo-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.photo-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}