.structure-frame {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background-color: #f0f2f5;
    border: 2px dashed #d1d9e6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.structure-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

.blank-state {
    text-align: center;
    color: #aab8c2;
}

.blank-state i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.blank-state p {
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .structure-frame {
        aspect-ratio: auto;
        height: auto;
        min-height: 220px;
        padding: 20px;
    }

    .structure-frame img {
        object-fit: contain;
    }

    .blank-state i {
        font-size: 2.2rem;
    }

    .blank-state p {
        font-size: 0.95rem;
    }
}