/* ========================================
   상세이미지 섹션 (1열 레이아웃)
======================================== */

.vehicle-detail-images-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 24px;
}

/* 섹션 헤더 */
.vehicle-detail-images-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.vehicle-detail-images-section .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.vehicle-detail-images-section .section-title svg {
    color: #3b82f6;
}

.vehicle-detail-images-section .image-count {
    font-size: 0.85rem;
    color: #6b7280;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
}

/* 이미지 목록 - 1열 레이아웃 */
.detail-images-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #f1f5f9;
}

/* 개별 이미지 아이템 */
.detail-image-item {
    width: 100%;
    background: #ffffff;
}

.detail-image-item img {
    display: block;
    width: 100%;
    height: auto;
}

/* 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .vehicle-detail-images-section .section-header {
        padding: 16px 20px;
    }
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
    .vehicle-detail-images-section {
        border-radius: 0;
        margin-top: 16px;
    }

    .vehicle-detail-images-section .section-header {
        padding: 16px;
    }

    .vehicle-detail-images-section .section-title {
        font-size: 1rem;
    }

    .detail-images-list {
        gap: 1px;
    }
}
