/* Контейнер объявления */
.ad-item {
    display: flex;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}

.ad-item:hover {
    background: #f8f8f8;
}

/* Левая часть — фото */
.ad-image {
    width: 25%;
    min-width: 25%;
    max-width: 25%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    background: #eee;
}

/* Правая часть — текст */
.ad-content {
    width: 75%;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ключ! тянет нижние элементы вниз */
}

/* Заголовок объявления */
.ad-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Описание */
.ad-description {
    color: #444;
    font-size: 15px;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    margin-bottom: 12px;
}

/* Цена */
.ad-price {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin-bottom: 8px;
}

/* Хлебные крошки (заменяет категорию и локацию) */
.ad-breadcrumbs {
    font-size: 14px;
    color: #666;
    line-height: 1.3;
    display: flex;
    flex-wrap: wrap;        /* если текст длинный — перенос */
    align-items: center;    /* вертикальное выравнивание */
    margin: 6px 0;          /* аккуратные отступы */
}

.ad-breadcrumbs a {
    color: #0073e6;
    text-decoration: none;
}

.ad-breadcrumbs a:hover {
    text-decoration: underline;
}

.ad-breadcrumbs span {
    color: #999;
    margin: 0 4px;          /* отступ вокруг "/" */
}







.market-top-block {
    margin-bottom: 30px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #f0d58c;
    border-radius: 10px;
}

.market-top-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ad-item-top {
    border: 2px solid #f4b400;
    background: #fffdf5;
}

.ad-top-until {
    margin-top: 8px;
    font-size: 12px;
    color: #a26b00;
    font-weight: 500;
}
