.wb-ilan-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid #e7ebf0;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(16,24,40,.04);
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    height:100%;
}

.wb-ilan-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(16,24,40,.08);
    border-color:#d8dee8;
}

.wb-ilan-card-thumb-link{
    display:block;
    text-decoration:none;
}

.wb-ilan-card-thumb-wrap{
    position:relative;
    background:#f8fafc;
    aspect-ratio:4/3;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.wb-ilan-card-thumb{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
}

.wb-ilan-card-noimage{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6b7280;
    font-size:14px;
    background:#f8fafc;
    border-radius:10px;
}

.wb-ilan-badge{
    position:absolute;
    top:10px;
    left:10px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    padding:6px 11px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
    line-height:1;
    color:#fff;
    box-shadow:0 6px 16px rgba(0,0,0,.14);
}

.wb-ilan-badge.is-featured{background:#ff7a18;}
.wb-ilan-badge.is-premium{background:#2563eb;}
.wb-ilan-badge.is-showcase{background:#111827;}

.wb-ilan-card-body{
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:14px;
    flex:1;
}

.wb-ilan-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.wb-ilan-card-price{
    font-size:18px;
    line-height:1;
    font-weight:800;
    color:#0f172a;
    letter-spacing:-.02em;
}

.wb-ilan-card-city{
    font-size:12px;
    color:#6b7280;
    white-space:nowrap;
}

.wb-ilan-card-title{
    margin:0;
    font-size:14px;
    line-height:1.4;
    font-weight:500;
    color:#111827;
    min-height:42px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.wb-ilan-card-title a{
    color:inherit;
    text-decoration:none;
}

.wb-ilan-card-title a:hover{
    opacity:.88;
}

.wb-ilan-card-meta{
    display:flex;
    flex-wrap:wrap;
    gap:6px 10px;
    color:#667085;
    font-size:12px;
    line-height:1.35;
}

.wb-ilan-card-meta span{
    display:inline-flex;
    align-items:center;
}

.wb-ilan-card-specs{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.wb-ilan-chip{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:5px 9px;
    border-radius:999px;
    background:#f3f4f6;
    color:#111827;
    font-size:11px;
    line-height:1;
    font-weight:700;
}

.wb-ilan-card-footer{
    margin-top:auto;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:10px;
    padding-top:10px;
    border-top:1px solid #eef1f5;
}

.wb-ilan-card-author{
    min-width:0;
}

.wb-ilan-card-author a,
.wb-ilan-card-author span{
    display:block;
    font-size:12px;
    font-weight:700;
    color:#111827;
    text-decoration:none;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.wb-ilan-card-stats{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:2px;
    font-size:11px;
    color:#6b7280;
    text-align:right;
    flex-shrink:0;
}

@media (max-width: 768px){
    .wb-ilan-card{
        border-radius:14px;
    }

    .wb-ilan-card-thumb-wrap{
        aspect-ratio:4/3;
        padding:8px;
    }

    .wb-ilan-card-body{
        padding:10px;
        gap:8px;
    }

    .wb-ilan-card-price{
        font-size:16px;
    }

    .wb-ilan-card-title{
        font-size:14px;
        min-height:38px;
    }

    .wb-ilan-chip{
        min-height:26px;
        padding:5px 8px;
        font-size:10px;
    }

    .wb-ilan-card-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }

    .wb-ilan-card-stats{
        align-items:flex-start;
        text-align:left;
    }
}


