*,
*::after,
*::before {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* Grille des biens */
.assets {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    padding: 48px 80px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Carte */
.asset-card {
    background: #1e1212;
    border: 1px solid rgba(222,200,191,0.12);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.asset-card:hover {
    transform: translateY(-6px);
    border-color: #b89080;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.asset-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Image */
.B-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.4s;
}

.asset-card:hover .B-image img {
    opacity: 1;
    transform: scale(1.04);
}

/* Infos */
.B-info {
    padding: 16px 20px 20px;
    background: #1e1212;
}

.B-info h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #DEC8BF;
    font-family: 'Playfair Display', serif;
}

.B-info p {
    margin: 0;
    font-size: 0.78rem;
    color: #a89090;
    letter-spacing: 0.4px;
}