/* Vehicle Showcase Card Grid */
.vsc-b88f51c2-grid {
    display: grid;
    gap: 28px;
    align-items: start;
}

.vsc-b88f51c2-empty {
    text-align: center;
    padding: 40px 20px;
    color: #8892a0;
    font-size: 15px;
}

/* Card */
.vsc-b88f51c2-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.vsc-b88f51c2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Media / Image */
.vsc-b88f51c2-media {
    position: relative;
    overflow: hidden;
}

.vsc-b88f51c2-img-link {
    display: block;
    text-decoration: none;
}

.vsc-b88f51c2-main-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vsc-b88f51c2-card:hover .vsc-b88f51c2-main-img {
    transform: scale(1.05);
}

.vsc-b88f51c2-placeholder {
    background: linear-gradient(135deg, #e8ecf1 0%, #d5dce6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
}

.vsc-b88f51c2-placeholder svg {
    width: 48px;
    height: 48px;
}

/* Badges */
.vsc-b88f51c2-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #0984e3;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.vsc-b88f51c2-badge-year {
    left: auto;
    right: 14px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

/* Gallery Slider */
.vsc-b88f51c2-gallery {
    position: relative;
    background: #f0f2f5;
}

.vsc-b88f51c2-gallery .swiper {
    width: 100%;
}

.vsc-b88f51c2-gallery .swiper-slide {
    overflow: hidden;
}

.vsc-b88f51c2-gallery .swiper-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vsc-b88f51c2-gallery .swiper-slide:hover img {
    transform: scale(1.08);
}

.vsc-b88f51c2-gallery .swiper-button-next,
.vsc-b88f51c2-gallery .swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.vsc-b88f51c2-gallery .swiper-button-next:hover,
.vsc-b88f51c2-gallery .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
}

.vsc-b88f51c2-gallery .swiper-button-next::after,
.vsc-b88f51c2-gallery .swiper-button-prev::after {
    font-size: 14px;
    font-weight: bold;
}

.vsc-b88f51c2-gallery .swiper-pagination {
    bottom: 8px !important;
}

.vsc-b88f51c2-gallery .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    width: 7px;
    height: 7px;
}

.vsc-b88f51c2-gallery .swiper-pagination-bullet-active {
    background: #0984e3;
    opacity: 1;
    width: 20px;
    border-radius: 4px;
}

/* Body */
.vsc-b88f51c2-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* Title */
.vsc-b88f51c2-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
}

.vsc-b88f51c2-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.vsc-b88f51c2-title a:hover {
    color: #0984e3;
}

/* Meta Grid */
.vsc-b88f51c2-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vsc-b88f51c2-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.vsc-b88f51c2-meta-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 132, 227, 0.08);
    border-radius: 8px;
    color: #0984e3;
}

.vsc-b88f51c2-meta-icon svg {
    width: 16px;
    height: 16px;
}

.vsc-b88f51c2-meta-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.vsc-b88f51c2-meta-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #8892a0;
    line-height: 1.2;
}

.vsc-b88f51c2-meta-value {
    font-size: 13px;
    font-weight: 600;
    color: #2d3436;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Description */
.vsc-b88f51c2-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #636e72;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button */
.vsc-b88f51c2-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #0984e3;
    text-decoration: none;
    padding: 10px 0 0;
    border-top: 1px solid #f0f2f5;
    margin-top: auto;
    transition: color 0.25s ease, gap 0.25s ease;
}

.vsc-b88f51c2-btn:hover {
    color: #0652a8;
    gap: 10px;
}

.vsc-b88f51c2-btn svg {
    transition: transform 0.25s ease;
}

.vsc-b88f51c2-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .vsc-b88f51c2-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .vsc-b88f51c2-grid {
        grid-template-columns: 1fr !important;
    }

    .vsc-b88f51c2-meta-grid {
        grid-template-columns: 1fr 1fr;
    }
}
