/* ==========================================================================
   WIREFRAME SECTION STYLES
   ========================================================================== */

/* Section Container */
.wireframe-section {
    padding: 32px 0;
    /* consistent bottom spacing */
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    box-sizing: border-box;
}

/* Wireframe Card/Container */
.wireframe-container {
    background-color: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    margin: 32px 0px;
    padding: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /* Subtle elevation */
    overflow: hidden;
}

/* The Wireframe Image */
.wireframe-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* Slight radius on image if needed, or keeping it raw */
    object-fit: contain;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wireframe-container {
        padding: 16px;
        border-radius: 16px;
    }
}