/* Single Posts Page Styles */
/* main {
    padding-top: 90px;
} */
.single {
    background-color: #000;
    color: #fff;
}

.post-img-wrap img {
    width: 100%;
    height: auto;
}

.post-meta {
    /* max-width: 250px; */
}

.post-meta.well {
    /* background: var(--dark);
    color: var(--light); */
    background-color: var(--dark);
    color: var(--light);
    padding: 1rem;
    padding: 1.5rem;
    box-shadow: 3px 3px 12px #000;
}

.post-meta.well:has(.post-sold) {
    background-color: var(--dark);
}

.post-meta .post-meta-field {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: 400;
}

.post-meta .post-meta-field.post-price {
    font-size: 25px;
    color: var(--primary);
}

.post-meta .post-meta-field.post-price .label {
    font-size: 16px;
    color: var(--light)
}

.post-meta .post-meta-field.post-sold {
    justify-content: end;
    color: var(--primary);
    font-size: 25px;
}

.post-meta span.label {
    font-weight: bold;
}

/* Modal Styles */
#imageModal .modal-dialog {
    max-height: calc(100vh - 60px);
    margin: 30px auto !important;
    max-width: max-content;
}

#imageModal .modal-content img {
    width: auto !important;
    margin: auto;
    max-height: calc(100vh - 50px);
}