﻿.ad-card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease;
}

.ad-card:hover {
    transform: translateY(-4px);
}

.ad-img {
    height: 150px;
    object-fit: cover;
}

.ad-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: gold;
    color: black;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
}

.ad-phone {
    color: #fff;
    background-color: #28a745;
    padding: 6px 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    margin-top: 10px;
}

.ad-info {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .ad-info i {
        margin-left: 5px;
        color: #6c757d;
        flex-shrink: 0;
    }

.ad-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 1.6; /* اضافه شده */
    height: 24px;
}
