        .info-popup {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .info-popup.is-hidden {
            display: none;
        }

        .info-popup-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
        }

        .info-popup-dialog {
            position: relative;
            z-index: 1;
            max-width: 800px;
            max-height: 90vh;
        }

        .info-popup-dialog a {
            display: block;
        }

        .info-popup-image {
            display: block;
            width: auto;
            max-width: 100%;
            max-height: 90vh;
            height: auto;
        }

        .info-popup-close {
            position: absolute;
            top: -15px;
            right: -15px;
            z-index: 2;

            width: 40px;
            height: 40px;

            border: 0;
            border-radius: 50%;

            background: #ffffff;

            font-size: 28px;
            line-height: 40px;

            cursor: pointer;

            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        }