/* ==========================================================================
   FCMLS Marketplace
   Additional styling for marketplace.html
   ========================================================================== */

/* ---------- Page ---------- */

.marketplace {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 0 2rem;
}

/* ---------- Introduction ---------- */

.marketplace-intro {
    margin-bottom: 2rem;
}

.marketplace-intro p {
    line-height: 1.5;
}

/* ---------- Listing ---------- */

.listing-card {

    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 2rem 0;
    padding: 20px;
    background: #faf9f4;
    border: 1px solid #bdb8a8;
    border-left: 4px solid #2b5a37;
    border-radius: 4px;
}

.listing-photo {

    flex: 0 0 280px;
}

.listing-photo img {

    width: 100%;
    display: block;
    border: 1px solid #999;
    background: white;
    padding: 4px;
}

.listing-photo figcaption{

    text-align:center;
    font-size:.85rem;
    color:#666;
    margin-top:.5rem;
}

.photo-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    min-height: 80px;

    border: 1px dashed #bdb8a8;
    background: #f8f8f4;

    color: #777;
    font-style: italic;
    text-align: center;

    padding: 1rem;
    box-sizing: border-box;
}

/* ---------- Details ---------- */

.listing-header {
	
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.listing-heading {
	
    flex: 1;
}

.listing-details {
	
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 260px;
}

.listing-title {

    margin: 0 0 0.4rem 0;
    color: #234b31;
    font-family: Georgia, serif;
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    line-height: 1.3;
}

.listing-reference {

    margin-top: .4rem;
    font-size: .9rem;
    color: #555;
    font-weight: bold;
}

.listing-price {
	
    white-space: nowrap;
    text-align: right;
    font-size: 1.3rem;
    font-weight: bold;
    color: #234b31;
}

.listing-description {

    flex: 1;
}

.listing-description p {

    margin-top: 0;
}

.listing-footer {
    margin-top: 1rem;
}
/* ---------- Button ---------- */

.listing-contact {

    background: #c9cfb3;
    border: 1px solid #19311f;
    padding: .6rem 1rem;
    border-radius: 3px;
}

.listing-contact:hover{

    background: #355f3f;
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {

    .listing-card {

        display: block;
    }

    .listing-photo {

        margin-bottom: 1.5rem;
    }

}

/* Ensure Marketplace text is readable */

.listing-card,
.listing-card p,
.listing-card div,
.listing-card span,
.listing-card li {
    color: #222;
}

.listing-description {
    color: #222;
    line-height: 1.6;
}

.listing-description p {
    color: #222;
    margin: 0 0 1em 0;
}

.listing-title {
    color: #234b31;
}

.listing-reference {
    color: #555;
}

.listing-price {
    color: #234b31;
}

.listing-contact,
.listing-contact:link,
.listing-contact:visited {
    color: #fff;
}

.listing-contact:hover {
    color: #fff;
}