/* ==========================================================================
   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%;

    height: 220px;

    border: 1px solid #999;

    background: #efefef;

    color: #666;

    font-style: italic;

}

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

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

.listing-heading {
    flex: 1;
}

.listing-details {

    flex: 1;

    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 {

    margin: 1rem 0;

    font-size: 1.4rem;

    font-weight: bold;

    color: #234b31;

}

.listing-description {

    line-height: 1.6;

}

.listing-description p {

    margin-top: 0;
	
}

/* ---------- Button ---------- */

.listing-contact {

    background: #2b5a37;

    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;
}