
.photo360-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.photo360-item {
    flex: 0 1 200px;
    text-align: center;
}

.photo360-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.photo360-item img:hover {
    transform: scale(1.05);
}

.photo360-item h3 {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: #333;
}

.photo360-item a {
    text-decoration: none;
    color: inherit;
}

.photo360-viewer-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
}

@media (max-width: 768px) {
    .photo360-list {
        justify-content: center;
    }
    
    .photo360-item {
        flex: 0 1 150px;
    }
}
        