/* === Product Scene Module - 产品场景模块 === */
.scene-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.scene-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    border: none;
}

.scene-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 14px;
    background: #f8fafc;
}

.scene-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8fafc;
}

.scene-content {
    padding: 16px 0 0 0;
}

.product-module .scene-title {
    font-size: 16px;
    font-weight: var(--bold-weight, 600);
    color: var(--text-primary);
    margin: 0 0 6px 0;
    font-family: var(--bold-font) !important;
}

.scene-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    font-family: var(--normal-font);
}
