/* ============================================
   BLUEPRINTS - Reusable image-display widget.
   Shows a single image (e.g. a blueprint) inside
   a full-height slot; the container scrolls when
   the image is taller than the slot.
   ============================================ */

.blueprints {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #fff;
    overflow-y: scroll;
}

.blueprints-image {
    display: block;
    margin: 0;
    max-width: 100%;
    height: auto;
}
