.pret-de-jeux-page {
    margin-bottom: 30px;
}

.pret-de-jeux-intro:empty {
    display: none;
}

.pret-de-jeux-toolbar {
    margin: 10px 0 24px;
    padding: 18px;
    background: #f5f8f6;
    border: 1px solid #e2ebe5;
    border-radius: 4px;
}

.pret-de-jeux-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pret-de-jeux-tab {
    border: 1px solid #1f8b4c;
    border-radius: 3px;
    padding: 8px 14px;
    background: #fff;
    color: #176b3b;
    cursor: pointer;
    font-weight: 600;
    transition: background .15s ease, color .15s ease;
}

.pret-de-jeux-tab:hover,
.pret-de-jeux-tab.is-active {
    background: #1f8b4c;
    color: #fff;
}

.pret-de-jeux-search-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pret-de-jeux-search {
    min-width: 0;
    flex: 1;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #cbd8cf;
    border-radius: 3px;
    box-shadow: none;
}

.pret-de-jeux-count {
    color: #5c6b61;
    white-space: nowrap;
    font-size: 13px;
}

.pret-de-jeux-updated {
    margin-top: 10px;
    color: #718078;
    font-size: 12px;
}

.pret-de-jeux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.pret-de-jeux-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4e8e5;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(28, 58, 39, .07);
}

.pret-de-jeux-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    overflow: hidden;
    background: #f0f4f1;
    color: #7b8a80;
    font-size: 24px;
    font-weight: 700;
}

.pret-de-jeux-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pret-de-jeux-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px;
}

.pret-de-jeux-card h3 {
    margin: 5px 0 10px;
    color: #2d3831;
    font-size: 17px;
    line-height: 1.3;
}

.pret-de-jeux-details {
    margin: 0 0 12px;
    color: #5c6b61;
    font-size: 13px;
}

.pret-de-jeux-details div {
    display: flex;
    gap: 6px;
    margin: 4px 0;
}

.pret-de-jeux-details dt {
    flex: 0 0 auto;
    font-weight: 700;
}

.pret-de-jeux-details dd {
    margin: 0;
}

.pret-de-jeux-card-link {
    margin-top: auto;
    color: #1f8b4c;
    font-weight: 700;
}

.pret-de-jeux-empty,
.pret-de-jeux-error,
.pret-de-jeux-loading {
    padding: 24px;
    color: #5c6b61;
    text-align: center;
}

.pret-de-jeux-error {
    background: #fff8f5;
    border: 1px solid #f0d4c6;
    color: #8c4224;
}

@media (max-width: 600px) {
    .pret-de-jeux-search-row {
        display: block;
    }

    .pret-de-jeux-count {
        display: block;
        margin-top: 8px;
    }
}
