/* Extracted from theme templates — keep selector names stable */
.page-header {
        display: none;
    }

    .slideshow-wrapper {
        position: relative;
        width: 800px;
        max-width: 100%;
        height: 100vh;
        overflow: hidden;
        margin: 10px auto;
        padding-top: 40px;
        box-sizing: border-box;
    }

    .slide-content {
        display: none;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .slide-content.active {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    .slide-content .container,
    .slide-content .slide-image-content {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        max-width: 100%;
    }

    .slide-content img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .slideshow-empty {
        padding: 40px 20px;
        text-align: center;
        color: #666;
        font-family: 'Montserrat', sans-serif;
    }

    .nav-btn {
        position: absolute;
        top: 0;
        background: rgba(0, 51, 153, 0.8);
        color: white;
        border: none;
        padding: 5px 15px;
        font-size: 24px;
        cursor: pointer;
        z-index: 2000;
        transition: background 0.3s;
        border-radius: 4px;
    }

    .nav-btn span {
        height: 22px;
        display: inline-block;
        position: relative;
        top: -2px;
    }

    .nav-btn:hover {
        background: rgba(0, 51, 153, 1);
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }

    .slide-indicators {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 2000;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px 20px;
        border-radius: 25px;
    }

    .indicator {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s;
        border: 2px solid rgba(0, 51, 153, 0.6);
    }

    .indicator.active {
        background: #003399;
        transform: scale(1.2);
        border-color: #fff;
    }

    .indicator:hover {
        background: rgba(0, 51, 153, 0.8);
    }

    .control-panel {
        position: absolute;
        top: 0;
        right: 100px;
        display: flex;
        gap: 10px;
        z-index: 2000;
    }

    .control-btn,
    .fullscreen-btn {
        background: rgba(0, 51, 153, 0.9);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        transition: background 0.3s;
    }

    .control-btn:hover,
    .fullscreen-btn:hover {
        background: rgba(0, 51, 153, 1);
    }

    .fullscreen-btn {
        position: absolute;
        top: 0;
        left: 100px;
        z-index: 2000;
    }

    .slide-counter {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        z-index: 2000;
        font-family: 'Montserrat', sans-serif;
    }

    @media (max-width: 768px) {
        .slideshow-wrapper {
            width: 100%;
            padding-top: 10px;
        }

        .nav-btn {
            padding: 15px 10px;
            font-size: 18px;
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }

        .control-panel,
        .fullscreen-btn {
            display: none;
        }

        .slide-counter {
            top: 10px;
            font-size: 12px;
            padding: 6px 12px;
        }
    }
