/* ========================================
   車両グリッド表示
======================================== */

/* グリッドコンテナ */
.u-carGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 30px 0;
}

/* PC: 3カラム */
@media (min-width: 768px) {
    .u-carGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* グリッドアイテム */
.u-carGrid__item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* サムネイル */
.u-carGrid__thumbnail {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f5f5f5;
}

.u-carGrid__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 販売ステータス（タグ） */
.u-carGrid__saleStatus {
    display: inline-block;
    margin: 15px 15px 0;
    padding: 2px 12px;
    background: #0073aa;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
}

/* タイトル */
.u-carGrid__title {
    padding: 10px 20px 15px;
    margin: 0 !important;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
}

.u-carGrid__link:hover .u-carGrid__title {
    color: #0073aa;
}

/* 詳細ステータスリスト */
.u-carGrid__detailList {
    padding: 0 20px 20px;
}

/* 詳細ステータスアイテム */
.u-carGrid__detailItem {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 5px;
}

.u-carGrid__detailItem:last-child {
    margin-bottom: 0;
}

/* 詳細ステータスラベル */
.u-carGrid__detailLabel {
    font-weight: bold;
    color: #333;
}

/* 詳細ステータステキスト */
.u-carGrid__detailText {
    color: #666;
}

/* 投稿がない場合のメッセージ */
.u-carGrid + p {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}