.home-popup {
    position: fixed;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    background: #fff;
    color: #222;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 12px 48px #0005;
    overflow: hidden;
}
.home-popup__body { overflow: auto; min-height: 0; overflow-wrap: anywhere; }
.home-popup__body img { display: block; max-width: 100%; height: auto; margin: 0 auto; }
.home-popup__content { padding: 16px; }
.home-popup__footer { display: flex; justify-content: space-between; gap: 16px; padding: 12px 16px; flex-shrink: 0; border-top: 1px solid #ddd; background: #f7f7f7; }
.home-popup__footer button { padding: 4px; border: 0; background: transparent; color: #222; cursor: pointer; font-size: 14px; }
.home-popup__footer button:focus-visible { outline: 2px solid #1758ad; outline-offset: 2px; }
