/* PostingZoo 1.2.2 maintenance fixes */

/* Let portrait and square photos determine the detail gallery's height. */
.gallery-main {
    aspect-ratio: auto;
    min-height: 360px;
    height: auto;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    align-self: start;
}

/* Keep primary actions visually separate from fields and adjacent actions. */
.auth-card form > .btn {
    margin-top: 12px;
}

.price-card > .btn + .btn,
.price-card > form + .btn,
.price-card form .btn {
    margin-top: 10px;
}

@media (max-width: 680px) {
    .gallery-main {
        min-height: 240px;
    }
}
