/* ==========================================================
   HERO
========================================================== */

.hero-premium{

    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

}

/* ---------------------------------------
   Przyciemnienie zdjęcia
--------------------------------------- */

.hero-premium::before{

    content:"";

    position:absolute;
    inset:0;

    z-index:1;

    pointer-events:none;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.20) 0%,
        rgba(0,0,0,.10) 45%,
        rgba(0,0,0,.03) 100%
    );

}

/* ---------------------------------------
   Treść nad gradientem
--------------------------------------- */

.hero-premium > *{

    position:relative;
    z-index:2;

}

/* ---------------------------------------
   Maksymalna szerokość treści
--------------------------------------- */

.hero-premium .elementor-widget-wrap{

    max-width:720px;

}

.hero-premium .elementor-heading-title{

    text-wrap:balance;

}

.hero-premium .elementor-widget-text-editor{

    max-width:620px;

}