/* Listings Page */

.listings-page {
    background: var(--sienna);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header - garde le gradient */
.listings-header {
    text-align: center;
    padding: 2rem 0;
}

.listings-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.listings-intro {
    font-size: 1rem;
    font-weight: 400;
    color: var(--cream-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content - transparent, le gradient du body reste visible */
.listings-content {
    padding: 2rem 0;
    flex: 1;
}

/* Liste des annonces - une par ligne */
.listings-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Empty state */
.listings-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

/* Responsive */
@media (min-width: 768px) {
    .listings-header {
        padding: 3rem 0;
    }

    .listings-header h1 {
        font-size: 2.25rem;
    }

    .listings-intro {
        font-size: 1.125rem;
    }

    .listings-content {
        padding: 3rem 0;
    }

    .listings-list {
        gap: 2rem;
    }
}
