.page-decor{
    position: relative;
}

/* LEVÁ STRANA */
.page-decor::before{
    content:"";
    position: absolute;
    left:0;
    top:50px;
    width:220px;
    height:100%;
    background: url("/themes/pohadka/images/decor-left.png") repeat-y left top;
    background-size: contain;
    pointer-events:none;
    z-index:0;
}

/* PRAVÁ STRANA */
.page-decor::after{
    content:"";
    position: absolute;
    right:0;
    top:50px;
    width:220px;
    height:100%;
    background: url("/themes/pohadka/images/decor-right.png") repeat-y right top;
    background-size: contain;
    pointer-events:none;
    z-index:0;
}

/* 🔥 OVERLAY (zesvětlení) */
.page-overlay{
    position:absolute;
    inset:0;
    background: rgba(255, 245, 235, .65);
    z-index:1;
}

/* obsah nad tím */
.page-content{
    position: relative;
    z-index:5;
}

