/* ===== Рекомендованные объявления ===== */

.recommendations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

/* Карточка */
.recommendation-card {
    width: calc(33.333% - 10px);
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    transition: box-shadow .2s ease, transform .2s ease;
}

.recommendation-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Фото */
.rec-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f3f3f3;
    overflow: hidden;
}

.rec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
}

/* Тело карточки */
.rec-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Заголовок */
.rec-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    max-height: 2.6em;
    overflow: hidden;
}

/* Цена */
.rec-price {
    font-size: 15px;
    font-weight: 600;
    color: #2a9d8f;
}

/* Нет рекомендаций */
.no-recommendations {
    color: #777;
    font-size: 14px;
    margin-top: 10px;
}